diff --git a/app/Http/Controllers/Web/RequestController.php b/app/Http/Controllers/Web/RequestController.php index 5c76b46..fda69f5 100644 --- a/app/Http/Controllers/Web/RequestController.php +++ b/app/Http/Controllers/Web/RequestController.php @@ -7,6 +7,8 @@ use Illuminate\Http\Request; use App\Http\Controllers\Controller; use App\Http\Resources\RequestResource; use App\Models\Request as RequestModel; +use Illuminate\Support\Facades\Http; +use Illuminate\Support\Facades\Validator; use TimeHunter\LaravelGoogleReCaptchaV3\Validations\GoogleReCaptchaV3ValidationRule; class RequestController extends Controller @@ -35,19 +37,76 @@ class RequestController extends Controller */ public function store(Request $request) { - $form = $request->validate([ + $input = $request->all(); + $rules = [ 'name' => ['required'], 'phone' => ['required'], 'email' => ['required', 'email'], + 'password' => ['required'], 'items' => ['required', 'array'], 'items.*.id' => ['required'], - 'captcha' => [new GoogleReCaptchaV3ValidationRule('create_request')] - // 'items.*.count' => ['required', 'numeric'], + ]; + $validator = Validator::make($input, $rules); + if($validator->fails()) { + return response()->json([ + 'status' => 400, + 'validationErrors' => $validator->errors() + ], 400); + } + + $loginResponse = Http::post('http://127.0.0.1:8000/api/login', [ + 'username' => $input['phone'], + 'password' => $input['password'] ]); - RequestModel::create($form); + $loginResponseStatus = $loginResponse->status(); - return redirect()->back(); + switch ($loginResponseStatus) { + case 401: + return response()->json([ + 'status' => $loginResponseStatus, // 401 + 'message' => 'Unauthorized', + 'response' => $loginResponse + ], $loginResponseStatus); + // break; + + case 200: + // try to withdraw from the balance + $balanceResponse = Http::post('http://127.0.0.1:8000/api/v1/withdraw-from-balance?token=' . $loginResponse['token']); + + $balanceResponseStatus = $balanceResponse->status(); + + if($balanceResponseStatus == 201) { + RequestModel::create($input); + } + + return response()->json([ + 'status' => $balanceResponseStatus, // 201 (ok) or 300 (fill up balance) + 'message' => $balanceResponse['message'], + 'response' => $balanceResponse + ], $balanceResponseStatus); + // break; not needed because of return + + case 500: + return response()->json([ + 'status' => $loginResponseStatus, // 500 + 'message' => 'Internal Server Error', + 'response' => $loginResponse + ], $loginResponseStatus); + // break; + + default: + return response()->json([ + 'status' => $loginResponseStatus, + 'message' => 'Unknown Server Error', + 'response' => $loginResponse + ], $loginResponseStatus); + // break; + } + + // RequestModel::create($form); + + // return redirect()->back(); } /** diff --git a/public/css/antd.css b/public/css/antd.css index 73f2866..996bcb8 100644 --- a/public/css/antd.css +++ b/public/css/antd.css @@ -1 +1,23455 @@ -body,html{width:100%;height:100%}input::-ms-clear,input::-ms-reveal{display:none}*,:after,:before{box-sizing:border-box}html{font-family:sans-serif;line-height:1.15;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;-ms-overflow-style:scrollbar;-webkit-tap-highlight-color:rgba(0,0,0,0)}@-ms-viewport{width:device-width}article,aside,dialog,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}body{margin:0;color:rgba(0,0,0,.65);font-size:15px;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,PingFang SC,Hiragino Sans GB,Microsoft YaHei,Helvetica Neue,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol;font-variant:tabular-nums;line-height:1.5;background-color:#fff;font-feature-settings:"tnum"}[tabindex="-1"]:focus{outline:none!important}hr{box-sizing:content-box;height:0;overflow:visible}h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5em;color:rgba(0,0,0,.85);font-weight:500}p{margin-top:0;margin-bottom:1em}abbr[data-original-title],abbr[title]{text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;border-bottom:0;cursor:help}address{margin-bottom:1em;font-style:normal;line-height:inherit}input[type=number],input[type=password],input[type=text],textarea{-webkit-appearance:none}dl,ol,ul{margin-top:0;margin-bottom:1em}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:500}dd{margin-bottom:.5em;margin-left:0}blockquote{margin:0 0 1em}dfn{font-style:italic}b,strong{font-weight:bolder}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:#004691;text-decoration:none;background-color:transparent;outline:none;cursor:pointer;transition:color .3s;-webkit-text-decoration-skip:objects}a:hover{color:#195e9e}a:active{color:#00306b}a:active,a:hover{text-decoration:none;outline:0}a[disabled]{color:rgba(0,0,0,.25);cursor:not-allowed;pointer-events:none}code,kbd,pre,samp{font-size:1em;font-family:SFMono-Regular,Consolas,Liberation Mono,Menlo,Courier,monospace}pre{margin-top:0;margin-bottom:1em;overflow:auto}figure{margin:0 0 1em}img{vertical-align:middle;border-style:none}svg:not(:root){overflow:hidden}[role=button],a,area,button,input:not([type=range]),label,select,summary,textarea{touch-action:manipulation}table{border-collapse:collapse}caption{padding-top:.75em;padding-bottom:.3em;color:rgba(0,0,0,.45);text-align:left;caption-side:bottom}th{text-align:inherit}button,input,optgroup,select,textarea{margin:0;color:inherit;font-size:inherit;font-family:inherit;line-height:inherit}button,input{overflow:visible}button,select{text-transform:none}[type=reset],[type=submit],button,html [type=button]{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{padding:0;border-style:none}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=date],input[type=datetime-local],input[type=month],input[type=time]{-webkit-appearance:listbox}textarea{overflow:auto;resize:vertical}fieldset{min-width:0;margin:0;padding:0;border:0}legend{display:block;width:100%;max-width:100%;margin-bottom:.5em;padding:0;color:inherit;font-size:1.5em;line-height:inherit;white-space:normal}progress{vertical-align:baseline}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:none}[type=search]::-webkit-search-cancel-button,[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}output{display:inline-block}summary{display:list-item}template{display:none}[hidden]{display:none!important}mark{padding:.2em;background-color:#feffe6}::-moz-selection{color:#fff;background:#004691}::selection{color:#fff;background:#004691}.clearfix{zoom:1}.clearfix:after,.clearfix:before{display:table;content:""}.clearfix:after{clear:both}.anticon{display:inline-block;color:inherit;font-style:normal;line-height:0;text-align:center;text-transform:none;vertical-align:-.125em;text-rendering:optimizeLegibility;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.anticon>*{line-height:1}.anticon svg{display:inline-block}.anticon:before{display:none}.anticon .anticon-icon{display:block}.anticon[tabindex]{cursor:pointer}.anticon-spin,.anticon-spin:before{display:inline-block;-webkit-animation:loadingCircle 1s linear infinite;animation:loadingCircle 1s linear infinite}.fade-appear,.fade-enter,.fade-leave{-webkit-animation-duration:.2s;animation-duration:.2s;-webkit-animation-fill-mode:both;animation-fill-mode:both;-webkit-animation-play-state:paused;animation-play-state:paused}.fade-appear.fade-appear-active,.fade-enter.fade-enter-active{-webkit-animation-name:antFadeIn;animation-name:antFadeIn;-webkit-animation-play-state:running;animation-play-state:running}.fade-leave.fade-leave-active{-webkit-animation-name:antFadeOut;animation-name:antFadeOut;-webkit-animation-play-state:running;animation-play-state:running;pointer-events:none}.fade-appear,.fade-enter{opacity:0}.fade-appear,.fade-enter,.fade-leave{-webkit-animation-timing-function:linear;animation-timing-function:linear}@-webkit-keyframes antFadeIn{0%{opacity:0}to{opacity:1}}@keyframes antFadeIn{0%{opacity:0}to{opacity:1}}@-webkit-keyframes antFadeOut{0%{opacity:1}to{opacity:0}}@keyframes antFadeOut{0%{opacity:1}to{opacity:0}}.move-up-appear,.move-up-enter,.move-up-leave{-webkit-animation-duration:.2s;animation-duration:.2s;-webkit-animation-fill-mode:both;animation-fill-mode:both;-webkit-animation-play-state:paused;animation-play-state:paused}.move-up-appear.move-up-appear-active,.move-up-enter.move-up-enter-active{-webkit-animation-name:antMoveUpIn;animation-name:antMoveUpIn;-webkit-animation-play-state:running;animation-play-state:running}.move-up-leave.move-up-leave-active{-webkit-animation-name:antMoveUpOut;animation-name:antMoveUpOut;-webkit-animation-play-state:running;animation-play-state:running;pointer-events:none}.move-up-appear,.move-up-enter{opacity:0;-webkit-animation-timing-function:cubic-bezier(.08,.82,.17,1);animation-timing-function:cubic-bezier(.08,.82,.17,1)}.move-up-leave{-webkit-animation-timing-function:cubic-bezier(.6,.04,.98,.34);animation-timing-function:cubic-bezier(.6,.04,.98,.34)}.move-down-appear,.move-down-enter,.move-down-leave{-webkit-animation-duration:.2s;animation-duration:.2s;-webkit-animation-fill-mode:both;animation-fill-mode:both;-webkit-animation-play-state:paused;animation-play-state:paused}.move-down-appear.move-down-appear-active,.move-down-enter.move-down-enter-active{-webkit-animation-name:antMoveDownIn;animation-name:antMoveDownIn;-webkit-animation-play-state:running;animation-play-state:running}.move-down-leave.move-down-leave-active{-webkit-animation-name:antMoveDownOut;animation-name:antMoveDownOut;-webkit-animation-play-state:running;animation-play-state:running;pointer-events:none}.move-down-appear,.move-down-enter{opacity:0;-webkit-animation-timing-function:cubic-bezier(.08,.82,.17,1);animation-timing-function:cubic-bezier(.08,.82,.17,1)}.move-down-leave{-webkit-animation-timing-function:cubic-bezier(.6,.04,.98,.34);animation-timing-function:cubic-bezier(.6,.04,.98,.34)}.move-left-appear,.move-left-enter,.move-left-leave{-webkit-animation-duration:.2s;animation-duration:.2s;-webkit-animation-fill-mode:both;animation-fill-mode:both;-webkit-animation-play-state:paused;animation-play-state:paused}.move-left-appear.move-left-appear-active,.move-left-enter.move-left-enter-active{-webkit-animation-name:antMoveLeftIn;animation-name:antMoveLeftIn;-webkit-animation-play-state:running;animation-play-state:running}.move-left-leave.move-left-leave-active{-webkit-animation-name:antMoveLeftOut;animation-name:antMoveLeftOut;-webkit-animation-play-state:running;animation-play-state:running;pointer-events:none}.move-left-appear,.move-left-enter{opacity:0;-webkit-animation-timing-function:cubic-bezier(.08,.82,.17,1);animation-timing-function:cubic-bezier(.08,.82,.17,1)}.move-left-leave{-webkit-animation-timing-function:cubic-bezier(.6,.04,.98,.34);animation-timing-function:cubic-bezier(.6,.04,.98,.34)}.move-right-appear,.move-right-enter,.move-right-leave{-webkit-animation-duration:.2s;animation-duration:.2s;-webkit-animation-fill-mode:both;animation-fill-mode:both;-webkit-animation-play-state:paused;animation-play-state:paused}.move-right-appear.move-right-appear-active,.move-right-enter.move-right-enter-active{-webkit-animation-name:antMoveRightIn;animation-name:antMoveRightIn;-webkit-animation-play-state:running;animation-play-state:running}.move-right-leave.move-right-leave-active{-webkit-animation-name:antMoveRightOut;animation-name:antMoveRightOut;-webkit-animation-play-state:running;animation-play-state:running;pointer-events:none}.move-right-appear,.move-right-enter{opacity:0;-webkit-animation-timing-function:cubic-bezier(.08,.82,.17,1);animation-timing-function:cubic-bezier(.08,.82,.17,1)}.move-right-leave{-webkit-animation-timing-function:cubic-bezier(.6,.04,.98,.34);animation-timing-function:cubic-bezier(.6,.04,.98,.34)}@-webkit-keyframes antMoveDownIn{0%{transform:translateY(100%);transform-origin:0 0;opacity:0}to{transform:translateY(0);transform-origin:0 0;opacity:1}}@keyframes antMoveDownIn{0%{transform:translateY(100%);transform-origin:0 0;opacity:0}to{transform:translateY(0);transform-origin:0 0;opacity:1}}@-webkit-keyframes antMoveDownOut{0%{transform:translateY(0);transform-origin:0 0;opacity:1}to{transform:translateY(100%);transform-origin:0 0;opacity:0}}@keyframes antMoveDownOut{0%{transform:translateY(0);transform-origin:0 0;opacity:1}to{transform:translateY(100%);transform-origin:0 0;opacity:0}}@-webkit-keyframes antMoveLeftIn{0%{transform:translateX(-100%);transform-origin:0 0;opacity:0}to{transform:translateX(0);transform-origin:0 0;opacity:1}}@keyframes antMoveLeftIn{0%{transform:translateX(-100%);transform-origin:0 0;opacity:0}to{transform:translateX(0);transform-origin:0 0;opacity:1}}@-webkit-keyframes antMoveLeftOut{0%{transform:translateX(0);transform-origin:0 0;opacity:1}to{transform:translateX(-100%);transform-origin:0 0;opacity:0}}@keyframes antMoveLeftOut{0%{transform:translateX(0);transform-origin:0 0;opacity:1}to{transform:translateX(-100%);transform-origin:0 0;opacity:0}}@-webkit-keyframes antMoveRightIn{0%{transform:translateX(100%);transform-origin:0 0;opacity:0}to{transform:translateX(0);transform-origin:0 0;opacity:1}}@keyframes antMoveRightIn{0%{transform:translateX(100%);transform-origin:0 0;opacity:0}to{transform:translateX(0);transform-origin:0 0;opacity:1}}@-webkit-keyframes antMoveRightOut{0%{transform:translateX(0);transform-origin:0 0;opacity:1}to{transform:translateX(100%);transform-origin:0 0;opacity:0}}@keyframes antMoveRightOut{0%{transform:translateX(0);transform-origin:0 0;opacity:1}to{transform:translateX(100%);transform-origin:0 0;opacity:0}}@-webkit-keyframes antMoveUpIn{0%{transform:translateY(-100%);transform-origin:0 0;opacity:0}to{transform:translateY(0);transform-origin:0 0;opacity:1}}@keyframes antMoveUpIn{0%{transform:translateY(-100%);transform-origin:0 0;opacity:0}to{transform:translateY(0);transform-origin:0 0;opacity:1}}@-webkit-keyframes antMoveUpOut{0%{transform:translateY(0);transform-origin:0 0;opacity:1}to{transform:translateY(-100%);transform-origin:0 0;opacity:0}}@keyframes antMoveUpOut{0%{transform:translateY(0);transform-origin:0 0;opacity:1}to{transform:translateY(-100%);transform-origin:0 0;opacity:0}}@-webkit-keyframes loadingCircle{to{transform:rotate(1turn)}}@keyframes loadingCircle{to{transform:rotate(1turn)}}[ant-click-animating-without-extra-node=true],[ant-click-animating=true]{position:relative}html{--antd-wave-shadow-color:#004691}.ant-click-animating-node,[ant-click-animating-without-extra-node=true]:after{position:absolute;top:0;right:0;bottom:0;left:0;display:block;border-radius:inherit;box-shadow:0 0 0 0 #004691;box-shadow:0 0 0 0 var(--antd-wave-shadow-color);opacity:.2;-webkit-animation:fadeEffect 2s cubic-bezier(.08,.82,.17,1),waveEffect .4s cubic-bezier(.08,.82,.17,1);animation:fadeEffect 2s cubic-bezier(.08,.82,.17,1),waveEffect .4s cubic-bezier(.08,.82,.17,1);-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards;content:"";pointer-events:none}@-webkit-keyframes waveEffect{to{box-shadow:0 0 0 #004691;box-shadow:0 0 0 6px var(--antd-wave-shadow-color)}}@keyframes waveEffect{to{box-shadow:0 0 0 #004691;box-shadow:0 0 0 6px var(--antd-wave-shadow-color)}}@-webkit-keyframes fadeEffect{to{opacity:0}}@keyframes fadeEffect{to{opacity:0}}.slide-up-appear,.slide-up-enter,.slide-up-leave{-webkit-animation-duration:.2s;animation-duration:.2s;-webkit-animation-fill-mode:both;animation-fill-mode:both;-webkit-animation-play-state:paused;animation-play-state:paused}.slide-up-appear.slide-up-appear-active,.slide-up-enter.slide-up-enter-active{-webkit-animation-name:antSlideUpIn;animation-name:antSlideUpIn;-webkit-animation-play-state:running;animation-play-state:running}.slide-up-leave.slide-up-leave-active{-webkit-animation-name:antSlideUpOut;animation-name:antSlideUpOut;-webkit-animation-play-state:running;animation-play-state:running;pointer-events:none}.slide-up-appear,.slide-up-enter{opacity:0;-webkit-animation-timing-function:cubic-bezier(.23,1,.32,1);animation-timing-function:cubic-bezier(.23,1,.32,1)}.slide-up-leave{-webkit-animation-timing-function:cubic-bezier(.755,.05,.855,.06);animation-timing-function:cubic-bezier(.755,.05,.855,.06)}.slide-down-appear,.slide-down-enter,.slide-down-leave{-webkit-animation-duration:.2s;animation-duration:.2s;-webkit-animation-fill-mode:both;animation-fill-mode:both;-webkit-animation-play-state:paused;animation-play-state:paused}.slide-down-appear.slide-down-appear-active,.slide-down-enter.slide-down-enter-active{-webkit-animation-name:antSlideDownIn;animation-name:antSlideDownIn;-webkit-animation-play-state:running;animation-play-state:running}.slide-down-leave.slide-down-leave-active{-webkit-animation-name:antSlideDownOut;animation-name:antSlideDownOut;-webkit-animation-play-state:running;animation-play-state:running;pointer-events:none}.slide-down-appear,.slide-down-enter{opacity:0;-webkit-animation-timing-function:cubic-bezier(.23,1,.32,1);animation-timing-function:cubic-bezier(.23,1,.32,1)}.slide-down-leave{-webkit-animation-timing-function:cubic-bezier(.755,.05,.855,.06);animation-timing-function:cubic-bezier(.755,.05,.855,.06)}.slide-left-appear,.slide-left-enter,.slide-left-leave{-webkit-animation-duration:.2s;animation-duration:.2s;-webkit-animation-fill-mode:both;animation-fill-mode:both;-webkit-animation-play-state:paused;animation-play-state:paused}.slide-left-appear.slide-left-appear-active,.slide-left-enter.slide-left-enter-active{-webkit-animation-name:antSlideLeftIn;animation-name:antSlideLeftIn;-webkit-animation-play-state:running;animation-play-state:running}.slide-left-leave.slide-left-leave-active{-webkit-animation-name:antSlideLeftOut;animation-name:antSlideLeftOut;-webkit-animation-play-state:running;animation-play-state:running;pointer-events:none}.slide-left-appear,.slide-left-enter{opacity:0;-webkit-animation-timing-function:cubic-bezier(.23,1,.32,1);animation-timing-function:cubic-bezier(.23,1,.32,1)}.slide-left-leave{-webkit-animation-timing-function:cubic-bezier(.755,.05,.855,.06);animation-timing-function:cubic-bezier(.755,.05,.855,.06)}.slide-right-appear,.slide-right-enter,.slide-right-leave{-webkit-animation-duration:.2s;animation-duration:.2s;-webkit-animation-fill-mode:both;animation-fill-mode:both;-webkit-animation-play-state:paused;animation-play-state:paused}.slide-right-appear.slide-right-appear-active,.slide-right-enter.slide-right-enter-active{-webkit-animation-name:antSlideRightIn;animation-name:antSlideRightIn;-webkit-animation-play-state:running;animation-play-state:running}.slide-right-leave.slide-right-leave-active{-webkit-animation-name:antSlideRightOut;animation-name:antSlideRightOut;-webkit-animation-play-state:running;animation-play-state:running;pointer-events:none}.slide-right-appear,.slide-right-enter{opacity:0;-webkit-animation-timing-function:cubic-bezier(.23,1,.32,1);animation-timing-function:cubic-bezier(.23,1,.32,1)}.slide-right-leave{-webkit-animation-timing-function:cubic-bezier(.755,.05,.855,.06);animation-timing-function:cubic-bezier(.755,.05,.855,.06)}@-webkit-keyframes antSlideUpIn{0%{transform:scaleY(.8);transform-origin:0 0;opacity:0}to{transform:scaleY(1);transform-origin:0 0;opacity:1}}@keyframes antSlideUpIn{0%{transform:scaleY(.8);transform-origin:0 0;opacity:0}to{transform:scaleY(1);transform-origin:0 0;opacity:1}}@-webkit-keyframes antSlideUpOut{0%{transform:scaleY(1);transform-origin:0 0;opacity:1}to{transform:scaleY(.8);transform-origin:0 0;opacity:0}}@keyframes antSlideUpOut{0%{transform:scaleY(1);transform-origin:0 0;opacity:1}to{transform:scaleY(.8);transform-origin:0 0;opacity:0}}@-webkit-keyframes antSlideDownIn{0%{transform:scaleY(.8);transform-origin:100% 100%;opacity:0}to{transform:scaleY(1);transform-origin:100% 100%;opacity:1}}@keyframes antSlideDownIn{0%{transform:scaleY(.8);transform-origin:100% 100%;opacity:0}to{transform:scaleY(1);transform-origin:100% 100%;opacity:1}}@-webkit-keyframes antSlideDownOut{0%{transform:scaleY(1);transform-origin:100% 100%;opacity:1}to{transform:scaleY(.8);transform-origin:100% 100%;opacity:0}}@keyframes antSlideDownOut{0%{transform:scaleY(1);transform-origin:100% 100%;opacity:1}to{transform:scaleY(.8);transform-origin:100% 100%;opacity:0}}@-webkit-keyframes antSlideLeftIn{0%{transform:scaleX(.8);transform-origin:0 0;opacity:0}to{transform:scaleX(1);transform-origin:0 0;opacity:1}}@keyframes antSlideLeftIn{0%{transform:scaleX(.8);transform-origin:0 0;opacity:0}to{transform:scaleX(1);transform-origin:0 0;opacity:1}}@-webkit-keyframes antSlideLeftOut{0%{transform:scaleX(1);transform-origin:0 0;opacity:1}to{transform:scaleX(.8);transform-origin:0 0;opacity:0}}@keyframes antSlideLeftOut{0%{transform:scaleX(1);transform-origin:0 0;opacity:1}to{transform:scaleX(.8);transform-origin:0 0;opacity:0}}@-webkit-keyframes antSlideRightIn{0%{transform:scaleX(.8);transform-origin:100% 0;opacity:0}to{transform:scaleX(1);transform-origin:100% 0;opacity:1}}@keyframes antSlideRightIn{0%{transform:scaleX(.8);transform-origin:100% 0;opacity:0}to{transform:scaleX(1);transform-origin:100% 0;opacity:1}}@-webkit-keyframes antSlideRightOut{0%{transform:scaleX(1);transform-origin:100% 0;opacity:1}to{transform:scaleX(.8);transform-origin:100% 0;opacity:0}}@keyframes antSlideRightOut{0%{transform:scaleX(1);transform-origin:100% 0;opacity:1}to{transform:scaleX(.8);transform-origin:100% 0;opacity:0}}.swing-appear,.swing-enter{-webkit-animation-duration:.2s;animation-duration:.2s;-webkit-animation-fill-mode:both;animation-fill-mode:both;-webkit-animation-play-state:paused;animation-play-state:paused}.swing-appear.swing-appear-active,.swing-enter.swing-enter-active{-webkit-animation-name:antSwingIn;animation-name:antSwingIn;-webkit-animation-play-state:running;animation-play-state:running}@-webkit-keyframes antSwingIn{0%,to{transform:translateX(0)}20%{transform:translateX(-10px)}40%{transform:translateX(10px)}60%{transform:translateX(-5px)}80%{transform:translateX(5px)}}@keyframes antSwingIn{0%,to{transform:translateX(0)}20%{transform:translateX(-10px)}40%{transform:translateX(10px)}60%{transform:translateX(-5px)}80%{transform:translateX(5px)}}.zoom-appear,.zoom-enter,.zoom-leave{-webkit-animation-duration:.2s;animation-duration:.2s;-webkit-animation-fill-mode:both;animation-fill-mode:both;-webkit-animation-play-state:paused;animation-play-state:paused}.zoom-appear.zoom-appear-active,.zoom-enter.zoom-enter-active{-webkit-animation-name:antZoomIn;animation-name:antZoomIn;-webkit-animation-play-state:running;animation-play-state:running}.zoom-leave.zoom-leave-active{-webkit-animation-name:antZoomOut;animation-name:antZoomOut;-webkit-animation-play-state:running;animation-play-state:running;pointer-events:none}.zoom-appear,.zoom-enter{transform:scale(0);opacity:0;-webkit-animation-timing-function:cubic-bezier(.08,.82,.17,1);animation-timing-function:cubic-bezier(.08,.82,.17,1)}.zoom-leave{-webkit-animation-timing-function:cubic-bezier(.78,.14,.15,.86);animation-timing-function:cubic-bezier(.78,.14,.15,.86)}.zoom-big-appear,.zoom-big-enter,.zoom-big-leave{-webkit-animation-duration:.2s;animation-duration:.2s;-webkit-animation-fill-mode:both;animation-fill-mode:both;-webkit-animation-play-state:paused;animation-play-state:paused}.zoom-big-appear.zoom-big-appear-active,.zoom-big-enter.zoom-big-enter-active{-webkit-animation-name:antZoomBigIn;animation-name:antZoomBigIn;-webkit-animation-play-state:running;animation-play-state:running}.zoom-big-leave.zoom-big-leave-active{-webkit-animation-name:antZoomBigOut;animation-name:antZoomBigOut;-webkit-animation-play-state:running;animation-play-state:running;pointer-events:none}.zoom-big-appear,.zoom-big-enter{transform:scale(0);opacity:0;-webkit-animation-timing-function:cubic-bezier(.08,.82,.17,1);animation-timing-function:cubic-bezier(.08,.82,.17,1)}.zoom-big-leave{-webkit-animation-timing-function:cubic-bezier(.78,.14,.15,.86);animation-timing-function:cubic-bezier(.78,.14,.15,.86)}.zoom-big-fast-appear,.zoom-big-fast-enter,.zoom-big-fast-leave{-webkit-animation-duration:.1s;animation-duration:.1s;-webkit-animation-fill-mode:both;animation-fill-mode:both;-webkit-animation-play-state:paused;animation-play-state:paused}.zoom-big-fast-appear.zoom-big-fast-appear-active,.zoom-big-fast-enter.zoom-big-fast-enter-active{-webkit-animation-name:antZoomBigIn;animation-name:antZoomBigIn;-webkit-animation-play-state:running;animation-play-state:running}.zoom-big-fast-leave.zoom-big-fast-leave-active{-webkit-animation-name:antZoomBigOut;animation-name:antZoomBigOut;-webkit-animation-play-state:running;animation-play-state:running;pointer-events:none}.zoom-big-fast-appear,.zoom-big-fast-enter{transform:scale(0);opacity:0;-webkit-animation-timing-function:cubic-bezier(.08,.82,.17,1);animation-timing-function:cubic-bezier(.08,.82,.17,1)}.zoom-big-fast-leave{-webkit-animation-timing-function:cubic-bezier(.78,.14,.15,.86);animation-timing-function:cubic-bezier(.78,.14,.15,.86)}.zoom-up-appear,.zoom-up-enter,.zoom-up-leave{-webkit-animation-duration:.2s;animation-duration:.2s;-webkit-animation-fill-mode:both;animation-fill-mode:both;-webkit-animation-play-state:paused;animation-play-state:paused}.zoom-up-appear.zoom-up-appear-active,.zoom-up-enter.zoom-up-enter-active{-webkit-animation-name:antZoomUpIn;animation-name:antZoomUpIn;-webkit-animation-play-state:running;animation-play-state:running}.zoom-up-leave.zoom-up-leave-active{-webkit-animation-name:antZoomUpOut;animation-name:antZoomUpOut;-webkit-animation-play-state:running;animation-play-state:running;pointer-events:none}.zoom-up-appear,.zoom-up-enter{transform:scale(0);opacity:0;-webkit-animation-timing-function:cubic-bezier(.08,.82,.17,1);animation-timing-function:cubic-bezier(.08,.82,.17,1)}.zoom-up-leave{-webkit-animation-timing-function:cubic-bezier(.78,.14,.15,.86);animation-timing-function:cubic-bezier(.78,.14,.15,.86)}.zoom-down-appear,.zoom-down-enter,.zoom-down-leave{-webkit-animation-duration:.2s;animation-duration:.2s;-webkit-animation-fill-mode:both;animation-fill-mode:both;-webkit-animation-play-state:paused;animation-play-state:paused}.zoom-down-appear.zoom-down-appear-active,.zoom-down-enter.zoom-down-enter-active{-webkit-animation-name:antZoomDownIn;animation-name:antZoomDownIn;-webkit-animation-play-state:running;animation-play-state:running}.zoom-down-leave.zoom-down-leave-active{-webkit-animation-name:antZoomDownOut;animation-name:antZoomDownOut;-webkit-animation-play-state:running;animation-play-state:running;pointer-events:none}.zoom-down-appear,.zoom-down-enter{transform:scale(0);opacity:0;-webkit-animation-timing-function:cubic-bezier(.08,.82,.17,1);animation-timing-function:cubic-bezier(.08,.82,.17,1)}.zoom-down-leave{-webkit-animation-timing-function:cubic-bezier(.78,.14,.15,.86);animation-timing-function:cubic-bezier(.78,.14,.15,.86)}.zoom-left-appear,.zoom-left-enter,.zoom-left-leave{-webkit-animation-duration:.2s;animation-duration:.2s;-webkit-animation-fill-mode:both;animation-fill-mode:both;-webkit-animation-play-state:paused;animation-play-state:paused}.zoom-left-appear.zoom-left-appear-active,.zoom-left-enter.zoom-left-enter-active{-webkit-animation-name:antZoomLeftIn;animation-name:antZoomLeftIn;-webkit-animation-play-state:running;animation-play-state:running}.zoom-left-leave.zoom-left-leave-active{-webkit-animation-name:antZoomLeftOut;animation-name:antZoomLeftOut;-webkit-animation-play-state:running;animation-play-state:running;pointer-events:none}.zoom-left-appear,.zoom-left-enter{transform:scale(0);opacity:0;-webkit-animation-timing-function:cubic-bezier(.08,.82,.17,1);animation-timing-function:cubic-bezier(.08,.82,.17,1)}.zoom-left-leave{-webkit-animation-timing-function:cubic-bezier(.78,.14,.15,.86);animation-timing-function:cubic-bezier(.78,.14,.15,.86)}.zoom-right-appear,.zoom-right-enter,.zoom-right-leave{-webkit-animation-duration:.2s;animation-duration:.2s;-webkit-animation-fill-mode:both;animation-fill-mode:both;-webkit-animation-play-state:paused;animation-play-state:paused}.zoom-right-appear.zoom-right-appear-active,.zoom-right-enter.zoom-right-enter-active{-webkit-animation-name:antZoomRightIn;animation-name:antZoomRightIn;-webkit-animation-play-state:running;animation-play-state:running}.zoom-right-leave.zoom-right-leave-active{-webkit-animation-name:antZoomRightOut;animation-name:antZoomRightOut;-webkit-animation-play-state:running;animation-play-state:running;pointer-events:none}.zoom-right-appear,.zoom-right-enter{transform:scale(0);opacity:0;-webkit-animation-timing-function:cubic-bezier(.08,.82,.17,1);animation-timing-function:cubic-bezier(.08,.82,.17,1)}.zoom-right-leave{-webkit-animation-timing-function:cubic-bezier(.78,.14,.15,.86);animation-timing-function:cubic-bezier(.78,.14,.15,.86)}@-webkit-keyframes antZoomIn{0%{transform:scale(.2);opacity:0}to{transform:scale(1);opacity:1}}@keyframes antZoomIn{0%{transform:scale(.2);opacity:0}to{transform:scale(1);opacity:1}}@-webkit-keyframes antZoomOut{0%{transform:scale(1)}to{transform:scale(.2);opacity:0}}@keyframes antZoomOut{0%{transform:scale(1)}to{transform:scale(.2);opacity:0}}@-webkit-keyframes antZoomBigIn{0%{transform:scale(.8);opacity:0}to{transform:scale(1);opacity:1}}@keyframes antZoomBigIn{0%{transform:scale(.8);opacity:0}to{transform:scale(1);opacity:1}}@-webkit-keyframes antZoomBigOut{0%{transform:scale(1)}to{transform:scale(.8);opacity:0}}@keyframes antZoomBigOut{0%{transform:scale(1)}to{transform:scale(.8);opacity:0}}@-webkit-keyframes antZoomUpIn{0%{transform:scale(.8);transform-origin:50% 0;opacity:0}to{transform:scale(1);transform-origin:50% 0}}@keyframes antZoomUpIn{0%{transform:scale(.8);transform-origin:50% 0;opacity:0}to{transform:scale(1);transform-origin:50% 0}}@-webkit-keyframes antZoomUpOut{0%{transform:scale(1);transform-origin:50% 0}to{transform:scale(.8);transform-origin:50% 0;opacity:0}}@keyframes antZoomUpOut{0%{transform:scale(1);transform-origin:50% 0}to{transform:scale(.8);transform-origin:50% 0;opacity:0}}@-webkit-keyframes antZoomLeftIn{0%{transform:scale(.8);transform-origin:0 50%;opacity:0}to{transform:scale(1);transform-origin:0 50%}}@keyframes antZoomLeftIn{0%{transform:scale(.8);transform-origin:0 50%;opacity:0}to{transform:scale(1);transform-origin:0 50%}}@-webkit-keyframes antZoomLeftOut{0%{transform:scale(1);transform-origin:0 50%}to{transform:scale(.8);transform-origin:0 50%;opacity:0}}@keyframes antZoomLeftOut{0%{transform:scale(1);transform-origin:0 50%}to{transform:scale(.8);transform-origin:0 50%;opacity:0}}@-webkit-keyframes antZoomRightIn{0%{transform:scale(.8);transform-origin:100% 50%;opacity:0}to{transform:scale(1);transform-origin:100% 50%}}@keyframes antZoomRightIn{0%{transform:scale(.8);transform-origin:100% 50%;opacity:0}to{transform:scale(1);transform-origin:100% 50%}}@-webkit-keyframes antZoomRightOut{0%{transform:scale(1);transform-origin:100% 50%}to{transform:scale(.8);transform-origin:100% 50%;opacity:0}}@keyframes antZoomRightOut{0%{transform:scale(1);transform-origin:100% 50%}to{transform:scale(.8);transform-origin:100% 50%;opacity:0}}@-webkit-keyframes antZoomDownIn{0%{transform:scale(.8);transform-origin:50% 100%;opacity:0}to{transform:scale(1);transform-origin:50% 100%}}@keyframes antZoomDownIn{0%{transform:scale(.8);transform-origin:50% 100%;opacity:0}to{transform:scale(1);transform-origin:50% 100%}}@-webkit-keyframes antZoomDownOut{0%{transform:scale(1);transform-origin:50% 100%}to{transform:scale(.8);transform-origin:50% 100%;opacity:0}}@keyframes antZoomDownOut{0%{transform:scale(1);transform-origin:50% 100%}to{transform:scale(.8);transform-origin:50% 100%;opacity:0}}.ant-motion-collapse-legacy{overflow:hidden}.ant-motion-collapse,.ant-motion-collapse-legacy-active{transition:height .15s cubic-bezier(.645,.045,.355,1),opacity .15s cubic-bezier(.645,.045,.355,1)!important}.ant-motion-collapse{overflow:hidden}.ant-affix{position:fixed;z-index:10}.ant-alert{box-sizing:border-box;margin:0;color:rgba(0,0,0,.65);font-size:15px;font-variant:tabular-nums;line-height:1.5;list-style:none;font-feature-settings:"tnum";position:relative;padding:8px 15px 8px 37px;word-wrap:break-word;border-radius:4px}.ant-alert.ant-alert-no-icon{padding:8px 15px}.ant-alert.ant-alert-closable{padding-right:30px}.ant-alert-icon{position:absolute;top:11.75px;left:16px}.ant-alert-description{display:none;font-size:15px;line-height:22px}.ant-alert-success{background-color:#f6ffed;border:1px solid #b7eb8f}.ant-alert-success .ant-alert-icon{color:#52c41a}.ant-alert-info{background-color:#e6f7ff;border:1px solid #91d5ff}.ant-alert-info .ant-alert-icon{color:#1890ff}.ant-alert-warning{background-color:#fffbe6;border:1px solid #ffe58f}.ant-alert-warning .ant-alert-icon{color:#faad14}.ant-alert-error{background-color:#fff1f0;border:1px solid #ffa39e}.ant-alert-error .ant-alert-icon{color:#f5222d}.ant-alert-close-icon{position:absolute;top:8px;right:16px;padding:0;overflow:hidden;font-size:12px;line-height:22px;background-color:transparent;border:none;outline:none;cursor:pointer}.ant-alert-close-icon .anticon-close{color:rgba(0,0,0,.45);transition:color .3s}.ant-alert-close-icon .anticon-close:hover{color:rgba(0,0,0,.75)}.ant-alert-close-text{color:rgba(0,0,0,.45);transition:color .3s}.ant-alert-close-text:hover{color:rgba(0,0,0,.75)}.ant-alert-with-description{position:relative;padding:15px 15px 15px 64px;color:rgba(0,0,0,.65);line-height:1.5;border-radius:4px}.ant-alert-with-description.ant-alert-no-icon{padding:15px}.ant-alert-with-description .ant-alert-icon{position:absolute;top:16px;left:24px;font-size:24px}.ant-alert-with-description .ant-alert-close-icon{position:absolute;top:16px;right:16px;font-size:15px;cursor:pointer}.ant-alert-with-description .ant-alert-message{display:block;margin-bottom:4px;color:rgba(0,0,0,.85);font-size:17px}.ant-alert-message{color:rgba(0,0,0,.85)}.ant-alert-with-description .ant-alert-description{display:block}.ant-alert.ant-alert-closing{height:0!important;margin:0;padding-top:0;padding-bottom:0;transform-origin:50% 0;transition:all .3s cubic-bezier(.78,.14,.15,.86)}.ant-alert-slide-up-leave{-webkit-animation:antAlertSlideUpOut .3s cubic-bezier(.78,.14,.15,.86);animation:antAlertSlideUpOut .3s cubic-bezier(.78,.14,.15,.86);-webkit-animation-fill-mode:both;animation-fill-mode:both}.ant-alert-banner{margin-bottom:0;border:0;border-radius:0}@-webkit-keyframes antAlertSlideUpIn{0%{transform:scaleY(0);transform-origin:0 0;opacity:0}to{transform:scaleY(1);transform-origin:0 0;opacity:1}}@keyframes antAlertSlideUpIn{0%{transform:scaleY(0);transform-origin:0 0;opacity:0}to{transform:scaleY(1);transform-origin:0 0;opacity:1}}@-webkit-keyframes antAlertSlideUpOut{0%{transform:scaleY(1);transform-origin:0 0;opacity:1}to{transform:scaleY(0);transform-origin:0 0;opacity:0}}@keyframes antAlertSlideUpOut{0%{transform:scaleY(1);transform-origin:0 0;opacity:1}to{transform:scaleY(0);transform-origin:0 0;opacity:0}}.ant-anchor{box-sizing:border-box;margin:0;color:rgba(0,0,0,.65);font-size:15px;font-variant:tabular-nums;line-height:1.5;list-style:none;font-feature-settings:"tnum";position:relative;padding:0 0 0 2px}.ant-anchor-wrapper{margin-left:-4px;padding-left:4px;overflow:auto;background-color:#fff}.ant-anchor-ink{position:absolute;top:0;left:0;height:100%}.ant-anchor-ink:before{position:relative;display:block;width:2px;height:100%;margin:0 auto;background-color:#e8e8e8;content:" "}.ant-anchor-ink-ball{position:absolute;left:50%;display:none;width:8px;height:8px;background-color:#fff;border:2px solid #004691;border-radius:8px;transform:translateX(-50%);transition:top .3s ease-in-out}.ant-anchor-ink-ball.visible{display:inline-block}.ant-anchor.fixed .ant-anchor-ink .ant-anchor-ink-ball{display:none}.ant-anchor-link{padding:7px 0 7px 16px;line-height:1.143}.ant-anchor-link-title{position:relative;display:block;margin-bottom:6px;overflow:hidden;color:rgba(0,0,0,.65);white-space:nowrap;text-overflow:ellipsis;transition:all .3s}.ant-anchor-link-title:only-child{margin-bottom:0}.ant-anchor-link-active>.ant-anchor-link-title{color:#004691}.ant-anchor-link .ant-anchor-link{padding-top:5px;padding-bottom:5px}.ant-select-auto-complete{box-sizing:border-box;margin:0;padding:0;color:rgba(0,0,0,.65);font-size:15px;font-variant:tabular-nums;line-height:1.5;list-style:none;font-feature-settings:"tnum"}.ant-select-auto-complete.ant-select .ant-select-selection{border:0;box-shadow:none}.ant-select-auto-complete.ant-select .ant-select-selection__rendered{height:100%;margin-right:0;margin-left:0;line-height:32px}.ant-select-auto-complete.ant-select .ant-select-selection__placeholder{margin-right:12px;margin-left:12px}.ant-select-auto-complete.ant-select .ant-select-selection--single{height:auto}.ant-select-auto-complete.ant-select .ant-select-search--inline{position:static;float:left}.ant-select-auto-complete.ant-select-allow-clear .ant-select-selection:hover .ant-select-selection__rendered{margin-right:0!important}.ant-select-auto-complete.ant-select .ant-input{height:32px;line-height:1.5;background:transparent;border-width:1px}.ant-select-auto-complete.ant-select .ant-input:focus,.ant-select-auto-complete.ant-select .ant-input:hover{border-color:#195e9e;border-right-width:1px!important}.ant-select-auto-complete.ant-select .ant-input[disabled]{color:rgba(0,0,0,.25);background-color:#f5f5f5;cursor:not-allowed;opacity:1}.ant-select-auto-complete.ant-select .ant-input[disabled]:hover{border-color:#d9d9d9;border-right-width:1px!important}.ant-select-auto-complete.ant-select-lg .ant-select-selection__rendered{line-height:40px}.ant-select-auto-complete.ant-select-lg .ant-input{height:40px;padding-top:6px;padding-bottom:6px}.ant-select-auto-complete.ant-select-sm .ant-select-selection__rendered{line-height:24px}.ant-select-auto-complete.ant-select-sm .ant-input{height:24px;padding-top:1px;padding-bottom:1px}.ant-input-group>.ant-select-auto-complete .ant-select-search__field.ant-input-affix-wrapper{display:inline;float:none}.ant-avatar{box-sizing:border-box;margin:0;padding:0;color:rgba(0,0,0,.65);font-size:15px;font-variant:tabular-nums;line-height:1.5;list-style:none;font-feature-settings:"tnum";position:relative;display:inline-block;overflow:hidden;color:#fff;white-space:nowrap;text-align:center;vertical-align:middle;background:#ccc;width:32px;height:32px;line-height:32px;border-radius:50%}.ant-avatar-image{background:transparent}.ant-avatar-string{position:absolute;left:50%;transform-origin:0 center}.ant-avatar.ant-avatar-icon{font-size:18px}.ant-avatar-lg{width:40px;height:40px;line-height:40px;border-radius:50%}.ant-avatar-lg-string{position:absolute;left:50%;transform-origin:0 center}.ant-avatar-lg.ant-avatar-icon{font-size:24px}.ant-avatar-sm{width:24px;height:24px;line-height:24px;border-radius:50%}.ant-avatar-sm-string{position:absolute;left:50%;transform-origin:0 center}.ant-avatar-sm.ant-avatar-icon{font-size:14px}.ant-avatar-square{border-radius:4px}.ant-avatar>img{display:block;width:100%;height:100%;-o-object-fit:cover;object-fit:cover}.ant-back-top{box-sizing:border-box;margin:0;padding:0;color:rgba(0,0,0,.65);font-size:15px;font-variant:tabular-nums;line-height:1.5;list-style:none;font-feature-settings:"tnum";position:fixed;right:100px;bottom:50px;z-index:10;width:40px;height:40px;cursor:pointer}.ant-back-top-content{width:40px;height:40px;overflow:hidden;color:#fff;text-align:center;background-color:rgba(0,0,0,.45);border-radius:20px;transition:all .3s cubic-bezier(.645,.045,.355,1)}.ant-back-top-content:hover{background-color:rgba(0,0,0,.65);transition:all .3s cubic-bezier(.645,.045,.355,1)}.ant-back-top-icon{width:14px;height:16px;margin:12px auto;background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACQAAAAoCAYAAACWwljjAAAABGdBTUEAALGPC/xhBQAAAbtJREFUWAntmMtKw0AUhhMvS5cuxILgQlRUpIggIoKIIoigG1eC+AA+jo+i6FIXBfeuXIgoeKVeitVWJX5HWhhDksnUpp3FDPyZk3Nm5nycmZKkXhAEOXSA3lG7muTeRzmfy6HneUvIhnYkQK+Q9NhAA0Opg0vBEhjBKHiyb8iGMyQMOYuK41BcBSypAL+MYXSKjtFAW7EAGEO3qN4uMQbbAkXiSfRQJ1H6a+yhlkKRcAoVFYiweYNjtCVQJJpBz2GCiPt7fBOZQpFgDpUikse5HgnkM4Fi4QX0Fpc5wf9EbLqpUCy4jMoJSXWhFwbMNgWKhVbRhy5jirhs9fy/oFhgHVVTJEs7RLZ8sSEoJm6iz7SZDMbJ+/OKERQTttCXQRLToRUmrKWCYuA2+jbN0MB4OQobYShfdTCgn/sL1K36M7TLrN3n+758aPy2rrpR6+/od5E8tf/A1uLS9aId5T7J3CNYihkQ4D9PiMdMC7mp4rjB9kjFjZp8BlnVHJBuO1yFXIV0FdDF3RlyFdJVQBdv5AxVdIsq8apiZ2PyYO1EVykesGfZEESsCkweyR8MUW+V8uJ1gkYipmpdP1pm2aJVPEGzAAAAAElFTkSuQmCC) 100%/100% no-repeat}@media screen and (max-width:768px){.ant-back-top{right:60px}}@media screen and (max-width:480px){.ant-back-top{right:20px}}.ant-badge{box-sizing:border-box;margin:0;padding:0;color:rgba(0,0,0,.65);font-size:15px;font-variant:tabular-nums;line-height:1.5;list-style:none;font-feature-settings:"tnum";position:relative;display:inline-block;color:unset;line-height:1}.ant-badge-count{min-width:20px;height:20px;padding:0 6px;color:#fff;font-weight:400;font-size:12px;line-height:20px;white-space:nowrap;text-align:center;background:#f5222d;border-radius:10px;box-shadow:0 0 0 1px #fff}.ant-badge-count a,.ant-badge-count a:hover{color:#fff}.ant-badge-multiple-words{padding:0 8px}.ant-badge-dot{width:6px;height:6px;background:#f5222d;border-radius:100%;box-shadow:0 0 0 1px #fff}.ant-badge-count,.ant-badge-dot,.ant-badge .ant-scroll-number-custom-component{position:absolute;top:0;right:0;z-index:1;transform:translate(50%,-50%);transform-origin:100% 0}.ant-badge-status{line-height:inherit;vertical-align:baseline}.ant-badge-status-dot{position:relative;top:-1px;display:inline-block;width:6px;height:6px;vertical-align:middle;border-radius:50%}.ant-badge-status-success{background-color:#52c41a}.ant-badge-status-processing{position:relative;background-color:#1890ff}.ant-badge-status-processing:after{position:absolute;top:0;left:0;width:100%;height:100%;border:1px solid #1890ff;border-radius:50%;-webkit-animation:antStatusProcessing 1.2s ease-in-out infinite;animation:antStatusProcessing 1.2s ease-in-out infinite;content:""}.ant-badge-status-default{background-color:#d9d9d9}.ant-badge-status-error{background-color:#f5222d}.ant-badge-status-warning{background-color:#faad14}.ant-badge-status-magenta,.ant-badge-status-pink{background:#eb2f96}.ant-badge-status-red{background:#f5222d}.ant-badge-status-volcano{background:#fa541c}.ant-badge-status-orange{background:#fa8c16}.ant-badge-status-yellow{background:#fadb14}.ant-badge-status-gold{background:#faad14}.ant-badge-status-cyan{background:#13c2c2}.ant-badge-status-lime{background:#a0d911}.ant-badge-status-green{background:#52c41a}.ant-badge-status-blue{background:#1890ff}.ant-badge-status-geekblue{background:#2f54eb}.ant-badge-status-purple{background:#722ed1}.ant-badge-status-text{margin-left:8px;color:rgba(0,0,0,.65);font-size:15px}.ant-badge-zoom-appear,.ant-badge-zoom-enter{-webkit-animation:antZoomBadgeIn .3s cubic-bezier(.12,.4,.29,1.46);animation:antZoomBadgeIn .3s cubic-bezier(.12,.4,.29,1.46);-webkit-animation-fill-mode:both;animation-fill-mode:both}.ant-badge-zoom-leave{-webkit-animation:antZoomBadgeOut .3s cubic-bezier(.71,-.46,.88,.6);animation:antZoomBadgeOut .3s cubic-bezier(.71,-.46,.88,.6);-webkit-animation-fill-mode:both;animation-fill-mode:both}.ant-badge-not-a-wrapper:not(.ant-badge-status){vertical-align:middle}.ant-badge-not-a-wrapper .ant-scroll-number{position:relative;top:auto;display:block}.ant-badge-not-a-wrapper .ant-badge-count{transform:none}@-webkit-keyframes antStatusProcessing{0%{transform:scale(.8);opacity:.5}to{transform:scale(2.4);opacity:0}}@keyframes antStatusProcessing{0%{transform:scale(.8);opacity:.5}to{transform:scale(2.4);opacity:0}}.ant-scroll-number{overflow:hidden}.ant-scroll-number-only{display:inline-block;height:20px;transition:all .3s cubic-bezier(.645,.045,.355,1)}.ant-scroll-number-only>p.ant-scroll-number-only-unit{height:20px;margin:0}.ant-scroll-number-symbol{vertical-align:top}@-webkit-keyframes antZoomBadgeIn{0%{transform:scale(0) translate(50%,-50%);opacity:0}to{transform:scale(1) translate(50%,-50%)}}@keyframes antZoomBadgeIn{0%{transform:scale(0) translate(50%,-50%);opacity:0}to{transform:scale(1) translate(50%,-50%)}}@-webkit-keyframes antZoomBadgeOut{0%{transform:scale(1) translate(50%,-50%)}to{transform:scale(0) translate(50%,-50%);opacity:0}}@keyframes antZoomBadgeOut{0%{transform:scale(1) translate(50%,-50%)}to{transform:scale(0) translate(50%,-50%);opacity:0}}.ant-breadcrumb{box-sizing:border-box;margin:0;padding:0;color:rgba(0,0,0,.65);font-variant:tabular-nums;line-height:1.5;list-style:none;font-feature-settings:"tnum";color:rgba(0,0,0,.45);font-size:15px}.ant-breadcrumb .anticon{font-size:15px}.ant-breadcrumb a{color:rgba(0,0,0,.45);transition:color .3s}.ant-breadcrumb a:hover{color:#195e9e}.ant-breadcrumb>span:last-child,.ant-breadcrumb>span:last-child a{color:rgba(0,0,0,.65)}.ant-breadcrumb>span:last-child .ant-breadcrumb-separator{display:none}.ant-breadcrumb-separator{margin:0 8px;color:rgba(0,0,0,.45)}.ant-breadcrumb-link>.anticon+span,.ant-breadcrumb-overlay-link>.anticon{margin-left:4px}.ant-btn{line-height:1.499;position:relative;display:inline-block;font-weight:400;white-space:nowrap;text-align:center;background-image:none;box-shadow:0 2px 0 rgba(0,0,0,.015);cursor:pointer;transition:all .3s cubic-bezier(.645,.045,.355,1);-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;touch-action:manipulation;height:32px;padding:0 15px;font-size:15px;border-radius:4px;color:rgba(0,0,0,.65);background-color:#fff;border:1px solid #d9d9d9}.ant-btn>.anticon{line-height:1}.ant-btn,.ant-btn:active,.ant-btn:focus{outline:0}.ant-btn:not([disabled]):hover{text-decoration:none}.ant-btn:not([disabled]):active{outline:0;box-shadow:none}.ant-btn.disabled,.ant-btn[disabled]{cursor:not-allowed}.ant-btn.disabled>*,.ant-btn[disabled]>*{pointer-events:none}.ant-btn-lg{height:40px;padding:0 15px;font-size:17px;border-radius:4px}.ant-btn-sm{height:24px;padding:0 7px;font-size:15px;border-radius:4px}.ant-btn>a:only-child{color:currentColor}.ant-btn>a:only-child:after{position:absolute;top:0;right:0;bottom:0;left:0;background:transparent;content:""}.ant-btn:focus,.ant-btn:hover{color:#195e9e;background-color:#fff;border-color:#195e9e}.ant-btn:focus>a:only-child,.ant-btn:hover>a:only-child{color:currentColor}.ant-btn:focus>a:only-child:after,.ant-btn:hover>a:only-child:after{position:absolute;top:0;right:0;bottom:0;left:0;background:transparent;content:""}.ant-btn.active,.ant-btn:active{color:#00306b;background-color:#fff;border-color:#00306b}.ant-btn.active>a:only-child,.ant-btn:active>a:only-child{color:currentColor}.ant-btn.active>a:only-child:after,.ant-btn:active>a:only-child:after{position:absolute;top:0;right:0;bottom:0;left:0;background:transparent;content:""}.ant-btn-disabled,.ant-btn-disabled.active,.ant-btn-disabled:active,.ant-btn-disabled:focus,.ant-btn-disabled:hover,.ant-btn.disabled,.ant-btn.disabled.active,.ant-btn.disabled:active,.ant-btn.disabled:focus,.ant-btn.disabled:hover,.ant-btn[disabled],.ant-btn[disabled].active,.ant-btn[disabled]:active,.ant-btn[disabled]:focus,.ant-btn[disabled]:hover{color:rgba(0,0,0,.25);background-color:#f5f5f5;border-color:#d9d9d9;text-shadow:none;box-shadow:none}.ant-btn-disabled.active>a:only-child,.ant-btn-disabled:active>a:only-child,.ant-btn-disabled:focus>a:only-child,.ant-btn-disabled:hover>a:only-child,.ant-btn-disabled>a:only-child,.ant-btn.disabled.active>a:only-child,.ant-btn.disabled:active>a:only-child,.ant-btn.disabled:focus>a:only-child,.ant-btn.disabled:hover>a:only-child,.ant-btn.disabled>a:only-child,.ant-btn[disabled].active>a:only-child,.ant-btn[disabled]:active>a:only-child,.ant-btn[disabled]:focus>a:only-child,.ant-btn[disabled]:hover>a:only-child,.ant-btn[disabled]>a:only-child{color:currentColor}.ant-btn-disabled.active>a:only-child:after,.ant-btn-disabled:active>a:only-child:after,.ant-btn-disabled:focus>a:only-child:after,.ant-btn-disabled:hover>a:only-child:after,.ant-btn-disabled>a:only-child:after,.ant-btn.disabled.active>a:only-child:after,.ant-btn.disabled:active>a:only-child:after,.ant-btn.disabled:focus>a:only-child:after,.ant-btn.disabled:hover>a:only-child:after,.ant-btn.disabled>a:only-child:after,.ant-btn[disabled].active>a:only-child:after,.ant-btn[disabled]:active>a:only-child:after,.ant-btn[disabled]:focus>a:only-child:after,.ant-btn[disabled]:hover>a:only-child:after,.ant-btn[disabled]>a:only-child:after{position:absolute;top:0;right:0;bottom:0;left:0;background:transparent;content:""}.ant-btn.active,.ant-btn:active,.ant-btn:focus,.ant-btn:hover{text-decoration:none;background:#fff}.ant-btn>i,.ant-btn>span{display:inline-block;transition:margin-left .3s cubic-bezier(.645,.045,.355,1);pointer-events:none}.ant-btn-primary{color:#fff;background-color:#004691;border-color:#004691;text-shadow:0 -1px 0 rgba(0,0,0,.12);box-shadow:0 2px 0 rgba(0,0,0,.045)}.ant-btn-primary>a:only-child{color:currentColor}.ant-btn-primary>a:only-child:after{position:absolute;top:0;right:0;bottom:0;left:0;background:transparent;content:""}.ant-btn-primary:focus,.ant-btn-primary:hover{color:#fff;background-color:#195e9e;border-color:#195e9e}.ant-btn-primary:focus>a:only-child,.ant-btn-primary:hover>a:only-child{color:currentColor}.ant-btn-primary:focus>a:only-child:after,.ant-btn-primary:hover>a:only-child:after{position:absolute;top:0;right:0;bottom:0;left:0;background:transparent;content:""}.ant-btn-primary.active,.ant-btn-primary:active{color:#fff;background-color:#00306b;border-color:#00306b}.ant-btn-primary.active>a:only-child,.ant-btn-primary:active>a:only-child{color:currentColor}.ant-btn-primary.active>a:only-child:after,.ant-btn-primary:active>a:only-child:after{position:absolute;top:0;right:0;bottom:0;left:0;background:transparent;content:""}.ant-btn-primary-disabled,.ant-btn-primary-disabled.active,.ant-btn-primary-disabled:active,.ant-btn-primary-disabled:focus,.ant-btn-primary-disabled:hover,.ant-btn-primary.disabled,.ant-btn-primary.disabled.active,.ant-btn-primary.disabled:active,.ant-btn-primary.disabled:focus,.ant-btn-primary.disabled:hover,.ant-btn-primary[disabled],.ant-btn-primary[disabled].active,.ant-btn-primary[disabled]:active,.ant-btn-primary[disabled]:focus,.ant-btn-primary[disabled]:hover{color:rgba(0,0,0,.25);background-color:#f5f5f5;border-color:#d9d9d9;text-shadow:none;box-shadow:none}.ant-btn-primary-disabled.active>a:only-child,.ant-btn-primary-disabled:active>a:only-child,.ant-btn-primary-disabled:focus>a:only-child,.ant-btn-primary-disabled:hover>a:only-child,.ant-btn-primary-disabled>a:only-child,.ant-btn-primary.disabled.active>a:only-child,.ant-btn-primary.disabled:active>a:only-child,.ant-btn-primary.disabled:focus>a:only-child,.ant-btn-primary.disabled:hover>a:only-child,.ant-btn-primary.disabled>a:only-child,.ant-btn-primary[disabled].active>a:only-child,.ant-btn-primary[disabled]:active>a:only-child,.ant-btn-primary[disabled]:focus>a:only-child,.ant-btn-primary[disabled]:hover>a:only-child,.ant-btn-primary[disabled]>a:only-child{color:currentColor}.ant-btn-primary-disabled.active>a:only-child:after,.ant-btn-primary-disabled:active>a:only-child:after,.ant-btn-primary-disabled:focus>a:only-child:after,.ant-btn-primary-disabled:hover>a:only-child:after,.ant-btn-primary-disabled>a:only-child:after,.ant-btn-primary.disabled.active>a:only-child:after,.ant-btn-primary.disabled:active>a:only-child:after,.ant-btn-primary.disabled:focus>a:only-child:after,.ant-btn-primary.disabled:hover>a:only-child:after,.ant-btn-primary.disabled>a:only-child:after,.ant-btn-primary[disabled].active>a:only-child:after,.ant-btn-primary[disabled]:active>a:only-child:after,.ant-btn-primary[disabled]:focus>a:only-child:after,.ant-btn-primary[disabled]:hover>a:only-child:after,.ant-btn-primary[disabled]>a:only-child:after{position:absolute;top:0;right:0;bottom:0;left:0;background:transparent;content:""}.ant-btn-group .ant-btn-primary:not(:first-child):not(:last-child){border-right-color:#195e9e;border-left-color:#195e9e}.ant-btn-group .ant-btn-primary:not(:first-child):not(:last-child):disabled{border-color:#d9d9d9}.ant-btn-group .ant-btn-primary:first-child:not(:last-child){border-right-color:#195e9e}.ant-btn-group .ant-btn-primary:first-child:not(:last-child)[disabled]{border-right-color:#d9d9d9}.ant-btn-group .ant-btn-primary+.ant-btn-primary,.ant-btn-group .ant-btn-primary:last-child:not(:first-child){border-left-color:#195e9e}.ant-btn-group .ant-btn-primary+.ant-btn-primary[disabled],.ant-btn-group .ant-btn-primary:last-child:not(:first-child)[disabled]{border-left-color:#d9d9d9}.ant-btn-ghost{color:rgba(0,0,0,.65);background-color:transparent;border-color:#d9d9d9}.ant-btn-ghost>a:only-child{color:currentColor}.ant-btn-ghost>a:only-child:after{position:absolute;top:0;right:0;bottom:0;left:0;background:transparent;content:""}.ant-btn-ghost:focus,.ant-btn-ghost:hover{color:#195e9e;background-color:transparent;border-color:#195e9e}.ant-btn-ghost:focus>a:only-child,.ant-btn-ghost:hover>a:only-child{color:currentColor}.ant-btn-ghost:focus>a:only-child:after,.ant-btn-ghost:hover>a:only-child:after{position:absolute;top:0;right:0;bottom:0;left:0;background:transparent;content:""}.ant-btn-ghost.active,.ant-btn-ghost:active{color:#00306b;background-color:transparent;border-color:#00306b}.ant-btn-ghost.active>a:only-child,.ant-btn-ghost:active>a:only-child{color:currentColor}.ant-btn-ghost.active>a:only-child:after,.ant-btn-ghost:active>a:only-child:after{position:absolute;top:0;right:0;bottom:0;left:0;background:transparent;content:""}.ant-btn-ghost-disabled,.ant-btn-ghost-disabled.active,.ant-btn-ghost-disabled:active,.ant-btn-ghost-disabled:focus,.ant-btn-ghost-disabled:hover,.ant-btn-ghost.disabled,.ant-btn-ghost.disabled.active,.ant-btn-ghost.disabled:active,.ant-btn-ghost.disabled:focus,.ant-btn-ghost.disabled:hover,.ant-btn-ghost[disabled],.ant-btn-ghost[disabled].active,.ant-btn-ghost[disabled]:active,.ant-btn-ghost[disabled]:focus,.ant-btn-ghost[disabled]:hover{color:rgba(0,0,0,.25);background-color:#f5f5f5;border-color:#d9d9d9;text-shadow:none;box-shadow:none}.ant-btn-ghost-disabled.active>a:only-child,.ant-btn-ghost-disabled:active>a:only-child,.ant-btn-ghost-disabled:focus>a:only-child,.ant-btn-ghost-disabled:hover>a:only-child,.ant-btn-ghost-disabled>a:only-child,.ant-btn-ghost.disabled.active>a:only-child,.ant-btn-ghost.disabled:active>a:only-child,.ant-btn-ghost.disabled:focus>a:only-child,.ant-btn-ghost.disabled:hover>a:only-child,.ant-btn-ghost.disabled>a:only-child,.ant-btn-ghost[disabled].active>a:only-child,.ant-btn-ghost[disabled]:active>a:only-child,.ant-btn-ghost[disabled]:focus>a:only-child,.ant-btn-ghost[disabled]:hover>a:only-child,.ant-btn-ghost[disabled]>a:only-child{color:currentColor}.ant-btn-ghost-disabled.active>a:only-child:after,.ant-btn-ghost-disabled:active>a:only-child:after,.ant-btn-ghost-disabled:focus>a:only-child:after,.ant-btn-ghost-disabled:hover>a:only-child:after,.ant-btn-ghost-disabled>a:only-child:after,.ant-btn-ghost.disabled.active>a:only-child:after,.ant-btn-ghost.disabled:active>a:only-child:after,.ant-btn-ghost.disabled:focus>a:only-child:after,.ant-btn-ghost.disabled:hover>a:only-child:after,.ant-btn-ghost.disabled>a:only-child:after,.ant-btn-ghost[disabled].active>a:only-child:after,.ant-btn-ghost[disabled]:active>a:only-child:after,.ant-btn-ghost[disabled]:focus>a:only-child:after,.ant-btn-ghost[disabled]:hover>a:only-child:after,.ant-btn-ghost[disabled]>a:only-child:after{position:absolute;top:0;right:0;bottom:0;left:0;background:transparent;content:""}.ant-btn-dashed{color:rgba(0,0,0,.65);background-color:#fff;border-color:#d9d9d9;border-style:dashed}.ant-btn-dashed>a:only-child{color:currentColor}.ant-btn-dashed>a:only-child:after{position:absolute;top:0;right:0;bottom:0;left:0;background:transparent;content:""}.ant-btn-dashed:focus,.ant-btn-dashed:hover{color:#195e9e;background-color:#fff;border-color:#195e9e}.ant-btn-dashed:focus>a:only-child,.ant-btn-dashed:hover>a:only-child{color:currentColor}.ant-btn-dashed:focus>a:only-child:after,.ant-btn-dashed:hover>a:only-child:after{position:absolute;top:0;right:0;bottom:0;left:0;background:transparent;content:""}.ant-btn-dashed.active,.ant-btn-dashed:active{color:#00306b;background-color:#fff;border-color:#00306b}.ant-btn-dashed.active>a:only-child,.ant-btn-dashed:active>a:only-child{color:currentColor}.ant-btn-dashed.active>a:only-child:after,.ant-btn-dashed:active>a:only-child:after{position:absolute;top:0;right:0;bottom:0;left:0;background:transparent;content:""}.ant-btn-dashed-disabled,.ant-btn-dashed-disabled.active,.ant-btn-dashed-disabled:active,.ant-btn-dashed-disabled:focus,.ant-btn-dashed-disabled:hover,.ant-btn-dashed.disabled,.ant-btn-dashed.disabled.active,.ant-btn-dashed.disabled:active,.ant-btn-dashed.disabled:focus,.ant-btn-dashed.disabled:hover,.ant-btn-dashed[disabled],.ant-btn-dashed[disabled].active,.ant-btn-dashed[disabled]:active,.ant-btn-dashed[disabled]:focus,.ant-btn-dashed[disabled]:hover{color:rgba(0,0,0,.25);background-color:#f5f5f5;border-color:#d9d9d9;text-shadow:none;box-shadow:none}.ant-btn-dashed-disabled.active>a:only-child,.ant-btn-dashed-disabled:active>a:only-child,.ant-btn-dashed-disabled:focus>a:only-child,.ant-btn-dashed-disabled:hover>a:only-child,.ant-btn-dashed-disabled>a:only-child,.ant-btn-dashed.disabled.active>a:only-child,.ant-btn-dashed.disabled:active>a:only-child,.ant-btn-dashed.disabled:focus>a:only-child,.ant-btn-dashed.disabled:hover>a:only-child,.ant-btn-dashed.disabled>a:only-child,.ant-btn-dashed[disabled].active>a:only-child,.ant-btn-dashed[disabled]:active>a:only-child,.ant-btn-dashed[disabled]:focus>a:only-child,.ant-btn-dashed[disabled]:hover>a:only-child,.ant-btn-dashed[disabled]>a:only-child{color:currentColor}.ant-btn-dashed-disabled.active>a:only-child:after,.ant-btn-dashed-disabled:active>a:only-child:after,.ant-btn-dashed-disabled:focus>a:only-child:after,.ant-btn-dashed-disabled:hover>a:only-child:after,.ant-btn-dashed-disabled>a:only-child:after,.ant-btn-dashed.disabled.active>a:only-child:after,.ant-btn-dashed.disabled:active>a:only-child:after,.ant-btn-dashed.disabled:focus>a:only-child:after,.ant-btn-dashed.disabled:hover>a:only-child:after,.ant-btn-dashed.disabled>a:only-child:after,.ant-btn-dashed[disabled].active>a:only-child:after,.ant-btn-dashed[disabled]:active>a:only-child:after,.ant-btn-dashed[disabled]:focus>a:only-child:after,.ant-btn-dashed[disabled]:hover>a:only-child:after,.ant-btn-dashed[disabled]>a:only-child:after{position:absolute;top:0;right:0;bottom:0;left:0;background:transparent;content:""}.ant-btn-danger{color:#fff;background-color:#ff4d4f;border-color:#ff4d4f;text-shadow:0 -1px 0 rgba(0,0,0,.12);box-shadow:0 2px 0 rgba(0,0,0,.045)}.ant-btn-danger>a:only-child{color:currentColor}.ant-btn-danger>a:only-child:after{position:absolute;top:0;right:0;bottom:0;left:0;background:transparent;content:""}.ant-btn-danger:focus,.ant-btn-danger:hover{color:#fff;background-color:#ff7875;border-color:#ff7875}.ant-btn-danger:focus>a:only-child,.ant-btn-danger:hover>a:only-child{color:currentColor}.ant-btn-danger:focus>a:only-child:after,.ant-btn-danger:hover>a:only-child:after{position:absolute;top:0;right:0;bottom:0;left:0;background:transparent;content:""}.ant-btn-danger.active,.ant-btn-danger:active{color:#fff;background-color:#d9363e;border-color:#d9363e}.ant-btn-danger.active>a:only-child,.ant-btn-danger:active>a:only-child{color:currentColor}.ant-btn-danger.active>a:only-child:after,.ant-btn-danger:active>a:only-child:after{position:absolute;top:0;right:0;bottom:0;left:0;background:transparent;content:""}.ant-btn-danger-disabled,.ant-btn-danger-disabled.active,.ant-btn-danger-disabled:active,.ant-btn-danger-disabled:focus,.ant-btn-danger-disabled:hover,.ant-btn-danger.disabled,.ant-btn-danger.disabled.active,.ant-btn-danger.disabled:active,.ant-btn-danger.disabled:focus,.ant-btn-danger.disabled:hover,.ant-btn-danger[disabled],.ant-btn-danger[disabled].active,.ant-btn-danger[disabled]:active,.ant-btn-danger[disabled]:focus,.ant-btn-danger[disabled]:hover{color:rgba(0,0,0,.25);background-color:#f5f5f5;border-color:#d9d9d9;text-shadow:none;box-shadow:none}.ant-btn-danger-disabled.active>a:only-child,.ant-btn-danger-disabled:active>a:only-child,.ant-btn-danger-disabled:focus>a:only-child,.ant-btn-danger-disabled:hover>a:only-child,.ant-btn-danger-disabled>a:only-child,.ant-btn-danger.disabled.active>a:only-child,.ant-btn-danger.disabled:active>a:only-child,.ant-btn-danger.disabled:focus>a:only-child,.ant-btn-danger.disabled:hover>a:only-child,.ant-btn-danger.disabled>a:only-child,.ant-btn-danger[disabled].active>a:only-child,.ant-btn-danger[disabled]:active>a:only-child,.ant-btn-danger[disabled]:focus>a:only-child,.ant-btn-danger[disabled]:hover>a:only-child,.ant-btn-danger[disabled]>a:only-child{color:currentColor}.ant-btn-danger-disabled.active>a:only-child:after,.ant-btn-danger-disabled:active>a:only-child:after,.ant-btn-danger-disabled:focus>a:only-child:after,.ant-btn-danger-disabled:hover>a:only-child:after,.ant-btn-danger-disabled>a:only-child:after,.ant-btn-danger.disabled.active>a:only-child:after,.ant-btn-danger.disabled:active>a:only-child:after,.ant-btn-danger.disabled:focus>a:only-child:after,.ant-btn-danger.disabled:hover>a:only-child:after,.ant-btn-danger.disabled>a:only-child:after,.ant-btn-danger[disabled].active>a:only-child:after,.ant-btn-danger[disabled]:active>a:only-child:after,.ant-btn-danger[disabled]:focus>a:only-child:after,.ant-btn-danger[disabled]:hover>a:only-child:after,.ant-btn-danger[disabled]>a:only-child:after{position:absolute;top:0;right:0;bottom:0;left:0;background:transparent;content:""}.ant-btn-link{color:#004691;background-color:transparent;border-color:transparent;box-shadow:none}.ant-btn-link>a:only-child{color:currentColor}.ant-btn-link>a:only-child:after{position:absolute;top:0;right:0;bottom:0;left:0;background:transparent;content:""}.ant-btn-link:focus,.ant-btn-link:hover{color:#195e9e;background-color:transparent;border-color:#195e9e}.ant-btn-link:focus>a:only-child,.ant-btn-link:hover>a:only-child{color:currentColor}.ant-btn-link:focus>a:only-child:after,.ant-btn-link:hover>a:only-child:after{position:absolute;top:0;right:0;bottom:0;left:0;background:transparent;content:""}.ant-btn-link.active,.ant-btn-link:active{color:#00306b;background-color:transparent;border-color:#00306b}.ant-btn-link.active>a:only-child,.ant-btn-link:active>a:only-child{color:currentColor}.ant-btn-link.active>a:only-child:after,.ant-btn-link:active>a:only-child:after{position:absolute;top:0;right:0;bottom:0;left:0;background:transparent;content:""}.ant-btn-link-disabled,.ant-btn-link-disabled.active,.ant-btn-link-disabled:active,.ant-btn-link-disabled:focus,.ant-btn-link-disabled:hover,.ant-btn-link.disabled,.ant-btn-link.disabled.active,.ant-btn-link.disabled:active,.ant-btn-link.disabled:focus,.ant-btn-link.disabled:hover,.ant-btn-link[disabled],.ant-btn-link[disabled].active,.ant-btn-link[disabled]:active,.ant-btn-link[disabled]:focus,.ant-btn-link[disabled]:hover{background-color:#f5f5f5;border-color:#d9d9d9}.ant-btn-link:active,.ant-btn-link:focus,.ant-btn-link:hover{border-color:transparent}.ant-btn-link-disabled,.ant-btn-link-disabled.active,.ant-btn-link-disabled:active,.ant-btn-link-disabled:focus,.ant-btn-link-disabled:hover,.ant-btn-link.disabled,.ant-btn-link.disabled.active,.ant-btn-link.disabled:active,.ant-btn-link.disabled:focus,.ant-btn-link.disabled:hover,.ant-btn-link[disabled],.ant-btn-link[disabled].active,.ant-btn-link[disabled]:active,.ant-btn-link[disabled]:focus,.ant-btn-link[disabled]:hover{color:rgba(0,0,0,.25);background-color:transparent;border-color:transparent;text-shadow:none;box-shadow:none}.ant-btn-link-disabled.active>a:only-child,.ant-btn-link-disabled:active>a:only-child,.ant-btn-link-disabled:focus>a:only-child,.ant-btn-link-disabled:hover>a:only-child,.ant-btn-link-disabled>a:only-child,.ant-btn-link.disabled.active>a:only-child,.ant-btn-link.disabled:active>a:only-child,.ant-btn-link.disabled:focus>a:only-child,.ant-btn-link.disabled:hover>a:only-child,.ant-btn-link.disabled>a:only-child,.ant-btn-link[disabled].active>a:only-child,.ant-btn-link[disabled]:active>a:only-child,.ant-btn-link[disabled]:focus>a:only-child,.ant-btn-link[disabled]:hover>a:only-child,.ant-btn-link[disabled]>a:only-child{color:currentColor}.ant-btn-link-disabled.active>a:only-child:after,.ant-btn-link-disabled:active>a:only-child:after,.ant-btn-link-disabled:focus>a:only-child:after,.ant-btn-link-disabled:hover>a:only-child:after,.ant-btn-link-disabled>a:only-child:after,.ant-btn-link.disabled.active>a:only-child:after,.ant-btn-link.disabled:active>a:only-child:after,.ant-btn-link.disabled:focus>a:only-child:after,.ant-btn-link.disabled:hover>a:only-child:after,.ant-btn-link.disabled>a:only-child:after,.ant-btn-link[disabled].active>a:only-child:after,.ant-btn-link[disabled]:active>a:only-child:after,.ant-btn-link[disabled]:focus>a:only-child:after,.ant-btn-link[disabled]:hover>a:only-child:after,.ant-btn-link[disabled]>a:only-child:after{position:absolute;top:0;right:0;bottom:0;left:0;background:transparent;content:""}.ant-btn-icon-only{width:32px;height:32px;padding:0;font-size:17px;border-radius:4px}.ant-btn-icon-only.ant-btn-lg{width:40px;height:40px;padding:0;font-size:19px;border-radius:4px}.ant-btn-icon-only.ant-btn-sm{width:24px;height:24px;padding:0;font-size:15px;border-radius:4px}.ant-btn-icon-only>i{vertical-align:middle}.ant-btn-round{height:32px;padding:0 16px;font-size:15px;border-radius:32px}.ant-btn-round.ant-btn-lg{height:40px;padding:0 20px;font-size:17px;border-radius:40px}.ant-btn-round.ant-btn-sm{height:24px;padding:0 12px;font-size:15px;border-radius:24px}.ant-btn-round.ant-btn-icon-only{width:auto}.ant-btn-circle,.ant-btn-circle-outline{min-width:32px;padding-right:0;padding-left:0;text-align:center;border-radius:50%}.ant-btn-circle-outline.ant-btn-lg,.ant-btn-circle.ant-btn-lg{min-width:40px;border-radius:50%}.ant-btn-circle-outline.ant-btn-sm,.ant-btn-circle.ant-btn-sm{min-width:24px;border-radius:50%}.ant-btn:before{position:absolute;top:-1px;right:-1px;bottom:-1px;left:-1px;z-index:1;display:none;background:#fff;border-radius:inherit;opacity:.35;transition:opacity .2s;content:"";pointer-events:none}.ant-btn .anticon{transition:margin-left .3s cubic-bezier(.645,.045,.355,1)}.ant-btn .anticon.anticon-minus>svg,.ant-btn .anticon.anticon-plus>svg{shape-rendering:optimizeSpeed}.ant-btn.ant-btn-loading{position:relative}.ant-btn.ant-btn-loading:not([disabled]){pointer-events:none}.ant-btn.ant-btn-loading:before{display:block}.ant-btn.ant-btn-loading:not(.ant-btn-circle):not(.ant-btn-circle-outline):not(.ant-btn-icon-only){padding-left:29px}.ant-btn.ant-btn-loading:not(.ant-btn-circle):not(.ant-btn-circle-outline):not(.ant-btn-icon-only) .anticon:not(:last-child){margin-left:-14px}.ant-btn-sm.ant-btn-loading:not(.ant-btn-circle):not(.ant-btn-circle-outline):not(.ant-btn-icon-only){padding-left:24px}.ant-btn-sm.ant-btn-loading:not(.ant-btn-circle):not(.ant-btn-circle-outline):not(.ant-btn-icon-only) .anticon{margin-left:-17px}.ant-btn-group{display:inline-flex}.ant-btn-group,.ant-btn-group>.ant-btn,.ant-btn-group>span>.ant-btn{position:relative}.ant-btn-group>.ant-btn.active,.ant-btn-group>.ant-btn:active,.ant-btn-group>.ant-btn:focus,.ant-btn-group>.ant-btn:hover,.ant-btn-group>span>.ant-btn.active,.ant-btn-group>span>.ant-btn:active,.ant-btn-group>span>.ant-btn:focus,.ant-btn-group>span>.ant-btn:hover{z-index:2}.ant-btn-group>.ant-btn:disabled,.ant-btn-group>span>.ant-btn:disabled{z-index:0}.ant-btn-group>.ant-btn-icon-only{font-size:15px}.ant-btn-group-lg>.ant-btn,.ant-btn-group-lg>span>.ant-btn{height:40px;padding:0 15px;font-size:17px;border-radius:0;line-height:38px}.ant-btn-group-lg>.ant-btn.ant-btn-icon-only{width:40px;height:40px;padding-right:0;padding-left:0}.ant-btn-group-sm>.ant-btn,.ant-btn-group-sm>span>.ant-btn{height:24px;padding:0 7px;font-size:15px;border-radius:0;line-height:22px}.ant-btn-group-sm>.ant-btn>.anticon,.ant-btn-group-sm>span>.ant-btn>.anticon{font-size:15px}.ant-btn-group-sm>.ant-btn.ant-btn-icon-only{width:24px;height:24px;padding-right:0;padding-left:0}.ant-btn+.ant-btn-group,.ant-btn-group+.ant-btn,.ant-btn-group+.ant-btn-group,.ant-btn-group .ant-btn+.ant-btn,.ant-btn-group .ant-btn+span,.ant-btn-group>span+span,.ant-btn-group span+.ant-btn{margin-left:-1px}.ant-btn-group .ant-btn-primary+.ant-btn:not(.ant-btn-primary):not([disabled]){border-left-color:transparent}.ant-btn-group .ant-btn{border-radius:0}.ant-btn-group>.ant-btn:first-child,.ant-btn-group>span:first-child>.ant-btn{margin-left:0}.ant-btn-group>.ant-btn:only-child,.ant-btn-group>span:only-child>.ant-btn{border-radius:4px}.ant-btn-group>.ant-btn:first-child:not(:last-child),.ant-btn-group>span:first-child:not(:last-child)>.ant-btn{border-top-left-radius:4px;border-bottom-left-radius:4px}.ant-btn-group>.ant-btn:last-child:not(:first-child),.ant-btn-group>span:last-child:not(:first-child)>.ant-btn{border-top-right-radius:4px;border-bottom-right-radius:4px}.ant-btn-group-sm>.ant-btn:only-child,.ant-btn-group-sm>span:only-child>.ant-btn{border-radius:4px}.ant-btn-group-sm>.ant-btn:first-child:not(:last-child),.ant-btn-group-sm>span:first-child:not(:last-child)>.ant-btn{border-top-left-radius:4px;border-bottom-left-radius:4px}.ant-btn-group-sm>.ant-btn:last-child:not(:first-child),.ant-btn-group-sm>span:last-child:not(:first-child)>.ant-btn{border-top-right-radius:4px;border-bottom-right-radius:4px}.ant-btn-group>.ant-btn-group{float:left}.ant-btn-group>.ant-btn-group:not(:first-child):not(:last-child)>.ant-btn{border-radius:0}.ant-btn-group>.ant-btn-group:first-child:not(:last-child)>.ant-btn:last-child{padding-right:8px;border-top-right-radius:0;border-bottom-right-radius:0}.ant-btn-group>.ant-btn-group:last-child:not(:first-child)>.ant-btn:first-child{padding-left:8px;border-top-left-radius:0;border-bottom-left-radius:0}.ant-btn:active>span,.ant-btn:focus>span{position:relative}.ant-btn>.anticon+span,.ant-btn>span+.anticon{margin-left:8px}.ant-btn-background-ghost{color:#fff;background:transparent!important;border-color:#fff}.ant-btn-background-ghost.ant-btn-primary{color:#004691;background-color:transparent;border-color:#004691;text-shadow:none}.ant-btn-background-ghost.ant-btn-primary>a:only-child{color:currentColor}.ant-btn-background-ghost.ant-btn-primary>a:only-child:after{position:absolute;top:0;right:0;bottom:0;left:0;background:transparent;content:""}.ant-btn-background-ghost.ant-btn-primary:focus,.ant-btn-background-ghost.ant-btn-primary:hover{color:#195e9e;background-color:transparent;border-color:#195e9e}.ant-btn-background-ghost.ant-btn-primary:focus>a:only-child,.ant-btn-background-ghost.ant-btn-primary:hover>a:only-child{color:currentColor}.ant-btn-background-ghost.ant-btn-primary:focus>a:only-child:after,.ant-btn-background-ghost.ant-btn-primary:hover>a:only-child:after{position:absolute;top:0;right:0;bottom:0;left:0;background:transparent;content:""}.ant-btn-background-ghost.ant-btn-primary.active,.ant-btn-background-ghost.ant-btn-primary:active{color:#00306b;background-color:transparent;border-color:#00306b}.ant-btn-background-ghost.ant-btn-primary.active>a:only-child,.ant-btn-background-ghost.ant-btn-primary:active>a:only-child{color:currentColor}.ant-btn-background-ghost.ant-btn-primary.active>a:only-child:after,.ant-btn-background-ghost.ant-btn-primary:active>a:only-child:after{position:absolute;top:0;right:0;bottom:0;left:0;background:transparent;content:""}.ant-btn-background-ghost.ant-btn-primary-disabled,.ant-btn-background-ghost.ant-btn-primary-disabled.active,.ant-btn-background-ghost.ant-btn-primary-disabled:active,.ant-btn-background-ghost.ant-btn-primary-disabled:focus,.ant-btn-background-ghost.ant-btn-primary-disabled:hover,.ant-btn-background-ghost.ant-btn-primary.disabled,.ant-btn-background-ghost.ant-btn-primary.disabled.active,.ant-btn-background-ghost.ant-btn-primary.disabled:active,.ant-btn-background-ghost.ant-btn-primary.disabled:focus,.ant-btn-background-ghost.ant-btn-primary.disabled:hover,.ant-btn-background-ghost.ant-btn-primary[disabled],.ant-btn-background-ghost.ant-btn-primary[disabled].active,.ant-btn-background-ghost.ant-btn-primary[disabled]:active,.ant-btn-background-ghost.ant-btn-primary[disabled]:focus,.ant-btn-background-ghost.ant-btn-primary[disabled]:hover{color:rgba(0,0,0,.25);background-color:#f5f5f5;border-color:#d9d9d9;text-shadow:none;box-shadow:none}.ant-btn-background-ghost.ant-btn-primary-disabled.active>a:only-child,.ant-btn-background-ghost.ant-btn-primary-disabled:active>a:only-child,.ant-btn-background-ghost.ant-btn-primary-disabled:focus>a:only-child,.ant-btn-background-ghost.ant-btn-primary-disabled:hover>a:only-child,.ant-btn-background-ghost.ant-btn-primary-disabled>a:only-child,.ant-btn-background-ghost.ant-btn-primary.disabled.active>a:only-child,.ant-btn-background-ghost.ant-btn-primary.disabled:active>a:only-child,.ant-btn-background-ghost.ant-btn-primary.disabled:focus>a:only-child,.ant-btn-background-ghost.ant-btn-primary.disabled:hover>a:only-child,.ant-btn-background-ghost.ant-btn-primary.disabled>a:only-child,.ant-btn-background-ghost.ant-btn-primary[disabled].active>a:only-child,.ant-btn-background-ghost.ant-btn-primary[disabled]:active>a:only-child,.ant-btn-background-ghost.ant-btn-primary[disabled]:focus>a:only-child,.ant-btn-background-ghost.ant-btn-primary[disabled]:hover>a:only-child,.ant-btn-background-ghost.ant-btn-primary[disabled]>a:only-child{color:currentColor}.ant-btn-background-ghost.ant-btn-primary-disabled.active>a:only-child:after,.ant-btn-background-ghost.ant-btn-primary-disabled:active>a:only-child:after,.ant-btn-background-ghost.ant-btn-primary-disabled:focus>a:only-child:after,.ant-btn-background-ghost.ant-btn-primary-disabled:hover>a:only-child:after,.ant-btn-background-ghost.ant-btn-primary-disabled>a:only-child:after,.ant-btn-background-ghost.ant-btn-primary.disabled.active>a:only-child:after,.ant-btn-background-ghost.ant-btn-primary.disabled:active>a:only-child:after,.ant-btn-background-ghost.ant-btn-primary.disabled:focus>a:only-child:after,.ant-btn-background-ghost.ant-btn-primary.disabled:hover>a:only-child:after,.ant-btn-background-ghost.ant-btn-primary.disabled>a:only-child:after,.ant-btn-background-ghost.ant-btn-primary[disabled].active>a:only-child:after,.ant-btn-background-ghost.ant-btn-primary[disabled]:active>a:only-child:after,.ant-btn-background-ghost.ant-btn-primary[disabled]:focus>a:only-child:after,.ant-btn-background-ghost.ant-btn-primary[disabled]:hover>a:only-child:after,.ant-btn-background-ghost.ant-btn-primary[disabled]>a:only-child:after{position:absolute;top:0;right:0;bottom:0;left:0;background:transparent;content:""}.ant-btn-background-ghost.ant-btn-danger{color:#ff4d4f;background-color:transparent;border-color:#ff4d4f;text-shadow:none}.ant-btn-background-ghost.ant-btn-danger>a:only-child{color:currentColor}.ant-btn-background-ghost.ant-btn-danger>a:only-child:after{position:absolute;top:0;right:0;bottom:0;left:0;background:transparent;content:""}.ant-btn-background-ghost.ant-btn-danger:focus,.ant-btn-background-ghost.ant-btn-danger:hover{color:#ff7875;background-color:transparent;border-color:#ff7875}.ant-btn-background-ghost.ant-btn-danger:focus>a:only-child,.ant-btn-background-ghost.ant-btn-danger:hover>a:only-child{color:currentColor}.ant-btn-background-ghost.ant-btn-danger:focus>a:only-child:after,.ant-btn-background-ghost.ant-btn-danger:hover>a:only-child:after{position:absolute;top:0;right:0;bottom:0;left:0;background:transparent;content:""}.ant-btn-background-ghost.ant-btn-danger.active,.ant-btn-background-ghost.ant-btn-danger:active{color:#d9363e;background-color:transparent;border-color:#d9363e}.ant-btn-background-ghost.ant-btn-danger.active>a:only-child,.ant-btn-background-ghost.ant-btn-danger:active>a:only-child{color:currentColor}.ant-btn-background-ghost.ant-btn-danger.active>a:only-child:after,.ant-btn-background-ghost.ant-btn-danger:active>a:only-child:after{position:absolute;top:0;right:0;bottom:0;left:0;background:transparent;content:""}.ant-btn-background-ghost.ant-btn-danger-disabled,.ant-btn-background-ghost.ant-btn-danger-disabled.active,.ant-btn-background-ghost.ant-btn-danger-disabled:active,.ant-btn-background-ghost.ant-btn-danger-disabled:focus,.ant-btn-background-ghost.ant-btn-danger-disabled:hover,.ant-btn-background-ghost.ant-btn-danger.disabled,.ant-btn-background-ghost.ant-btn-danger.disabled.active,.ant-btn-background-ghost.ant-btn-danger.disabled:active,.ant-btn-background-ghost.ant-btn-danger.disabled:focus,.ant-btn-background-ghost.ant-btn-danger.disabled:hover,.ant-btn-background-ghost.ant-btn-danger[disabled],.ant-btn-background-ghost.ant-btn-danger[disabled].active,.ant-btn-background-ghost.ant-btn-danger[disabled]:active,.ant-btn-background-ghost.ant-btn-danger[disabled]:focus,.ant-btn-background-ghost.ant-btn-danger[disabled]:hover{color:rgba(0,0,0,.25);background-color:#f5f5f5;border-color:#d9d9d9;text-shadow:none;box-shadow:none}.ant-btn-background-ghost.ant-btn-danger-disabled.active>a:only-child,.ant-btn-background-ghost.ant-btn-danger-disabled:active>a:only-child,.ant-btn-background-ghost.ant-btn-danger-disabled:focus>a:only-child,.ant-btn-background-ghost.ant-btn-danger-disabled:hover>a:only-child,.ant-btn-background-ghost.ant-btn-danger-disabled>a:only-child,.ant-btn-background-ghost.ant-btn-danger.disabled.active>a:only-child,.ant-btn-background-ghost.ant-btn-danger.disabled:active>a:only-child,.ant-btn-background-ghost.ant-btn-danger.disabled:focus>a:only-child,.ant-btn-background-ghost.ant-btn-danger.disabled:hover>a:only-child,.ant-btn-background-ghost.ant-btn-danger.disabled>a:only-child,.ant-btn-background-ghost.ant-btn-danger[disabled].active>a:only-child,.ant-btn-background-ghost.ant-btn-danger[disabled]:active>a:only-child,.ant-btn-background-ghost.ant-btn-danger[disabled]:focus>a:only-child,.ant-btn-background-ghost.ant-btn-danger[disabled]:hover>a:only-child,.ant-btn-background-ghost.ant-btn-danger[disabled]>a:only-child{color:currentColor}.ant-btn-background-ghost.ant-btn-danger-disabled.active>a:only-child:after,.ant-btn-background-ghost.ant-btn-danger-disabled:active>a:only-child:after,.ant-btn-background-ghost.ant-btn-danger-disabled:focus>a:only-child:after,.ant-btn-background-ghost.ant-btn-danger-disabled:hover>a:only-child:after,.ant-btn-background-ghost.ant-btn-danger-disabled>a:only-child:after,.ant-btn-background-ghost.ant-btn-danger.disabled.active>a:only-child:after,.ant-btn-background-ghost.ant-btn-danger.disabled:active>a:only-child:after,.ant-btn-background-ghost.ant-btn-danger.disabled:focus>a:only-child:after,.ant-btn-background-ghost.ant-btn-danger.disabled:hover>a:only-child:after,.ant-btn-background-ghost.ant-btn-danger.disabled>a:only-child:after,.ant-btn-background-ghost.ant-btn-danger[disabled].active>a:only-child:after,.ant-btn-background-ghost.ant-btn-danger[disabled]:active>a:only-child:after,.ant-btn-background-ghost.ant-btn-danger[disabled]:focus>a:only-child:after,.ant-btn-background-ghost.ant-btn-danger[disabled]:hover>a:only-child:after,.ant-btn-background-ghost.ant-btn-danger[disabled]>a:only-child:after{position:absolute;top:0;right:0;bottom:0;left:0;background:transparent;content:""}.ant-btn-background-ghost.ant-btn-link{color:#004691;background-color:transparent;border-color:transparent;text-shadow:none;color:#fff}.ant-btn-background-ghost.ant-btn-link>a:only-child{color:currentColor}.ant-btn-background-ghost.ant-btn-link>a:only-child:after{position:absolute;top:0;right:0;bottom:0;left:0;background:transparent;content:""}.ant-btn-background-ghost.ant-btn-link:focus,.ant-btn-background-ghost.ant-btn-link:hover{color:#195e9e;background-color:transparent;border-color:transparent}.ant-btn-background-ghost.ant-btn-link:focus>a:only-child,.ant-btn-background-ghost.ant-btn-link:hover>a:only-child{color:currentColor}.ant-btn-background-ghost.ant-btn-link:focus>a:only-child:after,.ant-btn-background-ghost.ant-btn-link:hover>a:only-child:after{position:absolute;top:0;right:0;bottom:0;left:0;background:transparent;content:""}.ant-btn-background-ghost.ant-btn-link.active,.ant-btn-background-ghost.ant-btn-link:active{color:#00306b;background-color:transparent;border-color:transparent}.ant-btn-background-ghost.ant-btn-link.active>a:only-child,.ant-btn-background-ghost.ant-btn-link:active>a:only-child{color:currentColor}.ant-btn-background-ghost.ant-btn-link.active>a:only-child:after,.ant-btn-background-ghost.ant-btn-link:active>a:only-child:after{position:absolute;top:0;right:0;bottom:0;left:0;background:transparent;content:""}.ant-btn-background-ghost.ant-btn-link-disabled,.ant-btn-background-ghost.ant-btn-link-disabled.active,.ant-btn-background-ghost.ant-btn-link-disabled:active,.ant-btn-background-ghost.ant-btn-link-disabled:focus,.ant-btn-background-ghost.ant-btn-link-disabled:hover,.ant-btn-background-ghost.ant-btn-link.disabled,.ant-btn-background-ghost.ant-btn-link.disabled.active,.ant-btn-background-ghost.ant-btn-link.disabled:active,.ant-btn-background-ghost.ant-btn-link.disabled:focus,.ant-btn-background-ghost.ant-btn-link.disabled:hover,.ant-btn-background-ghost.ant-btn-link[disabled],.ant-btn-background-ghost.ant-btn-link[disabled].active,.ant-btn-background-ghost.ant-btn-link[disabled]:active,.ant-btn-background-ghost.ant-btn-link[disabled]:focus,.ant-btn-background-ghost.ant-btn-link[disabled]:hover{color:rgba(0,0,0,.25);background-color:#f5f5f5;border-color:#d9d9d9;text-shadow:none;box-shadow:none}.ant-btn-background-ghost.ant-btn-link-disabled.active>a:only-child,.ant-btn-background-ghost.ant-btn-link-disabled:active>a:only-child,.ant-btn-background-ghost.ant-btn-link-disabled:focus>a:only-child,.ant-btn-background-ghost.ant-btn-link-disabled:hover>a:only-child,.ant-btn-background-ghost.ant-btn-link-disabled>a:only-child,.ant-btn-background-ghost.ant-btn-link.disabled.active>a:only-child,.ant-btn-background-ghost.ant-btn-link.disabled:active>a:only-child,.ant-btn-background-ghost.ant-btn-link.disabled:focus>a:only-child,.ant-btn-background-ghost.ant-btn-link.disabled:hover>a:only-child,.ant-btn-background-ghost.ant-btn-link.disabled>a:only-child,.ant-btn-background-ghost.ant-btn-link[disabled].active>a:only-child,.ant-btn-background-ghost.ant-btn-link[disabled]:active>a:only-child,.ant-btn-background-ghost.ant-btn-link[disabled]:focus>a:only-child,.ant-btn-background-ghost.ant-btn-link[disabled]:hover>a:only-child,.ant-btn-background-ghost.ant-btn-link[disabled]>a:only-child{color:currentColor}.ant-btn-background-ghost.ant-btn-link-disabled.active>a:only-child:after,.ant-btn-background-ghost.ant-btn-link-disabled:active>a:only-child:after,.ant-btn-background-ghost.ant-btn-link-disabled:focus>a:only-child:after,.ant-btn-background-ghost.ant-btn-link-disabled:hover>a:only-child:after,.ant-btn-background-ghost.ant-btn-link-disabled>a:only-child:after,.ant-btn-background-ghost.ant-btn-link.disabled.active>a:only-child:after,.ant-btn-background-ghost.ant-btn-link.disabled:active>a:only-child:after,.ant-btn-background-ghost.ant-btn-link.disabled:focus>a:only-child:after,.ant-btn-background-ghost.ant-btn-link.disabled:hover>a:only-child:after,.ant-btn-background-ghost.ant-btn-link.disabled>a:only-child:after,.ant-btn-background-ghost.ant-btn-link[disabled].active>a:only-child:after,.ant-btn-background-ghost.ant-btn-link[disabled]:active>a:only-child:after,.ant-btn-background-ghost.ant-btn-link[disabled]:focus>a:only-child:after,.ant-btn-background-ghost.ant-btn-link[disabled]:hover>a:only-child:after,.ant-btn-background-ghost.ant-btn-link[disabled]>a:only-child:after{position:absolute;top:0;right:0;bottom:0;left:0;background:transparent;content:""}.ant-btn-two-chinese-chars:first-letter{letter-spacing:.34em}.ant-btn-two-chinese-chars>:not(.anticon){margin-right:-.34em;letter-spacing:.34em}.ant-btn-block{width:100%}.ant-btn:empty{vertical-align:top}a.ant-btn{padding-top:.1px;line-height:30px}a.ant-btn-lg{line-height:38px}a.ant-btn-sm{line-height:22px}.ant-fullcalendar{box-sizing:border-box;margin:0;padding:0;color:rgba(0,0,0,.65);font-size:15px;font-variant:tabular-nums;line-height:1.5;list-style:none;font-feature-settings:"tnum";border-top:1px solid #d9d9d9;outline:none}.ant-select.ant-fullcalendar-year-select{min-width:90px}.ant-select.ant-fullcalendar-year-select.ant-select-sm{min-width:70px}.ant-select.ant-fullcalendar-month-select{min-width:80px;margin-left:8px}.ant-select.ant-fullcalendar-month-select.ant-select-sm{min-width:70px}.ant-fullcalendar-header{padding:11px 16px 11px 0;text-align:right}.ant-fullcalendar-header .ant-select-dropdown{text-align:left}.ant-fullcalendar-header .ant-radio-group{margin-left:8px;text-align:left}.ant-fullcalendar-header label.ant-radio-button{height:22px;padding:0 10px;line-height:20px}.ant-fullcalendar-date-panel{position:relative;outline:none}.ant-fullcalendar-calendar-body{padding:8px 12px}.ant-fullcalendar table{width:100%;max-width:100%;height:256px;background-color:transparent;border-collapse:collapse}.ant-fullcalendar table,.ant-fullcalendar td,.ant-fullcalendar th{border:0}.ant-fullcalendar td{position:relative}.ant-fullcalendar-calendar-table{margin-bottom:0;border-spacing:0}.ant-fullcalendar-column-header{width:33px;padding:0;line-height:18px;text-align:center}.ant-fullcalendar-column-header .ant-fullcalendar-column-header-inner{display:block;font-weight:400}.ant-fullcalendar-week-number-header .ant-fullcalendar-column-header-inner{display:none}.ant-fullcalendar-date,.ant-fullcalendar-month{text-align:center;transition:all .3s}.ant-fullcalendar-value{display:block;width:24px;height:24px;margin:0 auto;padding:0;color:rgba(0,0,0,.65);line-height:24px;background:transparent;border-radius:2px;transition:all .3s}.ant-fullcalendar-value:hover{background:#bccad1;cursor:pointer}.ant-fullcalendar-value:active{color:#fff;background:#004691}.ant-fullcalendar-month-panel-cell .ant-fullcalendar-value{width:48px}.ant-fullcalendar-month-panel-current-cell .ant-fullcalendar-value,.ant-fullcalendar-today .ant-fullcalendar-value{box-shadow:inset 0 0 0 1px #004691}.ant-fullcalendar-month-panel-selected-cell .ant-fullcalendar-value,.ant-fullcalendar-selected-day .ant-fullcalendar-value{color:#fff;background:#004691}.ant-fullcalendar-disabled-cell-first-of-row .ant-fullcalendar-value{border-top-left-radius:4px;border-bottom-left-radius:4px}.ant-fullcalendar-disabled-cell-last-of-row .ant-fullcalendar-value{border-top-right-radius:4px;border-bottom-right-radius:4px}.ant-fullcalendar-last-month-cell .ant-fullcalendar-value,.ant-fullcalendar-next-month-btn-day .ant-fullcalendar-value{color:rgba(0,0,0,.25)}.ant-fullcalendar-month-panel-table{width:100%;table-layout:fixed;border-collapse:separate}.ant-fullcalendar-content{position:absolute;bottom:-9px;left:0;width:100%}.ant-fullcalendar-fullscreen{border-top:0}.ant-fullcalendar-fullscreen .ant-fullcalendar-table{table-layout:fixed}.ant-fullcalendar-fullscreen .ant-fullcalendar-header .ant-radio-group{margin-left:16px}.ant-fullcalendar-fullscreen .ant-fullcalendar-header label.ant-radio-button{height:32px;line-height:30px}.ant-fullcalendar-fullscreen .ant-fullcalendar-date,.ant-fullcalendar-fullscreen .ant-fullcalendar-month{display:block;height:116px;margin:0 4px;padding:4px 8px;color:rgba(0,0,0,.65);text-align:left;border-top:2px solid #e8e8e8;transition:background .3s}.ant-fullcalendar-fullscreen .ant-fullcalendar-date:hover,.ant-fullcalendar-fullscreen .ant-fullcalendar-month:hover{background:#bccad1;cursor:pointer}.ant-fullcalendar-fullscreen .ant-fullcalendar-date:active,.ant-fullcalendar-fullscreen .ant-fullcalendar-month:active{background:#7ea9c4}.ant-fullcalendar-fullscreen .ant-fullcalendar-column-header{padding-right:12px;padding-bottom:5px;text-align:right}.ant-fullcalendar-fullscreen .ant-fullcalendar-value{width:auto;text-align:right;background:transparent}.ant-fullcalendar-fullscreen .ant-fullcalendar-today .ant-fullcalendar-value{color:rgba(0,0,0,.65)}.ant-fullcalendar-fullscreen .ant-fullcalendar-month-panel-current-cell .ant-fullcalendar-month,.ant-fullcalendar-fullscreen .ant-fullcalendar-today .ant-fullcalendar-date{background:transparent;border-top-color:#004691}.ant-fullcalendar-fullscreen .ant-fullcalendar-month-panel-current-cell .ant-fullcalendar-value,.ant-fullcalendar-fullscreen .ant-fullcalendar-today .ant-fullcalendar-value{box-shadow:none}.ant-fullcalendar-fullscreen .ant-fullcalendar-month-panel-selected-cell .ant-fullcalendar-month,.ant-fullcalendar-fullscreen .ant-fullcalendar-selected-day .ant-fullcalendar-date{background:#bccad1}.ant-fullcalendar-fullscreen .ant-fullcalendar-month-panel-selected-cell .ant-fullcalendar-value,.ant-fullcalendar-fullscreen .ant-fullcalendar-selected-day .ant-fullcalendar-value{color:#004691}.ant-fullcalendar-fullscreen .ant-fullcalendar-last-month-cell .ant-fullcalendar-date,.ant-fullcalendar-fullscreen .ant-fullcalendar-next-month-btn-day .ant-fullcalendar-date{color:rgba(0,0,0,.25)}.ant-fullcalendar-fullscreen .ant-fullcalendar-content{position:static;width:auto;height:88px;overflow-y:auto}.ant-fullcalendar-disabled-cell .ant-fullcalendar-date,.ant-fullcalendar-disabled-cell .ant-fullcalendar-date:hover{cursor:not-allowed}.ant-fullcalendar-disabled-cell:not(.ant-fullcalendar-today) .ant-fullcalendar-date,.ant-fullcalendar-disabled-cell:not(.ant-fullcalendar-today) .ant-fullcalendar-date:hover{background:transparent}.ant-fullcalendar-disabled-cell .ant-fullcalendar-value{width:auto;color:rgba(0,0,0,.25);border-radius:0;cursor:not-allowed}.ant-card{box-sizing:border-box;margin:0;padding:0;color:rgba(0,0,0,.65);font-size:15px;font-variant:tabular-nums;line-height:1.5;list-style:none;font-feature-settings:"tnum";position:relative;background:#fff;border-radius:2px;transition:all .3s}.ant-card-hoverable{cursor:pointer}.ant-card-hoverable:hover{border-color:rgba(0,0,0,.09);box-shadow:0 2px 8px rgba(0,0,0,.09)}.ant-card-bordered{border:1px solid #e8e8e8}.ant-card-head{min-height:48px;margin-bottom:-1px;padding:0 24px;color:rgba(0,0,0,.85);font-weight:500;font-size:17px;background:transparent;border-bottom:1px solid #e8e8e8;border-radius:2px 2px 0 0;zoom:1}.ant-card-head:after,.ant-card-head:before{display:table;content:""}.ant-card-head:after{clear:both}.ant-card-head-wrapper{display:flex;align-items:center}.ant-card-head-title{display:inline-block;flex:1;padding:16px 0;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.ant-card-head .ant-tabs{clear:both;margin-bottom:-17px;color:rgba(0,0,0,.65);font-weight:400;font-size:15px}.ant-card-head .ant-tabs-bar{border-bottom:1px solid #e8e8e8}.ant-card-extra{float:right;margin-left:auto;padding:16px 0;color:rgba(0,0,0,.65);font-weight:400;font-size:15px}.ant-card-body{padding:24px;zoom:1}.ant-card-body:after,.ant-card-body:before{display:table;content:""}.ant-card-body:after{clear:both}.ant-card-contain-grid:not(.ant-card-loading) .ant-card-body{margin:-1px 0 0 -1px;padding:0}.ant-card-grid{float:left;width:33.33%;padding:24px;border:0;border-radius:0;box-shadow:1px 0 0 0 #e8e8e8,0 1px 0 0 #e8e8e8,1px 1px 0 0 #e8e8e8,inset 1px 0 0 0 #e8e8e8,inset 0 1px 0 0 #e8e8e8;transition:all .3s}.ant-card-grid-hoverable:hover{position:relative;z-index:1;box-shadow:0 2px 8px rgba(0,0,0,.15)}.ant-card-contain-tabs>.ant-card-head .ant-card-head-title{min-height:32px;padding-bottom:0}.ant-card-contain-tabs>.ant-card-head .ant-card-extra{padding-bottom:0}.ant-card-cover>*{display:block;width:100%}.ant-card-cover img{border-radius:2px 2px 0 0}.ant-card-actions{margin:0;padding:0;list-style:none;background:#fafafa;border-top:1px solid #e8e8e8;zoom:1}.ant-card-actions:after,.ant-card-actions:before{display:table;content:""}.ant-card-actions:after{clear:both}.ant-card-actions>li{float:left;margin:12px 0;color:rgba(0,0,0,.45);text-align:center}.ant-card-actions>li>span{position:relative;display:block;min-width:32px;font-size:15px;line-height:22px;cursor:pointer}.ant-card-actions>li>span:hover{color:#004691;transition:color .3s}.ant-card-actions>li>span>.anticon,.ant-card-actions>li>span a:not(.ant-btn){display:inline-block;width:100%;color:rgba(0,0,0,.45);line-height:22px;transition:color .3s}.ant-card-actions>li>span>.anticon:hover,.ant-card-actions>li>span a:not(.ant-btn):hover{color:#004691}.ant-card-actions>li>span>.anticon{font-size:16px;line-height:22px}.ant-card-actions>li:not(:last-child){border-right:1px solid #e8e8e8}.ant-card-type-inner .ant-card-head{padding:0 24px;background:#fafafa}.ant-card-type-inner .ant-card-head-title{padding:12px 0;font-size:15px}.ant-card-type-inner .ant-card-body{padding:16px 24px}.ant-card-type-inner .ant-card-extra{padding:13.5px 0}.ant-card-meta{margin:-4px 0;zoom:1}.ant-card-meta:after,.ant-card-meta:before{display:table;content:""}.ant-card-meta:after{clear:both}.ant-card-meta-avatar{float:left;padding-right:16px}.ant-card-meta-detail{overflow:hidden}.ant-card-meta-detail>div:not(:last-child){margin-bottom:8px}.ant-card-meta-title{overflow:hidden;color:rgba(0,0,0,.85);font-weight:500;font-size:17px;white-space:nowrap;text-overflow:ellipsis}.ant-card-meta-description{color:rgba(0,0,0,.45)}.ant-card-loading{overflow:hidden}.ant-card-loading .ant-card-body{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.ant-card-loading-content p{margin:0}.ant-card-loading-block{height:14px;margin:4px 0;background:linear-gradient(90deg,rgba(207,216,220,.2),rgba(207,216,220,.4),rgba(207,216,220,.2));background-size:600% 600%;border-radius:2px;-webkit-animation:card-loading 1.4s ease infinite;animation:card-loading 1.4s ease infinite}@-webkit-keyframes card-loading{0%,to{background-position:0 50%}50%{background-position:100% 50%}}@keyframes card-loading{0%,to{background-position:0 50%}50%{background-position:100% 50%}}.ant-card-small>.ant-card-head{min-height:36px;padding:0 12px;font-size:15px}.ant-card-small>.ant-card-head>.ant-card-head-wrapper>.ant-card-head-title{padding:8px 0}.ant-card-small>.ant-card-head>.ant-card-head-wrapper>.ant-card-extra{padding:8px 0;font-size:15px}.ant-card-small>.ant-card-body{padding:12px}.ant-carousel{box-sizing:border-box;margin:0;padding:0;color:rgba(0,0,0,.65);font-size:15px;font-variant:tabular-nums;line-height:1.5;list-style:none;font-feature-settings:"tnum"}.ant-carousel .slick-slider{position:relative;display:block;box-sizing:border-box;-webkit-touch-callout:none;touch-action:pan-y;-webkit-tap-highlight-color:transparent}.ant-carousel .slick-list{position:relative;display:block;margin:0;padding:0;overflow:hidden}.ant-carousel .slick-list:focus{outline:none}.ant-carousel .slick-list.dragging{cursor:pointer}.ant-carousel .slick-list .slick-slide{pointer-events:none}.ant-carousel .slick-list .slick-slide input.ant-checkbox-input,.ant-carousel .slick-list .slick-slide input.ant-radio-input{visibility:hidden}.ant-carousel .slick-list .slick-slide.slick-active{pointer-events:auto}.ant-carousel .slick-list .slick-slide.slick-active input.ant-checkbox-input,.ant-carousel .slick-list .slick-slide.slick-active input.ant-radio-input{visibility:visible}.ant-carousel .slick-slider .slick-list,.ant-carousel .slick-slider .slick-track{transform:translateZ(0)}.ant-carousel .slick-track{position:relative;top:0;left:0;display:block}.ant-carousel .slick-track:after,.ant-carousel .slick-track:before{display:table;content:""}.ant-carousel .slick-track:after{clear:both}.slick-loading .ant-carousel .slick-track{visibility:hidden}.ant-carousel .slick-slide{display:none;float:left;height:100%;min-height:1px}[dir=rtl] .ant-carousel .slick-slide{float:right}.ant-carousel .slick-slide img{display:block}.ant-carousel .slick-slide.slick-loading img{display:none}.ant-carousel .slick-slide.dragging img{pointer-events:none}.ant-carousel .slick-initialized .slick-slide{display:block}.ant-carousel .slick-loading .slick-slide{visibility:hidden}.ant-carousel .slick-vertical .slick-slide{display:block;height:auto;border:1px solid transparent}.ant-carousel .slick-arrow.slick-hidden{display:none}.ant-carousel .slick-next,.ant-carousel .slick-prev{position:absolute;top:50%;display:block;width:20px;height:20px;margin-top:-10px;padding:0;font-size:0;line-height:0;border:0;cursor:pointer}.ant-carousel .slick-next,.ant-carousel .slick-next:focus,.ant-carousel .slick-next:hover,.ant-carousel .slick-prev,.ant-carousel .slick-prev:focus,.ant-carousel .slick-prev:hover{color:transparent;background:transparent;outline:none}.ant-carousel .slick-next:focus:before,.ant-carousel .slick-next:hover:before,.ant-carousel .slick-prev:focus:before,.ant-carousel .slick-prev:hover:before{opacity:1}.ant-carousel .slick-next.slick-disabled:before,.ant-carousel .slick-prev.slick-disabled:before{opacity:.25}.ant-carousel .slick-prev{left:-25px}.ant-carousel .slick-prev:before{content:"←"}.ant-carousel .slick-next{right:-25px}.ant-carousel .slick-next:before{content:"→"}.ant-carousel .slick-dots{position:absolute;display:block;width:100%;height:3px;margin:0;padding:0;text-align:center;list-style:none}.ant-carousel .slick-dots-bottom{bottom:12px}.ant-carousel .slick-dots-top{top:12px}.ant-carousel .slick-dots li{position:relative;display:inline-block;margin:0 2px;padding:0;text-align:center;vertical-align:top}.ant-carousel .slick-dots li button{display:block;width:16px;height:3px;padding:0;color:transparent;font-size:0;background:#fff;border:0;border-radius:1px;outline:none;cursor:pointer;opacity:.3;transition:all .5s}.ant-carousel .slick-dots li button:focus,.ant-carousel .slick-dots li button:hover{opacity:.75}.ant-carousel .slick-dots li.slick-active button{width:24px;background:#fff;opacity:1}.ant-carousel .slick-dots li.slick-active button:focus,.ant-carousel .slick-dots li.slick-active button:hover{opacity:1}.ant-carousel-vertical .slick-dots{top:50%;bottom:auto;width:3px;height:auto;transform:translateY(-50%)}.ant-carousel-vertical .slick-dots-left{left:12px}.ant-carousel-vertical .slick-dots-right{right:12px}.ant-carousel-vertical .slick-dots li{margin:0 2px;vertical-align:baseline}.ant-carousel-vertical .slick-dots li button{width:3px;height:16px}.ant-carousel-vertical .slick-dots li.slick-active button{width:3px;height:24px}.ant-cascader{box-sizing:border-box;margin:0;padding:0;color:rgba(0,0,0,.65);font-size:15px;font-variant:tabular-nums;line-height:1.5;list-style:none;font-feature-settings:"tnum"}.ant-cascader-input.ant-input{position:static;width:100%;padding-right:24px;background-color:transparent!important;cursor:pointer}.ant-cascader-picker-show-search .ant-cascader-input.ant-input{position:relative}.ant-cascader-picker{box-sizing:border-box;margin:0;padding:0;color:rgba(0,0,0,.65);font-size:15px;font-variant:tabular-nums;line-height:1.5;list-style:none;font-feature-settings:"tnum";position:relative;display:inline-block;background-color:#fff;border-radius:4px;outline:0;cursor:pointer;transition:color .3s}.ant-cascader-picker-with-value .ant-cascader-picker-label{color:transparent}.ant-cascader-picker-disabled{color:rgba(0,0,0,.25);background:#f5f5f5;cursor:not-allowed}.ant-cascader-picker-disabled .ant-cascader-input{cursor:not-allowed}.ant-cascader-picker:focus .ant-cascader-input{border-color:#195e9e;border-right-width:1px!important;outline:0;box-shadow:0 0 0 2px rgba(0,70,145,.2)}.ant-cascader-picker-show-search.ant-cascader-picker-focused{color:rgba(0,0,0,.25)}.ant-cascader-picker-label{position:absolute;top:50%;left:0;width:100%;height:20px;margin-top:-10px;padding:0 20px 0 12px;overflow:hidden;line-height:20px;white-space:nowrap;text-overflow:ellipsis}.ant-cascader-picker-clear{position:absolute;top:50%;right:12px;z-index:2;width:12px;height:12px;margin-top:-6px;color:rgba(0,0,0,.25);font-size:12px;line-height:12px;background:#fff;cursor:pointer;opacity:0;transition:color .3s ease,opacity .15s ease}.ant-cascader-picker-clear:hover{color:rgba(0,0,0,.45)}.ant-cascader-picker:hover .ant-cascader-picker-clear{opacity:1}.ant-cascader-picker-arrow{position:absolute;top:50%;right:12px;z-index:1;width:12px;height:12px;margin-top:-6px;color:rgba(0,0,0,.25);font-size:12px;line-height:12px;transition:transform .2s}.ant-cascader-picker-arrow.ant-cascader-picker-arrow-expand{transform:rotate(180deg)}.ant-cascader-picker-label:hover+.ant-cascader-input{border-color:#195e9e;border-right-width:1px!important}.ant-cascader-picker-small .ant-cascader-picker-arrow,.ant-cascader-picker-small .ant-cascader-picker-clear{right:8px}.ant-cascader-menus{position:absolute;z-index:1050;font-size:15px;white-space:nowrap;background:#fff;border-radius:4px;box-shadow:0 2px 8px rgba(0,0,0,.15)}.ant-cascader-menus ol,.ant-cascader-menus ul{margin:0;list-style:none}.ant-cascader-menus-empty,.ant-cascader-menus-hidden{display:none}.ant-cascader-menus.slide-up-appear.slide-up-appear-active.ant-cascader-menus-placement-bottomLeft,.ant-cascader-menus.slide-up-enter.slide-up-enter-active.ant-cascader-menus-placement-bottomLeft{-webkit-animation-name:antSlideUpIn;animation-name:antSlideUpIn}.ant-cascader-menus.slide-up-appear.slide-up-appear-active.ant-cascader-menus-placement-topLeft,.ant-cascader-menus.slide-up-enter.slide-up-enter-active.ant-cascader-menus-placement-topLeft{-webkit-animation-name:antSlideDownIn;animation-name:antSlideDownIn}.ant-cascader-menus.slide-up-leave.slide-up-leave-active.ant-cascader-menus-placement-bottomLeft{-webkit-animation-name:antSlideUpOut;animation-name:antSlideUpOut}.ant-cascader-menus.slide-up-leave.slide-up-leave-active.ant-cascader-menus-placement-topLeft{-webkit-animation-name:antSlideDownOut;animation-name:antSlideDownOut}.ant-cascader-menu{display:inline-block;min-width:111px;height:180px;margin:0;padding:4px 0;overflow:auto;vertical-align:top;list-style:none;border-right:1px solid #e8e8e8;-ms-overflow-style:-ms-autohiding-scrollbar}.ant-cascader-menu:first-child{border-radius:4px 0 0 4px}.ant-cascader-menu:last-child{margin-right:-1px;border-right-color:transparent;border-radius:0 4px 4px 0}.ant-cascader-menu:only-child{border-radius:4px}.ant-cascader-menu-item{padding:5px 12px;line-height:22px;white-space:nowrap;cursor:pointer;transition:all .3s}.ant-cascader-menu-item:hover{background:#bccad1}.ant-cascader-menu-item-disabled{color:rgba(0,0,0,.25);cursor:not-allowed}.ant-cascader-menu-item-disabled:hover{background:transparent}.ant-cascader-menu-item-active:not(.ant-cascader-menu-item-disabled),.ant-cascader-menu-item-active:not(.ant-cascader-menu-item-disabled):hover{font-weight:600;background-color:#fafafa}.ant-cascader-menu-item-expand{position:relative;padding-right:24px}.ant-cascader-menu-item-expand .ant-cascader-menu-item-expand-icon,.ant-cascader-menu-item-loading-icon{display:inline-block;font-size:12px;font-size:10px\9;transform:scale(.83333333) rotate(0deg);position:absolute;right:12px;color:rgba(0,0,0,.45)}:root .ant-cascader-menu-item-expand .ant-cascader-menu-item-expand-icon,:root .ant-cascader-menu-item-loading-icon{font-size:12px}.ant-cascader-menu-item-disabled.ant-cascader-menu-item-expand .ant-cascader-menu-item-expand-icon,.ant-cascader-menu-item-disabled.ant-cascader-menu-item-loading-icon{color:rgba(0,0,0,.25)}.ant-cascader-menu-item .ant-cascader-menu-item-keyword{color:#f5222d}@-webkit-keyframes antCheckboxEffect{0%{transform:scale(1);opacity:.5}to{transform:scale(1.6);opacity:0}}@keyframes antCheckboxEffect{0%{transform:scale(1);opacity:.5}to{transform:scale(1.6);opacity:0}}.ant-checkbox{box-sizing:border-box;margin:0;padding:0;color:rgba(0,0,0,.65);font-size:15px;font-variant:tabular-nums;line-height:1.5;list-style:none;font-feature-settings:"tnum";position:relative;top:-.09em;display:inline-block;line-height:1;white-space:nowrap;vertical-align:middle;outline:none;cursor:pointer}.ant-checkbox-input:focus+.ant-checkbox-inner,.ant-checkbox-wrapper:hover .ant-checkbox-inner,.ant-checkbox:hover .ant-checkbox-inner{border-color:#004691}.ant-checkbox-checked:after{position:absolute;top:0;left:0;width:100%;height:100%;border:1px solid #004691;border-radius:2px;visibility:hidden;-webkit-animation:antCheckboxEffect .36s ease-in-out;animation:antCheckboxEffect .36s ease-in-out;-webkit-animation-fill-mode:backwards;animation-fill-mode:backwards;content:""}.ant-checkbox-wrapper:hover .ant-checkbox:after,.ant-checkbox:hover:after{visibility:visible}.ant-checkbox-inner{position:relative;top:0;left:0;display:block;width:16px;height:16px;background-color:#fff;border:1px solid #d9d9d9;border-radius:2px;border-collapse:separate;transition:all .3s}.ant-checkbox-inner:after{position:absolute;top:50%;left:22%;display:table;width:5.71428571px;height:9.14285714px;border:2px solid #fff;border-top:0;border-left:0;transform:rotate(45deg) scale(0) translate(-50%,-50%);opacity:0;transition:all .1s cubic-bezier(.71,-.46,.88,.6),opacity .1s;content:" "}.ant-checkbox-input{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;width:100%;height:100%;cursor:pointer;opacity:0}.ant-checkbox-checked .ant-checkbox-inner:after{position:absolute;display:table;border:2px solid #fff;border-top:0;border-left:0;transform:rotate(45deg) scale(1) translate(-50%,-50%);opacity:1;transition:all .2s cubic-bezier(.12,.4,.29,1.46) .1s;content:" "}.ant-checkbox-checked .ant-checkbox-inner{background-color:#004691;border-color:#004691}.ant-checkbox-disabled{cursor:not-allowed}.ant-checkbox-disabled.ant-checkbox-checked .ant-checkbox-inner:after{border-color:rgba(0,0,0,.25);-webkit-animation-name:none;animation-name:none}.ant-checkbox-disabled .ant-checkbox-input{cursor:not-allowed}.ant-checkbox-disabled .ant-checkbox-inner{background-color:#f5f5f5;border-color:#d9d9d9!important}.ant-checkbox-disabled .ant-checkbox-inner:after{border-color:#f5f5f5;border-collapse:separate;-webkit-animation-name:none;animation-name:none}.ant-checkbox-disabled+span{color:rgba(0,0,0,.25);cursor:not-allowed}.ant-checkbox-disabled:hover:after,.ant-checkbox-wrapper:hover .ant-checkbox-disabled:after{visibility:hidden}.ant-checkbox-wrapper{box-sizing:border-box;margin:0;padding:0;color:rgba(0,0,0,.65);font-size:15px;font-variant:tabular-nums;line-height:1.5;list-style:none;font-feature-settings:"tnum";display:inline-block;line-height:unset;cursor:pointer}.ant-checkbox-wrapper.ant-checkbox-wrapper-disabled{cursor:not-allowed}.ant-checkbox-wrapper+.ant-checkbox-wrapper{margin-left:8px}.ant-checkbox+span{padding-right:8px;padding-left:8px}.ant-checkbox-group{box-sizing:border-box;margin:0;padding:0;color:rgba(0,0,0,.65);font-size:15px;font-variant:tabular-nums;line-height:1.5;list-style:none;font-feature-settings:"tnum";display:inline-block}.ant-checkbox-group-item{display:inline-block;margin-right:8px}.ant-checkbox-group-item:last-child{margin-right:0}.ant-checkbox-group-item+.ant-checkbox-group-item{margin-left:0}.ant-checkbox-indeterminate .ant-checkbox-inner{background-color:#fff;border-color:#d9d9d9}.ant-checkbox-indeterminate .ant-checkbox-inner:after{top:50%;left:50%;width:8px;height:8px;background-color:#004691;border:0;transform:translate(-50%,-50%) scale(1);opacity:1;content:" "}.ant-checkbox-indeterminate.ant-checkbox-disabled .ant-checkbox-inner:after{background-color:rgba(0,0,0,.25);border-color:rgba(0,0,0,.25)}.ant-collapse{box-sizing:border-box;margin:0;padding:0;color:rgba(0,0,0,.65);font-size:15px;font-variant:tabular-nums;line-height:1.5;list-style:none;font-feature-settings:"tnum";background-color:#fafafa;border:1px solid #d9d9d9;border-bottom:0;border-radius:4px}.ant-collapse>.ant-collapse-item{border-bottom:1px solid #d9d9d9}.ant-collapse>.ant-collapse-item:last-child,.ant-collapse>.ant-collapse-item:last-child>.ant-collapse-header{border-radius:0 0 4px 4px}.ant-collapse>.ant-collapse-item>.ant-collapse-header{position:relative;padding:12px 16px 12px 40px;color:rgba(0,0,0,.85);line-height:22px;cursor:pointer;transition:all .3s}.ant-collapse>.ant-collapse-item>.ant-collapse-header .ant-collapse-arrow{color:inherit;font-style:normal;line-height:0;text-align:center;text-transform:none;vertical-align:-.125em;text-rendering:optimizeLegibility;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;position:absolute;top:50%;left:16px;display:inline-block;font-size:12px;transform:translateY(-50%)}.ant-collapse>.ant-collapse-item>.ant-collapse-header .ant-collapse-arrow>*{line-height:1}.ant-collapse>.ant-collapse-item>.ant-collapse-header .ant-collapse-arrow svg{display:inline-block}.ant-collapse>.ant-collapse-item>.ant-collapse-header .ant-collapse-arrow:before{display:none}.ant-collapse>.ant-collapse-item>.ant-collapse-header .ant-collapse-arrow .ant-collapse>.ant-collapse-item>.ant-collapse-header .ant-collapse-arrow-icon{display:block}.ant-collapse>.ant-collapse-item>.ant-collapse-header .ant-collapse-arrow svg{transition:transform .24s}.ant-collapse>.ant-collapse-item>.ant-collapse-header .ant-collapse-extra{float:right}.ant-collapse>.ant-collapse-item>.ant-collapse-header:focus{outline:none}.ant-collapse>.ant-collapse-item.ant-collapse-no-arrow>.ant-collapse-header{padding-left:12px}.ant-collapse-icon-position-right>.ant-collapse-item>.ant-collapse-header{padding:12px 40px 12px 16px}.ant-collapse-icon-position-right>.ant-collapse-item>.ant-collapse-header .ant-collapse-arrow{right:16px;left:auto}.ant-collapse-anim-active{transition:height .2s cubic-bezier(.215,.61,.355,1)}.ant-collapse-content{overflow:hidden;color:rgba(0,0,0,.65);background-color:#fff;border-top:1px solid #d9d9d9}.ant-collapse-content>.ant-collapse-content-box{padding:16px}.ant-collapse-content-inactive{display:none}.ant-collapse-item:last-child>.ant-collapse-content{border-radius:0 0 4px 4px}.ant-collapse-borderless{background-color:#fafafa;border:0}.ant-collapse-borderless>.ant-collapse-item{border-bottom:1px solid #d9d9d9}.ant-collapse-borderless>.ant-collapse-item:last-child,.ant-collapse-borderless>.ant-collapse-item:last-child .ant-collapse-header{border-radius:0}.ant-collapse-borderless>.ant-collapse-item>.ant-collapse-content{background-color:transparent;border-top:0}.ant-collapse-borderless>.ant-collapse-item>.ant-collapse-content>.ant-collapse-content-box{padding-top:4px}.ant-collapse .ant-collapse-item-disabled>.ant-collapse-header,.ant-collapse .ant-collapse-item-disabled>.ant-collapse-header>.arrow{color:rgba(0,0,0,.25);cursor:not-allowed}.ant-comment{position:relative}.ant-comment-inner{display:flex;padding:16px 0}.ant-comment-avatar{position:relative;flex-shrink:0;margin-right:12px;cursor:pointer}.ant-comment-avatar img{width:32px;height:32px;border-radius:50%}.ant-comment-content{position:relative;flex:1 1 auto;min-width:1px;font-size:15px;word-wrap:break-word}.ant-comment-content-author{display:flex;flex-wrap:wrap;justify-content:flex-start;margin-bottom:4px;font-size:15px}.ant-comment-content-author>a,.ant-comment-content-author>span{padding-right:8px;font-size:12px;line-height:18px}.ant-comment-content-author-name{color:rgba(0,0,0,.45);font-size:15px;transition:color .3s}.ant-comment-content-author-name>*,.ant-comment-content-author-name>:hover{color:rgba(0,0,0,.45)}.ant-comment-content-author-time{color:#ccc;white-space:nowrap;cursor:auto}.ant-comment-content-detail p{white-space:pre-wrap}.ant-comment-actions{margin-top:12px;padding-left:0}.ant-comment-actions>li{display:inline-block;color:rgba(0,0,0,.45)}.ant-comment-actions>li>span{padding-right:10px;color:rgba(0,0,0,.45);font-size:12px;cursor:pointer;transition:color .3s;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.ant-comment-actions>li>span:hover{color:#595959}.ant-comment-nested{margin-left:44px}.ant-calendar-picker-container{box-sizing:border-box;margin:0;padding:0;color:rgba(0,0,0,.65);font-size:15px;font-variant:tabular-nums;line-height:1.5;list-style:none;font-feature-settings:"tnum";position:absolute;z-index:1050;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,PingFang SC,Hiragino Sans GB,Microsoft YaHei,Helvetica Neue,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol}.ant-calendar-picker-container.slide-up-appear.slide-up-appear-active.ant-calendar-picker-container-placement-topLeft,.ant-calendar-picker-container.slide-up-appear.slide-up-appear-active.ant-calendar-picker-container-placement-topRight,.ant-calendar-picker-container.slide-up-enter.slide-up-enter-active.ant-calendar-picker-container-placement-topLeft,.ant-calendar-picker-container.slide-up-enter.slide-up-enter-active.ant-calendar-picker-container-placement-topRight{-webkit-animation-name:antSlideDownIn;animation-name:antSlideDownIn}.ant-calendar-picker-container.slide-up-appear.slide-up-appear-active.ant-calendar-picker-container-placement-bottomLeft,.ant-calendar-picker-container.slide-up-appear.slide-up-appear-active.ant-calendar-picker-container-placement-bottomRight,.ant-calendar-picker-container.slide-up-enter.slide-up-enter-active.ant-calendar-picker-container-placement-bottomLeft,.ant-calendar-picker-container.slide-up-enter.slide-up-enter-active.ant-calendar-picker-container-placement-bottomRight{-webkit-animation-name:antSlideUpIn;animation-name:antSlideUpIn}.ant-calendar-picker-container.slide-up-leave.slide-up-leave-active.ant-calendar-picker-container-placement-topLeft,.ant-calendar-picker-container.slide-up-leave.slide-up-leave-active.ant-calendar-picker-container-placement-topRight{-webkit-animation-name:antSlideDownOut;animation-name:antSlideDownOut}.ant-calendar-picker-container.slide-up-leave.slide-up-leave-active.ant-calendar-picker-container-placement-bottomLeft,.ant-calendar-picker-container.slide-up-leave.slide-up-leave-active.ant-calendar-picker-container-placement-bottomRight{-webkit-animation-name:antSlideUpOut;animation-name:antSlideUpOut}.ant-calendar-picker{box-sizing:border-box;margin:0;padding:0;color:rgba(0,0,0,.65);font-size:15px;font-variant:tabular-nums;line-height:1.5;list-style:none;font-feature-settings:"tnum";position:relative;display:inline-block;outline:none;cursor:text;transition:opacity .3s}.ant-calendar-picker-input{outline:none}.ant-calendar-picker-input.ant-input{line-height:1.5}.ant-calendar-picker-input.ant-input-sm{padding-top:0;padding-bottom:0}.ant-calendar-picker:hover .ant-calendar-picker-input:not(.ant-input-disabled){border-color:#195e9e}.ant-calendar-picker:focus .ant-calendar-picker-input:not(.ant-input-disabled){border-color:#195e9e;border-right-width:1px!important;outline:0;box-shadow:0 0 0 2px rgba(0,70,145,.2)}.ant-calendar-picker-clear,.ant-calendar-picker-icon{position:absolute;top:50%;right:12px;z-index:1;width:14px;height:14px;margin-top:-7px;font-size:12px;line-height:14px;transition:all .3s;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.ant-calendar-picker-clear{z-index:2;color:rgba(0,0,0,.25);font-size:15px;background:#fff;cursor:pointer;opacity:0;pointer-events:none}.ant-calendar-picker-clear:hover{color:rgba(0,0,0,.45)}.ant-calendar-picker:hover .ant-calendar-picker-clear{opacity:1;pointer-events:auto}.ant-calendar-picker-icon{display:inline-block;color:rgba(0,0,0,.25);font-size:15px;line-height:1}.ant-input-disabled+.ant-calendar-picker-icon{cursor:not-allowed}.ant-calendar-picker-small .ant-calendar-picker-clear,.ant-calendar-picker-small .ant-calendar-picker-icon{right:8px}.ant-calendar{position:relative;width:280px;font-size:15px;line-height:1.5;text-align:left;list-style:none;background-color:#fff;background-clip:padding-box;border:1px solid #fff;border-radius:4px;outline:none;box-shadow:0 2px 8px rgba(0,0,0,.15)}.ant-calendar-input-wrap{height:34px;padding:6px 10px;border-bottom:1px solid #e8e8e8}.ant-calendar-input{width:100%;height:22px;color:rgba(0,0,0,.65);background:#fff;border:0;outline:0;cursor:auto}.ant-calendar-input::-moz-placeholder{color:#bfbfbf;opacity:1}.ant-calendar-input:-ms-input-placeholder{color:#bfbfbf}.ant-calendar-input::-webkit-input-placeholder{color:#bfbfbf}.ant-calendar-input:-moz-placeholder-shown{text-overflow:ellipsis}.ant-calendar-input:-ms-input-placeholder{text-overflow:ellipsis}.ant-calendar-input:placeholder-shown{text-overflow:ellipsis}.ant-calendar-week-number{width:286px}.ant-calendar-week-number-cell{text-align:center}.ant-calendar-header{height:40px;line-height:40px;text-align:center;border-bottom:1px solid #e8e8e8;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.ant-calendar-header a:hover{color:#195e9e}.ant-calendar-header .ant-calendar-century-select,.ant-calendar-header .ant-calendar-decade-select,.ant-calendar-header .ant-calendar-month-select,.ant-calendar-header .ant-calendar-year-select{display:inline-block;padding:0 2px;color:rgba(0,0,0,.85);font-weight:500;line-height:40px}.ant-calendar-header .ant-calendar-century-select-arrow,.ant-calendar-header .ant-calendar-decade-select-arrow,.ant-calendar-header .ant-calendar-month-select-arrow,.ant-calendar-header .ant-calendar-year-select-arrow{display:none}.ant-calendar-header .ant-calendar-next-century-btn,.ant-calendar-header .ant-calendar-next-decade-btn,.ant-calendar-header .ant-calendar-next-month-btn,.ant-calendar-header .ant-calendar-next-year-btn,.ant-calendar-header .ant-calendar-prev-century-btn,.ant-calendar-header .ant-calendar-prev-decade-btn,.ant-calendar-header .ant-calendar-prev-month-btn,.ant-calendar-header .ant-calendar-prev-year-btn{position:absolute;top:0;display:inline-block;padding:0 5px;color:rgba(0,0,0,.45);font-size:16px;font-family:Arial,Hiragino Sans GB,Microsoft Yahei,"Microsoft Sans Serif",sans-serif;line-height:40px}.ant-calendar-header .ant-calendar-prev-century-btn,.ant-calendar-header .ant-calendar-prev-decade-btn,.ant-calendar-header .ant-calendar-prev-year-btn{left:7px;height:100%}.ant-calendar-header .ant-calendar-prev-century-btn:after,.ant-calendar-header .ant-calendar-prev-century-btn:before,.ant-calendar-header .ant-calendar-prev-decade-btn:after,.ant-calendar-header .ant-calendar-prev-decade-btn:before,.ant-calendar-header .ant-calendar-prev-year-btn:after,.ant-calendar-header .ant-calendar-prev-year-btn:before{position:relative;top:-1px;display:inline-block;width:8px;height:8px;vertical-align:middle;border:0 solid #aaa;border-width:1.5px 0 0 1.5px;border-radius:1px;transform:rotate(-45deg) scale(.8);transition:all .3s;content:""}.ant-calendar-header .ant-calendar-prev-century-btn:hover:after,.ant-calendar-header .ant-calendar-prev-century-btn:hover:before,.ant-calendar-header .ant-calendar-prev-decade-btn:hover:after,.ant-calendar-header .ant-calendar-prev-decade-btn:hover:before,.ant-calendar-header .ant-calendar-prev-year-btn:hover:after,.ant-calendar-header .ant-calendar-prev-year-btn:hover:before{border-color:rgba(0,0,0,.65)}.ant-calendar-header .ant-calendar-prev-century-btn:after,.ant-calendar-header .ant-calendar-prev-decade-btn:after,.ant-calendar-header .ant-calendar-prev-year-btn:after{display:none;position:relative;left:-3px;display:inline-block}.ant-calendar-header .ant-calendar-next-century-btn,.ant-calendar-header .ant-calendar-next-decade-btn,.ant-calendar-header .ant-calendar-next-year-btn{right:7px;height:100%}.ant-calendar-header .ant-calendar-next-century-btn:after,.ant-calendar-header .ant-calendar-next-century-btn:before,.ant-calendar-header .ant-calendar-next-decade-btn:after,.ant-calendar-header .ant-calendar-next-decade-btn:before,.ant-calendar-header .ant-calendar-next-year-btn:after,.ant-calendar-header .ant-calendar-next-year-btn:before{position:relative;top:-1px;display:inline-block;width:8px;height:8px;vertical-align:middle;border:0 solid #aaa;border-width:1.5px 0 0 1.5px;border-radius:1px;transform:rotate(-45deg) scale(.8);transition:all .3s;content:""}.ant-calendar-header .ant-calendar-next-century-btn:hover:after,.ant-calendar-header .ant-calendar-next-century-btn:hover:before,.ant-calendar-header .ant-calendar-next-decade-btn:hover:after,.ant-calendar-header .ant-calendar-next-decade-btn:hover:before,.ant-calendar-header .ant-calendar-next-year-btn:hover:after,.ant-calendar-header .ant-calendar-next-year-btn:hover:before{border-color:rgba(0,0,0,.65)}.ant-calendar-header .ant-calendar-next-century-btn:after,.ant-calendar-header .ant-calendar-next-decade-btn:after,.ant-calendar-header .ant-calendar-next-year-btn:after{display:none}.ant-calendar-header .ant-calendar-next-century-btn:after,.ant-calendar-header .ant-calendar-next-century-btn:before,.ant-calendar-header .ant-calendar-next-decade-btn:after,.ant-calendar-header .ant-calendar-next-decade-btn:before,.ant-calendar-header .ant-calendar-next-year-btn:after,.ant-calendar-header .ant-calendar-next-year-btn:before{transform:rotate(135deg) scale(.8)}.ant-calendar-header .ant-calendar-next-century-btn:before,.ant-calendar-header .ant-calendar-next-decade-btn:before,.ant-calendar-header .ant-calendar-next-year-btn:before{position:relative;left:3px}.ant-calendar-header .ant-calendar-next-century-btn:after,.ant-calendar-header .ant-calendar-next-decade-btn:after,.ant-calendar-header .ant-calendar-next-year-btn:after{display:inline-block}.ant-calendar-header .ant-calendar-prev-month-btn{left:29px;height:100%}.ant-calendar-header .ant-calendar-prev-month-btn:after,.ant-calendar-header .ant-calendar-prev-month-btn:before{position:relative;top:-1px;display:inline-block;width:8px;height:8px;vertical-align:middle;border:0 solid #aaa;border-width:1.5px 0 0 1.5px;border-radius:1px;transform:rotate(-45deg) scale(.8);transition:all .3s;content:""}.ant-calendar-header .ant-calendar-prev-month-btn:hover:after,.ant-calendar-header .ant-calendar-prev-month-btn:hover:before{border-color:rgba(0,0,0,.65)}.ant-calendar-header .ant-calendar-prev-month-btn:after{display:none}.ant-calendar-header .ant-calendar-next-month-btn{right:29px;height:100%}.ant-calendar-header .ant-calendar-next-month-btn:after,.ant-calendar-header .ant-calendar-next-month-btn:before{position:relative;top:-1px;display:inline-block;width:8px;height:8px;vertical-align:middle;border:0 solid #aaa;border-width:1.5px 0 0 1.5px;border-radius:1px;transform:rotate(-45deg) scale(.8);transition:all .3s;content:""}.ant-calendar-header .ant-calendar-next-month-btn:hover:after,.ant-calendar-header .ant-calendar-next-month-btn:hover:before{border-color:rgba(0,0,0,.65)}.ant-calendar-header .ant-calendar-next-month-btn:after{display:none}.ant-calendar-header .ant-calendar-next-month-btn:after,.ant-calendar-header .ant-calendar-next-month-btn:before{transform:rotate(135deg) scale(.8)}.ant-calendar-body{padding:8px 12px}.ant-calendar table{width:100%;max-width:100%;background-color:transparent;border-collapse:collapse}.ant-calendar table,.ant-calendar td,.ant-calendar th{text-align:center;border:0}.ant-calendar-calendar-table{margin-bottom:0;border-spacing:0}.ant-calendar-column-header{width:33px;padding:6px 0;line-height:18px;text-align:center}.ant-calendar-column-header .ant-calendar-column-header-inner{display:block;font-weight:400}.ant-calendar-week-number-header .ant-calendar-column-header-inner{display:none}.ant-calendar-cell{height:30px;padding:3px 0}.ant-calendar-date{display:block;width:24px;height:24px;margin:0 auto;padding:0;color:rgba(0,0,0,.65);line-height:22px;text-align:center;background:transparent;border:1px solid transparent;border-radius:2px;transition:background .3s ease}.ant-calendar-date-panel{position:relative;outline:none}.ant-calendar-date:hover{background:#bccad1;cursor:pointer}.ant-calendar-date:active{color:#fff;background:#195e9e}.ant-calendar-today .ant-calendar-date{color:#004691;font-weight:700;border-color:#004691}.ant-calendar-selected-day .ant-calendar-date{background:#7ea9c4}.ant-calendar-last-month-cell .ant-calendar-date,.ant-calendar-last-month-cell .ant-calendar-date:hover,.ant-calendar-next-month-btn-day .ant-calendar-date,.ant-calendar-next-month-btn-day .ant-calendar-date:hover{color:rgba(0,0,0,.25);background:transparent;border-color:transparent}.ant-calendar-disabled-cell .ant-calendar-date{position:relative;width:auto;color:rgba(0,0,0,.25);background:#f5f5f5;border:1px solid transparent;border-radius:0;cursor:not-allowed}.ant-calendar-disabled-cell .ant-calendar-date:hover{background:#f5f5f5}.ant-calendar-disabled-cell.ant-calendar-selected-day .ant-calendar-date:before{position:absolute;top:-1px;left:5px;width:24px;height:24px;background:rgba(0,0,0,.1);border-radius:2px;content:""}.ant-calendar-disabled-cell.ant-calendar-today .ant-calendar-date{position:relative;padding-right:5px;padding-left:5px}.ant-calendar-disabled-cell.ant-calendar-today .ant-calendar-date:before{position:absolute;top:-1px;left:5px;width:24px;height:24px;border:1px solid rgba(0,0,0,.25);border-radius:2px;content:" "}.ant-calendar-disabled-cell-first-of-row .ant-calendar-date{border-top-left-radius:4px;border-bottom-left-radius:4px}.ant-calendar-disabled-cell-last-of-row .ant-calendar-date{border-top-right-radius:4px;border-bottom-right-radius:4px}.ant-calendar-footer{padding:0 12px;line-height:38px;border-top:1px solid #e8e8e8}.ant-calendar-footer:empty{border-top:0}.ant-calendar-footer-btn{display:block;text-align:center}.ant-calendar-footer-extra{text-align:left}.ant-calendar .ant-calendar-clear-btn,.ant-calendar .ant-calendar-today-btn{display:inline-block;margin:0 0 0 8px;text-align:center}.ant-calendar .ant-calendar-clear-btn-disabled,.ant-calendar .ant-calendar-today-btn-disabled{color:rgba(0,0,0,.25);cursor:not-allowed}.ant-calendar .ant-calendar-clear-btn:only-child,.ant-calendar .ant-calendar-today-btn:only-child{margin:0}.ant-calendar .ant-calendar-clear-btn{position:absolute;top:7px;right:5px;display:none;width:20px;height:20px;margin:0;overflow:hidden;line-height:20px;text-align:center;text-indent:-76px}.ant-calendar .ant-calendar-clear-btn:after{display:inline-block;width:20px;color:rgba(0,0,0,.25);font-size:15px;line-height:1;text-indent:43px;transition:color .3s ease}.ant-calendar .ant-calendar-clear-btn:hover:after{color:rgba(0,0,0,.45)}.ant-calendar .ant-calendar-ok-btn{position:relative;display:inline-block;font-weight:400;white-space:nowrap;text-align:center;background-image:none;box-shadow:0 2px 0 rgba(0,0,0,.015);cursor:pointer;transition:all .3s cubic-bezier(.645,.045,.355,1);-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;touch-action:manipulation;height:32px;color:#fff;background-color:#004691;border:1px solid #004691;text-shadow:0 -1px 0 rgba(0,0,0,.12);box-shadow:0 2px 0 rgba(0,0,0,.045);height:24px;padding:0 7px;font-size:15px;border-radius:4px;line-height:22px}.ant-calendar .ant-calendar-ok-btn>.anticon{line-height:1}.ant-calendar .ant-calendar-ok-btn,.ant-calendar .ant-calendar-ok-btn:active,.ant-calendar .ant-calendar-ok-btn:focus{outline:0}.ant-calendar .ant-calendar-ok-btn:not([disabled]):hover{text-decoration:none}.ant-calendar .ant-calendar-ok-btn:not([disabled]):active{outline:0;box-shadow:none}.ant-calendar .ant-calendar-ok-btn.disabled,.ant-calendar .ant-calendar-ok-btn[disabled]{cursor:not-allowed}.ant-calendar .ant-calendar-ok-btn.disabled>*,.ant-calendar .ant-calendar-ok-btn[disabled]>*{pointer-events:none}.ant-calendar .ant-calendar-ok-btn-lg{height:40px;padding:0 15px;font-size:17px;border-radius:4px}.ant-calendar .ant-calendar-ok-btn-sm{height:24px;padding:0 7px;font-size:15px;border-radius:4px}.ant-calendar .ant-calendar-ok-btn>a:only-child{color:currentColor}.ant-calendar .ant-calendar-ok-btn>a:only-child:after{position:absolute;top:0;right:0;bottom:0;left:0;background:transparent;content:""}.ant-calendar .ant-calendar-ok-btn:focus,.ant-calendar .ant-calendar-ok-btn:hover{color:#fff;background-color:#195e9e;border-color:#195e9e}.ant-calendar .ant-calendar-ok-btn:focus>a:only-child,.ant-calendar .ant-calendar-ok-btn:hover>a:only-child{color:currentColor}.ant-calendar .ant-calendar-ok-btn:focus>a:only-child:after,.ant-calendar .ant-calendar-ok-btn:hover>a:only-child:after{position:absolute;top:0;right:0;bottom:0;left:0;background:transparent;content:""}.ant-calendar .ant-calendar-ok-btn.active,.ant-calendar .ant-calendar-ok-btn:active{color:#fff;background-color:#00306b;border-color:#00306b}.ant-calendar .ant-calendar-ok-btn.active>a:only-child,.ant-calendar .ant-calendar-ok-btn:active>a:only-child{color:currentColor}.ant-calendar .ant-calendar-ok-btn.active>a:only-child:after,.ant-calendar .ant-calendar-ok-btn:active>a:only-child:after{position:absolute;top:0;right:0;bottom:0;left:0;background:transparent;content:""}.ant-calendar .ant-calendar-ok-btn-disabled,.ant-calendar .ant-calendar-ok-btn-disabled.active,.ant-calendar .ant-calendar-ok-btn-disabled:active,.ant-calendar .ant-calendar-ok-btn-disabled:focus,.ant-calendar .ant-calendar-ok-btn-disabled:hover,.ant-calendar .ant-calendar-ok-btn.disabled,.ant-calendar .ant-calendar-ok-btn.disabled.active,.ant-calendar .ant-calendar-ok-btn.disabled:active,.ant-calendar .ant-calendar-ok-btn.disabled:focus,.ant-calendar .ant-calendar-ok-btn.disabled:hover,.ant-calendar .ant-calendar-ok-btn[disabled],.ant-calendar .ant-calendar-ok-btn[disabled].active,.ant-calendar .ant-calendar-ok-btn[disabled]:active,.ant-calendar .ant-calendar-ok-btn[disabled]:focus,.ant-calendar .ant-calendar-ok-btn[disabled]:hover{color:rgba(0,0,0,.25);background-color:#f5f5f5;border-color:#d9d9d9;text-shadow:none;box-shadow:none}.ant-calendar .ant-calendar-ok-btn-disabled.active>a:only-child,.ant-calendar .ant-calendar-ok-btn-disabled:active>a:only-child,.ant-calendar .ant-calendar-ok-btn-disabled:focus>a:only-child,.ant-calendar .ant-calendar-ok-btn-disabled:hover>a:only-child,.ant-calendar .ant-calendar-ok-btn-disabled>a:only-child,.ant-calendar .ant-calendar-ok-btn.disabled.active>a:only-child,.ant-calendar .ant-calendar-ok-btn.disabled:active>a:only-child,.ant-calendar .ant-calendar-ok-btn.disabled:focus>a:only-child,.ant-calendar .ant-calendar-ok-btn.disabled:hover>a:only-child,.ant-calendar .ant-calendar-ok-btn.disabled>a:only-child,.ant-calendar .ant-calendar-ok-btn[disabled].active>a:only-child,.ant-calendar .ant-calendar-ok-btn[disabled]:active>a:only-child,.ant-calendar .ant-calendar-ok-btn[disabled]:focus>a:only-child,.ant-calendar .ant-calendar-ok-btn[disabled]:hover>a:only-child,.ant-calendar .ant-calendar-ok-btn[disabled]>a:only-child{color:currentColor}.ant-calendar .ant-calendar-ok-btn-disabled.active>a:only-child:after,.ant-calendar .ant-calendar-ok-btn-disabled:active>a:only-child:after,.ant-calendar .ant-calendar-ok-btn-disabled:focus>a:only-child:after,.ant-calendar .ant-calendar-ok-btn-disabled:hover>a:only-child:after,.ant-calendar .ant-calendar-ok-btn-disabled>a:only-child:after,.ant-calendar .ant-calendar-ok-btn.disabled.active>a:only-child:after,.ant-calendar .ant-calendar-ok-btn.disabled:active>a:only-child:after,.ant-calendar .ant-calendar-ok-btn.disabled:focus>a:only-child:after,.ant-calendar .ant-calendar-ok-btn.disabled:hover>a:only-child:after,.ant-calendar .ant-calendar-ok-btn.disabled>a:only-child:after,.ant-calendar .ant-calendar-ok-btn[disabled].active>a:only-child:after,.ant-calendar .ant-calendar-ok-btn[disabled]:active>a:only-child:after,.ant-calendar .ant-calendar-ok-btn[disabled]:focus>a:only-child:after,.ant-calendar .ant-calendar-ok-btn[disabled]:hover>a:only-child:after,.ant-calendar .ant-calendar-ok-btn[disabled]>a:only-child:after{position:absolute;top:0;right:0;bottom:0;left:0;background:transparent;content:""}.ant-calendar-range-picker-input{width:44%;height:99%;text-align:center;background-color:transparent;border:0;outline:0}.ant-calendar-range-picker-input::-moz-placeholder{color:#bfbfbf;opacity:1}.ant-calendar-range-picker-input:-ms-input-placeholder{color:#bfbfbf}.ant-calendar-range-picker-input::-webkit-input-placeholder{color:#bfbfbf}.ant-calendar-range-picker-input:-moz-placeholder-shown{text-overflow:ellipsis}.ant-calendar-range-picker-input:-ms-input-placeholder{text-overflow:ellipsis}.ant-calendar-range-picker-input:placeholder-shown{text-overflow:ellipsis}.ant-calendar-range-picker-input[disabled]{cursor:not-allowed}.ant-calendar-range-picker-separator{display:inline-block;min-width:10px;height:100%;color:rgba(0,0,0,.45);white-space:nowrap;text-align:center;vertical-align:top;pointer-events:none}.ant-input-disabled .ant-calendar-range-picker-separator{color:rgba(0,0,0,.25)}.ant-calendar-range{width:552px;overflow:hidden}.ant-calendar-range .ant-calendar-date-panel:after{display:block;clear:both;height:0;visibility:hidden;content:"."}.ant-calendar-range-part{position:relative;width:50%}.ant-calendar-range-left{float:left}.ant-calendar-range-left .ant-calendar-time-picker-inner{border-right:1px solid #e8e8e8}.ant-calendar-range-right{float:right}.ant-calendar-range-right .ant-calendar-time-picker-inner{border-left:1px solid #e8e8e8}.ant-calendar-range-middle{position:absolute;left:50%;z-index:1;height:34px;margin:1px 0 0;padding:0 200px 0 0;color:rgba(0,0,0,.45);line-height:34px;text-align:center;transform:translateX(-50%);pointer-events:none}.ant-calendar-range-right .ant-calendar-date-input-wrap{margin-left:-90px}.ant-calendar-range.ant-calendar-time .ant-calendar-range-middle{padding:0 10px 0 0;transform:translateX(-50%)}.ant-calendar-range .ant-calendar-today :not(.ant-calendar-disabled-cell) :not(.ant-calendar-last-month-cell) :not(.ant-calendar-next-month-btn-day) .ant-calendar-date{color:#004691;background:#7ea9c4;border-color:#004691}.ant-calendar-range .ant-calendar-selected-end-date .ant-calendar-date,.ant-calendar-range .ant-calendar-selected-start-date .ant-calendar-date{color:#fff;background:#004691;border:1px solid transparent}.ant-calendar-range .ant-calendar-selected-end-date .ant-calendar-date:hover,.ant-calendar-range .ant-calendar-selected-start-date .ant-calendar-date:hover{background:#004691}.ant-calendar-range.ant-calendar-time .ant-calendar-range-right .ant-calendar-date-input-wrap{margin-left:0}.ant-calendar-range .ant-calendar-input-wrap{position:relative;height:34px}.ant-calendar-range .ant-calendar-input,.ant-calendar-range .ant-calendar-time-picker-input{position:relative;display:inline-block;width:100%;height:32px;color:rgba(0,0,0,.65);font-size:15px;line-height:1.5;background-color:#fff;background-image:none;border-radius:4px;transition:all .3s;height:24px;padding:4px 0;line-height:24px;border:0;box-shadow:none}.ant-calendar-range .ant-calendar-input::-moz-placeholder,.ant-calendar-range .ant-calendar-time-picker-input::-moz-placeholder{color:#bfbfbf;opacity:1}.ant-calendar-range .ant-calendar-input:-ms-input-placeholder,.ant-calendar-range .ant-calendar-time-picker-input:-ms-input-placeholder{color:#bfbfbf}.ant-calendar-range .ant-calendar-input::-webkit-input-placeholder,.ant-calendar-range .ant-calendar-time-picker-input::-webkit-input-placeholder{color:#bfbfbf}.ant-calendar-range .ant-calendar-input:-moz-placeholder-shown, .ant-calendar-range .ant-calendar-time-picker-input:-moz-placeholder-shown{text-overflow:ellipsis}.ant-calendar-range .ant-calendar-input:-ms-input-placeholder, .ant-calendar-range .ant-calendar-time-picker-input:-ms-input-placeholder{text-overflow:ellipsis}.ant-calendar-range .ant-calendar-input:placeholder-shown,.ant-calendar-range .ant-calendar-time-picker-input:placeholder-shown{text-overflow:ellipsis}.ant-calendar-range .ant-calendar-input:hover,.ant-calendar-range .ant-calendar-time-picker-input:hover{border-color:#195e9e;border-right-width:1px!important}.ant-calendar-range .ant-calendar-input:focus,.ant-calendar-range .ant-calendar-time-picker-input:focus{border-color:#195e9e;border-right-width:1px!important;outline:0;box-shadow:0 0 0 2px rgba(0,70,145,.2)}.ant-calendar-range .ant-calendar-input-disabled,.ant-calendar-range .ant-calendar-time-picker-input-disabled{color:rgba(0,0,0,.25);background-color:#f5f5f5;cursor:not-allowed;opacity:1}.ant-calendar-range .ant-calendar-input-disabled:hover,.ant-calendar-range .ant-calendar-time-picker-input-disabled:hover{border-color:#d9d9d9;border-right-width:1px!important}.ant-calendar-range .ant-calendar-input[disabled],.ant-calendar-range .ant-calendar-time-picker-input[disabled]{color:rgba(0,0,0,.25);background-color:#f5f5f5;cursor:not-allowed;opacity:1}.ant-calendar-range .ant-calendar-input[disabled]:hover,.ant-calendar-range .ant-calendar-time-picker-input[disabled]:hover{border-color:#d9d9d9;border-right-width:1px!important}textarea.ant-calendar-range .ant-calendar-input,textarea.ant-calendar-range .ant-calendar-time-picker-input{max-width:100%;height:auto;min-height:32px;line-height:1.5;vertical-align:bottom;transition:all .3s,height 0s}.ant-calendar-range .ant-calendar-input-lg,.ant-calendar-range .ant-calendar-time-picker-input-lg{height:40px;padding:6px 11px;font-size:17px}.ant-calendar-range .ant-calendar-input-sm,.ant-calendar-range .ant-calendar-time-picker-input-sm{height:24px;padding:1px 7px}.ant-calendar-range .ant-calendar-input:focus,.ant-calendar-range .ant-calendar-time-picker-input:focus{box-shadow:none}.ant-calendar-range .ant-calendar-time-picker-icon{display:none}.ant-calendar-range.ant-calendar-week-number{width:574px}.ant-calendar-range.ant-calendar-week-number .ant-calendar-range-part{width:286px}.ant-calendar-range .ant-calendar-decade-panel,.ant-calendar-range .ant-calendar-month-panel,.ant-calendar-range .ant-calendar-year-panel{top:34px}.ant-calendar-range .ant-calendar-month-panel .ant-calendar-year-panel{top:0}.ant-calendar-range .ant-calendar-decade-panel-table,.ant-calendar-range .ant-calendar-month-panel-table,.ant-calendar-range .ant-calendar-year-panel-table{height:208px}.ant-calendar-range .ant-calendar-in-range-cell{position:relative;border-radius:0}.ant-calendar-range .ant-calendar-in-range-cell>div{position:relative;z-index:1}.ant-calendar-range .ant-calendar-in-range-cell:before{position:absolute;top:4px;right:0;bottom:4px;left:0;display:block;background:#bccad1;border:0;border-radius:0;content:""}.ant-calendar-range .ant-calendar-footer-extra{float:left}div.ant-calendar-range-quick-selector{text-align:left}div.ant-calendar-range-quick-selector>a{margin-right:8px}.ant-calendar-range .ant-calendar-decade-panel-header,.ant-calendar-range .ant-calendar-header,.ant-calendar-range .ant-calendar-month-panel-header,.ant-calendar-range .ant-calendar-year-panel-header{border-bottom:0}.ant-calendar-range .ant-calendar-body,.ant-calendar-range .ant-calendar-decade-panel-body,.ant-calendar-range .ant-calendar-month-panel-body,.ant-calendar-range .ant-calendar-year-panel-body{border-top:1px solid #e8e8e8}.ant-calendar-range.ant-calendar-time .ant-calendar-time-picker{top:68px;z-index:2;width:100%;height:207px}.ant-calendar-range.ant-calendar-time .ant-calendar-time-picker-panel{height:267px;margin-top:-34px}.ant-calendar-range.ant-calendar-time .ant-calendar-time-picker-inner{height:100%;padding-top:40px;background:none}.ant-calendar-range.ant-calendar-time .ant-calendar-time-picker-combobox{display:inline-block;height:100%;background-color:#fff;border-top:1px solid #e8e8e8}.ant-calendar-range.ant-calendar-time .ant-calendar-time-picker-select{height:100%}.ant-calendar-range.ant-calendar-time .ant-calendar-time-picker-select ul{max-height:100%}.ant-calendar-range.ant-calendar-time .ant-calendar-footer .ant-calendar-time-picker-btn{margin-right:8px}.ant-calendar-range.ant-calendar-time .ant-calendar-today-btn{height:22px;margin:8px 12px;line-height:22px}.ant-calendar-range-with-ranges.ant-calendar-time .ant-calendar-time-picker{height:233px}.ant-calendar-range.ant-calendar-show-time-picker .ant-calendar-body{border-top-color:transparent}.ant-calendar-time-picker{position:absolute;top:40px;width:100%;background-color:#fff}.ant-calendar-time-picker-panel{position:absolute;z-index:1050;width:100%}.ant-calendar-time-picker-inner{position:relative;display:inline-block;width:100%;overflow:hidden;font-size:15px;line-height:1.5;text-align:left;list-style:none;background-color:#fff;background-clip:padding-box;outline:none}.ant-calendar-time-picker-column-1,.ant-calendar-time-picker-column-1 .ant-calendar-time-picker-select,.ant-calendar-time-picker-combobox{width:100%}.ant-calendar-time-picker-column-2 .ant-calendar-time-picker-select{width:50%}.ant-calendar-time-picker-column-3 .ant-calendar-time-picker-select{width:33.33%}.ant-calendar-time-picker-column-4 .ant-calendar-time-picker-select{width:25%}.ant-calendar-time-picker-input-wrap{display:none}.ant-calendar-time-picker-select{position:relative;float:left;height:226px;overflow:hidden;font-size:15px;border-right:1px solid #e8e8e8}.ant-calendar-time-picker-select:hover{overflow-y:auto}.ant-calendar-time-picker-select:first-child{margin-left:0;border-left:0}.ant-calendar-time-picker-select:last-child{border-right:0}.ant-calendar-time-picker-select ul{width:100%;max-height:206px;margin:0;padding:0;list-style:none}.ant-calendar-time-picker-select li{width:100%;height:24px;margin:0;line-height:24px;text-align:center;list-style:none;cursor:pointer;transition:all .3s;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.ant-calendar-time-picker-select li:last-child:after{display:block;height:202px;content:""}.ant-calendar-time-picker-select li:hover{background:#bccad1}.ant-calendar-time-picker-select li:focus{color:#004691;font-weight:600;outline:none}li.ant-calendar-time-picker-select-option-selected{font-weight:600;background:#f5f5f5}li.ant-calendar-time-picker-select-option-disabled{color:rgba(0,0,0,.25)}li.ant-calendar-time-picker-select-option-disabled:hover{background:transparent;cursor:not-allowed}.ant-calendar-time .ant-calendar-day-select{display:inline-block;padding:0 2px;color:rgba(0,0,0,.85);font-weight:500;line-height:34px}.ant-calendar-time .ant-calendar-footer{position:relative;height:auto}.ant-calendar-time .ant-calendar-footer-btn{text-align:right}.ant-calendar-time .ant-calendar-footer .ant-calendar-today-btn{float:left;margin:0}.ant-calendar-time .ant-calendar-footer .ant-calendar-time-picker-btn{display:inline-block;margin-right:8px}.ant-calendar-time .ant-calendar-footer .ant-calendar-time-picker-btn-disabled{color:rgba(0,0,0,.25)}.ant-calendar-month-panel{position:absolute;top:0;right:0;bottom:0;left:0;z-index:10;background:#fff;border-radius:4px;outline:none}.ant-calendar-month-panel>div{display:flex;flex-direction:column;height:100%}.ant-calendar-month-panel-hidden{display:none}.ant-calendar-month-panel-header{height:40px;line-height:40px;text-align:center;border-bottom:1px solid #e8e8e8;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;position:relative}.ant-calendar-month-panel-header a:hover{color:#195e9e}.ant-calendar-month-panel-header .ant-calendar-month-panel-century-select,.ant-calendar-month-panel-header .ant-calendar-month-panel-decade-select,.ant-calendar-month-panel-header .ant-calendar-month-panel-month-select,.ant-calendar-month-panel-header .ant-calendar-month-panel-year-select{display:inline-block;padding:0 2px;color:rgba(0,0,0,.85);font-weight:500;line-height:40px}.ant-calendar-month-panel-header .ant-calendar-month-panel-century-select-arrow,.ant-calendar-month-panel-header .ant-calendar-month-panel-decade-select-arrow,.ant-calendar-month-panel-header .ant-calendar-month-panel-month-select-arrow,.ant-calendar-month-panel-header .ant-calendar-month-panel-year-select-arrow{display:none}.ant-calendar-month-panel-header .ant-calendar-month-panel-next-century-btn,.ant-calendar-month-panel-header .ant-calendar-month-panel-next-decade-btn,.ant-calendar-month-panel-header .ant-calendar-month-panel-next-month-btn,.ant-calendar-month-panel-header .ant-calendar-month-panel-next-year-btn,.ant-calendar-month-panel-header .ant-calendar-month-panel-prev-century-btn,.ant-calendar-month-panel-header .ant-calendar-month-panel-prev-decade-btn,.ant-calendar-month-panel-header .ant-calendar-month-panel-prev-month-btn,.ant-calendar-month-panel-header .ant-calendar-month-panel-prev-year-btn{position:absolute;top:0;display:inline-block;padding:0 5px;color:rgba(0,0,0,.45);font-size:16px;font-family:Arial,Hiragino Sans GB,Microsoft Yahei,"Microsoft Sans Serif",sans-serif;line-height:40px}.ant-calendar-month-panel-header .ant-calendar-month-panel-prev-century-btn,.ant-calendar-month-panel-header .ant-calendar-month-panel-prev-decade-btn,.ant-calendar-month-panel-header .ant-calendar-month-panel-prev-year-btn{left:7px;height:100%}.ant-calendar-month-panel-header .ant-calendar-month-panel-prev-century-btn:after,.ant-calendar-month-panel-header .ant-calendar-month-panel-prev-century-btn:before,.ant-calendar-month-panel-header .ant-calendar-month-panel-prev-decade-btn:after,.ant-calendar-month-panel-header .ant-calendar-month-panel-prev-decade-btn:before,.ant-calendar-month-panel-header .ant-calendar-month-panel-prev-year-btn:after,.ant-calendar-month-panel-header .ant-calendar-month-panel-prev-year-btn:before{position:relative;top:-1px;display:inline-block;width:8px;height:8px;vertical-align:middle;border:0 solid #aaa;border-width:1.5px 0 0 1.5px;border-radius:1px;transform:rotate(-45deg) scale(.8);transition:all .3s;content:""}.ant-calendar-month-panel-header .ant-calendar-month-panel-prev-century-btn:hover:after,.ant-calendar-month-panel-header .ant-calendar-month-panel-prev-century-btn:hover:before,.ant-calendar-month-panel-header .ant-calendar-month-panel-prev-decade-btn:hover:after,.ant-calendar-month-panel-header .ant-calendar-month-panel-prev-decade-btn:hover:before,.ant-calendar-month-panel-header .ant-calendar-month-panel-prev-year-btn:hover:after,.ant-calendar-month-panel-header .ant-calendar-month-panel-prev-year-btn:hover:before{border-color:rgba(0,0,0,.65)}.ant-calendar-month-panel-header .ant-calendar-month-panel-prev-century-btn:after,.ant-calendar-month-panel-header .ant-calendar-month-panel-prev-decade-btn:after,.ant-calendar-month-panel-header .ant-calendar-month-panel-prev-year-btn:after{display:none;position:relative;left:-3px;display:inline-block}.ant-calendar-month-panel-header .ant-calendar-month-panel-next-century-btn,.ant-calendar-month-panel-header .ant-calendar-month-panel-next-decade-btn,.ant-calendar-month-panel-header .ant-calendar-month-panel-next-year-btn{right:7px;height:100%}.ant-calendar-month-panel-header .ant-calendar-month-panel-next-century-btn:after,.ant-calendar-month-panel-header .ant-calendar-month-panel-next-century-btn:before,.ant-calendar-month-panel-header .ant-calendar-month-panel-next-decade-btn:after,.ant-calendar-month-panel-header .ant-calendar-month-panel-next-decade-btn:before,.ant-calendar-month-panel-header .ant-calendar-month-panel-next-year-btn:after,.ant-calendar-month-panel-header .ant-calendar-month-panel-next-year-btn:before{position:relative;top:-1px;display:inline-block;width:8px;height:8px;vertical-align:middle;border:0 solid #aaa;border-width:1.5px 0 0 1.5px;border-radius:1px;transform:rotate(-45deg) scale(.8);transition:all .3s;content:""}.ant-calendar-month-panel-header .ant-calendar-month-panel-next-century-btn:hover:after,.ant-calendar-month-panel-header .ant-calendar-month-panel-next-century-btn:hover:before,.ant-calendar-month-panel-header .ant-calendar-month-panel-next-decade-btn:hover:after,.ant-calendar-month-panel-header .ant-calendar-month-panel-next-decade-btn:hover:before,.ant-calendar-month-panel-header .ant-calendar-month-panel-next-year-btn:hover:after,.ant-calendar-month-panel-header .ant-calendar-month-panel-next-year-btn:hover:before{border-color:rgba(0,0,0,.65)}.ant-calendar-month-panel-header .ant-calendar-month-panel-next-century-btn:after,.ant-calendar-month-panel-header .ant-calendar-month-panel-next-decade-btn:after,.ant-calendar-month-panel-header .ant-calendar-month-panel-next-year-btn:after{display:none}.ant-calendar-month-panel-header .ant-calendar-month-panel-next-century-btn:after,.ant-calendar-month-panel-header .ant-calendar-month-panel-next-century-btn:before,.ant-calendar-month-panel-header .ant-calendar-month-panel-next-decade-btn:after,.ant-calendar-month-panel-header .ant-calendar-month-panel-next-decade-btn:before,.ant-calendar-month-panel-header .ant-calendar-month-panel-next-year-btn:after,.ant-calendar-month-panel-header .ant-calendar-month-panel-next-year-btn:before{transform:rotate(135deg) scale(.8)}.ant-calendar-month-panel-header .ant-calendar-month-panel-next-century-btn:before,.ant-calendar-month-panel-header .ant-calendar-month-panel-next-decade-btn:before,.ant-calendar-month-panel-header .ant-calendar-month-panel-next-year-btn:before{position:relative;left:3px}.ant-calendar-month-panel-header .ant-calendar-month-panel-next-century-btn:after,.ant-calendar-month-panel-header .ant-calendar-month-panel-next-decade-btn:after,.ant-calendar-month-panel-header .ant-calendar-month-panel-next-year-btn:after{display:inline-block}.ant-calendar-month-panel-header .ant-calendar-month-panel-prev-month-btn{left:29px;height:100%}.ant-calendar-month-panel-header .ant-calendar-month-panel-prev-month-btn:after,.ant-calendar-month-panel-header .ant-calendar-month-panel-prev-month-btn:before{position:relative;top:-1px;display:inline-block;width:8px;height:8px;vertical-align:middle;border:0 solid #aaa;border-width:1.5px 0 0 1.5px;border-radius:1px;transform:rotate(-45deg) scale(.8);transition:all .3s;content:""}.ant-calendar-month-panel-header .ant-calendar-month-panel-prev-month-btn:hover:after,.ant-calendar-month-panel-header .ant-calendar-month-panel-prev-month-btn:hover:before{border-color:rgba(0,0,0,.65)}.ant-calendar-month-panel-header .ant-calendar-month-panel-prev-month-btn:after{display:none}.ant-calendar-month-panel-header .ant-calendar-month-panel-next-month-btn{right:29px;height:100%}.ant-calendar-month-panel-header .ant-calendar-month-panel-next-month-btn:after,.ant-calendar-month-panel-header .ant-calendar-month-panel-next-month-btn:before{position:relative;top:-1px;display:inline-block;width:8px;height:8px;vertical-align:middle;border:0 solid #aaa;border-width:1.5px 0 0 1.5px;border-radius:1px;transform:rotate(-45deg) scale(.8);transition:all .3s;content:""}.ant-calendar-month-panel-header .ant-calendar-month-panel-next-month-btn:hover:after,.ant-calendar-month-panel-header .ant-calendar-month-panel-next-month-btn:hover:before{border-color:rgba(0,0,0,.65)}.ant-calendar-month-panel-header .ant-calendar-month-panel-next-month-btn:after{display:none}.ant-calendar-month-panel-header .ant-calendar-month-panel-next-month-btn:after,.ant-calendar-month-panel-header .ant-calendar-month-panel-next-month-btn:before{transform:rotate(135deg) scale(.8)}.ant-calendar-month-panel-body{flex:1}.ant-calendar-month-panel-footer{border-top:1px solid #e8e8e8}.ant-calendar-month-panel-footer .ant-calendar-footer-extra{padding:0 12px}.ant-calendar-month-panel-table{width:100%;height:100%;table-layout:fixed;border-collapse:separate}.ant-calendar-month-panel-selected-cell .ant-calendar-month-panel-month,.ant-calendar-month-panel-selected-cell .ant-calendar-month-panel-month:hover{color:#fff;background:#004691}.ant-calendar-month-panel-cell{text-align:center}.ant-calendar-month-panel-cell-disabled .ant-calendar-month-panel-month,.ant-calendar-month-panel-cell-disabled .ant-calendar-month-panel-month:hover{color:rgba(0,0,0,.25);background:#f5f5f5;cursor:not-allowed}.ant-calendar-month-panel-month{display:inline-block;height:24px;margin:0 auto;padding:0 8px;color:rgba(0,0,0,.65);line-height:24px;text-align:center;background:transparent;border-radius:2px;transition:background .3s ease}.ant-calendar-month-panel-month:hover{background:#bccad1;cursor:pointer}.ant-calendar-year-panel{position:absolute;top:0;right:0;bottom:0;left:0;z-index:10;background:#fff;border-radius:4px;outline:none}.ant-calendar-year-panel>div{display:flex;flex-direction:column;height:100%}.ant-calendar-year-panel-hidden{display:none}.ant-calendar-year-panel-header{height:40px;line-height:40px;text-align:center;border-bottom:1px solid #e8e8e8;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;position:relative}.ant-calendar-year-panel-header a:hover{color:#195e9e}.ant-calendar-year-panel-header .ant-calendar-year-panel-century-select,.ant-calendar-year-panel-header .ant-calendar-year-panel-decade-select,.ant-calendar-year-panel-header .ant-calendar-year-panel-month-select,.ant-calendar-year-panel-header .ant-calendar-year-panel-year-select{display:inline-block;padding:0 2px;color:rgba(0,0,0,.85);font-weight:500;line-height:40px}.ant-calendar-year-panel-header .ant-calendar-year-panel-century-select-arrow,.ant-calendar-year-panel-header .ant-calendar-year-panel-decade-select-arrow,.ant-calendar-year-panel-header .ant-calendar-year-panel-month-select-arrow,.ant-calendar-year-panel-header .ant-calendar-year-panel-year-select-arrow{display:none}.ant-calendar-year-panel-header .ant-calendar-year-panel-next-century-btn,.ant-calendar-year-panel-header .ant-calendar-year-panel-next-decade-btn,.ant-calendar-year-panel-header .ant-calendar-year-panel-next-month-btn,.ant-calendar-year-panel-header .ant-calendar-year-panel-next-year-btn,.ant-calendar-year-panel-header .ant-calendar-year-panel-prev-century-btn,.ant-calendar-year-panel-header .ant-calendar-year-panel-prev-decade-btn,.ant-calendar-year-panel-header .ant-calendar-year-panel-prev-month-btn,.ant-calendar-year-panel-header .ant-calendar-year-panel-prev-year-btn{position:absolute;top:0;display:inline-block;padding:0 5px;color:rgba(0,0,0,.45);font-size:16px;font-family:Arial,Hiragino Sans GB,Microsoft Yahei,"Microsoft Sans Serif",sans-serif;line-height:40px}.ant-calendar-year-panel-header .ant-calendar-year-panel-prev-century-btn,.ant-calendar-year-panel-header .ant-calendar-year-panel-prev-decade-btn,.ant-calendar-year-panel-header .ant-calendar-year-panel-prev-year-btn{left:7px;height:100%}.ant-calendar-year-panel-header .ant-calendar-year-panel-prev-century-btn:after,.ant-calendar-year-panel-header .ant-calendar-year-panel-prev-century-btn:before,.ant-calendar-year-panel-header .ant-calendar-year-panel-prev-decade-btn:after,.ant-calendar-year-panel-header .ant-calendar-year-panel-prev-decade-btn:before,.ant-calendar-year-panel-header .ant-calendar-year-panel-prev-year-btn:after,.ant-calendar-year-panel-header .ant-calendar-year-panel-prev-year-btn:before{position:relative;top:-1px;display:inline-block;width:8px;height:8px;vertical-align:middle;border:0 solid #aaa;border-width:1.5px 0 0 1.5px;border-radius:1px;transform:rotate(-45deg) scale(.8);transition:all .3s;content:""}.ant-calendar-year-panel-header .ant-calendar-year-panel-prev-century-btn:hover:after,.ant-calendar-year-panel-header .ant-calendar-year-panel-prev-century-btn:hover:before,.ant-calendar-year-panel-header .ant-calendar-year-panel-prev-decade-btn:hover:after,.ant-calendar-year-panel-header .ant-calendar-year-panel-prev-decade-btn:hover:before,.ant-calendar-year-panel-header .ant-calendar-year-panel-prev-year-btn:hover:after,.ant-calendar-year-panel-header .ant-calendar-year-panel-prev-year-btn:hover:before{border-color:rgba(0,0,0,.65)}.ant-calendar-year-panel-header .ant-calendar-year-panel-prev-century-btn:after,.ant-calendar-year-panel-header .ant-calendar-year-panel-prev-decade-btn:after,.ant-calendar-year-panel-header .ant-calendar-year-panel-prev-year-btn:after{display:none;position:relative;left:-3px;display:inline-block}.ant-calendar-year-panel-header .ant-calendar-year-panel-next-century-btn,.ant-calendar-year-panel-header .ant-calendar-year-panel-next-decade-btn,.ant-calendar-year-panel-header .ant-calendar-year-panel-next-year-btn{right:7px;height:100%}.ant-calendar-year-panel-header .ant-calendar-year-panel-next-century-btn:after,.ant-calendar-year-panel-header .ant-calendar-year-panel-next-century-btn:before,.ant-calendar-year-panel-header .ant-calendar-year-panel-next-decade-btn:after,.ant-calendar-year-panel-header .ant-calendar-year-panel-next-decade-btn:before,.ant-calendar-year-panel-header .ant-calendar-year-panel-next-year-btn:after,.ant-calendar-year-panel-header .ant-calendar-year-panel-next-year-btn:before{position:relative;top:-1px;display:inline-block;width:8px;height:8px;vertical-align:middle;border:0 solid #aaa;border-width:1.5px 0 0 1.5px;border-radius:1px;transform:rotate(-45deg) scale(.8);transition:all .3s;content:""}.ant-calendar-year-panel-header .ant-calendar-year-panel-next-century-btn:hover:after,.ant-calendar-year-panel-header .ant-calendar-year-panel-next-century-btn:hover:before,.ant-calendar-year-panel-header .ant-calendar-year-panel-next-decade-btn:hover:after,.ant-calendar-year-panel-header .ant-calendar-year-panel-next-decade-btn:hover:before,.ant-calendar-year-panel-header .ant-calendar-year-panel-next-year-btn:hover:after,.ant-calendar-year-panel-header .ant-calendar-year-panel-next-year-btn:hover:before{border-color:rgba(0,0,0,.65)}.ant-calendar-year-panel-header .ant-calendar-year-panel-next-century-btn:after,.ant-calendar-year-panel-header .ant-calendar-year-panel-next-decade-btn:after,.ant-calendar-year-panel-header .ant-calendar-year-panel-next-year-btn:after{display:none}.ant-calendar-year-panel-header .ant-calendar-year-panel-next-century-btn:after,.ant-calendar-year-panel-header .ant-calendar-year-panel-next-century-btn:before,.ant-calendar-year-panel-header .ant-calendar-year-panel-next-decade-btn:after,.ant-calendar-year-panel-header .ant-calendar-year-panel-next-decade-btn:before,.ant-calendar-year-panel-header .ant-calendar-year-panel-next-year-btn:after,.ant-calendar-year-panel-header .ant-calendar-year-panel-next-year-btn:before{transform:rotate(135deg) scale(.8)}.ant-calendar-year-panel-header .ant-calendar-year-panel-next-century-btn:before,.ant-calendar-year-panel-header .ant-calendar-year-panel-next-decade-btn:before,.ant-calendar-year-panel-header .ant-calendar-year-panel-next-year-btn:before{position:relative;left:3px}.ant-calendar-year-panel-header .ant-calendar-year-panel-next-century-btn:after,.ant-calendar-year-panel-header .ant-calendar-year-panel-next-decade-btn:after,.ant-calendar-year-panel-header .ant-calendar-year-panel-next-year-btn:after{display:inline-block}.ant-calendar-year-panel-header .ant-calendar-year-panel-prev-month-btn{left:29px;height:100%}.ant-calendar-year-panel-header .ant-calendar-year-panel-prev-month-btn:after,.ant-calendar-year-panel-header .ant-calendar-year-panel-prev-month-btn:before{position:relative;top:-1px;display:inline-block;width:8px;height:8px;vertical-align:middle;border:0 solid #aaa;border-width:1.5px 0 0 1.5px;border-radius:1px;transform:rotate(-45deg) scale(.8);transition:all .3s;content:""}.ant-calendar-year-panel-header .ant-calendar-year-panel-prev-month-btn:hover:after,.ant-calendar-year-panel-header .ant-calendar-year-panel-prev-month-btn:hover:before{border-color:rgba(0,0,0,.65)}.ant-calendar-year-panel-header .ant-calendar-year-panel-prev-month-btn:after{display:none}.ant-calendar-year-panel-header .ant-calendar-year-panel-next-month-btn{right:29px;height:100%}.ant-calendar-year-panel-header .ant-calendar-year-panel-next-month-btn:after,.ant-calendar-year-panel-header .ant-calendar-year-panel-next-month-btn:before{position:relative;top:-1px;display:inline-block;width:8px;height:8px;vertical-align:middle;border:0 solid #aaa;border-width:1.5px 0 0 1.5px;border-radius:1px;transform:rotate(-45deg) scale(.8);transition:all .3s;content:""}.ant-calendar-year-panel-header .ant-calendar-year-panel-next-month-btn:hover:after,.ant-calendar-year-panel-header .ant-calendar-year-panel-next-month-btn:hover:before{border-color:rgba(0,0,0,.65)}.ant-calendar-year-panel-header .ant-calendar-year-panel-next-month-btn:after{display:none}.ant-calendar-year-panel-header .ant-calendar-year-panel-next-month-btn:after,.ant-calendar-year-panel-header .ant-calendar-year-panel-next-month-btn:before{transform:rotate(135deg) scale(.8)}.ant-calendar-year-panel-body{flex:1}.ant-calendar-year-panel-footer{border-top:1px solid #e8e8e8}.ant-calendar-year-panel-footer .ant-calendar-footer-extra{padding:0 12px}.ant-calendar-year-panel-table{width:100%;height:100%;table-layout:fixed;border-collapse:separate}.ant-calendar-year-panel-cell{text-align:center}.ant-calendar-year-panel-cell-disabled .ant-calendar-year-panel-year,.ant-calendar-year-panel-cell-disabled .ant-calendar-year-panel-year:hover{color:rgba(0,0,0,.25);background:#f5f5f5;cursor:not-allowed}.ant-calendar-year-panel-year{display:inline-block;height:24px;margin:0 auto;padding:0 8px;color:rgba(0,0,0,.65);line-height:24px;text-align:center;background:transparent;border-radius:2px;transition:background .3s ease}.ant-calendar-year-panel-year:hover{background:#bccad1;cursor:pointer}.ant-calendar-year-panel-selected-cell .ant-calendar-year-panel-year,.ant-calendar-year-panel-selected-cell .ant-calendar-year-panel-year:hover{color:#fff;background:#004691}.ant-calendar-year-panel-last-decade-cell .ant-calendar-year-panel-year,.ant-calendar-year-panel-next-decade-cell .ant-calendar-year-panel-year{color:rgba(0,0,0,.25);-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.ant-calendar-decade-panel{position:absolute;top:0;right:0;bottom:0;left:0;z-index:10;display:flex;flex-direction:column;background:#fff;border-radius:4px;outline:none}.ant-calendar-decade-panel-hidden{display:none}.ant-calendar-decade-panel-header{height:40px;line-height:40px;text-align:center;border-bottom:1px solid #e8e8e8;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;position:relative}.ant-calendar-decade-panel-header a:hover{color:#195e9e}.ant-calendar-decade-panel-header .ant-calendar-decade-panel-century-select,.ant-calendar-decade-panel-header .ant-calendar-decade-panel-decade-select,.ant-calendar-decade-panel-header .ant-calendar-decade-panel-month-select,.ant-calendar-decade-panel-header .ant-calendar-decade-panel-year-select{display:inline-block;padding:0 2px;color:rgba(0,0,0,.85);font-weight:500;line-height:40px}.ant-calendar-decade-panel-header .ant-calendar-decade-panel-century-select-arrow,.ant-calendar-decade-panel-header .ant-calendar-decade-panel-decade-select-arrow,.ant-calendar-decade-panel-header .ant-calendar-decade-panel-month-select-arrow,.ant-calendar-decade-panel-header .ant-calendar-decade-panel-year-select-arrow{display:none}.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-century-btn,.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-decade-btn,.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-month-btn,.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-year-btn,.ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-century-btn,.ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-decade-btn,.ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-month-btn,.ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-year-btn{position:absolute;top:0;display:inline-block;padding:0 5px;color:rgba(0,0,0,.45);font-size:16px;font-family:Arial,Hiragino Sans GB,Microsoft Yahei,"Microsoft Sans Serif",sans-serif;line-height:40px}.ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-century-btn,.ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-decade-btn,.ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-year-btn{left:7px;height:100%}.ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-century-btn:after,.ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-century-btn:before,.ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-decade-btn:after,.ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-decade-btn:before,.ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-year-btn:after,.ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-year-btn:before{position:relative;top:-1px;display:inline-block;width:8px;height:8px;vertical-align:middle;border:0 solid #aaa;border-width:1.5px 0 0 1.5px;border-radius:1px;transform:rotate(-45deg) scale(.8);transition:all .3s;content:""}.ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-century-btn:hover:after,.ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-century-btn:hover:before,.ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-decade-btn:hover:after,.ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-decade-btn:hover:before,.ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-year-btn:hover:after,.ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-year-btn:hover:before{border-color:rgba(0,0,0,.65)}.ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-century-btn:after,.ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-decade-btn:after,.ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-year-btn:after{display:none;position:relative;left:-3px;display:inline-block}.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-century-btn,.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-decade-btn,.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-year-btn{right:7px;height:100%}.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-century-btn:after,.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-century-btn:before,.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-decade-btn:after,.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-decade-btn:before,.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-year-btn:after,.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-year-btn:before{position:relative;top:-1px;display:inline-block;width:8px;height:8px;vertical-align:middle;border:0 solid #aaa;border-width:1.5px 0 0 1.5px;border-radius:1px;transform:rotate(-45deg) scale(.8);transition:all .3s;content:""}.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-century-btn:hover:after,.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-century-btn:hover:before,.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-decade-btn:hover:after,.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-decade-btn:hover:before,.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-year-btn:hover:after,.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-year-btn:hover:before{border-color:rgba(0,0,0,.65)}.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-century-btn:after,.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-decade-btn:after,.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-year-btn:after{display:none}.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-century-btn:after,.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-century-btn:before,.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-decade-btn:after,.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-decade-btn:before,.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-year-btn:after,.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-year-btn:before{transform:rotate(135deg) scale(.8)}.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-century-btn:before,.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-decade-btn:before,.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-year-btn:before{position:relative;left:3px}.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-century-btn:after,.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-decade-btn:after,.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-year-btn:after{display:inline-block}.ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-month-btn{left:29px;height:100%}.ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-month-btn:after,.ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-month-btn:before{position:relative;top:-1px;display:inline-block;width:8px;height:8px;vertical-align:middle;border:0 solid #aaa;border-width:1.5px 0 0 1.5px;border-radius:1px;transform:rotate(-45deg) scale(.8);transition:all .3s;content:""}.ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-month-btn:hover:after,.ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-month-btn:hover:before{border-color:rgba(0,0,0,.65)}.ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-month-btn:after{display:none}.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-month-btn{right:29px;height:100%}.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-month-btn:after,.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-month-btn:before{position:relative;top:-1px;display:inline-block;width:8px;height:8px;vertical-align:middle;border:0 solid #aaa;border-width:1.5px 0 0 1.5px;border-radius:1px;transform:rotate(-45deg) scale(.8);transition:all .3s;content:""}.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-month-btn:hover:after,.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-month-btn:hover:before{border-color:rgba(0,0,0,.65)}.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-month-btn:after{display:none}.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-month-btn:after,.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-month-btn:before{transform:rotate(135deg) scale(.8)}.ant-calendar-decade-panel-body{flex:1}.ant-calendar-decade-panel-footer{border-top:1px solid #e8e8e8}.ant-calendar-decade-panel-footer .ant-calendar-footer-extra{padding:0 12px}.ant-calendar-decade-panel-table{width:100%;height:100%;table-layout:fixed;border-collapse:separate}.ant-calendar-decade-panel-cell{white-space:nowrap;text-align:center}.ant-calendar-decade-panel-decade{display:inline-block;height:24px;margin:0 auto;padding:0 6px;color:rgba(0,0,0,.65);line-height:24px;text-align:center;background:transparent;border-radius:2px;transition:background .3s ease}.ant-calendar-decade-panel-decade:hover{background:#bccad1;cursor:pointer}.ant-calendar-decade-panel-selected-cell .ant-calendar-decade-panel-decade,.ant-calendar-decade-panel-selected-cell .ant-calendar-decade-panel-decade:hover{color:#fff;background:#004691}.ant-calendar-decade-panel-last-century-cell .ant-calendar-decade-panel-decade,.ant-calendar-decade-panel-next-century-cell .ant-calendar-decade-panel-decade{color:rgba(0,0,0,.25);-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.ant-calendar-month .ant-calendar-month-header-wrap{position:relative;height:288px}.ant-calendar-month .ant-calendar-month-panel,.ant-calendar-month .ant-calendar-year-panel{top:0;height:100%}.ant-calendar-week-number-cell{opacity:.5}.ant-calendar-week-number .ant-calendar-body tr{cursor:pointer;transition:all .3s}.ant-calendar-week-number .ant-calendar-body tr:hover{background:#bccad1}.ant-calendar-week-number .ant-calendar-body tr.ant-calendar-active-week{font-weight:700;background:#7ea9c4}.ant-calendar-week-number .ant-calendar-body tr .ant-calendar-selected-day .ant-calendar-date,.ant-calendar-week-number .ant-calendar-body tr .ant-calendar-selected-day:hover .ant-calendar-date{color:rgba(0,0,0,.65);background:transparent}.ant-descriptions-title{margin-bottom:20px;color:rgba(0,0,0,.85);font-weight:700;font-size:17px;line-height:1.5}.ant-descriptions-view{width:100%;overflow:hidden;border-radius:4px}.ant-descriptions-view table{width:100%;table-layout:fixed}.ant-descriptions-row>td,.ant-descriptions-row>th{padding-bottom:16px}.ant-descriptions-row:last-child{border-bottom:none}.ant-descriptions-item-label{color:rgba(0,0,0,.85);font-weight:400;font-size:15px;line-height:1.5}.ant-descriptions-item-label:after{position:relative;top:-.5px;margin:0 8px 0 2px;content:" "}.ant-descriptions-item-colon:after{content:":"}.ant-descriptions-item-no-label:after{margin:0;content:""}.ant-descriptions-item-content{display:table-cell;color:rgba(0,0,0,.65);font-size:15px;line-height:1.5}.ant-descriptions-item{padding-bottom:0}.ant-descriptions-item>span{display:inline-block}.ant-descriptions-middle .ant-descriptions-row>td,.ant-descriptions-middle .ant-descriptions-row>th{padding-bottom:12px}.ant-descriptions-small .ant-descriptions-row>td,.ant-descriptions-small .ant-descriptions-row>th{padding-bottom:8px}.ant-descriptions-bordered .ant-descriptions-view{border:1px solid #e8e8e8}.ant-descriptions-bordered .ant-descriptions-view>table{table-layout:auto}.ant-descriptions-bordered .ant-descriptions-item-content,.ant-descriptions-bordered .ant-descriptions-item-label{padding:16px 24px;border-right:1px solid #e8e8e8}.ant-descriptions-bordered .ant-descriptions-item-content:last-child,.ant-descriptions-bordered .ant-descriptions-item-label:last-child{border-right:none}.ant-descriptions-bordered .ant-descriptions-item-label{background-color:#fafafa}.ant-descriptions-bordered .ant-descriptions-item-label:after{display:none}.ant-descriptions-bordered .ant-descriptions-row{border-bottom:1px solid #e8e8e8}.ant-descriptions-bordered .ant-descriptions-row:last-child{border-bottom:none}.ant-descriptions-bordered.ant-descriptions-middle .ant-descriptions-item-content,.ant-descriptions-bordered.ant-descriptions-middle .ant-descriptions-item-label{padding:12px 24px}.ant-descriptions-bordered.ant-descriptions-small .ant-descriptions-item-content,.ant-descriptions-bordered.ant-descriptions-small .ant-descriptions-item-label{padding:8px 16px}.ant-divider{box-sizing:border-box;margin:0;padding:0;color:rgba(0,0,0,.65);font-size:15px;font-variant:tabular-nums;line-height:1.5;list-style:none;font-feature-settings:"tnum";background:#e8e8e8}.ant-divider,.ant-divider-vertical{position:relative;top:-.06em;display:inline-block;width:1px;height:.9em;margin:0 8px;vertical-align:middle}.ant-divider-horizontal{display:block;clear:both;width:100%;min-width:100%;height:1px;margin:24px 0}.ant-divider-horizontal.ant-divider-with-text-center,.ant-divider-horizontal.ant-divider-with-text-left,.ant-divider-horizontal.ant-divider-with-text-right{display:table;margin:16px 0;color:rgba(0,0,0,.85);font-weight:500;font-size:17px;white-space:nowrap;text-align:center;background:transparent}.ant-divider-horizontal.ant-divider-with-text-center:after,.ant-divider-horizontal.ant-divider-with-text-center:before,.ant-divider-horizontal.ant-divider-with-text-left:after,.ant-divider-horizontal.ant-divider-with-text-left:before,.ant-divider-horizontal.ant-divider-with-text-right:after,.ant-divider-horizontal.ant-divider-with-text-right:before{position:relative;top:50%;display:table-cell;width:50%;border-top:1px solid #e8e8e8;transform:translateY(50%);content:""}.ant-divider-horizontal.ant-divider-with-text-left .ant-divider-inner-text,.ant-divider-horizontal.ant-divider-with-text-right .ant-divider-inner-text{display:inline-block;padding:0 10px}.ant-divider-horizontal.ant-divider-with-text-left:before{top:50%;width:5%}.ant-divider-horizontal.ant-divider-with-text-left:after,.ant-divider-horizontal.ant-divider-with-text-right:before{top:50%;width:95%}.ant-divider-horizontal.ant-divider-with-text-right:after{top:50%;width:5%}.ant-divider-inner-text{display:inline-block;padding:0 24px}.ant-divider-dashed{background:none;border:dashed #e8e8e8;border-width:1px 0 0}.ant-divider-horizontal.ant-divider-with-text-center.ant-divider-dashed,.ant-divider-horizontal.ant-divider-with-text-left.ant-divider-dashed,.ant-divider-horizontal.ant-divider-with-text-right.ant-divider-dashed{border-top:0}.ant-divider-horizontal.ant-divider-with-text-center.ant-divider-dashed:after,.ant-divider-horizontal.ant-divider-with-text-center.ant-divider-dashed:before,.ant-divider-horizontal.ant-divider-with-text-left.ant-divider-dashed:after,.ant-divider-horizontal.ant-divider-with-text-left.ant-divider-dashed:before,.ant-divider-horizontal.ant-divider-with-text-right.ant-divider-dashed:after,.ant-divider-horizontal.ant-divider-with-text-right.ant-divider-dashed:before{border-style:dashed none none}.ant-divider-vertical.ant-divider-dashed{border-width:0 0 0 1px}.ant-drawer{position:fixed;z-index:1000;width:0;height:100%;transition:transform .3s cubic-bezier(.7,.3,.1,1),height 0s ease .3s,width 0s ease .3s}.ant-drawer>*{transition:transform .3s cubic-bezier(.7,.3,.1,1),box-shadow .3s cubic-bezier(.7,.3,.1,1)}.ant-drawer-content-wrapper{position:absolute}.ant-drawer .ant-drawer-content{width:100%;height:100%}.ant-drawer-left,.ant-drawer-right{top:0;width:0;height:100%}.ant-drawer-left .ant-drawer-content-wrapper,.ant-drawer-right .ant-drawer-content-wrapper{height:100%}.ant-drawer-left.ant-drawer-open,.ant-drawer-right.ant-drawer-open{width:100%;transition:transform .3s cubic-bezier(.7,.3,.1,1)}.ant-drawer-left.ant-drawer-open.no-mask,.ant-drawer-right.ant-drawer-open.no-mask{width:0}.ant-drawer-left.ant-drawer-open .ant-drawer-content-wrapper{box-shadow:2px 0 8px rgba(0,0,0,.15)}.ant-drawer-right,.ant-drawer-right .ant-drawer-content-wrapper{right:0}.ant-drawer-right.ant-drawer-open .ant-drawer-content-wrapper{box-shadow:-2px 0 8px rgba(0,0,0,.15)}.ant-drawer-right.ant-drawer-open.no-mask{right:1px;transform:translateX(1px)}.ant-drawer-bottom,.ant-drawer-top{left:0;width:100%;height:0%}.ant-drawer-bottom .ant-drawer-content-wrapper,.ant-drawer-top .ant-drawer-content-wrapper{width:100%}.ant-drawer-bottom.ant-drawer-open,.ant-drawer-top.ant-drawer-open{height:100%;transition:transform .3s cubic-bezier(.7,.3,.1,1)}.ant-drawer-bottom.ant-drawer-open.no-mask,.ant-drawer-top.ant-drawer-open.no-mask{height:0%}.ant-drawer-top{top:0}.ant-drawer-top.ant-drawer-open .ant-drawer-content-wrapper{box-shadow:0 2px 8px rgba(0,0,0,.15)}.ant-drawer-bottom,.ant-drawer-bottom .ant-drawer-content-wrapper{bottom:0}.ant-drawer-bottom.ant-drawer-open .ant-drawer-content-wrapper{box-shadow:0 -2px 8px rgba(0,0,0,.15)}.ant-drawer-bottom.ant-drawer-open.no-mask{bottom:1px;transform:translateY(1px)}.ant-drawer.ant-drawer-open .ant-drawer-mask{height:100%;opacity:1;transition:none;-webkit-animation:antdDrawerFadeIn .3s cubic-bezier(.7,.3,.1,1);animation:antdDrawerFadeIn .3s cubic-bezier(.7,.3,.1,1)}.ant-drawer-title{margin:0;color:rgba(0,0,0,.85);font-weight:500;font-size:17px;line-height:22px}.ant-drawer-content{position:relative;z-index:1;overflow:auto;background-color:#fff;background-clip:padding-box;border:0}.ant-drawer-close{position:absolute;top:0;right:0;z-index:10;display:block;width:56px;height:56px;padding:0;color:rgba(0,0,0,.45);font-weight:700;font-size:17px;font-style:normal;line-height:56px;text-align:center;text-transform:none;text-decoration:none;background:transparent;border:0;outline:0;cursor:pointer;transition:color .3s;text-rendering:auto}.ant-drawer-close:focus,.ant-drawer-close:hover{color:rgba(0,0,0,.75);text-decoration:none}.ant-drawer-header{position:relative;padding:16px 24px;border-bottom:1px solid #e8e8e8;border-radius:4px 4px 0 0}.ant-drawer-header,.ant-drawer-header-no-title{color:rgba(0,0,0,.65);background:#fff}.ant-drawer-body{padding:24px;font-size:15px;line-height:1.5;word-wrap:break-word}.ant-drawer-wrapper-body{height:100%;overflow:auto}.ant-drawer-mask{position:absolute;top:0;left:0;width:100%;height:0;background-color:rgba(0,0,0,.45);opacity:0;filter:alpha(opacity=45);transition:opacity .3s linear,height 0s ease .3s}.ant-drawer-open-content{box-shadow:0 4px 12px rgba(0,0,0,.15)}@-webkit-keyframes antdDrawerFadeIn{0%{opacity:0}to{opacity:1}}@keyframes antdDrawerFadeIn{0%{opacity:0}to{opacity:1}}.ant-dropdown{box-sizing:border-box;margin:0;padding:0;color:rgba(0,0,0,.65);font-size:15px;font-variant:tabular-nums;line-height:1.5;list-style:none;font-feature-settings:"tnum";position:absolute;top:-9999px;left:-9999px;z-index:1050;display:block}.ant-dropdown:before{position:absolute;top:-7px;right:0;bottom:-7px;left:-7px;z-index:-9999;opacity:.0001;content:" "}.ant-dropdown-wrap{position:relative}.ant-dropdown-wrap .ant-btn>.anticon-down{display:inline-block;font-size:12px;font-size:10px\9;transform:scale(.83333333) rotate(0deg)}:root .ant-dropdown-wrap .ant-btn>.anticon-down{font-size:12px}.ant-dropdown-wrap .anticon-down:before{transition:transform .2s}.ant-dropdown-wrap-open .anticon-down:before{transform:rotate(180deg)}.ant-dropdown-hidden,.ant-dropdown-menu-hidden{display:none}.ant-dropdown-menu{position:relative;margin:0;padding:4px 0;text-align:left;list-style-type:none;background-color:#fff;background-clip:padding-box;border-radius:4px;outline:none;box-shadow:0 2px 8px rgba(0,0,0,.15);-webkit-transform:translateZ(0)}.ant-dropdown-menu-item-group-title{padding:5px 12px;color:rgba(0,0,0,.45);transition:all .3s}.ant-dropdown-menu-submenu-popup{position:absolute;z-index:1050}.ant-dropdown-menu-submenu-popup>.ant-dropdown-menu{transform-origin:0 0}.ant-dropdown-menu-submenu-popup li,.ant-dropdown-menu-submenu-popup ul{list-style:none}.ant-dropdown-menu-submenu-popup ul{margin-right:.3em;margin-left:.3em;padding:0}.ant-dropdown-menu-item,.ant-dropdown-menu-submenu-title{clear:both;margin:0;padding:5px 12px;color:rgba(0,0,0,.65);font-weight:400;font-size:15px;line-height:22px;white-space:nowrap;cursor:pointer;transition:all .3s}.ant-dropdown-menu-item>.anticon:first-child,.ant-dropdown-menu-item>span>.anticon:first-child,.ant-dropdown-menu-submenu-title>.anticon:first-child,.ant-dropdown-menu-submenu-title>span>.anticon:first-child{min-width:12px;margin-right:8px;font-size:12px}.ant-dropdown-menu-item>a,.ant-dropdown-menu-submenu-title>a{display:block;margin:-5px -12px;padding:5px 12px;color:rgba(0,0,0,.65);transition:all .3s}.ant-dropdown-menu-item-selected,.ant-dropdown-menu-item-selected>a,.ant-dropdown-menu-submenu-title-selected,.ant-dropdown-menu-submenu-title-selected>a{color:#004691;background-color:#bccad1}.ant-dropdown-menu-item:hover,.ant-dropdown-menu-submenu-title:hover{background-color:#bccad1}.ant-dropdown-menu-item-disabled,.ant-dropdown-menu-submenu-title-disabled{color:rgba(0,0,0,.25);cursor:not-allowed}.ant-dropdown-menu-item-disabled:hover,.ant-dropdown-menu-submenu-title-disabled:hover{color:rgba(0,0,0,.25);background-color:#fff;cursor:not-allowed}.ant-dropdown-menu-item-divider,.ant-dropdown-menu-submenu-title-divider{height:1px;margin:4px 0;overflow:hidden;line-height:0;background-color:#e8e8e8}.ant-dropdown-menu-item .ant-dropdown-menu-submenu-arrow,.ant-dropdown-menu-submenu-title .ant-dropdown-menu-submenu-arrow{position:absolute;right:8px}.ant-dropdown-menu-item .ant-dropdown-menu-submenu-arrow-icon,.ant-dropdown-menu-submenu-title .ant-dropdown-menu-submenu-arrow-icon{color:rgba(0,0,0,.45);font-style:normal;display:inline-block;font-size:12px;font-size:10px\9;transform:scale(.83333333) rotate(0deg)}:root .ant-dropdown-menu-item .ant-dropdown-menu-submenu-arrow-icon,:root .ant-dropdown-menu-submenu-title .ant-dropdown-menu-submenu-arrow-icon{font-size:12px}.ant-dropdown-menu-item-group-list{margin:0 8px;padding:0;list-style:none}.ant-dropdown-menu-submenu-title{padding-right:26px}.ant-dropdown-menu-submenu-vertical{position:relative}.ant-dropdown-menu-submenu-vertical>.ant-dropdown-menu{position:absolute;top:0;left:100%;min-width:100%;margin-left:4px;transform-origin:0 0}.ant-dropdown-menu-submenu.ant-dropdown-menu-submenu-disabled .ant-dropdown-menu-submenu-title,.ant-dropdown-menu-submenu.ant-dropdown-menu-submenu-disabled .ant-dropdown-menu-submenu-title .ant-dropdown-menu-submenu-arrow-icon{color:rgba(0,0,0,.25);background-color:#fff;cursor:not-allowed}.ant-dropdown-menu-submenu-selected .ant-dropdown-menu-submenu-title{color:#004691}.ant-dropdown.slide-down-appear.slide-down-appear-active.ant-dropdown-placement-bottomCenter,.ant-dropdown.slide-down-appear.slide-down-appear-active.ant-dropdown-placement-bottomLeft,.ant-dropdown.slide-down-appear.slide-down-appear-active.ant-dropdown-placement-bottomRight,.ant-dropdown.slide-down-enter.slide-down-enter-active.ant-dropdown-placement-bottomCenter,.ant-dropdown.slide-down-enter.slide-down-enter-active.ant-dropdown-placement-bottomLeft,.ant-dropdown.slide-down-enter.slide-down-enter-active.ant-dropdown-placement-bottomRight{-webkit-animation-name:antSlideUpIn;animation-name:antSlideUpIn}.ant-dropdown.slide-up-appear.slide-up-appear-active.ant-dropdown-placement-topCenter,.ant-dropdown.slide-up-appear.slide-up-appear-active.ant-dropdown-placement-topLeft,.ant-dropdown.slide-up-appear.slide-up-appear-active.ant-dropdown-placement-topRight,.ant-dropdown.slide-up-enter.slide-up-enter-active.ant-dropdown-placement-topCenter,.ant-dropdown.slide-up-enter.slide-up-enter-active.ant-dropdown-placement-topLeft,.ant-dropdown.slide-up-enter.slide-up-enter-active.ant-dropdown-placement-topRight{-webkit-animation-name:antSlideDownIn;animation-name:antSlideDownIn}.ant-dropdown.slide-down-leave.slide-down-leave-active.ant-dropdown-placement-bottomCenter,.ant-dropdown.slide-down-leave.slide-down-leave-active.ant-dropdown-placement-bottomLeft,.ant-dropdown.slide-down-leave.slide-down-leave-active.ant-dropdown-placement-bottomRight{-webkit-animation-name:antSlideUpOut;animation-name:antSlideUpOut}.ant-dropdown.slide-up-leave.slide-up-leave-active.ant-dropdown-placement-topCenter,.ant-dropdown.slide-up-leave.slide-up-leave-active.ant-dropdown-placement-topLeft,.ant-dropdown.slide-up-leave.slide-up-leave-active.ant-dropdown-placement-topRight{-webkit-animation-name:antSlideDownOut;animation-name:antSlideDownOut}.ant-dropdown-link>.anticon.anticon-down,.ant-dropdown-trigger>.anticon.anticon-down{display:inline-block;font-size:12px;font-size:10px\9;transform:scale(.83333333) rotate(0deg)}:root .ant-dropdown-link>.anticon.anticon-down,:root .ant-dropdown-trigger>.anticon.anticon-down{font-size:12px}.ant-dropdown-button{white-space:nowrap}.ant-dropdown-button.ant-btn-group>.ant-btn:last-child:not(:first-child){padding-right:8px;padding-left:8px}.ant-dropdown-button .anticon.anticon-down{display:inline-block;font-size:12px;font-size:10px\9;transform:scale(.83333333) rotate(0deg)}:root .ant-dropdown-button .anticon.anticon-down{font-size:12px}.ant-dropdown-menu-dark,.ant-dropdown-menu-dark .ant-dropdown-menu{background:#001529}.ant-dropdown-menu-dark .ant-dropdown-menu-item,.ant-dropdown-menu-dark .ant-dropdown-menu-item .ant-dropdown-menu-submenu-arrow:after,.ant-dropdown-menu-dark .ant-dropdown-menu-item>a,.ant-dropdown-menu-dark .ant-dropdown-menu-item>a .ant-dropdown-menu-submenu-arrow:after,.ant-dropdown-menu-dark .ant-dropdown-menu-submenu-title,.ant-dropdown-menu-dark .ant-dropdown-menu-submenu-title .ant-dropdown-menu-submenu-arrow:after{color:hsla(0,0%,100%,.65)}.ant-dropdown-menu-dark .ant-dropdown-menu-item:hover,.ant-dropdown-menu-dark .ant-dropdown-menu-item>a:hover,.ant-dropdown-menu-dark .ant-dropdown-menu-submenu-title:hover{color:#fff;background:transparent}.ant-dropdown-menu-dark .ant-dropdown-menu-item-selected,.ant-dropdown-menu-dark .ant-dropdown-menu-item-selected:hover,.ant-dropdown-menu-dark .ant-dropdown-menu-item-selected>a{color:#fff;background:#004691}.ant-empty{margin:0 8px;font-size:15px;line-height:22px;text-align:center}.ant-empty-image{height:100px;margin-bottom:8px}.ant-empty-image img{height:100%}.ant-empty-image svg{height:100%;margin:auto}.ant-empty-description{margin:0}.ant-empty-footer{margin-top:16px}.ant-empty-normal{margin:32px 0;color:rgba(0,0,0,.25)}.ant-empty-normal .ant-empty-image{height:40px}.ant-empty-small{margin:8px 0;color:rgba(0,0,0,.25)}.ant-empty-small .ant-empty-image{height:35px}@media (max-width:575px){.ant-form-item-control-wrapper,.ant-form-item-label{display:block;width:100%}.ant-form-item-label{display:block;margin:0;padding:0 0 8px;line-height:1.5;white-space:normal;text-align:left}.ant-form-item-label label:after{display:none}.ant-col-xs-24.ant-form-item-label{display:block;margin:0;padding:0 0 8px;line-height:1.5;white-space:normal;text-align:left}.ant-col-xs-24.ant-form-item-label label:after{display:none}}@media (max-width:767px){.ant-col-sm-24.ant-form-item-label{display:block;margin:0;padding:0 0 8px;line-height:1.5;white-space:normal;text-align:left}.ant-col-sm-24.ant-form-item-label label:after{display:none}}@media (max-width:991px){.ant-col-md-24.ant-form-item-label{display:block;margin:0;padding:0 0 8px;line-height:1.5;white-space:normal;text-align:left}.ant-col-md-24.ant-form-item-label label:after{display:none}}@media (max-width:1199px){.ant-col-lg-24.ant-form-item-label{display:block;margin:0;padding:0 0 8px;line-height:1.5;white-space:normal;text-align:left}.ant-col-lg-24.ant-form-item-label label:after{display:none}}@media (max-width:1599px){.ant-col-xl-24.ant-form-item-label{display:block;margin:0;padding:0 0 8px;line-height:1.5;white-space:normal;text-align:left}.ant-col-xl-24.ant-form-item-label label:after{display:none}}.ant-form{box-sizing:border-box;margin:0;padding:0;color:rgba(0,0,0,.65);font-size:15px;font-variant:tabular-nums;line-height:1.5;list-style:none;font-feature-settings:"tnum"}.ant-form legend{display:block;width:100%;margin-bottom:20px;padding:0;color:rgba(0,0,0,.45);font-size:17px;line-height:inherit;border:0;border-bottom:1px solid #d9d9d9}.ant-form label{font-size:15px}.ant-form input[type=search]{box-sizing:border-box}.ant-form input[type=checkbox],.ant-form input[type=radio]{line-height:normal}.ant-form input[type=file]{display:block}.ant-form input[type=range]{display:block;width:100%}.ant-form select[multiple],.ant-form select[size]{height:auto}.ant-form input[type=checkbox]:focus,.ant-form input[type=file]:focus,.ant-form input[type=radio]:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.ant-form output{display:block;padding-top:15px;color:rgba(0,0,0,.65);font-size:15px;line-height:1.5}.ant-form-item-required:before{display:inline-block;margin-right:4px;color:#f5222d;font-size:15px;font-family:SimSun,sans-serif;line-height:1;content:"*"}.ant-form-hide-required-mark .ant-form-item-required:before{display:none}.ant-form-item-label>label{color:rgba(0,0,0,.85)}.ant-form-item-label>label:after{content:":";position:relative;top:-.5px;margin:0 8px 0 2px}.ant-form-item-label>label.ant-form-item-no-colon:after{content:" "}.ant-form-item{box-sizing:border-box;padding:0;color:rgba(0,0,0,.65);font-size:15px;font-variant:tabular-nums;line-height:1.5;list-style:none;font-feature-settings:"tnum";margin:0 0 24px;vertical-align:top}.ant-form-item label{position:relative}.ant-form-item label>.anticon{font-size:15px;vertical-align:top}.ant-form-item-control{position:relative;line-height:40px;zoom:1}.ant-form-item-control:after,.ant-form-item-control:before{display:table;content:""}.ant-form-item-control:after{clear:both}.ant-form-item-children{position:relative}.ant-form-item-with-help{margin-bottom:4px}.ant-form-item-label{display:inline-block;overflow:hidden;line-height:39.9999px;white-space:nowrap;text-align:right;vertical-align:middle}.ant-form-item-label-left{text-align:left}.ant-form-item .ant-switch{margin:2px 0 4px}.ant-form-explain,.ant-form-extra{clear:both;min-height:23px;margin-top:-2px;color:rgba(0,0,0,.45);font-size:15px;line-height:1.5;transition:color .3s cubic-bezier(.215,.61,.355,1)}.ant-form-explain{margin-bottom:-1px}.ant-form-extra{padding-top:4px}.ant-form-text{display:inline-block;padding-right:8px}.ant-form-split{display:block;text-align:center}form .has-feedback .ant-input{padding-right:30px}form .has-feedback .ant-input-affix-wrapper .ant-input-suffix{padding-right:18px}form .has-feedback .ant-input-affix-wrapper .ant-input{padding-right:49px}form .has-feedback .ant-input-affix-wrapper.ant-input-affix-wrapper-input-with-clear-btn .ant-input{padding-right:68px}form .has-feedback :not(.ant-input-group-addon)>.ant-select .ant-select-arrow,form .has-feedback :not(.ant-input-group-addon)>.ant-select .ant-select-selection__clear,form .has-feedback>.ant-select .ant-select-arrow,form .has-feedback>.ant-select .ant-select-selection__clear{right:29px}form .has-feedback :not(.ant-input-group-addon)>.ant-select .ant-select-selection-selected-value,form .has-feedback>.ant-select .ant-select-selection-selected-value{padding-right:42px}form .has-feedback .ant-cascader-picker-arrow{margin-right:18px}form .has-feedback .ant-calendar-picker-clear,form .has-feedback .ant-calendar-picker-icon,form .has-feedback .ant-cascader-picker-clear,form .has-feedback .ant-input-search:not(.ant-input-search-enter-button) .ant-input-suffix,form .has-feedback .ant-time-picker-clear,form .has-feedback .ant-time-picker-icon{right:29px}form .ant-mentions,form textarea.ant-input{height:auto;margin-bottom:4px}form .ant-upload{background:transparent}form input[type=checkbox],form input[type=radio]{width:14px;height:14px}form .ant-checkbox-inline,form .ant-radio-inline{display:inline-block;margin-left:8px;font-weight:400;vertical-align:middle;cursor:pointer}form .ant-checkbox-inline:first-child,form .ant-radio-inline:first-child{margin-left:0}form .ant-checkbox-vertical,form .ant-radio-vertical{display:block}form .ant-checkbox-vertical+.ant-checkbox-vertical,form .ant-radio-vertical+.ant-radio-vertical{margin-left:0}form .ant-input-number+.ant-form-text{margin-left:8px}form .ant-input-number-handler-wrap{z-index:2}form .ant-cascader-picker,form .ant-select{width:100%}form .ant-input-group .ant-cascader-picker,form .ant-input-group .ant-select{width:auto}form .ant-input-group-wrapper,form :not(.ant-input-group-wrapper)>.ant-input-group{display:inline-block;vertical-align:middle}form:not(.ant-form-vertical) .ant-input-group-wrapper,form:not(.ant-form-vertical) :not(.ant-input-group-wrapper)>.ant-input-group{position:relative;top:-1px}.ant-col-24.ant-form-item-label,.ant-col-xl-24.ant-form-item-label,.ant-form-vertical .ant-form-item-label{display:block;margin:0;padding:0 0 8px;line-height:1.5;white-space:normal;text-align:left}.ant-col-24.ant-form-item-label label:after,.ant-col-xl-24.ant-form-item-label label:after,.ant-form-vertical .ant-form-item-label label:after{display:none}.ant-form-vertical .ant-form-item{padding-bottom:8px}.ant-form-vertical .ant-form-item-control{line-height:1.5}.ant-form-vertical .ant-form-explain{margin-top:2px;margin-bottom:-5px}.ant-form-vertical .ant-form-extra{margin-top:2px;margin-bottom:-4px}@media (max-width:575px){.ant-form-item-control-wrapper,.ant-form-item-label{display:block;width:100%}.ant-form-item-label{display:block;margin:0;padding:0 0 8px;line-height:1.5;white-space:normal;text-align:left}.ant-form-item-label label:after{display:none}.ant-col-xs-24.ant-form-item-label{display:block;margin:0;padding:0 0 8px;line-height:1.5;white-space:normal;text-align:left}.ant-col-xs-24.ant-form-item-label label:after{display:none}}@media (max-width:767px){.ant-col-sm-24.ant-form-item-label{display:block;margin:0;padding:0 0 8px;line-height:1.5;white-space:normal;text-align:left}.ant-col-sm-24.ant-form-item-label label:after{display:none}}@media (max-width:991px){.ant-col-md-24.ant-form-item-label{display:block;margin:0;padding:0 0 8px;line-height:1.5;white-space:normal;text-align:left}.ant-col-md-24.ant-form-item-label label:after{display:none}}@media (max-width:1199px){.ant-col-lg-24.ant-form-item-label{display:block;margin:0;padding:0 0 8px;line-height:1.5;white-space:normal;text-align:left}.ant-col-lg-24.ant-form-item-label label:after{display:none}}@media (max-width:1599px){.ant-col-xl-24.ant-form-item-label{display:block;margin:0;padding:0 0 8px;line-height:1.5;white-space:normal;text-align:left}.ant-col-xl-24.ant-form-item-label label:after{display:none}}.ant-form-inline .ant-form-item{display:inline-block;margin-right:16px;margin-bottom:0}.ant-form-inline .ant-form-item-with-help{margin-bottom:24px}.ant-form-inline .ant-form-item>.ant-form-item-control-wrapper,.ant-form-inline .ant-form-item>.ant-form-item-label{display:inline-block;vertical-align:top}.ant-form-inline .ant-form-text,.ant-form-inline .has-feedback{display:inline-block}.has-error.has-feedback .ant-form-item-children-icon,.has-success.has-feedback .ant-form-item-children-icon,.has-warning.has-feedback .ant-form-item-children-icon,.is-validating.has-feedback .ant-form-item-children-icon{position:absolute;top:50%;right:0;z-index:1;width:32px;height:20px;margin-top:-10px;font-size:15px;line-height:20px;text-align:center;visibility:visible;-webkit-animation:zoomIn .3s cubic-bezier(.12,.4,.29,1.46);animation:zoomIn .3s cubic-bezier(.12,.4,.29,1.46);pointer-events:none}.has-error.has-feedback .ant-form-item-children-icon svg,.has-success.has-feedback .ant-form-item-children-icon svg,.has-warning.has-feedback .ant-form-item-children-icon svg,.is-validating.has-feedback .ant-form-item-children-icon svg{position:absolute;top:0;right:0;bottom:0;left:0;margin:auto}.has-success.has-feedback .ant-form-item-children-icon{color:#52c41a;-webkit-animation-name:diffZoomIn1!important;animation-name:diffZoomIn1!important}.has-warning .ant-form-explain,.has-warning .ant-form-split{color:#faad14}.has-warning .ant-input,.has-warning .ant-input:hover{background-color:#fff;border-color:#faad14}.has-warning .ant-input:focus{border-color:#ffc53d;border-right-width:1px!important;outline:0;box-shadow:0 0 0 2px rgba(250,173,20,.2)}.has-warning .ant-input:not([disabled]):hover{border-color:#faad14}.has-warning .ant-calendar-picker-open .ant-calendar-picker-input{border-color:#ffc53d;border-right-width:1px!important;outline:0;box-shadow:0 0 0 2px rgba(250,173,20,.2)}.has-warning .ant-input-affix-wrapper .ant-input,.has-warning .ant-input-affix-wrapper .ant-input:hover{background-color:#fff;border-color:#faad14}.has-warning .ant-input-affix-wrapper .ant-input:focus{border-color:#ffc53d;border-right-width:1px!important;outline:0;box-shadow:0 0 0 2px rgba(250,173,20,.2)}.has-warning .ant-input-affix-wrapper:hover .ant-input:not(.ant-input-disabled){border-color:#faad14}.has-warning .ant-input-prefix{color:#faad14}.has-warning .ant-input-group-addon{color:#faad14;background-color:#fff;border-color:#faad14}.has-warning .has-feedback{color:#faad14}.has-warning.has-feedback .ant-form-item-children-icon{color:#faad14;-webkit-animation-name:diffZoomIn3!important;animation-name:diffZoomIn3!important}.has-warning .ant-select-selection,.has-warning .ant-select-selection:hover{border-color:#faad14}.has-warning .ant-select-focused .ant-select-selection,.has-warning .ant-select-open .ant-select-selection{border-color:#ffc53d;border-right-width:1px!important;outline:0;box-shadow:0 0 0 2px rgba(250,173,20,.2)}.has-warning .ant-calendar-picker-icon:after,.has-warning .ant-cascader-picker-arrow,.has-warning .ant-picker-icon:after,.has-warning .ant-select-arrow,.has-warning .ant-time-picker-icon:after{color:#faad14}.has-warning .ant-input-number,.has-warning .ant-time-picker-input{border-color:#faad14}.has-warning .ant-input-number-focused,.has-warning .ant-input-number:focus,.has-warning .ant-time-picker-input-focused,.has-warning .ant-time-picker-input:focus{border-color:#ffc53d;border-right-width:1px!important;outline:0;box-shadow:0 0 0 2px rgba(250,173,20,.2)}.has-warning .ant-input-number:not([disabled]):hover,.has-warning .ant-time-picker-input:not([disabled]):hover{border-color:#faad14}.has-warning .ant-cascader-picker:focus .ant-cascader-input{border-color:#ffc53d;border-right-width:1px!important;outline:0;box-shadow:0 0 0 2px rgba(250,173,20,.2)}.has-warning .ant-cascader-picker:hover .ant-cascader-input{border-color:#faad14}.has-error .ant-form-explain,.has-error .ant-form-split{color:#f5222d}.has-error .ant-input,.has-error .ant-input:hover{background-color:#fff;border-color:#f5222d}.has-error .ant-input:focus{border-color:#ff4d4f;border-right-width:1px!important;outline:0;box-shadow:0 0 0 2px rgba(245,34,45,.2)}.has-error .ant-input:not([disabled]):hover{border-color:#f5222d}.has-error .ant-calendar-picker-open .ant-calendar-picker-input{border-color:#ff4d4f;border-right-width:1px!important;outline:0;box-shadow:0 0 0 2px rgba(245,34,45,.2)}.has-error .ant-input-affix-wrapper .ant-input,.has-error .ant-input-affix-wrapper .ant-input:hover{background-color:#fff;border-color:#f5222d}.has-error .ant-input-affix-wrapper .ant-input:focus{border-color:#ff4d4f;border-right-width:1px!important;outline:0;box-shadow:0 0 0 2px rgba(245,34,45,.2)}.has-error .ant-input-affix-wrapper:hover .ant-input:not(.ant-input-disabled){border-color:#f5222d}.has-error .ant-input-prefix{color:#f5222d}.has-error .ant-input-group-addon{color:#f5222d;background-color:#fff;border-color:#f5222d}.has-error .has-feedback{color:#f5222d}.has-error.has-feedback .ant-form-item-children-icon{color:#f5222d;-webkit-animation-name:diffZoomIn2!important;animation-name:diffZoomIn2!important}.has-error .ant-select-selection,.has-error .ant-select-selection:hover{border-color:#f5222d}.has-error .ant-select-focused .ant-select-selection,.has-error .ant-select-open .ant-select-selection{border-color:#ff4d4f;border-right-width:1px!important;outline:0;box-shadow:0 0 0 2px rgba(245,34,45,.2)}.has-error .ant-select.ant-select-auto-complete .ant-input:focus{border-color:#f5222d}.has-error .ant-input-group-addon .ant-select-selection{border-color:transparent;box-shadow:none}.has-error .ant-calendar-picker-icon:after,.has-error .ant-cascader-picker-arrow,.has-error .ant-picker-icon:after,.has-error .ant-select-arrow,.has-error .ant-time-picker-icon:after{color:#f5222d}.has-error .ant-input-number,.has-error .ant-time-picker-input{border-color:#f5222d}.has-error .ant-input-number-focused,.has-error .ant-input-number:focus,.has-error .ant-time-picker-input-focused,.has-error .ant-time-picker-input:focus{border-color:#ff4d4f;border-right-width:1px!important;outline:0;box-shadow:0 0 0 2px rgba(245,34,45,.2)}.has-error .ant-input-number:not([disabled]):hover,.has-error .ant-mention-wrapper .ant-mention-editor,.has-error .ant-mention-wrapper .ant-mention-editor:not([disabled]):hover,.has-error .ant-time-picker-input:not([disabled]):hover{border-color:#f5222d}.has-error .ant-cascader-picker:focus .ant-cascader-input,.has-error .ant-mention-wrapper.ant-mention-active:not([disabled]) .ant-mention-editor,.has-error .ant-mention-wrapper .ant-mention-editor:not([disabled]):focus{border-color:#ff4d4f;border-right-width:1px!important;outline:0;box-shadow:0 0 0 2px rgba(245,34,45,.2)}.has-error .ant-cascader-picker:hover .ant-cascader-input,.has-error .ant-transfer-list{border-color:#f5222d}.has-error .ant-transfer-list-search:not([disabled]){border-color:#d9d9d9}.has-error .ant-transfer-list-search:not([disabled]):hover{border-color:#195e9e;border-right-width:1px!important}.has-error .ant-transfer-list-search:not([disabled]):focus{border-color:#195e9e;border-right-width:1px!important;outline:0;box-shadow:0 0 0 2px rgba(0,70,145,.2)}.is-validating.has-feedback .ant-form-item-children-icon{display:inline-block;color:#004691}.ant-advanced-search-form .ant-form-item{margin-bottom:24px}.ant-advanced-search-form .ant-form-item-with-help{margin-bottom:4px}.show-help-appear,.show-help-enter,.show-help-leave{-webkit-animation-duration:.3s;animation-duration:.3s;-webkit-animation-fill-mode:both;animation-fill-mode:both;-webkit-animation-play-state:paused;animation-play-state:paused}.show-help-appear.show-help-appear-active,.show-help-enter.show-help-enter-active{-webkit-animation-name:antShowHelpIn;animation-name:antShowHelpIn;-webkit-animation-play-state:running;animation-play-state:running}.show-help-leave.show-help-leave-active{-webkit-animation-name:antShowHelpOut;animation-name:antShowHelpOut;-webkit-animation-play-state:running;animation-play-state:running;pointer-events:none}.show-help-appear,.show-help-enter{opacity:0}.show-help-appear,.show-help-enter,.show-help-leave{-webkit-animation-timing-function:cubic-bezier(.645,.045,.355,1);animation-timing-function:cubic-bezier(.645,.045,.355,1)}@-webkit-keyframes antShowHelpIn{0%{transform:translateY(-5px);opacity:0}to{transform:translateY(0);opacity:1}}@keyframes antShowHelpIn{0%{transform:translateY(-5px);opacity:0}to{transform:translateY(0);opacity:1}}@-webkit-keyframes antShowHelpOut{to{transform:translateY(-5px);opacity:0}}@keyframes antShowHelpOut{to{transform:translateY(-5px);opacity:0}}@-webkit-keyframes diffZoomIn1{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes diffZoomIn1{0%{transform:scale(0)}to{transform:scale(1)}}@-webkit-keyframes diffZoomIn2{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes diffZoomIn2{0%{transform:scale(0)}to{transform:scale(1)}}@-webkit-keyframes diffZoomIn3{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes diffZoomIn3{0%{transform:scale(0)}to{transform:scale(1)}}.ant-row{position:relative;height:auto;margin-right:0;margin-left:0;zoom:1;display:block;box-sizing:border-box}.ant-row:after,.ant-row:before{display:table;content:""}.ant-row+.ant-row:before,.ant-row:after{clear:both}.ant-row-flex{display:flex;flex-flow:row wrap}.ant-row-flex:after,.ant-row-flex:before{display:flex}.ant-row-flex-start{justify-content:flex-start}.ant-row-flex-center{justify-content:center}.ant-row-flex-end{justify-content:flex-end}.ant-row-flex-space-between{justify-content:space-between}.ant-row-flex-space-around{justify-content:space-around}.ant-row-flex-top{align-items:flex-start}.ant-row-flex-middle{align-items:center}.ant-row-flex-bottom{align-items:flex-end}.ant-col{position:relative;min-height:1px}.ant-col-1,.ant-col-2,.ant-col-3,.ant-col-4,.ant-col-5,.ant-col-6,.ant-col-7,.ant-col-8,.ant-col-9,.ant-col-10,.ant-col-11,.ant-col-12,.ant-col-13,.ant-col-14,.ant-col-15,.ant-col-16,.ant-col-17,.ant-col-18,.ant-col-19,.ant-col-20,.ant-col-21,.ant-col-22,.ant-col-23,.ant-col-24,.ant-col-lg-1,.ant-col-lg-2,.ant-col-lg-3,.ant-col-lg-4,.ant-col-lg-5,.ant-col-lg-6,.ant-col-lg-7,.ant-col-lg-8,.ant-col-lg-9,.ant-col-lg-10,.ant-col-lg-11,.ant-col-lg-12,.ant-col-lg-13,.ant-col-lg-14,.ant-col-lg-15,.ant-col-lg-16,.ant-col-lg-17,.ant-col-lg-18,.ant-col-lg-19,.ant-col-lg-20,.ant-col-lg-21,.ant-col-lg-22,.ant-col-lg-23,.ant-col-lg-24,.ant-col-md-1,.ant-col-md-2,.ant-col-md-3,.ant-col-md-4,.ant-col-md-5,.ant-col-md-6,.ant-col-md-7,.ant-col-md-8,.ant-col-md-9,.ant-col-md-10,.ant-col-md-11,.ant-col-md-12,.ant-col-md-13,.ant-col-md-14,.ant-col-md-15,.ant-col-md-16,.ant-col-md-17,.ant-col-md-18,.ant-col-md-19,.ant-col-md-20,.ant-col-md-21,.ant-col-md-22,.ant-col-md-23,.ant-col-md-24,.ant-col-sm-1,.ant-col-sm-2,.ant-col-sm-3,.ant-col-sm-4,.ant-col-sm-5,.ant-col-sm-6,.ant-col-sm-7,.ant-col-sm-8,.ant-col-sm-9,.ant-col-sm-10,.ant-col-sm-11,.ant-col-sm-12,.ant-col-sm-13,.ant-col-sm-14,.ant-col-sm-15,.ant-col-sm-16,.ant-col-sm-17,.ant-col-sm-18,.ant-col-sm-19,.ant-col-sm-20,.ant-col-sm-21,.ant-col-sm-22,.ant-col-sm-23,.ant-col-sm-24,.ant-col-xs-1,.ant-col-xs-2,.ant-col-xs-3,.ant-col-xs-4,.ant-col-xs-5,.ant-col-xs-6,.ant-col-xs-7,.ant-col-xs-8,.ant-col-xs-9,.ant-col-xs-10,.ant-col-xs-11,.ant-col-xs-12,.ant-col-xs-13,.ant-col-xs-14,.ant-col-xs-15,.ant-col-xs-16,.ant-col-xs-17,.ant-col-xs-18,.ant-col-xs-19,.ant-col-xs-20,.ant-col-xs-21,.ant-col-xs-22,.ant-col-xs-23,.ant-col-xs-24{position:relative;padding-right:0;padding-left:0}.ant-col-1,.ant-col-2,.ant-col-3,.ant-col-4,.ant-col-5,.ant-col-6,.ant-col-7,.ant-col-8,.ant-col-9,.ant-col-10,.ant-col-11,.ant-col-12,.ant-col-13,.ant-col-14,.ant-col-15,.ant-col-16,.ant-col-17,.ant-col-18,.ant-col-19,.ant-col-20,.ant-col-21,.ant-col-22,.ant-col-23,.ant-col-24{flex:0 0 auto;float:left}.ant-col-24{display:block;box-sizing:border-box;width:100%}.ant-col-push-24{left:100%}.ant-col-pull-24{right:100%}.ant-col-offset-24{margin-left:100%}.ant-col-order-24{order:24}.ant-col-23{display:block;box-sizing:border-box;width:95.83333333%}.ant-col-push-23{left:95.83333333%}.ant-col-pull-23{right:95.83333333%}.ant-col-offset-23{margin-left:95.83333333%}.ant-col-order-23{order:23}.ant-col-22{display:block;box-sizing:border-box;width:91.66666667%}.ant-col-push-22{left:91.66666667%}.ant-col-pull-22{right:91.66666667%}.ant-col-offset-22{margin-left:91.66666667%}.ant-col-order-22{order:22}.ant-col-21{display:block;box-sizing:border-box;width:87.5%}.ant-col-push-21{left:87.5%}.ant-col-pull-21{right:87.5%}.ant-col-offset-21{margin-left:87.5%}.ant-col-order-21{order:21}.ant-col-20{display:block;box-sizing:border-box;width:83.33333333%}.ant-col-push-20{left:83.33333333%}.ant-col-pull-20{right:83.33333333%}.ant-col-offset-20{margin-left:83.33333333%}.ant-col-order-20{order:20}.ant-col-19{display:block;box-sizing:border-box;width:79.16666667%}.ant-col-push-19{left:79.16666667%}.ant-col-pull-19{right:79.16666667%}.ant-col-offset-19{margin-left:79.16666667%}.ant-col-order-19{order:19}.ant-col-18{display:block;box-sizing:border-box;width:75%}.ant-col-push-18{left:75%}.ant-col-pull-18{right:75%}.ant-col-offset-18{margin-left:75%}.ant-col-order-18{order:18}.ant-col-17{display:block;box-sizing:border-box;width:70.83333333%}.ant-col-push-17{left:70.83333333%}.ant-col-pull-17{right:70.83333333%}.ant-col-offset-17{margin-left:70.83333333%}.ant-col-order-17{order:17}.ant-col-16{display:block;box-sizing:border-box;width:66.66666667%}.ant-col-push-16{left:66.66666667%}.ant-col-pull-16{right:66.66666667%}.ant-col-offset-16{margin-left:66.66666667%}.ant-col-order-16{order:16}.ant-col-15{display:block;box-sizing:border-box;width:62.5%}.ant-col-push-15{left:62.5%}.ant-col-pull-15{right:62.5%}.ant-col-offset-15{margin-left:62.5%}.ant-col-order-15{order:15}.ant-col-14{display:block;box-sizing:border-box;width:58.33333333%}.ant-col-push-14{left:58.33333333%}.ant-col-pull-14{right:58.33333333%}.ant-col-offset-14{margin-left:58.33333333%}.ant-col-order-14{order:14}.ant-col-13{display:block;box-sizing:border-box;width:54.16666667%}.ant-col-push-13{left:54.16666667%}.ant-col-pull-13{right:54.16666667%}.ant-col-offset-13{margin-left:54.16666667%}.ant-col-order-13{order:13}.ant-col-12{display:block;box-sizing:border-box;width:50%}.ant-col-push-12{left:50%}.ant-col-pull-12{right:50%}.ant-col-offset-12{margin-left:50%}.ant-col-order-12{order:12}.ant-col-11{display:block;box-sizing:border-box;width:45.83333333%}.ant-col-push-11{left:45.83333333%}.ant-col-pull-11{right:45.83333333%}.ant-col-offset-11{margin-left:45.83333333%}.ant-col-order-11{order:11}.ant-col-10{display:block;box-sizing:border-box;width:41.66666667%}.ant-col-push-10{left:41.66666667%}.ant-col-pull-10{right:41.66666667%}.ant-col-offset-10{margin-left:41.66666667%}.ant-col-order-10{order:10}.ant-col-9{display:block;box-sizing:border-box;width:37.5%}.ant-col-push-9{left:37.5%}.ant-col-pull-9{right:37.5%}.ant-col-offset-9{margin-left:37.5%}.ant-col-order-9{order:9}.ant-col-8{display:block;box-sizing:border-box;width:33.33333333%}.ant-col-push-8{left:33.33333333%}.ant-col-pull-8{right:33.33333333%}.ant-col-offset-8{margin-left:33.33333333%}.ant-col-order-8{order:8}.ant-col-7{display:block;box-sizing:border-box;width:29.16666667%}.ant-col-push-7{left:29.16666667%}.ant-col-pull-7{right:29.16666667%}.ant-col-offset-7{margin-left:29.16666667%}.ant-col-order-7{order:7}.ant-col-6{display:block;box-sizing:border-box;width:25%}.ant-col-push-6{left:25%}.ant-col-pull-6{right:25%}.ant-col-offset-6{margin-left:25%}.ant-col-order-6{order:6}.ant-col-5{display:block;box-sizing:border-box;width:20.83333333%}.ant-col-push-5{left:20.83333333%}.ant-col-pull-5{right:20.83333333%}.ant-col-offset-5{margin-left:20.83333333%}.ant-col-order-5{order:5}.ant-col-4{display:block;box-sizing:border-box;width:16.66666667%}.ant-col-push-4{left:16.66666667%}.ant-col-pull-4{right:16.66666667%}.ant-col-offset-4{margin-left:16.66666667%}.ant-col-order-4{order:4}.ant-col-3{display:block;box-sizing:border-box;width:12.5%}.ant-col-push-3{left:12.5%}.ant-col-pull-3{right:12.5%}.ant-col-offset-3{margin-left:12.5%}.ant-col-order-3{order:3}.ant-col-2{display:block;box-sizing:border-box;width:8.33333333%}.ant-col-push-2{left:8.33333333%}.ant-col-pull-2{right:8.33333333%}.ant-col-offset-2{margin-left:8.33333333%}.ant-col-order-2{order:2}.ant-col-1{display:block;box-sizing:border-box;width:4.16666667%}.ant-col-push-1{left:4.16666667%}.ant-col-pull-1{right:4.16666667%}.ant-col-offset-1{margin-left:4.16666667%}.ant-col-order-1{order:1}.ant-col-0{display:none}.ant-col-offset-0{margin-left:0}.ant-col-order-0{order:0}.ant-col-xs-1,.ant-col-xs-2,.ant-col-xs-3,.ant-col-xs-4,.ant-col-xs-5,.ant-col-xs-6,.ant-col-xs-7,.ant-col-xs-8,.ant-col-xs-9,.ant-col-xs-10,.ant-col-xs-11,.ant-col-xs-12,.ant-col-xs-13,.ant-col-xs-14,.ant-col-xs-15,.ant-col-xs-16,.ant-col-xs-17,.ant-col-xs-18,.ant-col-xs-19,.ant-col-xs-20,.ant-col-xs-21,.ant-col-xs-22,.ant-col-xs-23,.ant-col-xs-24{flex:0 0 auto;float:left}.ant-col-xs-24{display:block;box-sizing:border-box;width:100%}.ant-col-xs-push-24{left:100%}.ant-col-xs-pull-24{right:100%}.ant-col-xs-offset-24{margin-left:100%}.ant-col-xs-order-24{order:24}.ant-col-xs-23{display:block;box-sizing:border-box;width:95.83333333%}.ant-col-xs-push-23{left:95.83333333%}.ant-col-xs-pull-23{right:95.83333333%}.ant-col-xs-offset-23{margin-left:95.83333333%}.ant-col-xs-order-23{order:23}.ant-col-xs-22{display:block;box-sizing:border-box;width:91.66666667%}.ant-col-xs-push-22{left:91.66666667%}.ant-col-xs-pull-22{right:91.66666667%}.ant-col-xs-offset-22{margin-left:91.66666667%}.ant-col-xs-order-22{order:22}.ant-col-xs-21{display:block;box-sizing:border-box;width:87.5%}.ant-col-xs-push-21{left:87.5%}.ant-col-xs-pull-21{right:87.5%}.ant-col-xs-offset-21{margin-left:87.5%}.ant-col-xs-order-21{order:21}.ant-col-xs-20{display:block;box-sizing:border-box;width:83.33333333%}.ant-col-xs-push-20{left:83.33333333%}.ant-col-xs-pull-20{right:83.33333333%}.ant-col-xs-offset-20{margin-left:83.33333333%}.ant-col-xs-order-20{order:20}.ant-col-xs-19{display:block;box-sizing:border-box;width:79.16666667%}.ant-col-xs-push-19{left:79.16666667%}.ant-col-xs-pull-19{right:79.16666667%}.ant-col-xs-offset-19{margin-left:79.16666667%}.ant-col-xs-order-19{order:19}.ant-col-xs-18{display:block;box-sizing:border-box;width:75%}.ant-col-xs-push-18{left:75%}.ant-col-xs-pull-18{right:75%}.ant-col-xs-offset-18{margin-left:75%}.ant-col-xs-order-18{order:18}.ant-col-xs-17{display:block;box-sizing:border-box;width:70.83333333%}.ant-col-xs-push-17{left:70.83333333%}.ant-col-xs-pull-17{right:70.83333333%}.ant-col-xs-offset-17{margin-left:70.83333333%}.ant-col-xs-order-17{order:17}.ant-col-xs-16{display:block;box-sizing:border-box;width:66.66666667%}.ant-col-xs-push-16{left:66.66666667%}.ant-col-xs-pull-16{right:66.66666667%}.ant-col-xs-offset-16{margin-left:66.66666667%}.ant-col-xs-order-16{order:16}.ant-col-xs-15{display:block;box-sizing:border-box;width:62.5%}.ant-col-xs-push-15{left:62.5%}.ant-col-xs-pull-15{right:62.5%}.ant-col-xs-offset-15{margin-left:62.5%}.ant-col-xs-order-15{order:15}.ant-col-xs-14{display:block;box-sizing:border-box;width:58.33333333%}.ant-col-xs-push-14{left:58.33333333%}.ant-col-xs-pull-14{right:58.33333333%}.ant-col-xs-offset-14{margin-left:58.33333333%}.ant-col-xs-order-14{order:14}.ant-col-xs-13{display:block;box-sizing:border-box;width:54.16666667%}.ant-col-xs-push-13{left:54.16666667%}.ant-col-xs-pull-13{right:54.16666667%}.ant-col-xs-offset-13{margin-left:54.16666667%}.ant-col-xs-order-13{order:13}.ant-col-xs-12{display:block;box-sizing:border-box;width:50%}.ant-col-xs-push-12{left:50%}.ant-col-xs-pull-12{right:50%}.ant-col-xs-offset-12{margin-left:50%}.ant-col-xs-order-12{order:12}.ant-col-xs-11{display:block;box-sizing:border-box;width:45.83333333%}.ant-col-xs-push-11{left:45.83333333%}.ant-col-xs-pull-11{right:45.83333333%}.ant-col-xs-offset-11{margin-left:45.83333333%}.ant-col-xs-order-11{order:11}.ant-col-xs-10{display:block;box-sizing:border-box;width:41.66666667%}.ant-col-xs-push-10{left:41.66666667%}.ant-col-xs-pull-10{right:41.66666667%}.ant-col-xs-offset-10{margin-left:41.66666667%}.ant-col-xs-order-10{order:10}.ant-col-xs-9{display:block;box-sizing:border-box;width:37.5%}.ant-col-xs-push-9{left:37.5%}.ant-col-xs-pull-9{right:37.5%}.ant-col-xs-offset-9{margin-left:37.5%}.ant-col-xs-order-9{order:9}.ant-col-xs-8{display:block;box-sizing:border-box;width:33.33333333%}.ant-col-xs-push-8{left:33.33333333%}.ant-col-xs-pull-8{right:33.33333333%}.ant-col-xs-offset-8{margin-left:33.33333333%}.ant-col-xs-order-8{order:8}.ant-col-xs-7{display:block;box-sizing:border-box;width:29.16666667%}.ant-col-xs-push-7{left:29.16666667%}.ant-col-xs-pull-7{right:29.16666667%}.ant-col-xs-offset-7{margin-left:29.16666667%}.ant-col-xs-order-7{order:7}.ant-col-xs-6{display:block;box-sizing:border-box;width:25%}.ant-col-xs-push-6{left:25%}.ant-col-xs-pull-6{right:25%}.ant-col-xs-offset-6{margin-left:25%}.ant-col-xs-order-6{order:6}.ant-col-xs-5{display:block;box-sizing:border-box;width:20.83333333%}.ant-col-xs-push-5{left:20.83333333%}.ant-col-xs-pull-5{right:20.83333333%}.ant-col-xs-offset-5{margin-left:20.83333333%}.ant-col-xs-order-5{order:5}.ant-col-xs-4{display:block;box-sizing:border-box;width:16.66666667%}.ant-col-xs-push-4{left:16.66666667%}.ant-col-xs-pull-4{right:16.66666667%}.ant-col-xs-offset-4{margin-left:16.66666667%}.ant-col-xs-order-4{order:4}.ant-col-xs-3{display:block;box-sizing:border-box;width:12.5%}.ant-col-xs-push-3{left:12.5%}.ant-col-xs-pull-3{right:12.5%}.ant-col-xs-offset-3{margin-left:12.5%}.ant-col-xs-order-3{order:3}.ant-col-xs-2{display:block;box-sizing:border-box;width:8.33333333%}.ant-col-xs-push-2{left:8.33333333%}.ant-col-xs-pull-2{right:8.33333333%}.ant-col-xs-offset-2{margin-left:8.33333333%}.ant-col-xs-order-2{order:2}.ant-col-xs-1{display:block;box-sizing:border-box;width:4.16666667%}.ant-col-xs-push-1{left:4.16666667%}.ant-col-xs-pull-1{right:4.16666667%}.ant-col-xs-offset-1{margin-left:4.16666667%}.ant-col-xs-order-1{order:1}.ant-col-xs-0{display:none}.ant-col-push-0{left:auto}.ant-col-pull-0{right:auto}.ant-col-xs-push-0{left:auto}.ant-col-xs-pull-0{right:auto}.ant-col-xs-offset-0{margin-left:0}.ant-col-xs-order-0{order:0}@media (min-width:576px){.ant-col-sm-1,.ant-col-sm-2,.ant-col-sm-3,.ant-col-sm-4,.ant-col-sm-5,.ant-col-sm-6,.ant-col-sm-7,.ant-col-sm-8,.ant-col-sm-9,.ant-col-sm-10,.ant-col-sm-11,.ant-col-sm-12,.ant-col-sm-13,.ant-col-sm-14,.ant-col-sm-15,.ant-col-sm-16,.ant-col-sm-17,.ant-col-sm-18,.ant-col-sm-19,.ant-col-sm-20,.ant-col-sm-21,.ant-col-sm-22,.ant-col-sm-23,.ant-col-sm-24{flex:0 0 auto;float:left}.ant-col-sm-24{display:block;box-sizing:border-box;width:100%}.ant-col-sm-push-24{left:100%}.ant-col-sm-pull-24{right:100%}.ant-col-sm-offset-24{margin-left:100%}.ant-col-sm-order-24{order:24}.ant-col-sm-23{display:block;box-sizing:border-box;width:95.83333333%}.ant-col-sm-push-23{left:95.83333333%}.ant-col-sm-pull-23{right:95.83333333%}.ant-col-sm-offset-23{margin-left:95.83333333%}.ant-col-sm-order-23{order:23}.ant-col-sm-22{display:block;box-sizing:border-box;width:91.66666667%}.ant-col-sm-push-22{left:91.66666667%}.ant-col-sm-pull-22{right:91.66666667%}.ant-col-sm-offset-22{margin-left:91.66666667%}.ant-col-sm-order-22{order:22}.ant-col-sm-21{display:block;box-sizing:border-box;width:87.5%}.ant-col-sm-push-21{left:87.5%}.ant-col-sm-pull-21{right:87.5%}.ant-col-sm-offset-21{margin-left:87.5%}.ant-col-sm-order-21{order:21}.ant-col-sm-20{display:block;box-sizing:border-box;width:83.33333333%}.ant-col-sm-push-20{left:83.33333333%}.ant-col-sm-pull-20{right:83.33333333%}.ant-col-sm-offset-20{margin-left:83.33333333%}.ant-col-sm-order-20{order:20}.ant-col-sm-19{display:block;box-sizing:border-box;width:79.16666667%}.ant-col-sm-push-19{left:79.16666667%}.ant-col-sm-pull-19{right:79.16666667%}.ant-col-sm-offset-19{margin-left:79.16666667%}.ant-col-sm-order-19{order:19}.ant-col-sm-18{display:block;box-sizing:border-box;width:75%}.ant-col-sm-push-18{left:75%}.ant-col-sm-pull-18{right:75%}.ant-col-sm-offset-18{margin-left:75%}.ant-col-sm-order-18{order:18}.ant-col-sm-17{display:block;box-sizing:border-box;width:70.83333333%}.ant-col-sm-push-17{left:70.83333333%}.ant-col-sm-pull-17{right:70.83333333%}.ant-col-sm-offset-17{margin-left:70.83333333%}.ant-col-sm-order-17{order:17}.ant-col-sm-16{display:block;box-sizing:border-box;width:66.66666667%}.ant-col-sm-push-16{left:66.66666667%}.ant-col-sm-pull-16{right:66.66666667%}.ant-col-sm-offset-16{margin-left:66.66666667%}.ant-col-sm-order-16{order:16}.ant-col-sm-15{display:block;box-sizing:border-box;width:62.5%}.ant-col-sm-push-15{left:62.5%}.ant-col-sm-pull-15{right:62.5%}.ant-col-sm-offset-15{margin-left:62.5%}.ant-col-sm-order-15{order:15}.ant-col-sm-14{display:block;box-sizing:border-box;width:58.33333333%}.ant-col-sm-push-14{left:58.33333333%}.ant-col-sm-pull-14{right:58.33333333%}.ant-col-sm-offset-14{margin-left:58.33333333%}.ant-col-sm-order-14{order:14}.ant-col-sm-13{display:block;box-sizing:border-box;width:54.16666667%}.ant-col-sm-push-13{left:54.16666667%}.ant-col-sm-pull-13{right:54.16666667%}.ant-col-sm-offset-13{margin-left:54.16666667%}.ant-col-sm-order-13{order:13}.ant-col-sm-12{display:block;box-sizing:border-box;width:50%}.ant-col-sm-push-12{left:50%}.ant-col-sm-pull-12{right:50%}.ant-col-sm-offset-12{margin-left:50%}.ant-col-sm-order-12{order:12}.ant-col-sm-11{display:block;box-sizing:border-box;width:45.83333333%}.ant-col-sm-push-11{left:45.83333333%}.ant-col-sm-pull-11{right:45.83333333%}.ant-col-sm-offset-11{margin-left:45.83333333%}.ant-col-sm-order-11{order:11}.ant-col-sm-10{display:block;box-sizing:border-box;width:41.66666667%}.ant-col-sm-push-10{left:41.66666667%}.ant-col-sm-pull-10{right:41.66666667%}.ant-col-sm-offset-10{margin-left:41.66666667%}.ant-col-sm-order-10{order:10}.ant-col-sm-9{display:block;box-sizing:border-box;width:37.5%}.ant-col-sm-push-9{left:37.5%}.ant-col-sm-pull-9{right:37.5%}.ant-col-sm-offset-9{margin-left:37.5%}.ant-col-sm-order-9{order:9}.ant-col-sm-8{display:block;box-sizing:border-box;width:33.33333333%}.ant-col-sm-push-8{left:33.33333333%}.ant-col-sm-pull-8{right:33.33333333%}.ant-col-sm-offset-8{margin-left:33.33333333%}.ant-col-sm-order-8{order:8}.ant-col-sm-7{display:block;box-sizing:border-box;width:29.16666667%}.ant-col-sm-push-7{left:29.16666667%}.ant-col-sm-pull-7{right:29.16666667%}.ant-col-sm-offset-7{margin-left:29.16666667%}.ant-col-sm-order-7{order:7}.ant-col-sm-6{display:block;box-sizing:border-box;width:25%}.ant-col-sm-push-6{left:25%}.ant-col-sm-pull-6{right:25%}.ant-col-sm-offset-6{margin-left:25%}.ant-col-sm-order-6{order:6}.ant-col-sm-5{display:block;box-sizing:border-box;width:20.83333333%}.ant-col-sm-push-5{left:20.83333333%}.ant-col-sm-pull-5{right:20.83333333%}.ant-col-sm-offset-5{margin-left:20.83333333%}.ant-col-sm-order-5{order:5}.ant-col-sm-4{display:block;box-sizing:border-box;width:16.66666667%}.ant-col-sm-push-4{left:16.66666667%}.ant-col-sm-pull-4{right:16.66666667%}.ant-col-sm-offset-4{margin-left:16.66666667%}.ant-col-sm-order-4{order:4}.ant-col-sm-3{display:block;box-sizing:border-box;width:12.5%}.ant-col-sm-push-3{left:12.5%}.ant-col-sm-pull-3{right:12.5%}.ant-col-sm-offset-3{margin-left:12.5%}.ant-col-sm-order-3{order:3}.ant-col-sm-2{display:block;box-sizing:border-box;width:8.33333333%}.ant-col-sm-push-2{left:8.33333333%}.ant-col-sm-pull-2{right:8.33333333%}.ant-col-sm-offset-2{margin-left:8.33333333%}.ant-col-sm-order-2{order:2}.ant-col-sm-1{display:block;box-sizing:border-box;width:4.16666667%}.ant-col-sm-push-1{left:4.16666667%}.ant-col-sm-pull-1{right:4.16666667%}.ant-col-sm-offset-1{margin-left:4.16666667%}.ant-col-sm-order-1{order:1}.ant-col-sm-0{display:none}.ant-col-push-0{left:auto}.ant-col-pull-0{right:auto}.ant-col-sm-push-0{left:auto}.ant-col-sm-pull-0{right:auto}.ant-col-sm-offset-0{margin-left:0}.ant-col-sm-order-0{order:0}}@media (min-width:768px){.ant-col-md-1,.ant-col-md-2,.ant-col-md-3,.ant-col-md-4,.ant-col-md-5,.ant-col-md-6,.ant-col-md-7,.ant-col-md-8,.ant-col-md-9,.ant-col-md-10,.ant-col-md-11,.ant-col-md-12,.ant-col-md-13,.ant-col-md-14,.ant-col-md-15,.ant-col-md-16,.ant-col-md-17,.ant-col-md-18,.ant-col-md-19,.ant-col-md-20,.ant-col-md-21,.ant-col-md-22,.ant-col-md-23,.ant-col-md-24{flex:0 0 auto;float:left}.ant-col-md-24{display:block;box-sizing:border-box;width:100%}.ant-col-md-push-24{left:100%}.ant-col-md-pull-24{right:100%}.ant-col-md-offset-24{margin-left:100%}.ant-col-md-order-24{order:24}.ant-col-md-23{display:block;box-sizing:border-box;width:95.83333333%}.ant-col-md-push-23{left:95.83333333%}.ant-col-md-pull-23{right:95.83333333%}.ant-col-md-offset-23{margin-left:95.83333333%}.ant-col-md-order-23{order:23}.ant-col-md-22{display:block;box-sizing:border-box;width:91.66666667%}.ant-col-md-push-22{left:91.66666667%}.ant-col-md-pull-22{right:91.66666667%}.ant-col-md-offset-22{margin-left:91.66666667%}.ant-col-md-order-22{order:22}.ant-col-md-21{display:block;box-sizing:border-box;width:87.5%}.ant-col-md-push-21{left:87.5%}.ant-col-md-pull-21{right:87.5%}.ant-col-md-offset-21{margin-left:87.5%}.ant-col-md-order-21{order:21}.ant-col-md-20{display:block;box-sizing:border-box;width:83.33333333%}.ant-col-md-push-20{left:83.33333333%}.ant-col-md-pull-20{right:83.33333333%}.ant-col-md-offset-20{margin-left:83.33333333%}.ant-col-md-order-20{order:20}.ant-col-md-19{display:block;box-sizing:border-box;width:79.16666667%}.ant-col-md-push-19{left:79.16666667%}.ant-col-md-pull-19{right:79.16666667%}.ant-col-md-offset-19{margin-left:79.16666667%}.ant-col-md-order-19{order:19}.ant-col-md-18{display:block;box-sizing:border-box;width:75%}.ant-col-md-push-18{left:75%}.ant-col-md-pull-18{right:75%}.ant-col-md-offset-18{margin-left:75%}.ant-col-md-order-18{order:18}.ant-col-md-17{display:block;box-sizing:border-box;width:70.83333333%}.ant-col-md-push-17{left:70.83333333%}.ant-col-md-pull-17{right:70.83333333%}.ant-col-md-offset-17{margin-left:70.83333333%}.ant-col-md-order-17{order:17}.ant-col-md-16{display:block;box-sizing:border-box;width:66.66666667%}.ant-col-md-push-16{left:66.66666667%}.ant-col-md-pull-16{right:66.66666667%}.ant-col-md-offset-16{margin-left:66.66666667%}.ant-col-md-order-16{order:16}.ant-col-md-15{display:block;box-sizing:border-box;width:62.5%}.ant-col-md-push-15{left:62.5%}.ant-col-md-pull-15{right:62.5%}.ant-col-md-offset-15{margin-left:62.5%}.ant-col-md-order-15{order:15}.ant-col-md-14{display:block;box-sizing:border-box;width:58.33333333%}.ant-col-md-push-14{left:58.33333333%}.ant-col-md-pull-14{right:58.33333333%}.ant-col-md-offset-14{margin-left:58.33333333%}.ant-col-md-order-14{order:14}.ant-col-md-13{display:block;box-sizing:border-box;width:54.16666667%}.ant-col-md-push-13{left:54.16666667%}.ant-col-md-pull-13{right:54.16666667%}.ant-col-md-offset-13{margin-left:54.16666667%}.ant-col-md-order-13{order:13}.ant-col-md-12{display:block;box-sizing:border-box;width:50%}.ant-col-md-push-12{left:50%}.ant-col-md-pull-12{right:50%}.ant-col-md-offset-12{margin-left:50%}.ant-col-md-order-12{order:12}.ant-col-md-11{display:block;box-sizing:border-box;width:45.83333333%}.ant-col-md-push-11{left:45.83333333%}.ant-col-md-pull-11{right:45.83333333%}.ant-col-md-offset-11{margin-left:45.83333333%}.ant-col-md-order-11{order:11}.ant-col-md-10{display:block;box-sizing:border-box;width:41.66666667%}.ant-col-md-push-10{left:41.66666667%}.ant-col-md-pull-10{right:41.66666667%}.ant-col-md-offset-10{margin-left:41.66666667%}.ant-col-md-order-10{order:10}.ant-col-md-9{display:block;box-sizing:border-box;width:37.5%}.ant-col-md-push-9{left:37.5%}.ant-col-md-pull-9{right:37.5%}.ant-col-md-offset-9{margin-left:37.5%}.ant-col-md-order-9{order:9}.ant-col-md-8{display:block;box-sizing:border-box;width:33.33333333%}.ant-col-md-push-8{left:33.33333333%}.ant-col-md-pull-8{right:33.33333333%}.ant-col-md-offset-8{margin-left:33.33333333%}.ant-col-md-order-8{order:8}.ant-col-md-7{display:block;box-sizing:border-box;width:29.16666667%}.ant-col-md-push-7{left:29.16666667%}.ant-col-md-pull-7{right:29.16666667%}.ant-col-md-offset-7{margin-left:29.16666667%}.ant-col-md-order-7{order:7}.ant-col-md-6{display:block;box-sizing:border-box;width:25%}.ant-col-md-push-6{left:25%}.ant-col-md-pull-6{right:25%}.ant-col-md-offset-6{margin-left:25%}.ant-col-md-order-6{order:6}.ant-col-md-5{display:block;box-sizing:border-box;width:20.83333333%}.ant-col-md-push-5{left:20.83333333%}.ant-col-md-pull-5{right:20.83333333%}.ant-col-md-offset-5{margin-left:20.83333333%}.ant-col-md-order-5{order:5}.ant-col-md-4{display:block;box-sizing:border-box;width:16.66666667%}.ant-col-md-push-4{left:16.66666667%}.ant-col-md-pull-4{right:16.66666667%}.ant-col-md-offset-4{margin-left:16.66666667%}.ant-col-md-order-4{order:4}.ant-col-md-3{display:block;box-sizing:border-box;width:12.5%}.ant-col-md-push-3{left:12.5%}.ant-col-md-pull-3{right:12.5%}.ant-col-md-offset-3{margin-left:12.5%}.ant-col-md-order-3{order:3}.ant-col-md-2{display:block;box-sizing:border-box;width:8.33333333%}.ant-col-md-push-2{left:8.33333333%}.ant-col-md-pull-2{right:8.33333333%}.ant-col-md-offset-2{margin-left:8.33333333%}.ant-col-md-order-2{order:2}.ant-col-md-1{display:block;box-sizing:border-box;width:4.16666667%}.ant-col-md-push-1{left:4.16666667%}.ant-col-md-pull-1{right:4.16666667%}.ant-col-md-offset-1{margin-left:4.16666667%}.ant-col-md-order-1{order:1}.ant-col-md-0{display:none}.ant-col-push-0{left:auto}.ant-col-pull-0{right:auto}.ant-col-md-push-0{left:auto}.ant-col-md-pull-0{right:auto}.ant-col-md-offset-0{margin-left:0}.ant-col-md-order-0{order:0}}@media (min-width:992px){.ant-col-lg-1,.ant-col-lg-2,.ant-col-lg-3,.ant-col-lg-4,.ant-col-lg-5,.ant-col-lg-6,.ant-col-lg-7,.ant-col-lg-8,.ant-col-lg-9,.ant-col-lg-10,.ant-col-lg-11,.ant-col-lg-12,.ant-col-lg-13,.ant-col-lg-14,.ant-col-lg-15,.ant-col-lg-16,.ant-col-lg-17,.ant-col-lg-18,.ant-col-lg-19,.ant-col-lg-20,.ant-col-lg-21,.ant-col-lg-22,.ant-col-lg-23,.ant-col-lg-24{flex:0 0 auto;float:left}.ant-col-lg-24{display:block;box-sizing:border-box;width:100%}.ant-col-lg-push-24{left:100%}.ant-col-lg-pull-24{right:100%}.ant-col-lg-offset-24{margin-left:100%}.ant-col-lg-order-24{order:24}.ant-col-lg-23{display:block;box-sizing:border-box;width:95.83333333%}.ant-col-lg-push-23{left:95.83333333%}.ant-col-lg-pull-23{right:95.83333333%}.ant-col-lg-offset-23{margin-left:95.83333333%}.ant-col-lg-order-23{order:23}.ant-col-lg-22{display:block;box-sizing:border-box;width:91.66666667%}.ant-col-lg-push-22{left:91.66666667%}.ant-col-lg-pull-22{right:91.66666667%}.ant-col-lg-offset-22{margin-left:91.66666667%}.ant-col-lg-order-22{order:22}.ant-col-lg-21{display:block;box-sizing:border-box;width:87.5%}.ant-col-lg-push-21{left:87.5%}.ant-col-lg-pull-21{right:87.5%}.ant-col-lg-offset-21{margin-left:87.5%}.ant-col-lg-order-21{order:21}.ant-col-lg-20{display:block;box-sizing:border-box;width:83.33333333%}.ant-col-lg-push-20{left:83.33333333%}.ant-col-lg-pull-20{right:83.33333333%}.ant-col-lg-offset-20{margin-left:83.33333333%}.ant-col-lg-order-20{order:20}.ant-col-lg-19{display:block;box-sizing:border-box;width:79.16666667%}.ant-col-lg-push-19{left:79.16666667%}.ant-col-lg-pull-19{right:79.16666667%}.ant-col-lg-offset-19{margin-left:79.16666667%}.ant-col-lg-order-19{order:19}.ant-col-lg-18{display:block;box-sizing:border-box;width:75%}.ant-col-lg-push-18{left:75%}.ant-col-lg-pull-18{right:75%}.ant-col-lg-offset-18{margin-left:75%}.ant-col-lg-order-18{order:18}.ant-col-lg-17{display:block;box-sizing:border-box;width:70.83333333%}.ant-col-lg-push-17{left:70.83333333%}.ant-col-lg-pull-17{right:70.83333333%}.ant-col-lg-offset-17{margin-left:70.83333333%}.ant-col-lg-order-17{order:17}.ant-col-lg-16{display:block;box-sizing:border-box;width:66.66666667%}.ant-col-lg-push-16{left:66.66666667%}.ant-col-lg-pull-16{right:66.66666667%}.ant-col-lg-offset-16{margin-left:66.66666667%}.ant-col-lg-order-16{order:16}.ant-col-lg-15{display:block;box-sizing:border-box;width:62.5%}.ant-col-lg-push-15{left:62.5%}.ant-col-lg-pull-15{right:62.5%}.ant-col-lg-offset-15{margin-left:62.5%}.ant-col-lg-order-15{order:15}.ant-col-lg-14{display:block;box-sizing:border-box;width:58.33333333%}.ant-col-lg-push-14{left:58.33333333%}.ant-col-lg-pull-14{right:58.33333333%}.ant-col-lg-offset-14{margin-left:58.33333333%}.ant-col-lg-order-14{order:14}.ant-col-lg-13{display:block;box-sizing:border-box;width:54.16666667%}.ant-col-lg-push-13{left:54.16666667%}.ant-col-lg-pull-13{right:54.16666667%}.ant-col-lg-offset-13{margin-left:54.16666667%}.ant-col-lg-order-13{order:13}.ant-col-lg-12{display:block;box-sizing:border-box;width:50%}.ant-col-lg-push-12{left:50%}.ant-col-lg-pull-12{right:50%}.ant-col-lg-offset-12{margin-left:50%}.ant-col-lg-order-12{order:12}.ant-col-lg-11{display:block;box-sizing:border-box;width:45.83333333%}.ant-col-lg-push-11{left:45.83333333%}.ant-col-lg-pull-11{right:45.83333333%}.ant-col-lg-offset-11{margin-left:45.83333333%}.ant-col-lg-order-11{order:11}.ant-col-lg-10{display:block;box-sizing:border-box;width:41.66666667%}.ant-col-lg-push-10{left:41.66666667%}.ant-col-lg-pull-10{right:41.66666667%}.ant-col-lg-offset-10{margin-left:41.66666667%}.ant-col-lg-order-10{order:10}.ant-col-lg-9{display:block;box-sizing:border-box;width:37.5%}.ant-col-lg-push-9{left:37.5%}.ant-col-lg-pull-9{right:37.5%}.ant-col-lg-offset-9{margin-left:37.5%}.ant-col-lg-order-9{order:9}.ant-col-lg-8{display:block;box-sizing:border-box;width:33.33333333%}.ant-col-lg-push-8{left:33.33333333%}.ant-col-lg-pull-8{right:33.33333333%}.ant-col-lg-offset-8{margin-left:33.33333333%}.ant-col-lg-order-8{order:8}.ant-col-lg-7{display:block;box-sizing:border-box;width:29.16666667%}.ant-col-lg-push-7{left:29.16666667%}.ant-col-lg-pull-7{right:29.16666667%}.ant-col-lg-offset-7{margin-left:29.16666667%}.ant-col-lg-order-7{order:7}.ant-col-lg-6{display:block;box-sizing:border-box;width:25%}.ant-col-lg-push-6{left:25%}.ant-col-lg-pull-6{right:25%}.ant-col-lg-offset-6{margin-left:25%}.ant-col-lg-order-6{order:6}.ant-col-lg-5{display:block;box-sizing:border-box;width:20.83333333%}.ant-col-lg-push-5{left:20.83333333%}.ant-col-lg-pull-5{right:20.83333333%}.ant-col-lg-offset-5{margin-left:20.83333333%}.ant-col-lg-order-5{order:5}.ant-col-lg-4{display:block;box-sizing:border-box;width:16.66666667%}.ant-col-lg-push-4{left:16.66666667%}.ant-col-lg-pull-4{right:16.66666667%}.ant-col-lg-offset-4{margin-left:16.66666667%}.ant-col-lg-order-4{order:4}.ant-col-lg-3{display:block;box-sizing:border-box;width:12.5%}.ant-col-lg-push-3{left:12.5%}.ant-col-lg-pull-3{right:12.5%}.ant-col-lg-offset-3{margin-left:12.5%}.ant-col-lg-order-3{order:3}.ant-col-lg-2{display:block;box-sizing:border-box;width:8.33333333%}.ant-col-lg-push-2{left:8.33333333%}.ant-col-lg-pull-2{right:8.33333333%}.ant-col-lg-offset-2{margin-left:8.33333333%}.ant-col-lg-order-2{order:2}.ant-col-lg-1{display:block;box-sizing:border-box;width:4.16666667%}.ant-col-lg-push-1{left:4.16666667%}.ant-col-lg-pull-1{right:4.16666667%}.ant-col-lg-offset-1{margin-left:4.16666667%}.ant-col-lg-order-1{order:1}.ant-col-lg-0{display:none}.ant-col-push-0{left:auto}.ant-col-pull-0{right:auto}.ant-col-lg-push-0{left:auto}.ant-col-lg-pull-0{right:auto}.ant-col-lg-offset-0{margin-left:0}.ant-col-lg-order-0{order:0}}@media (min-width:1200px){.ant-col-xl-1,.ant-col-xl-2,.ant-col-xl-3,.ant-col-xl-4,.ant-col-xl-5,.ant-col-xl-6,.ant-col-xl-7,.ant-col-xl-8,.ant-col-xl-9,.ant-col-xl-10,.ant-col-xl-11,.ant-col-xl-12,.ant-col-xl-13,.ant-col-xl-14,.ant-col-xl-15,.ant-col-xl-16,.ant-col-xl-17,.ant-col-xl-18,.ant-col-xl-19,.ant-col-xl-20,.ant-col-xl-21,.ant-col-xl-22,.ant-col-xl-23,.ant-col-xl-24{flex:0 0 auto;float:left}.ant-col-xl-24{display:block;box-sizing:border-box;width:100%}.ant-col-xl-push-24{left:100%}.ant-col-xl-pull-24{right:100%}.ant-col-xl-offset-24{margin-left:100%}.ant-col-xl-order-24{order:24}.ant-col-xl-23{display:block;box-sizing:border-box;width:95.83333333%}.ant-col-xl-push-23{left:95.83333333%}.ant-col-xl-pull-23{right:95.83333333%}.ant-col-xl-offset-23{margin-left:95.83333333%}.ant-col-xl-order-23{order:23}.ant-col-xl-22{display:block;box-sizing:border-box;width:91.66666667%}.ant-col-xl-push-22{left:91.66666667%}.ant-col-xl-pull-22{right:91.66666667%}.ant-col-xl-offset-22{margin-left:91.66666667%}.ant-col-xl-order-22{order:22}.ant-col-xl-21{display:block;box-sizing:border-box;width:87.5%}.ant-col-xl-push-21{left:87.5%}.ant-col-xl-pull-21{right:87.5%}.ant-col-xl-offset-21{margin-left:87.5%}.ant-col-xl-order-21{order:21}.ant-col-xl-20{display:block;box-sizing:border-box;width:83.33333333%}.ant-col-xl-push-20{left:83.33333333%}.ant-col-xl-pull-20{right:83.33333333%}.ant-col-xl-offset-20{margin-left:83.33333333%}.ant-col-xl-order-20{order:20}.ant-col-xl-19{display:block;box-sizing:border-box;width:79.16666667%}.ant-col-xl-push-19{left:79.16666667%}.ant-col-xl-pull-19{right:79.16666667%}.ant-col-xl-offset-19{margin-left:79.16666667%}.ant-col-xl-order-19{order:19}.ant-col-xl-18{display:block;box-sizing:border-box;width:75%}.ant-col-xl-push-18{left:75%}.ant-col-xl-pull-18{right:75%}.ant-col-xl-offset-18{margin-left:75%}.ant-col-xl-order-18{order:18}.ant-col-xl-17{display:block;box-sizing:border-box;width:70.83333333%}.ant-col-xl-push-17{left:70.83333333%}.ant-col-xl-pull-17{right:70.83333333%}.ant-col-xl-offset-17{margin-left:70.83333333%}.ant-col-xl-order-17{order:17}.ant-col-xl-16{display:block;box-sizing:border-box;width:66.66666667%}.ant-col-xl-push-16{left:66.66666667%}.ant-col-xl-pull-16{right:66.66666667%}.ant-col-xl-offset-16{margin-left:66.66666667%}.ant-col-xl-order-16{order:16}.ant-col-xl-15{display:block;box-sizing:border-box;width:62.5%}.ant-col-xl-push-15{left:62.5%}.ant-col-xl-pull-15{right:62.5%}.ant-col-xl-offset-15{margin-left:62.5%}.ant-col-xl-order-15{order:15}.ant-col-xl-14{display:block;box-sizing:border-box;width:58.33333333%}.ant-col-xl-push-14{left:58.33333333%}.ant-col-xl-pull-14{right:58.33333333%}.ant-col-xl-offset-14{margin-left:58.33333333%}.ant-col-xl-order-14{order:14}.ant-col-xl-13{display:block;box-sizing:border-box;width:54.16666667%}.ant-col-xl-push-13{left:54.16666667%}.ant-col-xl-pull-13{right:54.16666667%}.ant-col-xl-offset-13{margin-left:54.16666667%}.ant-col-xl-order-13{order:13}.ant-col-xl-12{display:block;box-sizing:border-box;width:50%}.ant-col-xl-push-12{left:50%}.ant-col-xl-pull-12{right:50%}.ant-col-xl-offset-12{margin-left:50%}.ant-col-xl-order-12{order:12}.ant-col-xl-11{display:block;box-sizing:border-box;width:45.83333333%}.ant-col-xl-push-11{left:45.83333333%}.ant-col-xl-pull-11{right:45.83333333%}.ant-col-xl-offset-11{margin-left:45.83333333%}.ant-col-xl-order-11{order:11}.ant-col-xl-10{display:block;box-sizing:border-box;width:41.66666667%}.ant-col-xl-push-10{left:41.66666667%}.ant-col-xl-pull-10{right:41.66666667%}.ant-col-xl-offset-10{margin-left:41.66666667%}.ant-col-xl-order-10{order:10}.ant-col-xl-9{display:block;box-sizing:border-box;width:37.5%}.ant-col-xl-push-9{left:37.5%}.ant-col-xl-pull-9{right:37.5%}.ant-col-xl-offset-9{margin-left:37.5%}.ant-col-xl-order-9{order:9}.ant-col-xl-8{display:block;box-sizing:border-box;width:33.33333333%}.ant-col-xl-push-8{left:33.33333333%}.ant-col-xl-pull-8{right:33.33333333%}.ant-col-xl-offset-8{margin-left:33.33333333%}.ant-col-xl-order-8{order:8}.ant-col-xl-7{display:block;box-sizing:border-box;width:29.16666667%}.ant-col-xl-push-7{left:29.16666667%}.ant-col-xl-pull-7{right:29.16666667%}.ant-col-xl-offset-7{margin-left:29.16666667%}.ant-col-xl-order-7{order:7}.ant-col-xl-6{display:block;box-sizing:border-box;width:25%}.ant-col-xl-push-6{left:25%}.ant-col-xl-pull-6{right:25%}.ant-col-xl-offset-6{margin-left:25%}.ant-col-xl-order-6{order:6}.ant-col-xl-5{display:block;box-sizing:border-box;width:20.83333333%}.ant-col-xl-push-5{left:20.83333333%}.ant-col-xl-pull-5{right:20.83333333%}.ant-col-xl-offset-5{margin-left:20.83333333%}.ant-col-xl-order-5{order:5}.ant-col-xl-4{display:block;box-sizing:border-box;width:16.66666667%}.ant-col-xl-push-4{left:16.66666667%}.ant-col-xl-pull-4{right:16.66666667%}.ant-col-xl-offset-4{margin-left:16.66666667%}.ant-col-xl-order-4{order:4}.ant-col-xl-3{display:block;box-sizing:border-box;width:12.5%}.ant-col-xl-push-3{left:12.5%}.ant-col-xl-pull-3{right:12.5%}.ant-col-xl-offset-3{margin-left:12.5%}.ant-col-xl-order-3{order:3}.ant-col-xl-2{display:block;box-sizing:border-box;width:8.33333333%}.ant-col-xl-push-2{left:8.33333333%}.ant-col-xl-pull-2{right:8.33333333%}.ant-col-xl-offset-2{margin-left:8.33333333%}.ant-col-xl-order-2{order:2}.ant-col-xl-1{display:block;box-sizing:border-box;width:4.16666667%}.ant-col-xl-push-1{left:4.16666667%}.ant-col-xl-pull-1{right:4.16666667%}.ant-col-xl-offset-1{margin-left:4.16666667%}.ant-col-xl-order-1{order:1}.ant-col-xl-0{display:none}.ant-col-push-0{left:auto}.ant-col-pull-0{right:auto}.ant-col-xl-push-0{left:auto}.ant-col-xl-pull-0{right:auto}.ant-col-xl-offset-0{margin-left:0}.ant-col-xl-order-0{order:0}}@media (min-width:1600px){.ant-col-xxl-1,.ant-col-xxl-2,.ant-col-xxl-3,.ant-col-xxl-4,.ant-col-xxl-5,.ant-col-xxl-6,.ant-col-xxl-7,.ant-col-xxl-8,.ant-col-xxl-9,.ant-col-xxl-10,.ant-col-xxl-11,.ant-col-xxl-12,.ant-col-xxl-13,.ant-col-xxl-14,.ant-col-xxl-15,.ant-col-xxl-16,.ant-col-xxl-17,.ant-col-xxl-18,.ant-col-xxl-19,.ant-col-xxl-20,.ant-col-xxl-21,.ant-col-xxl-22,.ant-col-xxl-23,.ant-col-xxl-24{flex:0 0 auto;float:left}.ant-col-xxl-24{display:block;box-sizing:border-box;width:100%}.ant-col-xxl-push-24{left:100%}.ant-col-xxl-pull-24{right:100%}.ant-col-xxl-offset-24{margin-left:100%}.ant-col-xxl-order-24{order:24}.ant-col-xxl-23{display:block;box-sizing:border-box;width:95.83333333%}.ant-col-xxl-push-23{left:95.83333333%}.ant-col-xxl-pull-23{right:95.83333333%}.ant-col-xxl-offset-23{margin-left:95.83333333%}.ant-col-xxl-order-23{order:23}.ant-col-xxl-22{display:block;box-sizing:border-box;width:91.66666667%}.ant-col-xxl-push-22{left:91.66666667%}.ant-col-xxl-pull-22{right:91.66666667%}.ant-col-xxl-offset-22{margin-left:91.66666667%}.ant-col-xxl-order-22{order:22}.ant-col-xxl-21{display:block;box-sizing:border-box;width:87.5%}.ant-col-xxl-push-21{left:87.5%}.ant-col-xxl-pull-21{right:87.5%}.ant-col-xxl-offset-21{margin-left:87.5%}.ant-col-xxl-order-21{order:21}.ant-col-xxl-20{display:block;box-sizing:border-box;width:83.33333333%}.ant-col-xxl-push-20{left:83.33333333%}.ant-col-xxl-pull-20{right:83.33333333%}.ant-col-xxl-offset-20{margin-left:83.33333333%}.ant-col-xxl-order-20{order:20}.ant-col-xxl-19{display:block;box-sizing:border-box;width:79.16666667%}.ant-col-xxl-push-19{left:79.16666667%}.ant-col-xxl-pull-19{right:79.16666667%}.ant-col-xxl-offset-19{margin-left:79.16666667%}.ant-col-xxl-order-19{order:19}.ant-col-xxl-18{display:block;box-sizing:border-box;width:75%}.ant-col-xxl-push-18{left:75%}.ant-col-xxl-pull-18{right:75%}.ant-col-xxl-offset-18{margin-left:75%}.ant-col-xxl-order-18{order:18}.ant-col-xxl-17{display:block;box-sizing:border-box;width:70.83333333%}.ant-col-xxl-push-17{left:70.83333333%}.ant-col-xxl-pull-17{right:70.83333333%}.ant-col-xxl-offset-17{margin-left:70.83333333%}.ant-col-xxl-order-17{order:17}.ant-col-xxl-16{display:block;box-sizing:border-box;width:66.66666667%}.ant-col-xxl-push-16{left:66.66666667%}.ant-col-xxl-pull-16{right:66.66666667%}.ant-col-xxl-offset-16{margin-left:66.66666667%}.ant-col-xxl-order-16{order:16}.ant-col-xxl-15{display:block;box-sizing:border-box;width:62.5%}.ant-col-xxl-push-15{left:62.5%}.ant-col-xxl-pull-15{right:62.5%}.ant-col-xxl-offset-15{margin-left:62.5%}.ant-col-xxl-order-15{order:15}.ant-col-xxl-14{display:block;box-sizing:border-box;width:58.33333333%}.ant-col-xxl-push-14{left:58.33333333%}.ant-col-xxl-pull-14{right:58.33333333%}.ant-col-xxl-offset-14{margin-left:58.33333333%}.ant-col-xxl-order-14{order:14}.ant-col-xxl-13{display:block;box-sizing:border-box;width:54.16666667%}.ant-col-xxl-push-13{left:54.16666667%}.ant-col-xxl-pull-13{right:54.16666667%}.ant-col-xxl-offset-13{margin-left:54.16666667%}.ant-col-xxl-order-13{order:13}.ant-col-xxl-12{display:block;box-sizing:border-box;width:50%}.ant-col-xxl-push-12{left:50%}.ant-col-xxl-pull-12{right:50%}.ant-col-xxl-offset-12{margin-left:50%}.ant-col-xxl-order-12{order:12}.ant-col-xxl-11{display:block;box-sizing:border-box;width:45.83333333%}.ant-col-xxl-push-11{left:45.83333333%}.ant-col-xxl-pull-11{right:45.83333333%}.ant-col-xxl-offset-11{margin-left:45.83333333%}.ant-col-xxl-order-11{order:11}.ant-col-xxl-10{display:block;box-sizing:border-box;width:41.66666667%}.ant-col-xxl-push-10{left:41.66666667%}.ant-col-xxl-pull-10{right:41.66666667%}.ant-col-xxl-offset-10{margin-left:41.66666667%}.ant-col-xxl-order-10{order:10}.ant-col-xxl-9{display:block;box-sizing:border-box;width:37.5%}.ant-col-xxl-push-9{left:37.5%}.ant-col-xxl-pull-9{right:37.5%}.ant-col-xxl-offset-9{margin-left:37.5%}.ant-col-xxl-order-9{order:9}.ant-col-xxl-8{display:block;box-sizing:border-box;width:33.33333333%}.ant-col-xxl-push-8{left:33.33333333%}.ant-col-xxl-pull-8{right:33.33333333%}.ant-col-xxl-offset-8{margin-left:33.33333333%}.ant-col-xxl-order-8{order:8}.ant-col-xxl-7{display:block;box-sizing:border-box;width:29.16666667%}.ant-col-xxl-push-7{left:29.16666667%}.ant-col-xxl-pull-7{right:29.16666667%}.ant-col-xxl-offset-7{margin-left:29.16666667%}.ant-col-xxl-order-7{order:7}.ant-col-xxl-6{display:block;box-sizing:border-box;width:25%}.ant-col-xxl-push-6{left:25%}.ant-col-xxl-pull-6{right:25%}.ant-col-xxl-offset-6{margin-left:25%}.ant-col-xxl-order-6{order:6}.ant-col-xxl-5{display:block;box-sizing:border-box;width:20.83333333%}.ant-col-xxl-push-5{left:20.83333333%}.ant-col-xxl-pull-5{right:20.83333333%}.ant-col-xxl-offset-5{margin-left:20.83333333%}.ant-col-xxl-order-5{order:5}.ant-col-xxl-4{display:block;box-sizing:border-box;width:16.66666667%}.ant-col-xxl-push-4{left:16.66666667%}.ant-col-xxl-pull-4{right:16.66666667%}.ant-col-xxl-offset-4{margin-left:16.66666667%}.ant-col-xxl-order-4{order:4}.ant-col-xxl-3{display:block;box-sizing:border-box;width:12.5%}.ant-col-xxl-push-3{left:12.5%}.ant-col-xxl-pull-3{right:12.5%}.ant-col-xxl-offset-3{margin-left:12.5%}.ant-col-xxl-order-3{order:3}.ant-col-xxl-2{display:block;box-sizing:border-box;width:8.33333333%}.ant-col-xxl-push-2{left:8.33333333%}.ant-col-xxl-pull-2{right:8.33333333%}.ant-col-xxl-offset-2{margin-left:8.33333333%}.ant-col-xxl-order-2{order:2}.ant-col-xxl-1{display:block;box-sizing:border-box;width:4.16666667%}.ant-col-xxl-push-1{left:4.16666667%}.ant-col-xxl-pull-1{right:4.16666667%}.ant-col-xxl-offset-1{margin-left:4.16666667%}.ant-col-xxl-order-1{order:1}.ant-col-xxl-0{display:none}.ant-col-push-0{left:auto}.ant-col-pull-0{right:auto}.ant-col-xxl-push-0{left:auto}.ant-col-xxl-pull-0{right:auto}.ant-col-xxl-offset-0{margin-left:0}.ant-col-xxl-order-0{order:0}}.ant-input{box-sizing:border-box;margin:0;font-variant:tabular-nums;list-style:none;font-feature-settings:"tnum";position:relative;display:inline-block;width:100%;height:32px;padding:4px 11px;color:rgba(0,0,0,.65);font-size:15px;line-height:1.5;background-color:#fff;background-image:none;border:1px solid #d9d9d9;border-radius:4px;transition:all .3s}.ant-input::-moz-placeholder{color:#bfbfbf;opacity:1}.ant-input:-ms-input-placeholder{color:#bfbfbf}.ant-input::-webkit-input-placeholder{color:#bfbfbf}.ant-input:-moz-placeholder-shown{text-overflow:ellipsis}.ant-input:-ms-input-placeholder{text-overflow:ellipsis}.ant-input:placeholder-shown{text-overflow:ellipsis}.ant-input:focus,.ant-input:hover{border-color:#195e9e;border-right-width:1px!important}.ant-input:focus{outline:0;box-shadow:0 0 0 2px rgba(0,70,145,.2)}.ant-input-disabled{color:rgba(0,0,0,.25);background-color:#f5f5f5;cursor:not-allowed;opacity:1}.ant-input-disabled:hover{border-color:#d9d9d9;border-right-width:1px!important}.ant-input[disabled]{color:rgba(0,0,0,.25);background-color:#f5f5f5;cursor:not-allowed;opacity:1}.ant-input[disabled]:hover{border-color:#d9d9d9;border-right-width:1px!important}textarea.ant-input{max-width:100%;height:auto;min-height:32px;line-height:1.5;vertical-align:bottom;transition:all .3s,height 0s}.ant-input-lg{height:40px;padding:6px 11px;font-size:17px}.ant-input-sm{height:24px;padding:1px 7px}.ant-input-group{box-sizing:border-box;margin:0;padding:0;color:rgba(0,0,0,.65);font-size:15px;font-variant:tabular-nums;line-height:1.5;list-style:none;font-feature-settings:"tnum";position:relative;display:table;width:100%;border-collapse:separate;border-spacing:0}.ant-input-group[class*=col-]{float:none;padding-right:0;padding-left:0}.ant-input-group>[class*=col-]{padding-right:8px}.ant-input-group>[class*=col-]:last-child{padding-right:0}.ant-input-group-addon,.ant-input-group-wrap,.ant-input-group>.ant-input{display:table-cell}.ant-input-group-addon:not(:first-child):not(:last-child),.ant-input-group-wrap:not(:first-child):not(:last-child),.ant-input-group>.ant-input:not(:first-child):not(:last-child){border-radius:0}.ant-input-group-addon,.ant-input-group-wrap{width:1px;white-space:nowrap;vertical-align:middle}.ant-input-group-wrap>*{display:block!important}.ant-input-group .ant-input{float:left;width:100%;margin-bottom:0;text-align:inherit}.ant-input-group .ant-input:focus,.ant-input-group .ant-input:hover{z-index:1;border-right-width:1px}.ant-input-group-addon{position:relative;padding:0 11px;color:rgba(0,0,0,.65);font-weight:400;font-size:15px;text-align:center;background-color:#fafafa;border:1px solid #d9d9d9;border-radius:4px;transition:all .3s}.ant-input-group-addon .ant-select{margin:-5px -11px}.ant-input-group-addon .ant-select .ant-select-selection{margin:-1px;background-color:inherit;border:1px solid transparent;box-shadow:none}.ant-input-group-addon .ant-select-focused .ant-select-selection,.ant-input-group-addon .ant-select-open .ant-select-selection{color:#004691}.ant-input-group-addon>i:only-child:after{position:absolute;top:0;right:0;bottom:0;left:0;content:""}.ant-input-group-addon:first-child,.ant-input-group-addon:first-child .ant-select .ant-select-selection,.ant-input-group>.ant-input:first-child,.ant-input-group>.ant-input:first-child .ant-select .ant-select-selection{border-top-right-radius:0;border-bottom-right-radius:0}.ant-input-group>.ant-input-affix-wrapper:not(:first-child) .ant-input{border-top-left-radius:0;border-bottom-left-radius:0}.ant-input-group>.ant-input-affix-wrapper:not(:last-child) .ant-input{border-top-right-radius:0;border-bottom-right-radius:0}.ant-input-group-addon:first-child{border-right:0}.ant-input-group-addon:last-child{border-left:0}.ant-input-group-addon:last-child,.ant-input-group-addon:last-child .ant-select .ant-select-selection,.ant-input-group>.ant-input:last-child,.ant-input-group>.ant-input:last-child .ant-select .ant-select-selection{border-top-left-radius:0;border-bottom-left-radius:0}.ant-input-group-lg .ant-input,.ant-input-group-lg>.ant-input-group-addon{height:40px;padding:6px 11px;font-size:17px}.ant-input-group-sm .ant-input,.ant-input-group-sm>.ant-input-group-addon{height:24px;padding:1px 7px}.ant-input-group-lg .ant-select-selection--single{height:40px}.ant-input-group-sm .ant-select-selection--single{height:24px}.ant-input-group .ant-input-affix-wrapper{display:table-cell;float:left;width:100%}.ant-input-group.ant-input-group-compact{display:block;zoom:1}.ant-input-group.ant-input-group-compact:after,.ant-input-group.ant-input-group-compact:before{display:table;content:""}.ant-input-group.ant-input-group-compact:after{clear:both}.ant-input-group.ant-input-group-compact-addon:not(:first-child):not(:last-child),.ant-input-group.ant-input-group-compact-wrap:not(:first-child):not(:last-child),.ant-input-group.ant-input-group-compact>.ant-input:not(:first-child):not(:last-child){border-right-width:1px}.ant-input-group.ant-input-group-compact-addon:not(:first-child):not(:last-child):focus,.ant-input-group.ant-input-group-compact-addon:not(:first-child):not(:last-child):hover,.ant-input-group.ant-input-group-compact-wrap:not(:first-child):not(:last-child):focus,.ant-input-group.ant-input-group-compact-wrap:not(:first-child):not(:last-child):hover,.ant-input-group.ant-input-group-compact>.ant-input:not(:first-child):not(:last-child):focus,.ant-input-group.ant-input-group-compact>.ant-input:not(:first-child):not(:last-child):hover{z-index:1}.ant-input-group.ant-input-group-compact>*{display:inline-block;float:none;vertical-align:top;border-radius:0}.ant-input-group.ant-input-group-compact>:not(:last-child){margin-right:-1px;border-right-width:1px}.ant-input-group.ant-input-group-compact .ant-input{float:none}.ant-input-group.ant-input-group-compact>.ant-calendar-picker .ant-input,.ant-input-group.ant-input-group-compact>.ant-cascader-picker .ant-input,.ant-input-group.ant-input-group-compact>.ant-input-group-wrapper .ant-input,.ant-input-group.ant-input-group-compact>.ant-mention-wrapper .ant-mention-editor,.ant-input-group.ant-input-group-compact>.ant-select-auto-complete .ant-input,.ant-input-group.ant-input-group-compact>.ant-select>.ant-select-selection,.ant-input-group.ant-input-group-compact>.ant-time-picker .ant-time-picker-input{border-right-width:1px;border-radius:0}.ant-input-group.ant-input-group-compact>.ant-calendar-picker .ant-input:focus,.ant-input-group.ant-input-group-compact>.ant-calendar-picker .ant-input:hover,.ant-input-group.ant-input-group-compact>.ant-cascader-picker .ant-input:focus,.ant-input-group.ant-input-group-compact>.ant-cascader-picker .ant-input:hover,.ant-input-group.ant-input-group-compact>.ant-input-group-wrapper .ant-input:focus,.ant-input-group.ant-input-group-compact>.ant-input-group-wrapper .ant-input:hover,.ant-input-group.ant-input-group-compact>.ant-mention-wrapper .ant-mention-editor:focus,.ant-input-group.ant-input-group-compact>.ant-mention-wrapper .ant-mention-editor:hover,.ant-input-group.ant-input-group-compact>.ant-select-auto-complete .ant-input:focus,.ant-input-group.ant-input-group-compact>.ant-select-auto-complete .ant-input:hover,.ant-input-group.ant-input-group-compact>.ant-select-focused,.ant-input-group.ant-input-group-compact>.ant-select>.ant-select-selection:focus,.ant-input-group.ant-input-group-compact>.ant-select>.ant-select-selection:hover,.ant-input-group.ant-input-group-compact>.ant-time-picker .ant-time-picker-input:focus,.ant-input-group.ant-input-group-compact>.ant-time-picker .ant-time-picker-input:hover{z-index:1}.ant-input-group.ant-input-group-compact>.ant-calendar-picker:first-child .ant-input,.ant-input-group.ant-input-group-compact>.ant-cascader-picker:first-child .ant-input,.ant-input-group.ant-input-group-compact>.ant-mention-wrapper:first-child .ant-mention-editor,.ant-input-group.ant-input-group-compact>.ant-select-auto-complete:first-child .ant-input,.ant-input-group.ant-input-group-compact>.ant-select:first-child>.ant-select-selection,.ant-input-group.ant-input-group-compact>.ant-time-picker:first-child .ant-time-picker-input,.ant-input-group.ant-input-group-compact>:first-child{border-top-left-radius:4px;border-bottom-left-radius:4px}.ant-input-group.ant-input-group-compact>.ant-calendar-picker:last-child .ant-input,.ant-input-group.ant-input-group-compact>.ant-cascader-picker-focused:last-child .ant-input,.ant-input-group.ant-input-group-compact>.ant-cascader-picker:last-child .ant-input,.ant-input-group.ant-input-group-compact>.ant-mention-wrapper:last-child .ant-mention-editor,.ant-input-group.ant-input-group-compact>.ant-select-auto-complete:last-child .ant-input,.ant-input-group.ant-input-group-compact>.ant-select:last-child>.ant-select-selection,.ant-input-group.ant-input-group-compact>.ant-time-picker:last-child .ant-time-picker-input,.ant-input-group.ant-input-group-compact>:last-child{border-right-width:1px;border-top-right-radius:4px;border-bottom-right-radius:4px}.ant-input-group.ant-input-group-compact>.ant-select-auto-complete .ant-input{vertical-align:top}.ant-input-group-wrapper{display:inline-block;width:100%;text-align:start;vertical-align:top}.ant-input-affix-wrapper{box-sizing:border-box;margin:0;padding:0;color:rgba(0,0,0,.65);font-size:15px;font-variant:tabular-nums;line-height:1.5;list-style:none;font-feature-settings:"tnum";position:relative;display:inline-block;width:100%;text-align:start}.ant-input-affix-wrapper:hover .ant-input:not(.ant-input-disabled){border-color:#195e9e;border-right-width:1px!important}.ant-input-affix-wrapper .ant-input{position:relative;text-align:inherit}.ant-input-affix-wrapper .ant-input-prefix,.ant-input-affix-wrapper .ant-input-suffix{position:absolute;top:50%;z-index:2;display:flex;align-items:center;color:rgba(0,0,0,.65);line-height:0;transform:translateY(-50%)}.ant-input-affix-wrapper .ant-input-prefix :not(.anticon),.ant-input-affix-wrapper .ant-input-suffix :not(.anticon){line-height:1.5}.ant-input-affix-wrapper .ant-input-disabled~.ant-input-suffix .anticon{color:rgba(0,0,0,.25);cursor:not-allowed}.ant-input-affix-wrapper .ant-input-prefix{left:12px}.ant-input-affix-wrapper .ant-input-suffix{right:12px}.ant-input-affix-wrapper .ant-input:not(:first-child){padding-left:30px}.ant-input-affix-wrapper .ant-input:not(:last-child){padding-right:30px}.ant-input-affix-wrapper.ant-input-affix-wrapper-input-with-clear-btn .ant-input:not(:last-child){padding-right:49px}.ant-input-affix-wrapper.ant-input-affix-wrapper-textarea-with-clear-btn .ant-input{padding-right:22px}.ant-input-password-icon{color:rgba(0,0,0,.45);cursor:pointer;transition:all .3s}.ant-input-password-icon:hover{color:#333}.ant-input-clear-icon{color:rgba(0,0,0,.25);font-size:12px;cursor:pointer;transition:color .3s;vertical-align:0}.ant-input-clear-icon:hover{color:rgba(0,0,0,.45)}.ant-input-clear-icon:active{color:rgba(0,0,0,.65)}.ant-input-clear-icon+i{margin-left:6px}.ant-input-textarea-clear-icon{color:rgba(0,0,0,.25);font-size:12px;cursor:pointer;transition:color .3s;position:absolute;top:0;right:0;margin:8px 8px 0 0}.ant-input-textarea-clear-icon:hover{color:rgba(0,0,0,.45)}.ant-input-textarea-clear-icon:active{color:rgba(0,0,0,.65)}.ant-input-textarea-clear-icon+i{margin-left:6px}.ant-input-search-icon{color:rgba(0,0,0,.45);cursor:pointer;transition:all .3s}.ant-input-search-icon:hover{color:rgba(0,0,0,.8)}.ant-input-search-enter-button input{border-right:0}.ant-input-search-enter-button+.ant-input-group-addon,.ant-input-search-enter-button input+.ant-input-group-addon{padding:0;border:0}.ant-input-search-enter-button+.ant-input-group-addon .ant-input-search-button,.ant-input-search-enter-button input+.ant-input-group-addon .ant-input-search-button{border-top-left-radius:0;border-bottom-left-radius:0}.ant-input-number{box-sizing:border-box;font-variant:tabular-nums;list-style:none;font-feature-settings:"tnum";position:relative;width:100%;height:32px;color:rgba(0,0,0,.65);font-size:15px;line-height:1.5;background-color:#fff;background-image:none;transition:all .3s;display:inline-block;width:90px;margin:0;padding:0;border:1px solid #d9d9d9;border-radius:4px}.ant-input-number::-moz-placeholder{color:#bfbfbf;opacity:1}.ant-input-number:-ms-input-placeholder{color:#bfbfbf}.ant-input-number::-webkit-input-placeholder{color:#bfbfbf}.ant-input-number:-moz-placeholder-shown{text-overflow:ellipsis}.ant-input-number:-ms-input-placeholder{text-overflow:ellipsis}.ant-input-number:placeholder-shown{text-overflow:ellipsis}.ant-input-number:focus{border-color:#195e9e;border-right-width:1px!important;outline:0;box-shadow:0 0 0 2px rgba(0,70,145,.2)}.ant-input-number[disabled]{color:rgba(0,0,0,.25);background-color:#f5f5f5;cursor:not-allowed;opacity:1}.ant-input-number[disabled]:hover{border-color:#d9d9d9;border-right-width:1px!important}textarea.ant-input-number{max-width:100%;height:auto;min-height:32px;line-height:1.5;vertical-align:bottom;transition:all .3s,height 0s}.ant-input-number-lg{height:40px;padding:6px 11px}.ant-input-number-sm{height:24px;padding:1px 7px}.ant-input-number-handler{position:relative;display:block;width:100%;height:50%;overflow:hidden;color:rgba(0,0,0,.45);font-weight:700;line-height:0;text-align:center;transition:all .1s linear}.ant-input-number-handler:active{background:#f4f4f4}.ant-input-number-handler:hover .ant-input-number-handler-down-inner,.ant-input-number-handler:hover .ant-input-number-handler-up-inner{color:#195e9e}.ant-input-number-handler-down-inner,.ant-input-number-handler-up-inner{display:inline-block;color:inherit;font-style:normal;line-height:0;text-align:center;text-transform:none;vertical-align:-.125em;text-rendering:optimizeLegibility;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;position:absolute;right:4px;width:12px;height:12px;color:rgba(0,0,0,.45);line-height:12px;transition:all .1s linear;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.ant-input-number-handler-down-inner>*,.ant-input-number-handler-up-inner>*{line-height:1}.ant-input-number-handler-down-inner svg,.ant-input-number-handler-up-inner svg{display:inline-block}.ant-input-number-handler-down-inner:before,.ant-input-number-handler-up-inner:before{display:none}.ant-input-number-handler-down-inner .ant-input-number-handler-down-inner-icon,.ant-input-number-handler-down-inner .ant-input-number-handler-up-inner-icon,.ant-input-number-handler-up-inner .ant-input-number-handler-down-inner-icon,.ant-input-number-handler-up-inner .ant-input-number-handler-up-inner-icon{display:block}.ant-input-number-focused,.ant-input-number:hover{border-color:#195e9e;border-right-width:1px!important}.ant-input-number-focused{outline:0;box-shadow:0 0 0 2px rgba(0,70,145,.2)}.ant-input-number-disabled{color:rgba(0,0,0,.25);background-color:#f5f5f5;cursor:not-allowed;opacity:1}.ant-input-number-disabled:hover{border-color:#d9d9d9;border-right-width:1px!important}.ant-input-number-disabled .ant-input-number-input{cursor:not-allowed}.ant-input-number-disabled .ant-input-number-handler-wrap{display:none}.ant-input-number-input{width:100%;height:30px;padding:0 11px;text-align:left;background-color:transparent;border:0;border-radius:4px;outline:0;transition:all .3s linear;-moz-appearance:textfield!important}.ant-input-number-input::-moz-placeholder{color:#bfbfbf;opacity:1}.ant-input-number-input:-ms-input-placeholder{color:#bfbfbf}.ant-input-number-input::-webkit-input-placeholder{color:#bfbfbf}.ant-input-number-input:-moz-placeholder-shown{text-overflow:ellipsis}.ant-input-number-input:-ms-input-placeholder{text-overflow:ellipsis}.ant-input-number-input:placeholder-shown{text-overflow:ellipsis}.ant-input-number-input[type=number]::-webkit-inner-spin-button,.ant-input-number-input[type=number]::-webkit-outer-spin-button{margin:0;-webkit-appearance:none}.ant-input-number-lg{padding:0;font-size:17px}.ant-input-number-lg input{height:38px}.ant-input-number-sm{padding:0}.ant-input-number-sm input{height:22px;padding:0 7px}.ant-input-number-handler-wrap{position:absolute;top:0;right:0;width:22px;height:100%;background:#fff;border-left:1px solid #d9d9d9;border-radius:0 4px 4px 0;opacity:0;transition:opacity .24s linear .1s}.ant-input-number-handler-wrap .ant-input-number-handler .ant-input-number-handler-down-inner,.ant-input-number-handler-wrap .ant-input-number-handler .ant-input-number-handler-up-inner{display:inline-block;font-size:12px;font-size:7px\9;transform:scale(.58333333) rotate(0deg);min-width:auto;margin-right:0}:root .ant-input-number-handler-wrap .ant-input-number-handler .ant-input-number-handler-down-inner,:root .ant-input-number-handler-wrap .ant-input-number-handler .ant-input-number-handler-up-inner{font-size:12px}.ant-input-number-handler-wrap:hover .ant-input-number-handler{height:40%}.ant-input-number:hover .ant-input-number-handler-wrap{opacity:1}.ant-input-number-handler-up{border-top-right-radius:4px;cursor:pointer}.ant-input-number-handler-up-inner{top:50%;margin-top:-5px;text-align:center}.ant-input-number-handler-up:hover{height:60%!important}.ant-input-number-handler-down{top:0;border-top:1px solid #d9d9d9;border-bottom-right-radius:4px;cursor:pointer}.ant-input-number-handler-down-inner{top:50%;margin-top:-6px;text-align:center}.ant-input-number-handler-down:hover{height:60%!important}.ant-input-number-handler-down-disabled,.ant-input-number-handler-up-disabled{cursor:not-allowed}.ant-input-number-handler-down-disabled:hover .ant-input-number-handler-down-inner,.ant-input-number-handler-up-disabled:hover .ant-input-number-handler-up-inner{color:rgba(0,0,0,.25)}.ant-layout{display:flex;flex:auto;flex-direction:column;min-height:0;background:#f0f2f5}.ant-layout,.ant-layout *{box-sizing:border-box}.ant-layout.ant-layout-has-sider{flex-direction:row}.ant-layout.ant-layout-has-sider>.ant-layout,.ant-layout.ant-layout-has-sider>.ant-layout-content{overflow-x:hidden}.ant-layout-footer,.ant-layout-header{flex:0 0 auto}.ant-layout-header{height:64px;padding:0 50px;line-height:64px;background:#001529}.ant-layout-footer{padding:24px 50px;color:rgba(0,0,0,.65);font-size:15px;background:#f0f2f5}.ant-layout-content{flex:auto;min-height:0}.ant-layout-sider{position:relative;min-width:0;background:#001529;transition:all .2s}.ant-layout-sider-children{height:100%;margin-top:-.1px;padding-top:.1px}.ant-layout-sider-has-trigger{padding-bottom:48px}.ant-layout-sider-right{order:1}.ant-layout-sider-trigger{position:fixed;bottom:0;z-index:1;height:48px;color:#fff;line-height:48px;text-align:center;background:#002140;cursor:pointer;transition:all .2s}.ant-layout-sider-zero-width>*{overflow:hidden}.ant-layout-sider-zero-width-trigger{position:absolute;top:64px;right:-36px;z-index:1;width:36px;height:42px;color:#fff;font-size:18px;line-height:42px;text-align:center;background:#001529;border-radius:0 4px 4px 0;cursor:pointer;transition:background .3s ease}.ant-layout-sider-zero-width-trigger:hover{background:#192c3e}.ant-layout-sider-zero-width-trigger-right{left:-36px;border-radius:4px 0 0 4px}.ant-layout-sider-light{background:#fff}.ant-layout-sider-light .ant-layout-sider-trigger,.ant-layout-sider-light .ant-layout-sider-zero-width-trigger{color:rgba(0,0,0,.65);background:#fff}.ant-list{box-sizing:border-box;margin:0;padding:0;color:rgba(0,0,0,.65);font-size:15px;font-variant:tabular-nums;line-height:1.5;list-style:none;font-feature-settings:"tnum";position:relative}.ant-list *{outline:none}.ant-list-pagination{margin-top:24px;text-align:right}.ant-list-pagination .ant-pagination-options{text-align:left}.ant-list-more{margin-top:12px;text-align:center}.ant-list-more button{padding-right:32px;padding-left:32px}.ant-list-spin{min-height:40px;text-align:center}.ant-list-empty-text{padding:16px;color:rgba(0,0,0,.25);font-size:15px;text-align:center}.ant-list-items{margin:0;padding:0;list-style:none}.ant-list-item{display:flex;align-items:center;justify-content:space-between;padding:12px 0}.ant-list-item-content{color:rgba(0,0,0,.65)}.ant-list-item-meta{display:flex;flex:1;align-items:flex-start;font-size:0}.ant-list-item-meta-avatar{margin-right:16px}.ant-list-item-meta-content{flex:1 0}.ant-list-item-meta-title{margin-bottom:4px;color:rgba(0,0,0,.65);font-size:15px;line-height:22px}.ant-list-item-meta-title>a{color:rgba(0,0,0,.65);transition:all .3s}.ant-list-item-meta-title>a:hover{color:#004691}.ant-list-item-meta-description{color:rgba(0,0,0,.45);font-size:15px;line-height:22px}.ant-list-item-action{flex:0 0 auto;margin-left:48px;padding:0;font-size:0;list-style:none}.ant-list-item-action>li{position:relative;display:inline-block;padding:0 8px;color:rgba(0,0,0,.45);font-size:15px;line-height:22px;text-align:center;cursor:pointer}.ant-list-item-action>li:first-child{padding-left:0}.ant-list-item-action-split{position:absolute;top:50%;right:0;width:1px;height:14px;margin-top:-7px;background-color:#e8e8e8}.ant-list-footer,.ant-list-header{background:transparent}.ant-list-footer,.ant-list-header{padding-top:12px;padding-bottom:12px}.ant-list-empty{padding:16px 0;color:rgba(0,0,0,.45);font-size:12px;text-align:center}.ant-list-split .ant-list-item{border-bottom:1px solid #e8e8e8}.ant-list-split .ant-list-item:last-child{border-bottom:none}.ant-list-split .ant-list-header{border-bottom:1px solid #e8e8e8}.ant-list-loading .ant-list-spin-nested-loading{min-height:32px}.ant-list-something-after-last-item .ant-spin-container>.ant-list-items>.ant-list-item:last-child{border-bottom:1px solid #e8e8e8}.ant-list-lg .ant-list-item{padding-top:16px;padding-bottom:16px}.ant-list-sm .ant-list-item{padding-top:8px;padding-bottom:8px}.ant-list-vertical .ant-list-item{align-items:normal}.ant-list-vertical .ant-list-item-main{display:block;flex:1}.ant-list-vertical .ant-list-item-extra{margin-left:40px}.ant-list-vertical .ant-list-item-meta{margin-bottom:16px}.ant-list-vertical .ant-list-item-meta-title{margin-bottom:12px;color:rgba(0,0,0,.85);font-size:17px;line-height:24px}.ant-list-vertical .ant-list-item-action{margin-top:16px;margin-left:auto}.ant-list-vertical .ant-list-item-action>li{padding:0 16px}.ant-list-vertical .ant-list-item-action>li:first-child{padding-left:0}.ant-list-grid .ant-col>.ant-list-item{display:block;max-width:100%;margin-bottom:16px;padding-top:0;padding-bottom:0;border-bottom:none}.ant-list-item-no-flex{display:block}.ant-list:not(.ant-list-vertical) .ant-list-item-no-flex .ant-list-item-action{float:right}.ant-list-bordered{border:1px solid #d9d9d9;border-radius:4px}.ant-list-bordered .ant-list-footer,.ant-list-bordered .ant-list-header,.ant-list-bordered .ant-list-item{padding-right:24px;padding-left:24px}.ant-list-bordered .ant-list-item{border-bottom:1px solid #e8e8e8}.ant-list-bordered .ant-list-pagination{margin:16px 24px}.ant-list-bordered.ant-list-sm .ant-list-item{padding-right:16px;padding-left:16px}.ant-list-bordered.ant-list-sm .ant-list-footer,.ant-list-bordered.ant-list-sm .ant-list-header{padding:8px 16px}.ant-list-bordered.ant-list-lg .ant-list-footer,.ant-list-bordered.ant-list-lg .ant-list-header{padding:16px 24px}@media screen and (max-width:768px){.ant-list-item-action,.ant-list-vertical .ant-list-item-extra{margin-left:24px}}@media screen and (max-width:576px){.ant-list-item{flex-wrap:wrap}.ant-list-item-action{margin-left:12px}.ant-list-vertical .ant-list-item{flex-wrap:wrap-reverse}.ant-list-vertical .ant-list-item-main{min-width:220px}.ant-list-vertical .ant-list-item-extra{margin:auto auto 16px}}.ant-mentions{box-sizing:border-box;margin:0;font-variant:tabular-nums;list-style:none;font-feature-settings:"tnum";width:100%;height:32px;color:rgba(0,0,0,.65);font-size:15px;background-color:#fff;background-image:none;border:1px solid #d9d9d9;border-radius:4px;transition:all .3s;position:relative;display:inline-block;height:auto;padding:0;overflow:hidden;line-height:1.5;white-space:pre-wrap;vertical-align:bottom}.ant-mentions::-moz-placeholder{color:#bfbfbf;opacity:1}.ant-mentions:-ms-input-placeholder{color:#bfbfbf}.ant-mentions::-webkit-input-placeholder{color:#bfbfbf}.ant-mentions:-moz-placeholder-shown{text-overflow:ellipsis}.ant-mentions:-ms-input-placeholder{text-overflow:ellipsis}.ant-mentions:placeholder-shown{text-overflow:ellipsis}.ant-mentions:focus,.ant-mentions:hover{border-color:#195e9e;border-right-width:1px!important}.ant-mentions:focus{outline:0;box-shadow:0 0 0 2px rgba(0,70,145,.2)}.ant-mentions-disabled{color:rgba(0,0,0,.25);background-color:#f5f5f5;cursor:not-allowed;opacity:1}.ant-mentions-disabled:hover{border-color:#d9d9d9;border-right-width:1px!important}.ant-mentions[disabled]{color:rgba(0,0,0,.25);background-color:#f5f5f5;cursor:not-allowed;opacity:1}.ant-mentions[disabled]:hover{border-color:#d9d9d9;border-right-width:1px!important}textarea.ant-mentions{max-width:100%;height:auto;min-height:32px;line-height:1.5;vertical-align:bottom;transition:all .3s,height 0s}.ant-mentions-lg{height:40px;padding:6px 11px;font-size:17px}.ant-mentions-sm{height:24px;padding:1px 7px}.ant-mentions-disabled>textarea{color:rgba(0,0,0,.25);background-color:#f5f5f5;cursor:not-allowed;opacity:1}.ant-mentions-disabled>textarea:hover{border-color:#d9d9d9;border-right-width:1px!important}.ant-mentions-focused{border-color:#195e9e;border-right-width:1px!important;outline:0;box-shadow:0 0 0 2px rgba(0,70,145,.2)}.ant-mentions-measure,.ant-mentions>textarea{min-height:30px;margin:0;padding:4px 11px;overflow:inherit;overflow-x:hidden;overflow-y:auto;font-weight:inherit;font-size:inherit;font-family:inherit;font-style:inherit;font-variant:inherit;font-size-adjust:inherit;font-stretch:inherit;line-height:inherit;direction:inherit;letter-spacing:inherit;white-space:inherit;text-align:inherit;vertical-align:top;word-wrap:break-word;word-break:inherit;-moz-tab-size:inherit;-o-tab-size:inherit;tab-size:inherit}.ant-mentions>textarea{width:100%;border:none;outline:none;resize:none}.ant-mentions>textarea::-moz-placeholder{color:#bfbfbf;opacity:1}.ant-mentions>textarea:-ms-input-placeholder{color:#bfbfbf}.ant-mentions>textarea::-webkit-input-placeholder{color:#bfbfbf}.ant-mentions>textarea:-moz-placeholder-shown{text-overflow:ellipsis}.ant-mentions>textarea:-ms-input-placeholder{text-overflow:ellipsis}.ant-mentions>textarea:placeholder-shown{text-overflow:ellipsis}.ant-mentions>textarea:-moz-read-only{cursor:default}.ant-mentions>textarea:read-only{cursor:default}.ant-mentions-measure{position:absolute;top:0;right:0;bottom:0;left:0;z-index:-1;color:transparent;pointer-events:none}.ant-mentions-measure>span{display:inline-block;min-height:1em}.ant-mentions-dropdown{margin:0;padding:0;color:rgba(0,0,0,.65);font-variant:tabular-nums;line-height:1.5;list-style:none;font-feature-settings:"tnum";position:absolute;top:-9999px;left:-9999px;z-index:1050;box-sizing:border-box;font-size:15px;font-variant:normal;background-color:#fff;border-radius:4px;outline:none;box-shadow:0 2px 8px rgba(0,0,0,.15)}.ant-mentions-dropdown-hidden{display:none}.ant-mentions-dropdown-menu{max-height:250px;margin-bottom:0;padding-left:0;overflow:auto;list-style:none;outline:none}.ant-mentions-dropdown-menu-item{position:relative;display:block;min-width:100px;padding:5px 12px;overflow:hidden;color:rgba(0,0,0,.65);font-weight:400;line-height:22px;white-space:nowrap;text-overflow:ellipsis;cursor:pointer;transition:background .3s ease}.ant-mentions-dropdown-menu-item:hover{background-color:#bccad1}.ant-mentions-dropdown-menu-item:first-child{border-radius:4px 4px 0 0}.ant-mentions-dropdown-menu-item:last-child{border-radius:0 0 4px 4px}.ant-mentions-dropdown-menu-item-disabled{color:rgba(0,0,0,.25);cursor:not-allowed}.ant-mentions-dropdown-menu-item-disabled:hover{color:rgba(0,0,0,.25);background-color:#fff;cursor:not-allowed}.ant-mentions-dropdown-menu-item-selected{color:rgba(0,0,0,.65);font-weight:600;background-color:#fafafa}.ant-mentions-dropdown-menu-item-active{background-color:#bccad1}.ant-menu{box-sizing:border-box;font-size:15px;font-variant:tabular-nums;line-height:1.5;font-feature-settings:"tnum";margin:0;padding:0;color:rgba(0,0,0,.65);line-height:0;list-style:none;background:#fff;outline:none;box-shadow:0 2px 8px rgba(0,0,0,.15);transition:background .3s,width .3s cubic-bezier(.2,0,0,1) 0s;zoom:1}.ant-menu:after,.ant-menu:before{display:table;content:""}.ant-menu:after{clear:both}.ant-menu ol,.ant-menu ul{margin:0;padding:0;list-style:none}.ant-menu-hidden{display:none}.ant-menu-item-group-title{padding:8px 16px;color:rgba(0,0,0,.45);font-size:15px;line-height:1.5;transition:all .3s}.ant-menu-submenu,.ant-menu-submenu-inline{transition:border-color .3s cubic-bezier(.645,.045,.355,1),background .3s cubic-bezier(.645,.045,.355,1),padding .15s cubic-bezier(.645,.045,.355,1)}.ant-menu-submenu-selected{color:#004691}.ant-menu-item:active,.ant-menu-submenu-title:active{background:#bccad1}.ant-menu-submenu .ant-menu-sub{cursor:auto;transition:background .3s cubic-bezier(.645,.045,.355,1),padding .3s cubic-bezier(.645,.045,.355,1)}.ant-menu-item>a{display:block;color:rgba(0,0,0,.65)}.ant-menu-item>a:hover{color:#004691}.ant-menu-item>a:before{position:absolute;top:0;right:0;bottom:0;left:0;background-color:transparent;content:""}.ant-menu-item>.ant-badge>a{color:rgba(0,0,0,.65)}.ant-menu-item>.ant-badge>a:hover{color:#004691}.ant-menu-item-divider{height:1px;overflow:hidden;line-height:0;background-color:#e8e8e8}.ant-menu-item-active,.ant-menu-item:hover,.ant-menu-submenu-active,.ant-menu-submenu-title:hover,.ant-menu:not(.ant-menu-inline) .ant-menu-submenu-open{color:#004691}.ant-menu-horizontal .ant-menu-item,.ant-menu-horizontal .ant-menu-submenu{margin-top:-1px}.ant-menu-horizontal>.ant-menu-item-active,.ant-menu-horizontal>.ant-menu-item:hover,.ant-menu-horizontal>.ant-menu-submenu .ant-menu-submenu-title:hover{background-color:transparent}.ant-menu-item-selected,.ant-menu-item-selected>a,.ant-menu-item-selected>a:hover{color:#004691}.ant-menu:not(.ant-menu-horizontal) .ant-menu-item-selected{background-color:#bccad1}.ant-menu-inline,.ant-menu-vertical,.ant-menu-vertical-left{border-right:1px solid #e8e8e8}.ant-menu-vertical-right{border-left:1px solid #e8e8e8}.ant-menu-vertical-left.ant-menu-sub,.ant-menu-vertical-right.ant-menu-sub,.ant-menu-vertical.ant-menu-sub{min-width:160px;padding:0;border-right:0;transform-origin:0 0}.ant-menu-vertical-left.ant-menu-sub .ant-menu-item,.ant-menu-vertical-right.ant-menu-sub .ant-menu-item,.ant-menu-vertical.ant-menu-sub .ant-menu-item{left:0;margin-left:0;border-right:0}.ant-menu-vertical-left.ant-menu-sub .ant-menu-item:after,.ant-menu-vertical-right.ant-menu-sub .ant-menu-item:after,.ant-menu-vertical.ant-menu-sub .ant-menu-item:after{border-right:0}.ant-menu-vertical-left.ant-menu-sub>.ant-menu-item,.ant-menu-vertical-left.ant-menu-sub>.ant-menu-submenu,.ant-menu-vertical-right.ant-menu-sub>.ant-menu-item,.ant-menu-vertical-right.ant-menu-sub>.ant-menu-submenu,.ant-menu-vertical.ant-menu-sub>.ant-menu-item,.ant-menu-vertical.ant-menu-sub>.ant-menu-submenu{transform-origin:0 0}.ant-menu-horizontal.ant-menu-sub{min-width:114px}.ant-menu-item,.ant-menu-submenu-title{position:relative;display:block;margin:0;padding:0 20px;white-space:nowrap;cursor:pointer;transition:color .3s cubic-bezier(.645,.045,.355,1),border-color .3s cubic-bezier(.645,.045,.355,1),background .3s cubic-bezier(.645,.045,.355,1),padding .15s cubic-bezier(.645,.045,.355,1)}.ant-menu-item .anticon,.ant-menu-submenu-title .anticon{min-width:14px;margin-right:10px;font-size:15px;transition:font-size .15s cubic-bezier(.215,.61,.355,1),margin .3s cubic-bezier(.645,.045,.355,1)}.ant-menu-item .anticon+span,.ant-menu-submenu-title .anticon+span{opacity:1;transition:opacity .3s cubic-bezier(.645,.045,.355,1),width .3s cubic-bezier(.645,.045,.355,1)}.ant-menu>.ant-menu-item-divider{height:1px;margin:1px 0;padding:0;overflow:hidden;line-height:0;background-color:#e8e8e8}.ant-menu-submenu-popup{position:absolute;z-index:1050;border-radius:4px}.ant-menu-submenu-popup .submenu-title-wrapper{padding-right:20px}.ant-menu-submenu-popup:before{position:absolute;top:-7px;right:0;bottom:0;left:0;opacity:.0001;content:" "}.ant-menu-submenu>.ant-menu{background-color:#fff;border-radius:4px}.ant-menu-submenu>.ant-menu-submenu-title:after{transition:transform .3s cubic-bezier(.645,.045,.355,1)}.ant-menu-submenu-inline>.ant-menu-submenu-title .ant-menu-submenu-arrow,.ant-menu-submenu-vertical-left>.ant-menu-submenu-title .ant-menu-submenu-arrow,.ant-menu-submenu-vertical-right>.ant-menu-submenu-title .ant-menu-submenu-arrow,.ant-menu-submenu-vertical>.ant-menu-submenu-title .ant-menu-submenu-arrow{position:absolute;top:50%;right:16px;width:10px;transition:transform .3s cubic-bezier(.645,.045,.355,1)}.ant-menu-submenu-inline>.ant-menu-submenu-title .ant-menu-submenu-arrow:after,.ant-menu-submenu-inline>.ant-menu-submenu-title .ant-menu-submenu-arrow:before,.ant-menu-submenu-vertical-left>.ant-menu-submenu-title .ant-menu-submenu-arrow:after,.ant-menu-submenu-vertical-left>.ant-menu-submenu-title .ant-menu-submenu-arrow:before,.ant-menu-submenu-vertical-right>.ant-menu-submenu-title .ant-menu-submenu-arrow:after,.ant-menu-submenu-vertical-right>.ant-menu-submenu-title .ant-menu-submenu-arrow:before,.ant-menu-submenu-vertical>.ant-menu-submenu-title .ant-menu-submenu-arrow:after,.ant-menu-submenu-vertical>.ant-menu-submenu-title .ant-menu-submenu-arrow:before{position:absolute;width:6px;height:1.5px;background:#fff;background:rgba(0,0,0,.65)\9;background-image:linear-gradient(90deg,rgba(0,0,0,.65),rgba(0,0,0,.65));background-image:none\9;border-radius:2px;transition:background .3s cubic-bezier(.645,.045,.355,1),transform .3s cubic-bezier(.645,.045,.355,1),top .3s cubic-bezier(.645,.045,.355,1);content:""}.ant-menu-submenu-inline>.ant-menu-submenu-title .ant-menu-submenu-arrow:before,.ant-menu-submenu-vertical-left>.ant-menu-submenu-title .ant-menu-submenu-arrow:before,.ant-menu-submenu-vertical-right>.ant-menu-submenu-title .ant-menu-submenu-arrow:before,.ant-menu-submenu-vertical>.ant-menu-submenu-title .ant-menu-submenu-arrow:before{transform:rotate(45deg) translateY(-2px)}.ant-menu-submenu-inline>.ant-menu-submenu-title .ant-menu-submenu-arrow:after,.ant-menu-submenu-vertical-left>.ant-menu-submenu-title .ant-menu-submenu-arrow:after,.ant-menu-submenu-vertical-right>.ant-menu-submenu-title .ant-menu-submenu-arrow:after,.ant-menu-submenu-vertical>.ant-menu-submenu-title .ant-menu-submenu-arrow:after{transform:rotate(-45deg) translateY(2px)}.ant-menu-submenu-inline>.ant-menu-submenu-title:hover .ant-menu-submenu-arrow:after,.ant-menu-submenu-inline>.ant-menu-submenu-title:hover .ant-menu-submenu-arrow:before,.ant-menu-submenu-vertical-left>.ant-menu-submenu-title:hover .ant-menu-submenu-arrow:after,.ant-menu-submenu-vertical-left>.ant-menu-submenu-title:hover .ant-menu-submenu-arrow:before,.ant-menu-submenu-vertical-right>.ant-menu-submenu-title:hover .ant-menu-submenu-arrow:after,.ant-menu-submenu-vertical-right>.ant-menu-submenu-title:hover .ant-menu-submenu-arrow:before,.ant-menu-submenu-vertical>.ant-menu-submenu-title:hover .ant-menu-submenu-arrow:after,.ant-menu-submenu-vertical>.ant-menu-submenu-title:hover .ant-menu-submenu-arrow:before{background:linear-gradient(90deg,#004691,#004691)}.ant-menu-submenu-inline>.ant-menu-submenu-title .ant-menu-submenu-arrow:before{transform:rotate(-45deg) translateX(2px)}.ant-menu-submenu-inline>.ant-menu-submenu-title .ant-menu-submenu-arrow:after{transform:rotate(45deg) translateX(-2px)}.ant-menu-submenu-open.ant-menu-submenu-inline>.ant-menu-submenu-title .ant-menu-submenu-arrow{transform:translateY(-2px)}.ant-menu-submenu-open.ant-menu-submenu-inline>.ant-menu-submenu-title .ant-menu-submenu-arrow:after{transform:rotate(-45deg) translateX(-2px)}.ant-menu-submenu-open.ant-menu-submenu-inline>.ant-menu-submenu-title .ant-menu-submenu-arrow:before{transform:rotate(45deg) translateX(2px)}.ant-menu-vertical-left .ant-menu-submenu-selected,.ant-menu-vertical-left .ant-menu-submenu-selected>a,.ant-menu-vertical-right .ant-menu-submenu-selected,.ant-menu-vertical-right .ant-menu-submenu-selected>a,.ant-menu-vertical .ant-menu-submenu-selected,.ant-menu-vertical .ant-menu-submenu-selected>a{color:#004691}.ant-menu-horizontal{line-height:46px;white-space:nowrap;border:0;border-bottom:1px solid #e8e8e8;box-shadow:none}.ant-menu-horizontal>.ant-menu-item,.ant-menu-horizontal>.ant-menu-submenu{position:relative;top:1px;display:inline-block;vertical-align:bottom;border-bottom:2px solid transparent}.ant-menu-horizontal>.ant-menu-item-active,.ant-menu-horizontal>.ant-menu-item-open,.ant-menu-horizontal>.ant-menu-item-selected,.ant-menu-horizontal>.ant-menu-item:hover,.ant-menu-horizontal>.ant-menu-submenu-active,.ant-menu-horizontal>.ant-menu-submenu-open,.ant-menu-horizontal>.ant-menu-submenu-selected,.ant-menu-horizontal>.ant-menu-submenu:hover{color:#004691;border-bottom:2px solid #004691}.ant-menu-horizontal>.ant-menu-item>a{display:block;color:rgba(0,0,0,.65)}.ant-menu-horizontal>.ant-menu-item>a:hover{color:#004691}.ant-menu-horizontal>.ant-menu-item>a:before{bottom:-2px}.ant-menu-horizontal>.ant-menu-item-selected>a{color:#004691}.ant-menu-horizontal:after{display:block;clear:both;height:0;content:"\20"}.ant-menu-inline .ant-menu-item,.ant-menu-vertical-left .ant-menu-item,.ant-menu-vertical-right .ant-menu-item,.ant-menu-vertical .ant-menu-item{position:relative}.ant-menu-inline .ant-menu-item:after,.ant-menu-vertical-left .ant-menu-item:after,.ant-menu-vertical-right .ant-menu-item:after,.ant-menu-vertical .ant-menu-item:after{position:absolute;top:0;right:0;bottom:0;border-right:3px solid #004691;transform:scaleY(.0001);opacity:0;transition:transform .15s cubic-bezier(.215,.61,.355,1),opacity .15s cubic-bezier(.215,.61,.355,1);content:""}.ant-menu-inline .ant-menu-item,.ant-menu-inline .ant-menu-submenu-title,.ant-menu-vertical-left .ant-menu-item,.ant-menu-vertical-left .ant-menu-submenu-title,.ant-menu-vertical-right .ant-menu-item,.ant-menu-vertical-right .ant-menu-submenu-title,.ant-menu-vertical .ant-menu-item,.ant-menu-vertical .ant-menu-submenu-title{height:40px;margin-top:4px;margin-bottom:4px;padding:0 16px;overflow:hidden;font-size:15px;line-height:40px;text-overflow:ellipsis}.ant-menu-inline .ant-menu-submenu,.ant-menu-vertical-left .ant-menu-submenu,.ant-menu-vertical-right .ant-menu-submenu,.ant-menu-vertical .ant-menu-submenu{padding-bottom:.02px}.ant-menu-inline .ant-menu-item:not(:last-child),.ant-menu-vertical-left .ant-menu-item:not(:last-child),.ant-menu-vertical-right .ant-menu-item:not(:last-child),.ant-menu-vertical .ant-menu-item:not(:last-child){margin-bottom:8px}.ant-menu-inline>.ant-menu-item,.ant-menu-inline>.ant-menu-submenu>.ant-menu-submenu-title,.ant-menu-vertical-left>.ant-menu-item,.ant-menu-vertical-left>.ant-menu-submenu>.ant-menu-submenu-title,.ant-menu-vertical-right>.ant-menu-item,.ant-menu-vertical-right>.ant-menu-submenu>.ant-menu-submenu-title,.ant-menu-vertical>.ant-menu-item,.ant-menu-vertical>.ant-menu-submenu>.ant-menu-submenu-title{height:40px;line-height:40px}.ant-menu-inline{width:100%}.ant-menu-inline .ant-menu-item-selected:after,.ant-menu-inline .ant-menu-selected:after{transform:scaleY(1);opacity:1;transition:transform .15s cubic-bezier(.645,.045,.355,1),opacity .15s cubic-bezier(.645,.045,.355,1)}.ant-menu-inline .ant-menu-item,.ant-menu-inline .ant-menu-submenu-title{width:calc(100% + 1px)}.ant-menu-inline .ant-menu-submenu-title{padding-right:34px}.ant-menu-inline-collapsed{width:80px}.ant-menu-inline-collapsed>.ant-menu-item,.ant-menu-inline-collapsed>.ant-menu-item-group>.ant-menu-item-group-list>.ant-menu-item,.ant-menu-inline-collapsed>.ant-menu-item-group>.ant-menu-item-group-list>.ant-menu-submenu>.ant-menu-submenu-title,.ant-menu-inline-collapsed>.ant-menu-submenu>.ant-menu-submenu-title{left:0;padding:0 31.5px!important;text-overflow:clip}.ant-menu-inline-collapsed>.ant-menu-item-group>.ant-menu-item-group-list>.ant-menu-item .ant-menu-submenu-arrow,.ant-menu-inline-collapsed>.ant-menu-item-group>.ant-menu-item-group-list>.ant-menu-submenu>.ant-menu-submenu-title .ant-menu-submenu-arrow,.ant-menu-inline-collapsed>.ant-menu-item .ant-menu-submenu-arrow,.ant-menu-inline-collapsed>.ant-menu-submenu>.ant-menu-submenu-title .ant-menu-submenu-arrow{display:none}.ant-menu-inline-collapsed>.ant-menu-item-group>.ant-menu-item-group-list>.ant-menu-item .anticon,.ant-menu-inline-collapsed>.ant-menu-item-group>.ant-menu-item-group-list>.ant-menu-submenu>.ant-menu-submenu-title .anticon,.ant-menu-inline-collapsed>.ant-menu-item .anticon,.ant-menu-inline-collapsed>.ant-menu-submenu>.ant-menu-submenu-title .anticon{margin:0;font-size:17px;line-height:40px}.ant-menu-inline-collapsed>.ant-menu-item-group>.ant-menu-item-group-list>.ant-menu-item .anticon+span,.ant-menu-inline-collapsed>.ant-menu-item-group>.ant-menu-item-group-list>.ant-menu-submenu>.ant-menu-submenu-title .anticon+span,.ant-menu-inline-collapsed>.ant-menu-item .anticon+span,.ant-menu-inline-collapsed>.ant-menu-submenu>.ant-menu-submenu-title .anticon+span{display:inline-block;max-width:0;opacity:0}.ant-menu-inline-collapsed-tooltip{pointer-events:none}.ant-menu-inline-collapsed-tooltip .anticon{display:none}.ant-menu-inline-collapsed-tooltip a{color:hsla(0,0%,100%,.85)}.ant-menu-inline-collapsed .ant-menu-item-group-title{padding-right:4px;padding-left:4px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.ant-menu-item-group-list{margin:0;padding:0}.ant-menu-item-group-list .ant-menu-item,.ant-menu-item-group-list .ant-menu-submenu-title{padding:0 16px 0 28px}.ant-menu-root.ant-menu-inline,.ant-menu-root.ant-menu-vertical,.ant-menu-root.ant-menu-vertical-left,.ant-menu-root.ant-menu-vertical-right{box-shadow:none}.ant-menu-sub.ant-menu-inline{padding:0;border:0;border-radius:0;box-shadow:none}.ant-menu-sub.ant-menu-inline>.ant-menu-item,.ant-menu-sub.ant-menu-inline>.ant-menu-submenu>.ant-menu-submenu-title{height:40px;line-height:40px;list-style-position:inside;list-style-type:disc}.ant-menu-sub.ant-menu-inline .ant-menu-item-group-title{padding-left:32px}.ant-menu-item-disabled,.ant-menu-submenu-disabled{color:rgba(0,0,0,.25)!important;background:none;border-color:transparent!important;cursor:not-allowed}.ant-menu-item-disabled>a,.ant-menu-submenu-disabled>a{color:rgba(0,0,0,.25)!important;pointer-events:none}.ant-menu-item-disabled>.ant-menu-submenu-title,.ant-menu-submenu-disabled>.ant-menu-submenu-title{color:rgba(0,0,0,.25)!important;cursor:not-allowed}.ant-menu-item-disabled>.ant-menu-submenu-title>.ant-menu-submenu-arrow:after,.ant-menu-item-disabled>.ant-menu-submenu-title>.ant-menu-submenu-arrow:before,.ant-menu-submenu-disabled>.ant-menu-submenu-title>.ant-menu-submenu-arrow:after,.ant-menu-submenu-disabled>.ant-menu-submenu-title>.ant-menu-submenu-arrow:before{background:rgba(0,0,0,.25)!important}.ant-menu-dark,.ant-menu-dark .ant-menu-sub{color:hsla(0,0%,100%,.65);background:#001529}.ant-menu-dark .ant-menu-sub .ant-menu-submenu-title .ant-menu-submenu-arrow,.ant-menu-dark .ant-menu-submenu-title .ant-menu-submenu-arrow{opacity:.45;transition:all .3s}.ant-menu-dark .ant-menu-sub .ant-menu-submenu-title .ant-menu-submenu-arrow:after,.ant-menu-dark .ant-menu-sub .ant-menu-submenu-title .ant-menu-submenu-arrow:before,.ant-menu-dark .ant-menu-submenu-title .ant-menu-submenu-arrow:after,.ant-menu-dark .ant-menu-submenu-title .ant-menu-submenu-arrow:before{background:#fff}.ant-menu-dark.ant-menu-submenu-popup{background:transparent}.ant-menu-dark .ant-menu-inline.ant-menu-sub{background:#000c17;box-shadow:inset 0 2px 8px rgba(0,0,0,.45)}.ant-menu-dark.ant-menu-horizontal{border-bottom:0}.ant-menu-dark.ant-menu-horizontal>.ant-menu-item,.ant-menu-dark.ant-menu-horizontal>.ant-menu-submenu{top:0;margin-top:0;border-color:#001529;border-bottom:0}.ant-menu-dark.ant-menu-horizontal>.ant-menu-item>a:before{bottom:0}.ant-menu-dark .ant-menu-item,.ant-menu-dark .ant-menu-item-group-title,.ant-menu-dark .ant-menu-item>a{color:hsla(0,0%,100%,.65)}.ant-menu-dark.ant-menu-inline,.ant-menu-dark.ant-menu-vertical,.ant-menu-dark.ant-menu-vertical-left,.ant-menu-dark.ant-menu-vertical-right{border-right:0}.ant-menu-dark.ant-menu-inline .ant-menu-item,.ant-menu-dark.ant-menu-vertical-left .ant-menu-item,.ant-menu-dark.ant-menu-vertical-right .ant-menu-item,.ant-menu-dark.ant-menu-vertical .ant-menu-item{left:0;margin-left:0;border-right:0}.ant-menu-dark.ant-menu-inline .ant-menu-item:after,.ant-menu-dark.ant-menu-vertical-left .ant-menu-item:after,.ant-menu-dark.ant-menu-vertical-right .ant-menu-item:after,.ant-menu-dark.ant-menu-vertical .ant-menu-item:after{border-right:0}.ant-menu-dark.ant-menu-inline .ant-menu-item,.ant-menu-dark.ant-menu-inline .ant-menu-submenu-title{width:100%}.ant-menu-dark .ant-menu-item-active,.ant-menu-dark .ant-menu-item:hover,.ant-menu-dark .ant-menu-submenu-active,.ant-menu-dark .ant-menu-submenu-open,.ant-menu-dark .ant-menu-submenu-selected,.ant-menu-dark .ant-menu-submenu-title:hover{color:#fff;background-color:transparent}.ant-menu-dark .ant-menu-item-active>a,.ant-menu-dark .ant-menu-item:hover>a,.ant-menu-dark .ant-menu-submenu-active>a,.ant-menu-dark .ant-menu-submenu-open>a,.ant-menu-dark .ant-menu-submenu-selected>a,.ant-menu-dark .ant-menu-submenu-title:hover>a{color:#fff}.ant-menu-dark .ant-menu-item-active>.ant-menu-submenu-title:hover>.ant-menu-submenu-arrow,.ant-menu-dark .ant-menu-item-active>.ant-menu-submenu-title>.ant-menu-submenu-arrow,.ant-menu-dark .ant-menu-item:hover>.ant-menu-submenu-title:hover>.ant-menu-submenu-arrow,.ant-menu-dark .ant-menu-item:hover>.ant-menu-submenu-title>.ant-menu-submenu-arrow,.ant-menu-dark .ant-menu-submenu-active>.ant-menu-submenu-title:hover>.ant-menu-submenu-arrow,.ant-menu-dark .ant-menu-submenu-active>.ant-menu-submenu-title>.ant-menu-submenu-arrow,.ant-menu-dark .ant-menu-submenu-open>.ant-menu-submenu-title:hover>.ant-menu-submenu-arrow,.ant-menu-dark .ant-menu-submenu-open>.ant-menu-submenu-title>.ant-menu-submenu-arrow,.ant-menu-dark .ant-menu-submenu-selected>.ant-menu-submenu-title:hover>.ant-menu-submenu-arrow,.ant-menu-dark .ant-menu-submenu-selected>.ant-menu-submenu-title>.ant-menu-submenu-arrow,.ant-menu-dark .ant-menu-submenu-title:hover>.ant-menu-submenu-title:hover>.ant-menu-submenu-arrow,.ant-menu-dark .ant-menu-submenu-title:hover>.ant-menu-submenu-title>.ant-menu-submenu-arrow{opacity:1}.ant-menu-dark .ant-menu-item-active>.ant-menu-submenu-title:hover>.ant-menu-submenu-arrow:after,.ant-menu-dark .ant-menu-item-active>.ant-menu-submenu-title:hover>.ant-menu-submenu-arrow:before,.ant-menu-dark .ant-menu-item-active>.ant-menu-submenu-title>.ant-menu-submenu-arrow:after,.ant-menu-dark .ant-menu-item-active>.ant-menu-submenu-title>.ant-menu-submenu-arrow:before,.ant-menu-dark .ant-menu-item:hover>.ant-menu-submenu-title:hover>.ant-menu-submenu-arrow:after,.ant-menu-dark .ant-menu-item:hover>.ant-menu-submenu-title:hover>.ant-menu-submenu-arrow:before,.ant-menu-dark .ant-menu-item:hover>.ant-menu-submenu-title>.ant-menu-submenu-arrow:after,.ant-menu-dark .ant-menu-item:hover>.ant-menu-submenu-title>.ant-menu-submenu-arrow:before,.ant-menu-dark .ant-menu-submenu-active>.ant-menu-submenu-title:hover>.ant-menu-submenu-arrow:after,.ant-menu-dark .ant-menu-submenu-active>.ant-menu-submenu-title:hover>.ant-menu-submenu-arrow:before,.ant-menu-dark .ant-menu-submenu-active>.ant-menu-submenu-title>.ant-menu-submenu-arrow:after,.ant-menu-dark .ant-menu-submenu-active>.ant-menu-submenu-title>.ant-menu-submenu-arrow:before,.ant-menu-dark .ant-menu-submenu-open>.ant-menu-submenu-title:hover>.ant-menu-submenu-arrow:after,.ant-menu-dark .ant-menu-submenu-open>.ant-menu-submenu-title:hover>.ant-menu-submenu-arrow:before,.ant-menu-dark .ant-menu-submenu-open>.ant-menu-submenu-title>.ant-menu-submenu-arrow:after,.ant-menu-dark .ant-menu-submenu-open>.ant-menu-submenu-title>.ant-menu-submenu-arrow:before,.ant-menu-dark .ant-menu-submenu-selected>.ant-menu-submenu-title:hover>.ant-menu-submenu-arrow:after,.ant-menu-dark .ant-menu-submenu-selected>.ant-menu-submenu-title:hover>.ant-menu-submenu-arrow:before,.ant-menu-dark .ant-menu-submenu-selected>.ant-menu-submenu-title>.ant-menu-submenu-arrow:after,.ant-menu-dark .ant-menu-submenu-selected>.ant-menu-submenu-title>.ant-menu-submenu-arrow:before,.ant-menu-dark .ant-menu-submenu-title:hover>.ant-menu-submenu-title:hover>.ant-menu-submenu-arrow:after,.ant-menu-dark .ant-menu-submenu-title:hover>.ant-menu-submenu-title:hover>.ant-menu-submenu-arrow:before,.ant-menu-dark .ant-menu-submenu-title:hover>.ant-menu-submenu-title>.ant-menu-submenu-arrow:after,.ant-menu-dark .ant-menu-submenu-title:hover>.ant-menu-submenu-title>.ant-menu-submenu-arrow:before{background:#fff}.ant-menu-dark .ant-menu-item:hover{background-color:transparent}.ant-menu-dark .ant-menu-item-selected{color:#fff;border-right:0}.ant-menu-dark .ant-menu-item-selected:after{border-right:0}.ant-menu-dark .ant-menu-item-selected .anticon,.ant-menu-dark .ant-menu-item-selected .anticon+span,.ant-menu-dark .ant-menu-item-selected>a,.ant-menu-dark .ant-menu-item-selected>a:hover{color:#fff}.ant-menu-submenu-popup.ant-menu-dark .ant-menu-item-selected,.ant-menu.ant-menu-dark .ant-menu-item-selected{background-color:#004691}.ant-menu-dark .ant-menu-item-disabled,.ant-menu-dark .ant-menu-item-disabled>a,.ant-menu-dark .ant-menu-submenu-disabled,.ant-menu-dark .ant-menu-submenu-disabled>a{color:hsla(0,0%,100%,.35)!important;opacity:.8}.ant-menu-dark .ant-menu-item-disabled>.ant-menu-submenu-title,.ant-menu-dark .ant-menu-submenu-disabled>.ant-menu-submenu-title{color:hsla(0,0%,100%,.35)!important}.ant-menu-dark .ant-menu-item-disabled>.ant-menu-submenu-title>.ant-menu-submenu-arrow:after,.ant-menu-dark .ant-menu-item-disabled>.ant-menu-submenu-title>.ant-menu-submenu-arrow:before,.ant-menu-dark .ant-menu-submenu-disabled>.ant-menu-submenu-title>.ant-menu-submenu-arrow:after,.ant-menu-dark .ant-menu-submenu-disabled>.ant-menu-submenu-title>.ant-menu-submenu-arrow:before{background:hsla(0,0%,100%,.35)!important}.ant-message{box-sizing:border-box;margin:0;padding:0;color:rgba(0,0,0,.65);font-size:15px;font-variant:tabular-nums;line-height:1.5;list-style:none;font-feature-settings:"tnum";position:fixed;top:16px;left:0;z-index:1010;width:100%;pointer-events:none}.ant-message-notice{padding:8px;text-align:center}.ant-message-notice:first-child{margin-top:-8px}.ant-message-notice-content{display:inline-block;padding:10px 16px;background:#fff;border-radius:4px;box-shadow:0 4px 12px rgba(0,0,0,.15);pointer-events:all}.ant-message-success .anticon{color:#52c41a}.ant-message-error .anticon{color:#f5222d}.ant-message-warning .anticon{color:#faad14}.ant-message-info .anticon,.ant-message-loading .anticon{color:#1890ff}.ant-message .anticon{position:relative;top:1px;margin-right:8px;font-size:17px}.ant-message-notice.move-up-leave.move-up-leave-active{overflow:hidden;-webkit-animation-name:MessageMoveOut;animation-name:MessageMoveOut;-webkit-animation-duration:.3s;animation-duration:.3s}@-webkit-keyframes MessageMoveOut{0%{max-height:150px;padding:8px;opacity:1}to{max-height:0;padding:0;opacity:0}}@keyframes MessageMoveOut{0%{max-height:150px;padding:8px;opacity:1}to{max-height:0;padding:0;opacity:0}}.ant-modal{box-sizing:border-box;color:rgba(0,0,0,.65);font-size:15px;font-variant:tabular-nums;line-height:1.5;list-style:none;font-feature-settings:"tnum";position:relative;top:100px;width:auto;margin:0 auto;padding:0 0 24px;pointer-events:none}.ant-modal-wrap{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1000;overflow:auto;outline:0;-webkit-overflow-scrolling:touch}.ant-modal-title{margin:0;color:rgba(0,0,0,.85);font-weight:500;font-size:17px;line-height:22px;word-wrap:break-word}.ant-modal-content{position:relative;background-color:#fff;background-clip:padding-box;border:0;border-radius:4px;box-shadow:0 4px 12px rgba(0,0,0,.15);pointer-events:auto}.ant-modal-close{position:absolute;top:0;right:0;z-index:10;padding:0;color:rgba(0,0,0,.45);font-weight:700;line-height:1;text-decoration:none;background:transparent;border:0;outline:0;cursor:pointer;transition:color .3s}.ant-modal-close-x{display:block;width:56px;height:56px;font-size:17px;font-style:normal;line-height:56px;text-align:center;text-transform:none;text-rendering:auto}.ant-modal-close:focus,.ant-modal-close:hover{color:rgba(0,0,0,.75);text-decoration:none}.ant-modal-header{padding:16px 24px;color:rgba(0,0,0,.65);background:#fff;border-bottom:1px solid #e8e8e8;border-radius:4px 4px 0 0}.ant-modal-body{padding:24px;font-size:15px;line-height:1.5;word-wrap:break-word}.ant-modal-footer{padding:10px 16px;text-align:right;background:transparent;border-top:1px solid #e8e8e8;border-radius:0 0 4px 4px}.ant-modal-footer button+button{margin-bottom:0;margin-left:8px}.ant-modal.zoom-appear,.ant-modal.zoom-enter{transform:none;opacity:0;-webkit-animation-duration:.3s;animation-duration:.3s;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.ant-modal-mask{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1000;height:100%;background-color:rgba(0,0,0,.45);filter:alpha(opacity=50)}.ant-modal-mask-hidden{display:none}.ant-modal-open{overflow:hidden}.ant-modal-centered{text-align:center}.ant-modal-centered:before{display:inline-block;width:0;height:100%;vertical-align:middle;content:""}.ant-modal-centered .ant-modal{top:0;display:inline-block;text-align:left;vertical-align:middle}@media (max-width:767px){.ant-modal{max-width:calc(100vw - 16px);margin:8px auto}.ant-modal-centered .ant-modal{flex:1}}.ant-modal-confirm .ant-modal-header{display:none}.ant-modal-confirm .ant-modal-body{padding:32px 32px 24px}.ant-modal-confirm-body-wrapper{zoom:1}.ant-modal-confirm-body-wrapper:after,.ant-modal-confirm-body-wrapper:before{display:table;content:""}.ant-modal-confirm-body-wrapper:after{clear:both}.ant-modal-confirm-body .ant-modal-confirm-title{display:block;overflow:hidden;color:rgba(0,0,0,.85);font-weight:500;font-size:17px;line-height:1.4}.ant-modal-confirm-body .ant-modal-confirm-content{margin-top:8px;color:rgba(0,0,0,.65);font-size:15px}.ant-modal-confirm-body>.anticon{float:left;margin-right:16px;font-size:22px}.ant-modal-confirm-body>.anticon+.ant-modal-confirm-title+.ant-modal-confirm-content{margin-left:38px}.ant-modal-confirm .ant-modal-confirm-btns{float:right;margin-top:24px}.ant-modal-confirm .ant-modal-confirm-btns button+button{margin-bottom:0;margin-left:8px}.ant-modal-confirm-error .ant-modal-confirm-body>.anticon{color:#f5222d}.ant-modal-confirm-confirm .ant-modal-confirm-body>.anticon,.ant-modal-confirm-warning .ant-modal-confirm-body>.anticon{color:#faad14}.ant-modal-confirm-info .ant-modal-confirm-body>.anticon{color:#1890ff}.ant-modal-confirm-success .ant-modal-confirm-body>.anticon{color:#52c41a}.ant-notification{box-sizing:border-box;padding:0;color:rgba(0,0,0,.65);font-size:15px;font-variant:tabular-nums;line-height:1.5;list-style:none;font-feature-settings:"tnum";position:fixed;z-index:1010;width:384px;max-width:calc(100vw - 32px);margin:0 24px 0 0}.ant-notification-bottomLeft,.ant-notification-topLeft{margin-right:0;margin-left:24px}.ant-notification-bottomLeft .ant-notification-fade-appear.ant-notification-fade-appear-active,.ant-notification-bottomLeft .ant-notification-fade-enter.ant-notification-fade-enter-active,.ant-notification-topLeft .ant-notification-fade-appear.ant-notification-fade-appear-active,.ant-notification-topLeft .ant-notification-fade-enter.ant-notification-fade-enter-active{-webkit-animation-name:NotificationLeftFadeIn;animation-name:NotificationLeftFadeIn}.ant-notification-close-icon{font-size:15px;cursor:pointer}.ant-notification-notice{position:relative;margin-bottom:16px;padding:16px 24px;overflow:hidden;line-height:1.5;background:#fff;border-radius:4px;box-shadow:0 4px 12px rgba(0,0,0,.15)}.ant-notification-notice-message{display:inline-block;margin-bottom:8px;color:rgba(0,0,0,.85);font-size:17px;line-height:24px}.ant-notification-notice-message-single-line-auto-margin{display:block;width:calc(264px - 100%);max-width:4px;background-color:transparent;pointer-events:none}.ant-notification-notice-message-single-line-auto-margin:before{display:block;content:""}.ant-notification-notice-description{font-size:15px}.ant-notification-notice-closable .ant-notification-notice-message{padding-right:24px}.ant-notification-notice-with-icon .ant-notification-notice-message{margin-bottom:4px;margin-left:48px;font-size:17px}.ant-notification-notice-with-icon .ant-notification-notice-description{margin-left:48px;font-size:15px}.ant-notification-notice-icon{position:absolute;margin-left:4px;font-size:24px;line-height:24px}.anticon.ant-notification-notice-icon-success{color:#52c41a}.anticon.ant-notification-notice-icon-info{color:#1890ff}.anticon.ant-notification-notice-icon-warning{color:#faad14}.anticon.ant-notification-notice-icon-error{color:#f5222d}.ant-notification-notice-close{position:absolute;top:16px;right:22px;color:rgba(0,0,0,.45);outline:none}.ant-notification-notice-close:hover{color:rgba(0,0,0,.67)}.ant-notification-notice-btn{float:right;margin-top:16px}.ant-notification .notification-fade-effect{-webkit-animation-duration:.24s;animation-duration:.24s;-webkit-animation-timing-function:cubic-bezier(.645,.045,.355,1);animation-timing-function:cubic-bezier(.645,.045,.355,1);-webkit-animation-fill-mode:both;animation-fill-mode:both}.ant-notification-fade-appear,.ant-notification-fade-enter{opacity:0;-webkit-animation-play-state:paused;animation-play-state:paused}.ant-notification-fade-appear,.ant-notification-fade-enter,.ant-notification-fade-leave{-webkit-animation-duration:.24s;animation-duration:.24s;-webkit-animation-timing-function:cubic-bezier(.645,.045,.355,1);animation-timing-function:cubic-bezier(.645,.045,.355,1);-webkit-animation-fill-mode:both;animation-fill-mode:both}.ant-notification-fade-leave{-webkit-animation-duration:.2s;animation-duration:.2s;-webkit-animation-play-state:paused;animation-play-state:paused}.ant-notification-fade-appear.ant-notification-fade-appear-active,.ant-notification-fade-enter.ant-notification-fade-enter-active{-webkit-animation-name:NotificationFadeIn;animation-name:NotificationFadeIn;-webkit-animation-play-state:running;animation-play-state:running}.ant-notification-fade-leave.ant-notification-fade-leave-active{-webkit-animation-name:NotificationFadeOut;animation-name:NotificationFadeOut;-webkit-animation-play-state:running;animation-play-state:running}@-webkit-keyframes NotificationFadeIn{0%{left:384px;opacity:0}to{left:0;opacity:1}}@keyframes NotificationFadeIn{0%{left:384px;opacity:0}to{left:0;opacity:1}}@-webkit-keyframes NotificationLeftFadeIn{0%{right:384px;opacity:0}to{right:0;opacity:1}}@keyframes NotificationLeftFadeIn{0%{right:384px;opacity:0}to{right:0;opacity:1}}@-webkit-keyframes NotificationFadeOut{0%{max-height:150px;margin-bottom:16px;padding-top:16px 24px;padding-bottom:16px 24px;opacity:1}to{max-height:0;margin-bottom:0;padding-top:0;padding-bottom:0;opacity:0}}@keyframes NotificationFadeOut{0%{max-height:150px;margin-bottom:16px;padding-top:16px 24px;padding-bottom:16px 24px;opacity:1}to{max-height:0;margin-bottom:0;padding-top:0;padding-bottom:0;opacity:0}}.ant-page-header{box-sizing:border-box;margin:0;color:rgba(0,0,0,.65);font-size:15px;font-variant:tabular-nums;line-height:1.5;list-style:none;font-feature-settings:"tnum";position:relative;padding:16px 24px;background-color:#fff}.ant-page-header-ghost{background-color:inherit}.ant-page-header.has-breadcrumb{padding-top:12px}.ant-page-header.has-footer{padding-bottom:0}.ant-page-header-back{float:left;margin:8px 16px 8px 0;font-size:16px;line-height:1}.ant-page-header-back-button{color:#004691;text-decoration:none;outline:none;transition:color .3s;color:#000;cursor:pointer}.ant-page-header-back-button:focus,.ant-page-header-back-button:hover{color:#195e9e}.ant-page-header-back-button:active{color:#00306b}.ant-page-header .ant-divider-vertical{height:14px;margin:0 12px;vertical-align:middle}.ant-breadcrumb+.ant-page-header-heading{margin-top:8px}.ant-page-header-heading{width:100%;overflow:hidden}.ant-page-header-heading-title{display:block;float:left;margin-bottom:0;padding-right:12px;color:rgba(0,0,0,.85);font-weight:600;font-size:22px;line-height:32px}.ant-page-header-heading .ant-avatar{float:left;margin-right:12px}.ant-page-header-heading-sub-title{float:left;margin:5px 12px 5px 0;color:rgba(0,0,0,.45);font-size:14px;line-height:22px}.ant-page-header-heading-tags{float:left;margin:4px 0}.ant-page-header-heading-extra{float:right}.ant-page-header-heading-extra>*{margin-left:8px}.ant-page-header-heading-extra>:first-child{margin-left:0}.ant-page-header-content{padding-top:12px;overflow:hidden}.ant-page-header-footer{margin-top:16px}.ant-page-header-footer .ant-tabs-bar{margin-bottom:1px;border-bottom:0}.ant-page-header-footer .ant-tabs-bar .ant-tabs-nav .ant-tabs-tab{padding:8px;font-size:16px}@media (max-width:576px){.ant-page-header-heading-extra{display:block;float:unset;width:100%;padding-top:12px;overflow:hidden}}.ant-pagination{box-sizing:border-box;color:rgba(0,0,0,.65);font-size:15px;font-variant:tabular-nums;line-height:1.5;font-feature-settings:"tnum"}.ant-pagination,.ant-pagination ol,.ant-pagination ul{margin:0;padding:0;list-style:none}.ant-pagination:after{display:block;clear:both;height:0;overflow:hidden;visibility:hidden;content:" "}.ant-pagination-item,.ant-pagination-total-text{display:inline-block;height:32px;margin-right:8px;line-height:30px;vertical-align:middle}.ant-pagination-item{min-width:32px;font-family:Arial;text-align:center;list-style:none;background-color:#fff;border:1px solid #d9d9d9;border-radius:4px;outline:0;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.ant-pagination-item a{display:block;padding:0 6px;color:rgba(0,0,0,.65);transition:none}.ant-pagination-item a:hover{text-decoration:none}.ant-pagination-item:focus,.ant-pagination-item:hover{border-color:#004691;transition:all .3s}.ant-pagination-item:focus a,.ant-pagination-item:hover a{color:#004691}.ant-pagination-item-active{font-weight:500;background:#fff;border-color:#004691}.ant-pagination-item-active a{color:#004691}.ant-pagination-item-active:focus,.ant-pagination-item-active:hover{border-color:#195e9e}.ant-pagination-item-active:focus a,.ant-pagination-item-active:hover a{color:#195e9e}.ant-pagination-jump-next,.ant-pagination-jump-prev{outline:0}.ant-pagination-jump-next .ant-pagination-item-container,.ant-pagination-jump-prev .ant-pagination-item-container{position:relative}.ant-pagination-jump-next .ant-pagination-item-container .ant-pagination-item-link-icon,.ant-pagination-jump-prev .ant-pagination-item-container .ant-pagination-item-link-icon{display:inline-block;font-size:12px;font-size:12px\9;transform:scale(1) rotate(0deg);color:#004691;letter-spacing:-1px;opacity:0;transition:all .2s}:root .ant-pagination-jump-next .ant-pagination-item-container .ant-pagination-item-link-icon,:root .ant-pagination-jump-prev .ant-pagination-item-container .ant-pagination-item-link-icon{font-size:12px}.ant-pagination-jump-next .ant-pagination-item-container .ant-pagination-item-link-icon-svg,.ant-pagination-jump-prev .ant-pagination-item-container .ant-pagination-item-link-icon-svg{top:0;right:0;bottom:0;left:0;margin:auto}.ant-pagination-jump-next .ant-pagination-item-container .ant-pagination-item-ellipsis,.ant-pagination-jump-prev .ant-pagination-item-container .ant-pagination-item-ellipsis{position:absolute;top:0;right:0;bottom:0;left:0;display:block;margin:auto;color:rgba(0,0,0,.25);letter-spacing:2px;text-align:center;text-indent:.13em;opacity:1;transition:all .2s}.ant-pagination-jump-next:focus .ant-pagination-item-link-icon,.ant-pagination-jump-next:hover .ant-pagination-item-link-icon,.ant-pagination-jump-prev:focus .ant-pagination-item-link-icon,.ant-pagination-jump-prev:hover .ant-pagination-item-link-icon{opacity:1}.ant-pagination-jump-next:focus .ant-pagination-item-ellipsis,.ant-pagination-jump-next:hover .ant-pagination-item-ellipsis,.ant-pagination-jump-prev:focus .ant-pagination-item-ellipsis,.ant-pagination-jump-prev:hover .ant-pagination-item-ellipsis{opacity:0}.ant-pagination-jump-next,.ant-pagination-jump-prev,.ant-pagination-prev{margin-right:8px}.ant-pagination-jump-next,.ant-pagination-jump-prev,.ant-pagination-next,.ant-pagination-prev{display:inline-block;min-width:32px;height:32px;color:rgba(0,0,0,.65);font-family:Arial;line-height:32px;text-align:center;vertical-align:middle;list-style:none;border-radius:4px;cursor:pointer;transition:all .3s}.ant-pagination-next,.ant-pagination-prev{outline:0}.ant-pagination-next a,.ant-pagination-prev a{color:rgba(0,0,0,.65);-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.ant-pagination-next:hover a,.ant-pagination-prev:hover a{border-color:#195e9e}.ant-pagination-next .ant-pagination-item-link,.ant-pagination-prev .ant-pagination-item-link{display:block;height:100%;font-size:12px;text-align:center;background-color:#fff;border:1px solid #d9d9d9;border-radius:4px;outline:none;transition:all .3s}.ant-pagination-next:focus .ant-pagination-item-link,.ant-pagination-next:hover .ant-pagination-item-link,.ant-pagination-prev:focus .ant-pagination-item-link,.ant-pagination-prev:hover .ant-pagination-item-link{color:#004691;border-color:#004691}.ant-pagination-disabled,.ant-pagination-disabled:focus,.ant-pagination-disabled:hover{cursor:not-allowed}.ant-pagination-disabled .ant-pagination-item-link,.ant-pagination-disabled:focus .ant-pagination-item-link,.ant-pagination-disabled:focus a,.ant-pagination-disabled:hover .ant-pagination-item-link,.ant-pagination-disabled:hover a,.ant-pagination-disabled a{color:rgba(0,0,0,.25);border-color:#d9d9d9;cursor:not-allowed}.ant-pagination-slash{margin:0 10px 0 5px}.ant-pagination-options{display:inline-block;margin-left:16px;vertical-align:middle}.ant-pagination-options-size-changer.ant-select{display:inline-block;width:auto;margin-right:8px}.ant-pagination-options-quick-jumper{display:inline-block;height:32px;line-height:32px;vertical-align:top}.ant-pagination-options-quick-jumper input{position:relative;display:inline-block;width:100%;height:32px;padding:4px 11px;color:rgba(0,0,0,.65);font-size:15px;line-height:1.5;background-color:#fff;background-image:none;border:1px solid #d9d9d9;border-radius:4px;transition:all .3s;width:50px;margin:0 8px}.ant-pagination-options-quick-jumper input::-moz-placeholder{color:#bfbfbf;opacity:1}.ant-pagination-options-quick-jumper input:-ms-input-placeholder{color:#bfbfbf}.ant-pagination-options-quick-jumper input::-webkit-input-placeholder{color:#bfbfbf}.ant-pagination-options-quick-jumper input:-moz-placeholder-shown{text-overflow:ellipsis}.ant-pagination-options-quick-jumper input:-ms-input-placeholder{text-overflow:ellipsis}.ant-pagination-options-quick-jumper input:placeholder-shown{text-overflow:ellipsis}.ant-pagination-options-quick-jumper input:focus,.ant-pagination-options-quick-jumper input:hover{border-color:#195e9e;border-right-width:1px!important}.ant-pagination-options-quick-jumper input:focus{outline:0;box-shadow:0 0 0 2px rgba(0,70,145,.2)}.ant-pagination-options-quick-jumper input-disabled{color:rgba(0,0,0,.25);background-color:#f5f5f5;cursor:not-allowed;opacity:1}.ant-pagination-options-quick-jumper input-disabled:hover{border-color:#d9d9d9;border-right-width:1px!important}.ant-pagination-options-quick-jumper input[disabled]{color:rgba(0,0,0,.25);background-color:#f5f5f5;cursor:not-allowed;opacity:1}.ant-pagination-options-quick-jumper input[disabled]:hover{border-color:#d9d9d9;border-right-width:1px!important}textarea.ant-pagination-options-quick-jumper input{max-width:100%;height:auto;min-height:32px;line-height:1.5;vertical-align:bottom;transition:all .3s,height 0s}.ant-pagination-options-quick-jumper input-lg{height:40px;padding:6px 11px;font-size:17px}.ant-pagination-options-quick-jumper input-sm{height:24px;padding:1px 7px}.ant-pagination-simple .ant-pagination-next,.ant-pagination-simple .ant-pagination-prev{height:24px;line-height:24px;vertical-align:top}.ant-pagination-simple .ant-pagination-next .ant-pagination-item-link,.ant-pagination-simple .ant-pagination-prev .ant-pagination-item-link{height:24px;border:0}.ant-pagination-simple .ant-pagination-next .ant-pagination-item-link:after,.ant-pagination-simple .ant-pagination-prev .ant-pagination-item-link:after{height:24px;line-height:24px}.ant-pagination-simple .ant-pagination-simple-pager{display:inline-block;height:24px;margin-right:8px}.ant-pagination-simple .ant-pagination-simple-pager input{box-sizing:border-box;height:100%;margin-right:8px;padding:0 6px;text-align:center;background-color:#fff;border:1px solid #d9d9d9;border-radius:4px;outline:none;transition:border-color .3s}.ant-pagination-simple .ant-pagination-simple-pager input:hover{border-color:#004691}.ant-pagination.mini .ant-pagination-simple-pager,.ant-pagination.mini .ant-pagination-total-text{height:24px;line-height:24px}.ant-pagination.mini .ant-pagination-item{min-width:24px;height:24px;margin:0;line-height:22px}.ant-pagination.mini .ant-pagination-item:not(.ant-pagination-item-active){background:transparent;border-color:transparent}.ant-pagination.mini .ant-pagination-next,.ant-pagination.mini .ant-pagination-prev{min-width:24px;height:24px;margin:0;line-height:24px}.ant-pagination.mini .ant-pagination-next .ant-pagination-item-link,.ant-pagination.mini .ant-pagination-prev .ant-pagination-item-link{background:transparent;border-color:transparent}.ant-pagination.mini .ant-pagination-next .ant-pagination-item-link:after,.ant-pagination.mini .ant-pagination-prev .ant-pagination-item-link:after{height:24px;line-height:24px}.ant-pagination.mini .ant-pagination-jump-next,.ant-pagination.mini .ant-pagination-jump-prev{height:24px;margin-right:0;line-height:24px}.ant-pagination.mini .ant-pagination-options{margin-left:2px}.ant-pagination.mini .ant-pagination-options-quick-jumper{height:24px;line-height:24px}.ant-pagination.mini .ant-pagination-options-quick-jumper input{height:24px;padding:1px 7px;width:44px}.ant-pagination.ant-pagination-disabled{cursor:not-allowed}.ant-pagination.ant-pagination-disabled .ant-pagination-item{background:#f5f5f5;border-color:#d9d9d9;cursor:not-allowed}.ant-pagination.ant-pagination-disabled .ant-pagination-item a{color:rgba(0,0,0,.25);background:transparent;border:none;cursor:not-allowed}.ant-pagination.ant-pagination-disabled .ant-pagination-item-active{background:#dbdbdb;border-color:transparent}.ant-pagination.ant-pagination-disabled .ant-pagination-item-active a{color:#fff}.ant-pagination.ant-pagination-disabled .ant-pagination-item-link,.ant-pagination.ant-pagination-disabled .ant-pagination-item-link:focus,.ant-pagination.ant-pagination-disabled .ant-pagination-item-link:hover{color:rgba(0,0,0,.45);background:#f5f5f5;border-color:#d9d9d9;cursor:not-allowed}.ant-pagination.ant-pagination-disabled .ant-pagination-jump-next:focus .ant-pagination-item-link-icon,.ant-pagination.ant-pagination-disabled .ant-pagination-jump-next:hover .ant-pagination-item-link-icon,.ant-pagination.ant-pagination-disabled .ant-pagination-jump-prev:focus .ant-pagination-item-link-icon,.ant-pagination.ant-pagination-disabled .ant-pagination-jump-prev:hover .ant-pagination-item-link-icon{opacity:0}.ant-pagination.ant-pagination-disabled .ant-pagination-jump-next:focus .ant-pagination-item-ellipsis,.ant-pagination.ant-pagination-disabled .ant-pagination-jump-next:hover .ant-pagination-item-ellipsis,.ant-pagination.ant-pagination-disabled .ant-pagination-jump-prev:focus .ant-pagination-item-ellipsis,.ant-pagination.ant-pagination-disabled .ant-pagination-jump-prev:hover .ant-pagination-item-ellipsis{opacity:1}@media only screen and (max-width:992px){.ant-pagination-item-after-jump-prev,.ant-pagination-item-before-jump-next{display:none}}@media only screen and (max-width:576px){.ant-pagination-options{display:none}}.ant-popover{box-sizing:border-box;margin:0;padding:0;color:rgba(0,0,0,.65);font-size:15px;font-variant:tabular-nums;line-height:1.5;list-style:none;font-feature-settings:"tnum";position:absolute;top:0;left:0;z-index:1030;font-weight:400;white-space:normal;text-align:left;cursor:auto;-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;user-select:text}.ant-popover:after{position:absolute;background:hsla(0,0%,100%,.01);content:""}.ant-popover-hidden{display:none}.ant-popover-placement-top,.ant-popover-placement-topLeft,.ant-popover-placement-topRight{padding-bottom:10px}.ant-popover-placement-right,.ant-popover-placement-rightBottom,.ant-popover-placement-rightTop{padding-left:10px}.ant-popover-placement-bottom,.ant-popover-placement-bottomLeft,.ant-popover-placement-bottomRight{padding-top:10px}.ant-popover-placement-left,.ant-popover-placement-leftBottom,.ant-popover-placement-leftTop{padding-right:10px}.ant-popover-inner{background-color:#fff;background-clip:padding-box;border-radius:4px;box-shadow:0 2px 8px rgba(0,0,0,.15);box-shadow:0 0 8px rgba(0,0,0,.15)\9}@media (-ms-high-contrast:none),screen and (-ms-high-contrast:active){.ant-popover-inner{box-shadow:0 2px 8px rgba(0,0,0,.15)}}.ant-popover-title{min-width:177px;min-height:32px;margin:0;padding:5px 16px 4px;color:rgba(0,0,0,.85);font-weight:500;border-bottom:1px solid #e8e8e8}.ant-popover-inner-content{padding:12px 16px;color:rgba(0,0,0,.65)}.ant-popover-message{position:relative;padding:4px 0 12px;color:rgba(0,0,0,.65);font-size:15px}.ant-popover-message>.anticon{position:absolute;top:8px;color:#faad14;font-size:15px}.ant-popover-message-title{padding-left:23px}.ant-popover-buttons{margin-bottom:4px;text-align:right}.ant-popover-buttons button{margin-left:8px}.ant-popover-arrow{position:absolute;display:block;width:8.48528137px;height:8.48528137px;background:transparent;border-style:solid;border-width:4.24264069px;transform:rotate(45deg)}.ant-popover-placement-top>.ant-popover-content>.ant-popover-arrow,.ant-popover-placement-topLeft>.ant-popover-content>.ant-popover-arrow,.ant-popover-placement-topRight>.ant-popover-content>.ant-popover-arrow{bottom:6.2px;border-color:transparent #fff #fff transparent;box-shadow:3px 3px 7px rgba(0,0,0,.07)}.ant-popover-placement-top>.ant-popover-content>.ant-popover-arrow{left:50%;transform:translateX(-50%) rotate(45deg)}.ant-popover-placement-topLeft>.ant-popover-content>.ant-popover-arrow{left:16px}.ant-popover-placement-topRight>.ant-popover-content>.ant-popover-arrow{right:16px}.ant-popover-placement-right>.ant-popover-content>.ant-popover-arrow,.ant-popover-placement-rightBottom>.ant-popover-content>.ant-popover-arrow,.ant-popover-placement-rightTop>.ant-popover-content>.ant-popover-arrow{left:6px;border-color:transparent transparent #fff #fff;box-shadow:-3px 3px 7px rgba(0,0,0,.07)}.ant-popover-placement-right>.ant-popover-content>.ant-popover-arrow{top:50%;transform:translateY(-50%) rotate(45deg)}.ant-popover-placement-rightTop>.ant-popover-content>.ant-popover-arrow{top:12px}.ant-popover-placement-rightBottom>.ant-popover-content>.ant-popover-arrow{bottom:12px}.ant-popover-placement-bottom>.ant-popover-content>.ant-popover-arrow,.ant-popover-placement-bottomLeft>.ant-popover-content>.ant-popover-arrow,.ant-popover-placement-bottomRight>.ant-popover-content>.ant-popover-arrow{top:6px;border-color:#fff transparent transparent #fff;box-shadow:-2px -2px 5px rgba(0,0,0,.06)}.ant-popover-placement-bottom>.ant-popover-content>.ant-popover-arrow{left:50%;transform:translateX(-50%) rotate(45deg)}.ant-popover-placement-bottomLeft>.ant-popover-content>.ant-popover-arrow{left:16px}.ant-popover-placement-bottomRight>.ant-popover-content>.ant-popover-arrow{right:16px}.ant-popover-placement-left>.ant-popover-content>.ant-popover-arrow,.ant-popover-placement-leftBottom>.ant-popover-content>.ant-popover-arrow,.ant-popover-placement-leftTop>.ant-popover-content>.ant-popover-arrow{right:6px;border-color:#fff #fff transparent transparent;box-shadow:3px -3px 7px rgba(0,0,0,.07)}.ant-popover-placement-left>.ant-popover-content>.ant-popover-arrow{top:50%;transform:translateY(-50%) rotate(45deg)}.ant-popover-placement-leftTop>.ant-popover-content>.ant-popover-arrow{top:12px}.ant-popover-placement-leftBottom>.ant-popover-content>.ant-popover-arrow{bottom:12px}.ant-progress{box-sizing:border-box;margin:0;padding:0;color:rgba(0,0,0,.65);font-size:15px;font-variant:tabular-nums;line-height:1.5;list-style:none;font-feature-settings:"tnum";display:inline-block}.ant-progress-line{position:relative;width:100%;font-size:15px}.ant-progress-small.ant-progress-line,.ant-progress-small.ant-progress-line .ant-progress-text .anticon{font-size:12px}.ant-progress-outer{display:inline-block;width:100%;margin-right:0;padding-right:0}.ant-progress-show-info .ant-progress-outer{margin-right:calc(-2em - 8px);padding-right:calc(2em + 8px)}.ant-progress-inner{position:relative;display:inline-block;width:100%;overflow:hidden;vertical-align:middle;background-color:#f5f5f5;border-radius:100px}.ant-progress-circle-trail{stroke:#f5f5f5}.ant-progress-circle-path{-webkit-animation:ant-progress-appear .3s;animation:ant-progress-appear .3s}.ant-progress-inner:not(.ant-progress-circle-gradient) .ant-progress-circle-path{stroke:#1890ff}.ant-progress-bg,.ant-progress-success-bg{position:relative;background-color:#1890ff;border-radius:100px;transition:all .4s cubic-bezier(.08,.82,.17,1) 0s}.ant-progress-success-bg{position:absolute;top:0;left:0;background-color:#52c41a}.ant-progress-text{display:inline-block;width:2em;margin-left:8px;color:rgba(0,0,0,.45);font-size:1em;line-height:1;white-space:nowrap;text-align:left;vertical-align:middle;word-break:normal}.ant-progress-text .anticon{font-size:15px}.ant-progress-status-active .ant-progress-bg:before{position:absolute;top:0;right:0;bottom:0;left:0;background:#fff;border-radius:10px;opacity:0;-webkit-animation:ant-progress-active 2.4s cubic-bezier(.23,1,.32,1) infinite;animation:ant-progress-active 2.4s cubic-bezier(.23,1,.32,1) infinite;content:""}.ant-progress-status-exception .ant-progress-bg{background-color:#f5222d}.ant-progress-status-exception .ant-progress-text{color:#f5222d}.ant-progress-status-exception .ant-progress-inner:not(.ant-progress-circle-gradient) .ant-progress-circle-path{stroke:#f5222d}.ant-progress-status-success .ant-progress-bg{background-color:#52c41a}.ant-progress-status-success .ant-progress-text{color:#52c41a}.ant-progress-status-success .ant-progress-inner:not(.ant-progress-circle-gradient) .ant-progress-circle-path{stroke:#52c41a}.ant-progress-circle .ant-progress-inner{position:relative;line-height:1;background-color:transparent}.ant-progress-circle .ant-progress-text{position:absolute;top:50%;left:50%;width:100%;margin:0;padding:0;color:rgba(0,0,0,.65);line-height:1;white-space:normal;text-align:center;transform:translate(-50%,-50%)}.ant-progress-circle .ant-progress-text .anticon{font-size:1.16666667em}.ant-progress-circle.ant-progress-status-exception .ant-progress-text{color:#f5222d}.ant-progress-circle.ant-progress-status-success .ant-progress-text{color:#52c41a}@-webkit-keyframes ant-progress-active{0%{width:0;opacity:.1}20%{width:0;opacity:.5}to{width:100%;opacity:0}}@keyframes ant-progress-active{0%{width:0;opacity:.1}20%{width:0;opacity:.5}to{width:100%;opacity:0}}.ant-radio-group{box-sizing:border-box;margin:0;padding:0;color:rgba(0,0,0,.65);font-size:15px;font-variant:tabular-nums;line-height:1.5;list-style:none;font-feature-settings:"tnum";display:inline-block}.ant-radio-wrapper{margin:0 8px 0 0}.ant-radio,.ant-radio-wrapper{box-sizing:border-box;padding:0;color:rgba(0,0,0,.65);font-size:15px;font-variant:tabular-nums;line-height:1.5;list-style:none;font-feature-settings:"tnum";position:relative;display:inline-block;white-space:nowrap;cursor:pointer}.ant-radio{margin:0;line-height:1;vertical-align:sub;outline:none}.ant-radio-input:focus+.ant-radio-inner,.ant-radio-wrapper:hover .ant-radio,.ant-radio:hover .ant-radio-inner{border-color:#004691}.ant-radio-input:focus+.ant-radio-inner{box-shadow:0 0 0 3px rgba(0,70,145,.08)}.ant-radio-checked:after{position:absolute;top:0;left:0;width:100%;height:100%;border:1px solid #004691;border-radius:50%;visibility:hidden;-webkit-animation:antRadioEffect .36s ease-in-out;animation:antRadioEffect .36s ease-in-out;-webkit-animation-fill-mode:both;animation-fill-mode:both;content:""}.ant-radio-wrapper:hover .ant-radio:after,.ant-radio:hover:after{visibility:visible}.ant-radio-inner{position:relative;top:0;left:0;display:block;width:16px;height:16px;background-color:#fff;border:1px solid #d9d9d9;border-radius:100px;transition:all .3s}.ant-radio-inner:after{position:absolute;top:3px;left:3px;display:table;width:8px;height:8px;background-color:#004691;border-top:0;border-left:0;border-radius:8px;transform:scale(0);opacity:0;transition:all .3s cubic-bezier(.78,.14,.15,.86);content:" "}.ant-radio-input{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;cursor:pointer;opacity:0}.ant-radio-checked .ant-radio-inner{border-color:#004691}.ant-radio-checked .ant-radio-inner:after{transform:scale(1);opacity:1;transition:all .3s cubic-bezier(.78,.14,.15,.86)}.ant-radio-disabled .ant-radio-inner{background-color:#f5f5f5;border-color:#d9d9d9!important;cursor:not-allowed}.ant-radio-disabled .ant-radio-inner:after{background-color:rgba(0,0,0,.2)}.ant-radio-disabled .ant-radio-input{cursor:not-allowed}.ant-radio-disabled+span{color:rgba(0,0,0,.25);cursor:not-allowed}span.ant-radio+*{padding-right:8px;padding-left:8px}.ant-radio-button-wrapper{position:relative;display:inline-block;height:32px;margin:0;padding:0 15px;color:rgba(0,0,0,.65);line-height:30px;background:#fff;border:1px solid #d9d9d9;border-top:1.02px solid #d9d9d9;border-left:0;cursor:pointer;transition:color .3s,background .3s,border-color .3s,box-shadow .3s}.ant-radio-button-wrapper a{color:rgba(0,0,0,.65)}.ant-radio-button-wrapper>.ant-radio-button{display:block;width:0;height:0;margin-left:0}.ant-radio-group-large .ant-radio-button-wrapper{height:40px;font-size:17px;line-height:38px}.ant-radio-group-small .ant-radio-button-wrapper{height:24px;padding:0 7px;line-height:22px}.ant-radio-button-wrapper:not(:first-child):before{position:absolute;top:-1px;left:-1px;display:block;box-sizing:content-box;width:1px;height:100%;padding:1px 0;background-color:#d9d9d9;transition:background-color .3s;content:""}.ant-radio-button-wrapper:first-child{border-left:1px solid #d9d9d9;border-radius:4px 0 0 4px}.ant-radio-button-wrapper:last-child{border-radius:0 4px 4px 0}.ant-radio-button-wrapper:first-child:last-child{border-radius:4px}.ant-radio-button-wrapper:hover{position:relative;color:#004691}.ant-radio-button-wrapper:focus-within{box-shadow:0 0 0 3px rgba(0,70,145,.08)}.ant-radio-button-wrapper .ant-radio-inner,.ant-radio-button-wrapper input[type=checkbox],.ant-radio-button-wrapper input[type=radio]{width:0;height:0;opacity:0;pointer-events:none}.ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled){z-index:1;color:#004691;background:#fff;border-color:#004691}.ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):before{background-color:#004691}.ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):first-child{border-color:#004691}.ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):hover{color:#195e9e;border-color:#195e9e}.ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):hover:before{background-color:#195e9e}.ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):active{color:#00306b;border-color:#00306b}.ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):active:before{background-color:#00306b}.ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):focus-within{box-shadow:0 0 0 3px rgba(0,70,145,.08)}.ant-radio-group-solid .ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled){color:#fff;background:#004691;border-color:#004691}.ant-radio-group-solid .ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):hover{color:#fff;background:#195e9e;border-color:#195e9e}.ant-radio-group-solid .ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):active{color:#fff;background:#00306b;border-color:#00306b}.ant-radio-group-solid .ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):focus-within{box-shadow:0 0 0 3px rgba(0,70,145,.08)}.ant-radio-button-wrapper-disabled{cursor:not-allowed}.ant-radio-button-wrapper-disabled,.ant-radio-button-wrapper-disabled:first-child,.ant-radio-button-wrapper-disabled:hover{color:rgba(0,0,0,.25);background-color:#f5f5f5;border-color:#d9d9d9}.ant-radio-button-wrapper-disabled:first-child{border-left-color:#d9d9d9}.ant-radio-button-wrapper-disabled.ant-radio-button-wrapper-checked{color:#fff;background-color:#e6e6e6;border-color:#d9d9d9;box-shadow:none}@-webkit-keyframes antRadioEffect{0%{transform:scale(1);opacity:.5}to{transform:scale(1.6);opacity:0}}@keyframes antRadioEffect{0%{transform:scale(1);opacity:.5}to{transform:scale(1.6);opacity:0}}@supports (-moz-appearance:meterbar) and (background-blend-mode:difference,normal){.ant-radio{vertical-align:text-bottom}}.ant-rate{box-sizing:border-box;color:rgba(0,0,0,.65);font-size:15px;font-variant:tabular-nums;line-height:1.5;font-feature-settings:"tnum";display:inline-block;margin:0;padding:0;color:#fadb14;font-size:20px;line-height:unset;list-style:none;outline:none}.ant-rate-disabled .ant-rate-star{cursor:default}.ant-rate-disabled .ant-rate-star:hover{transform:scale(1)}.ant-rate-star{position:relative;display:inline-block;margin:0;padding:0;color:inherit;cursor:pointer;transition:all .3s}.ant-rate-star:not(:last-child){margin-right:8px}.ant-rate-star>div:focus{outline:0}.ant-rate-star>div:focus,.ant-rate-star>div:hover{transform:scale(1.1)}.ant-rate-star-first,.ant-rate-star-second{color:#e8e8e8;transition:all .3s;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.ant-rate-star-first .anticon,.ant-rate-star-second .anticon{vertical-align:middle}.ant-rate-star-first{position:absolute;top:0;left:0;width:50%;height:100%;overflow:hidden;opacity:0}.ant-rate-star-half .ant-rate-star-first,.ant-rate-star-half .ant-rate-star-second{opacity:1}.ant-rate-star-full .ant-rate-star-second,.ant-rate-star-half .ant-rate-star-first{color:inherit}.ant-rate-text{display:inline-block;margin-left:8px;font-size:15px}.ant-result{padding:48px 32px}.ant-result-success .ant-result-icon>.anticon{color:#52c41a}.ant-result-error .ant-result-icon>.anticon{color:#f5222d}.ant-result-info .ant-result-icon>.anticon{color:#1890ff}.ant-result-warning .ant-result-icon>.anticon{color:#faad14}.ant-result-image{width:250px;height:295px;margin:auto}.ant-result-icon{margin-bottom:24px;text-align:center}.ant-result-icon>.anticon{font-size:72px}.ant-result-title{color:rgba(0,0,0,.85);font-size:24px;line-height:1.8;text-align:center}.ant-result-subtitle{color:rgba(0,0,0,.45);font-size:14px;line-height:1.6;text-align:center}.ant-result-extra{margin-top:32px;text-align:center}.ant-result-extra>*{margin-right:8px}.ant-result-extra>:last-child{margin-right:0}.ant-result-content{margin-top:24px;padding:24px 40px;background-color:#fafafa}.ant-select{box-sizing:border-box;color:rgba(0,0,0,.65);font-size:15px;font-variant:tabular-nums;line-height:1.5;font-feature-settings:"tnum";position:relative;display:inline-block;outline:0}.ant-select,.ant-select ol,.ant-select ul{margin:0;padding:0;list-style:none}.ant-select>ul>li>a{padding:0;background-color:#fff}.ant-select-arrow{display:inline-block;color:inherit;font-style:normal;line-height:0;text-align:center;text-transform:none;vertical-align:-.125em;text-rendering:optimizeLegibility;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;position:absolute;top:50%;right:11px;margin-top:-6px;color:rgba(0,0,0,.25);font-size:12px;line-height:1;transform-origin:50% 50%}.ant-select-arrow>*{line-height:1}.ant-select-arrow svg{display:inline-block}.ant-select-arrow:before{display:none}.ant-select-arrow .ant-select-arrow-icon{display:block}.ant-select-arrow .ant-select-arrow-icon svg{transition:transform .3s}.ant-select-selection{display:block;box-sizing:border-box;background-color:#fff;border:1px solid #d9d9d9;border-top:1.02px solid #d9d9d9;border-radius:4px;outline:none;transition:all .3s cubic-bezier(.645,.045,.355,1);-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.ant-select-selection:hover{border-color:#195e9e;border-right-width:1px!important}.ant-select-focused .ant-select-selection,.ant-select-selection:active,.ant-select-selection:focus{border-color:#195e9e;border-right-width:1px!important;outline:0;box-shadow:0 0 0 2px rgba(0,70,145,.2)}.ant-select-selection__clear{position:absolute;top:50%;right:11px;z-index:1;display:inline-block;width:12px;height:12px;margin-top:-6px;color:rgba(0,0,0,.25);font-size:12px;font-style:normal;line-height:12px;text-align:center;text-transform:none;background:#fff;cursor:pointer;opacity:0;transition:color .3s ease,opacity .15s ease;text-rendering:auto}.ant-select-selection__clear:before{display:block}.ant-select-selection__clear:hover{color:rgba(0,0,0,.45)}.ant-select-selection:hover .ant-select-selection__clear{opacity:1}.ant-select-selection-selected-value{float:left;max-width:100%;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.ant-select-no-arrow .ant-select-selection-selected-value{padding-right:0}.ant-select-disabled{color:rgba(0,0,0,.25)}.ant-select-disabled .ant-select-selection{background:#f5f5f5;cursor:not-allowed}.ant-select-disabled .ant-select-selection:active,.ant-select-disabled .ant-select-selection:focus,.ant-select-disabled .ant-select-selection:hover{border-color:#d9d9d9;box-shadow:none}.ant-select-disabled .ant-select-selection__clear{display:none;visibility:hidden;pointer-events:none}.ant-select-disabled .ant-select-selection--multiple .ant-select-selection__choice{padding-right:10px;color:rgba(0,0,0,.33);background:#f5f5f5}.ant-select-disabled .ant-select-selection--multiple .ant-select-selection__choice__remove{display:none}.ant-select-selection--single{position:relative;height:32px;cursor:pointer}.ant-select-selection--single .ant-select-selection__rendered{margin-right:24px}.ant-select-no-arrow .ant-select-selection__rendered{margin-right:11px}.ant-select-selection__rendered{position:relative;display:block;margin-right:11px;margin-left:11px;line-height:30px}.ant-select-selection__rendered:after{display:inline-block;width:0;visibility:hidden;content:".";pointer-events:none}.ant-select-lg{font-size:17px}.ant-select-lg .ant-select-selection--single{height:40px}.ant-select-lg .ant-select-selection__rendered{line-height:38px}.ant-select-lg .ant-select-selection--multiple{min-height:40px}.ant-select-lg .ant-select-selection--multiple .ant-select-selection__rendered li{height:32px;line-height:32px}.ant-select-lg .ant-select-selection--multiple .ant-select-arrow,.ant-select-lg .ant-select-selection--multiple .ant-select-selection__clear{top:20px}.ant-select-sm .ant-select-selection--single{height:24px}.ant-select-sm .ant-select-selection__rendered{margin-left:7px;line-height:22px}.ant-select-sm .ant-select-selection--multiple{min-height:24px}.ant-select-sm .ant-select-selection--multiple .ant-select-selection__rendered li{height:16px;line-height:14px}.ant-select-sm .ant-select-selection--multiple .ant-select-arrow,.ant-select-sm .ant-select-selection--multiple .ant-select-selection__clear{top:12px}.ant-select-sm .ant-select-arrow,.ant-select-sm .ant-select-selection__clear{right:8px}.ant-select-disabled .ant-select-selection__choice__remove{color:rgba(0,0,0,.25);cursor:default}.ant-select-disabled .ant-select-selection__choice__remove:hover{color:rgba(0,0,0,.25)}.ant-select-search__field__wrap{position:relative;display:inline-block}.ant-select-search__field__placeholder,.ant-select-selection__placeholder{position:absolute;top:50%;right:9px;left:0;max-width:100%;height:20px;margin-top:-10px;overflow:hidden;color:#bfbfbf;line-height:20px;white-space:nowrap;text-align:left;text-overflow:ellipsis}.ant-select-search__field__placeholder{left:12px}.ant-select-search__field__mirror{position:absolute;top:0;left:0;white-space:pre;opacity:0;pointer-events:none}.ant-select-search--inline{position:absolute;width:100%;height:100%}.ant-select-search--inline .ant-select-search__field__wrap{width:100%;height:100%}.ant-select-search--inline .ant-select-search__field{width:100%;height:100%;font-size:100%;line-height:1;background:transparent;border-width:0;border-radius:4px;outline:0}.ant-select-search--inline>i{float:right}.ant-select-selection--multiple{min-height:32px;padding-bottom:3px;cursor:text;zoom:1}.ant-select-selection--multiple:after,.ant-select-selection--multiple:before{display:table;content:""}.ant-select-selection--multiple:after{clear:both}.ant-select-selection--multiple .ant-select-search--inline{position:static;float:left;width:auto;max-width:100%;padding:0}.ant-select-selection--multiple .ant-select-search--inline .ant-select-search__field{width:.75em;max-width:100%;padding:1px}.ant-select-selection--multiple .ant-select-selection__rendered{height:auto;margin-bottom:-3px;margin-left:5px}.ant-select-selection--multiple .ant-select-selection__placeholder{margin-left:6px}.ant-select-selection--multiple .ant-select-selection__rendered>ul>li,.ant-select-selection--multiple>ul>li{height:24px;margin-top:3px;line-height:22px}.ant-select-selection--multiple .ant-select-selection__choice{position:relative;float:left;max-width:99%;margin-right:4px;padding:0 20px 0 10px;overflow:hidden;color:rgba(0,0,0,.65);background-color:#fafafa;border:1px solid #e8e8e8;border-radius:2px;cursor:default;transition:padding .3s cubic-bezier(.645,.045,.355,1)}.ant-select-selection--multiple .ant-select-selection__choice__disabled{padding:0 10px}.ant-select-selection--multiple .ant-select-selection__choice__content{display:inline-block;max-width:100%;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;transition:margin .3s cubic-bezier(.645,.045,.355,1)}.ant-select-selection--multiple .ant-select-selection__choice__remove{color:inherit;font-style:normal;line-height:0;text-align:center;text-transform:none;vertical-align:-.125em;text-rendering:optimizeLegibility;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;position:absolute;right:4px;color:rgba(0,0,0,.45);font-weight:700;line-height:inherit;cursor:pointer;transition:all .3s;display:inline-block;font-size:12px;font-size:10px\9;transform:scale(.83333333) rotate(0deg)}.ant-select-selection--multiple .ant-select-selection__choice__remove>*{line-height:1}.ant-select-selection--multiple .ant-select-selection__choice__remove svg{display:inline-block}.ant-select-selection--multiple .ant-select-selection__choice__remove:before{display:none}.ant-select-selection--multiple .ant-select-selection__choice__remove .ant-select-selection--multiple .ant-select-selection__choice__remove-icon{display:block}:root .ant-select-selection--multiple .ant-select-selection__choice__remove{font-size:12px}.ant-select-selection--multiple .ant-select-selection__choice__remove:hover{color:rgba(0,0,0,.75)}.ant-select-selection--multiple .ant-select-arrow,.ant-select-selection--multiple .ant-select-selection__clear{top:16px}.ant-select-allow-clear .ant-select-selection--multiple .ant-select-selection__rendered,.ant-select-show-arrow .ant-select-selection--multiple .ant-select-selection__rendered{margin-right:20px}.ant-select-open .ant-select-arrow-icon svg{transform:rotate(180deg)}.ant-select-open .ant-select-selection{border-color:#195e9e;border-right-width:1px!important;outline:0;box-shadow:0 0 0 2px rgba(0,70,145,.2)}.ant-select-combobox .ant-select-arrow{display:none}.ant-select-combobox .ant-select-search--inline{float:none;width:100%;height:100%}.ant-select-combobox .ant-select-search__field__wrap{width:100%;height:100%}.ant-select-combobox .ant-select-search__field{position:relative;z-index:1;width:100%;height:100%;box-shadow:none;transition:all .3s cubic-bezier(.645,.045,.355,1),height 0s}.ant-select-combobox.ant-select-allow-clear .ant-select-selection:hover .ant-select-selection__rendered,.ant-select-combobox.ant-select-show-arrow .ant-select-selection:hover .ant-select-selection__rendered{margin-right:20px}.ant-select-dropdown{margin:0;padding:0;color:rgba(0,0,0,.65);font-variant:tabular-nums;line-height:1.5;list-style:none;font-feature-settings:"tnum";position:absolute;top:-9999px;left:-9999px;z-index:1050;box-sizing:border-box;font-size:15px;font-variant:normal;background-color:#fff;border-radius:4px;outline:none;box-shadow:0 2px 8px rgba(0,0,0,.15)}.ant-select-dropdown.slide-up-appear.slide-up-appear-active.ant-select-dropdown-placement-bottomLeft,.ant-select-dropdown.slide-up-enter.slide-up-enter-active.ant-select-dropdown-placement-bottomLeft{-webkit-animation-name:antSlideUpIn;animation-name:antSlideUpIn}.ant-select-dropdown.slide-up-appear.slide-up-appear-active.ant-select-dropdown-placement-topLeft,.ant-select-dropdown.slide-up-enter.slide-up-enter-active.ant-select-dropdown-placement-topLeft{-webkit-animation-name:antSlideDownIn;animation-name:antSlideDownIn}.ant-select-dropdown.slide-up-leave.slide-up-leave-active.ant-select-dropdown-placement-bottomLeft{-webkit-animation-name:antSlideUpOut;animation-name:antSlideUpOut}.ant-select-dropdown.slide-up-leave.slide-up-leave-active.ant-select-dropdown-placement-topLeft{-webkit-animation-name:antSlideDownOut;animation-name:antSlideDownOut}.ant-select-dropdown-hidden{display:none}.ant-select-dropdown-menu{max-height:250px;margin-bottom:0;padding:4px 0;overflow:auto;list-style:none;outline:none}.ant-select-dropdown-menu-item-group-list{margin:0;padding:0}.ant-select-dropdown-menu-item-group-list>.ant-select-dropdown-menu-item{padding-left:20px}.ant-select-dropdown-menu-item-group-title{height:32px;padding:0 12px;color:rgba(0,0,0,.45);font-size:12px;line-height:32px}.ant-select-dropdown-menu-item-group-list .ant-select-dropdown-menu-item:first-child:not(:last-child),.ant-select-dropdown-menu-item-group:not(:last-child) .ant-select-dropdown-menu-item-group-list .ant-select-dropdown-menu-item:last-child{border-radius:0}.ant-select-dropdown-menu-item{position:relative;display:block;padding:5px 12px;overflow:hidden;color:rgba(0,0,0,.65);font-weight:400;font-size:15px;line-height:22px;white-space:nowrap;text-overflow:ellipsis;cursor:pointer;transition:background .3s ease}.ant-select-dropdown-menu-item:hover:not(.ant-select-dropdown-menu-item-disabled){background-color:#bccad1}.ant-select-dropdown-menu-item-selected{color:rgba(0,0,0,.65);font-weight:600;background-color:#fafafa}.ant-select-dropdown-menu-item-disabled,.ant-select-dropdown-menu-item-disabled:hover{color:rgba(0,0,0,.25);cursor:not-allowed}.ant-select-dropdown-menu-item-active:not(.ant-select-dropdown-menu-item-disabled){background-color:#bccad1}.ant-select-dropdown-menu-item-divider{height:1px;margin:1px 0;overflow:hidden;line-height:0;background-color:#e8e8e8}.ant-select-dropdown.ant-select-dropdown--multiple .ant-select-dropdown-menu-item{padding-right:32px}.ant-select-dropdown.ant-select-dropdown--multiple .ant-select-dropdown-menu-item .ant-select-selected-icon{position:absolute;top:50%;right:12px;color:transparent;font-weight:700;font-size:12px;text-shadow:0 .1px 0,.1px 0 0,0 -.1px 0,-.1px 0;transform:translateY(-50%);transition:all .2s}.ant-select-dropdown.ant-select-dropdown--multiple .ant-select-dropdown-menu-item:hover .ant-select-selected-icon{color:rgba(0,0,0,.87)}.ant-select-dropdown.ant-select-dropdown--multiple .ant-select-dropdown-menu-item-disabled .ant-select-selected-icon{display:none}.ant-select-dropdown.ant-select-dropdown--multiple .ant-select-dropdown-menu-item-selected .ant-select-selected-icon,.ant-select-dropdown.ant-select-dropdown--multiple .ant-select-dropdown-menu-item-selected:hover .ant-select-selected-icon{display:inline-block;color:#004691}.ant-select-dropdown--empty.ant-select-dropdown--multiple .ant-select-dropdown-menu-item{padding-right:12px}.ant-select-dropdown-container-open .ant-select-dropdown,.ant-select-dropdown-open .ant-select-dropdown{display:block}.ant-skeleton{display:table;width:100%}.ant-skeleton-header{display:table-cell;padding-right:16px;vertical-align:top}.ant-skeleton-header .ant-skeleton-avatar{display:inline-block;vertical-align:top;background:#f2f2f2;width:32px;height:32px;line-height:32px}.ant-skeleton-header .ant-skeleton-avatar.ant-skeleton-avatar-circle{border-radius:50%}.ant-skeleton-header .ant-skeleton-avatar-lg{width:40px;height:40px;line-height:40px}.ant-skeleton-header .ant-skeleton-avatar-lg.ant-skeleton-avatar-circle{border-radius:50%}.ant-skeleton-header .ant-skeleton-avatar-sm{width:24px;height:24px;line-height:24px}.ant-skeleton-header .ant-skeleton-avatar-sm.ant-skeleton-avatar-circle{border-radius:50%}.ant-skeleton-content{display:table-cell;width:100%;vertical-align:top}.ant-skeleton-content .ant-skeleton-title{width:100%;height:16px;margin-top:16px;background:#f2f2f2}.ant-skeleton-content .ant-skeleton-title+.ant-skeleton-paragraph{margin-top:24px}.ant-skeleton-content .ant-skeleton-paragraph{padding:0}.ant-skeleton-content .ant-skeleton-paragraph>li{width:100%;height:16px;list-style:none;background:#f2f2f2}.ant-skeleton-content .ant-skeleton-paragraph>li:last-child:not(:first-child):not(:nth-child(2)){width:61%}.ant-skeleton-content .ant-skeleton-paragraph>li+li{margin-top:16px}.ant-skeleton-with-avatar .ant-skeleton-content .ant-skeleton-title{margin-top:12px}.ant-skeleton-with-avatar .ant-skeleton-content .ant-skeleton-title+.ant-skeleton-paragraph{margin-top:28px}.ant-skeleton.ant-skeleton-active .ant-skeleton-avatar,.ant-skeleton.ant-skeleton-active .ant-skeleton-content .ant-skeleton-paragraph>li,.ant-skeleton.ant-skeleton-active .ant-skeleton-content .ant-skeleton-title{background:linear-gradient(90deg,#f2f2f2 25%,#e6e6e6 37%,#f2f2f2 63%);background-size:400% 100%;-webkit-animation:ant-skeleton-loading 1.4s ease infinite;animation:ant-skeleton-loading 1.4s ease infinite}@-webkit-keyframes ant-skeleton-loading{0%{background-position:100% 50%}to{background-position:0 50%}}@keyframes ant-skeleton-loading{0%{background-position:100% 50%}to{background-position:0 50%}}.ant-slider{box-sizing:border-box;color:rgba(0,0,0,.65);font-size:15px;font-variant:tabular-nums;line-height:1.5;list-style:none;font-feature-settings:"tnum";position:relative;height:12px;margin:14px 6px 10px;padding:4px 0;cursor:pointer;touch-action:none}.ant-slider-vertical{width:12px;height:100%;margin:6px 10px;padding:0 4px}.ant-slider-vertical .ant-slider-rail{width:4px;height:100%}.ant-slider-vertical .ant-slider-track{width:4px}.ant-slider-vertical .ant-slider-handle{margin-top:-6px;margin-left:-5px}.ant-slider-vertical .ant-slider-mark{top:0;left:12px;width:18px;height:100%}.ant-slider-vertical .ant-slider-mark-text{left:4px;white-space:nowrap}.ant-slider-vertical .ant-slider-step{width:4px;height:100%}.ant-slider-vertical .ant-slider-dot{top:auto;left:2px;margin-bottom:-4px}.ant-slider-tooltip .ant-tooltip-inner{min-width:unset}.ant-slider-with-marks{margin-bottom:28px}.ant-slider-rail{width:100%;background-color:#f5f5f5;border-radius:2px}.ant-slider-rail,.ant-slider-track{position:absolute;height:4px;transition:background-color .3s}.ant-slider-track{background-color:#5890b8;border-radius:4px}.ant-slider-handle{position:absolute;width:14px;height:14px;margin-top:-5px;background-color:#fff;border:2px solid #5890b8;border-radius:50%;box-shadow:0;cursor:pointer;transition:border-color .3s,box-shadow .6s,transform .3s cubic-bezier(.18,.89,.32,1.28)}.ant-slider-handle:focus{border-color:#336ba7;outline:none;box-shadow:0 0 0 5px rgba(0,70,145,.2)}.ant-slider-handle.ant-tooltip-open{border-color:#004691}.ant-slider:hover .ant-slider-rail{background-color:#e1e1e1}.ant-slider:hover .ant-slider-track{background-color:#3777ab}.ant-slider:hover .ant-slider-handle:not(.ant-tooltip-open){border-color:#3777ab}.ant-slider-mark{position:absolute;top:14px;left:0;width:100%;font-size:15px}.ant-slider-mark-text{position:absolute;display:inline-block;color:rgba(0,0,0,.45);text-align:center;word-break:keep-all;cursor:pointer}.ant-slider-mark-text-active{color:rgba(0,0,0,.65)}.ant-slider-step{position:absolute;width:100%;height:4px;background:transparent}.ant-slider-dot{position:absolute;top:-2px;width:8px;height:8px;background-color:#fff;border:2px solid #e8e8e8;border-radius:50%;cursor:pointer}.ant-slider-dot,.ant-slider-dot:first-child,.ant-slider-dot:last-child{margin-left:-4px}.ant-slider-dot-active{border-color:#80a3c8}.ant-slider-disabled{cursor:not-allowed}.ant-slider-disabled .ant-slider-track{background-color:rgba(0,0,0,.25)!important}.ant-slider-disabled .ant-slider-dot,.ant-slider-disabled .ant-slider-handle{background-color:#fff;border-color:rgba(0,0,0,.25)!important;box-shadow:none;cursor:not-allowed}.ant-slider-disabled .ant-slider-dot,.ant-slider-disabled .ant-slider-mark-text{cursor:not-allowed!important}.ant-space{display:inline-flex}.ant-space-vertical{flex-direction:column}.ant-space-align-center{align-items:center}.ant-space-align-start{align-items:flex-start}.ant-space-align-end{align-items:flex-end}.ant-space-align-baseline{align-items:baseline}.ant-spin{box-sizing:border-box;margin:0;padding:0;color:rgba(0,0,0,.65);font-size:15px;font-variant:tabular-nums;line-height:1.5;list-style:none;font-feature-settings:"tnum";position:absolute;display:none;color:#004691;text-align:center;vertical-align:middle;opacity:0;transition:transform .3s cubic-bezier(.78,.14,.15,.86)}.ant-spin-spinning{position:static;display:inline-block;opacity:1}.ant-spin-nested-loading{position:relative}.ant-spin-nested-loading>div>.ant-spin{position:absolute;top:0;left:0;z-index:4;display:block;width:100%;height:100%;max-height:400px}.ant-spin-nested-loading>div>.ant-spin .ant-spin-dot{position:absolute;top:50%;left:50%;margin:-10px}.ant-spin-nested-loading>div>.ant-spin .ant-spin-text{position:absolute;top:50%;width:100%;padding-top:4.5px;text-shadow:0 1px 2px #fff}.ant-spin-nested-loading>div>.ant-spin.ant-spin-show-text .ant-spin-dot{margin-top:-20px}.ant-spin-nested-loading>div>.ant-spin-sm .ant-spin-dot{margin:-7px}.ant-spin-nested-loading>div>.ant-spin-sm .ant-spin-text{padding-top:1.5px}.ant-spin-nested-loading>div>.ant-spin-sm.ant-spin-show-text .ant-spin-dot{margin-top:-17px}.ant-spin-nested-loading>div>.ant-spin-lg .ant-spin-dot{margin:-16px}.ant-spin-nested-loading>div>.ant-spin-lg .ant-spin-text{padding-top:10.5px}.ant-spin-nested-loading>div>.ant-spin-lg.ant-spin-show-text .ant-spin-dot{margin-top:-26px}.ant-spin-container{position:relative;transition:opacity .3s}.ant-spin-container:after{position:absolute;top:0;right:0;bottom:0;left:0;z-index:10;display:none\9;width:100%;height:100%;background:#fff;opacity:0;transition:all .3s;content:"";pointer-events:none}.ant-spin-blur{clear:both;overflow:hidden;opacity:.5;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;pointer-events:none}.ant-spin-blur:after{opacity:.4;pointer-events:auto}.ant-spin-tip{color:rgba(0,0,0,.45)}.ant-spin-dot{position:relative;display:inline-block;font-size:20px;width:1em;height:1em}.ant-spin-dot-item{position:absolute;display:block;width:9px;height:9px;background-color:#004691;border-radius:100%;transform:scale(.75);transform-origin:50% 50%;opacity:.3;-webkit-animation:antSpinMove 1s linear infinite alternate;animation:antSpinMove 1s linear infinite alternate}.ant-spin-dot-item:first-child{top:0;left:0}.ant-spin-dot-item:nth-child(2){top:0;right:0;-webkit-animation-delay:.4s;animation-delay:.4s}.ant-spin-dot-item:nth-child(3){right:0;bottom:0;-webkit-animation-delay:.8s;animation-delay:.8s}.ant-spin-dot-item:nth-child(4){bottom:0;left:0;-webkit-animation-delay:1.2s;animation-delay:1.2s}.ant-spin-dot-spin{transform:rotate(45deg);-webkit-animation:antRotate 1.2s linear infinite;animation:antRotate 1.2s linear infinite}.ant-spin-sm .ant-spin-dot{font-size:14px}.ant-spin-sm .ant-spin-dot i{width:6px;height:6px}.ant-spin-lg .ant-spin-dot{font-size:32px}.ant-spin-lg .ant-spin-dot i{width:14px;height:14px}.ant-spin.ant-spin-show-text .ant-spin-text{display:block}@media (-ms-high-contrast:active),(-ms-high-contrast:none){.ant-spin-blur{background:#fff;opacity:.5}}@-webkit-keyframes antSpinMove{to{opacity:1}}@keyframes antSpinMove{to{opacity:1}}@-webkit-keyframes antRotate{to{transform:rotate(405deg)}}@keyframes antRotate{to{transform:rotate(405deg)}}.ant-statistic{box-sizing:border-box;margin:0;padding:0;color:rgba(0,0,0,.65);font-size:15px;font-variant:tabular-nums;line-height:1.5;list-style:none;font-feature-settings:"tnum"}.ant-statistic-title{margin-bottom:4px;color:rgba(0,0,0,.45);font-size:15px}.ant-statistic-content{color:rgba(0,0,0,.85);font-size:24px;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,PingFang SC,Hiragino Sans GB,Microsoft YaHei,Helvetica Neue,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol}.ant-statistic-content-value-decimal{font-size:16px}.ant-statistic-content-prefix,.ant-statistic-content-suffix{display:inline-block}.ant-statistic-content-prefix{margin-right:4px}.ant-statistic-content-suffix{margin-left:4px;font-size:16px}.ant-steps{box-sizing:border-box;margin:0;padding:0;color:rgba(0,0,0,.65);font-size:15px;font-variant:tabular-nums;line-height:1.5;list-style:none;font-feature-settings:"tnum";display:flex;width:100%;font-size:0}.ant-steps-item{position:relative;display:inline-block;flex:1;overflow:hidden;vertical-align:top}.ant-steps-item-container{outline:none}.ant-steps-item:last-child{flex:none}.ant-steps-item:last-child>.ant-steps-item-container>.ant-steps-item-content>.ant-steps-item-title:after,.ant-steps-item:last-child>.ant-steps-item-container>.ant-steps-item-tail{display:none}.ant-steps-item-content,.ant-steps-item-icon{display:inline-block;vertical-align:top}.ant-steps-item-icon{width:32px;height:32px;margin-right:8px;font-size:17px;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,PingFang SC,Hiragino Sans GB,Microsoft YaHei,Helvetica Neue,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol;line-height:32px;text-align:center;border:1px solid rgba(0,0,0,.25);border-radius:32px;transition:background-color .3s,border-color .3s}.ant-steps-item-icon>.ant-steps-icon{position:relative;top:-1px;color:#004691;line-height:1}.ant-steps-item-tail{position:absolute;top:12px;left:0;width:100%;padding:0 10px}.ant-steps-item-tail:after{display:inline-block;width:100%;height:1px;background:#e8e8e8;border-radius:1px;transition:background .3s;content:""}.ant-steps-item-title{position:relative;display:inline-block;padding-right:16px;color:rgba(0,0,0,.65);font-size:17px;line-height:32px}.ant-steps-item-title:after{position:absolute;top:16px;left:100%;display:block;width:9999px;height:1px;background:#e8e8e8;content:""}.ant-steps-item-subtitle{display:inline;margin-left:8px;font-weight:400}.ant-steps-item-description,.ant-steps-item-subtitle{color:rgba(0,0,0,.45);font-size:15px}.ant-steps-item-wait .ant-steps-item-icon{background-color:#fff;border-color:rgba(0,0,0,.25)}.ant-steps-item-wait .ant-steps-item-icon>.ant-steps-icon{color:rgba(0,0,0,.25)}.ant-steps-item-wait .ant-steps-item-icon>.ant-steps-icon .ant-steps-icon-dot{background:rgba(0,0,0,.25)}.ant-steps-item-wait>.ant-steps-item-container>.ant-steps-item-content>.ant-steps-item-title{color:rgba(0,0,0,.45)}.ant-steps-item-wait>.ant-steps-item-container>.ant-steps-item-content>.ant-steps-item-title:after{background-color:#e8e8e8}.ant-steps-item-wait>.ant-steps-item-container>.ant-steps-item-content>.ant-steps-item-description{color:rgba(0,0,0,.45)}.ant-steps-item-wait>.ant-steps-item-container>.ant-steps-item-tail:after{background-color:#e8e8e8}.ant-steps-item-process .ant-steps-item-icon{background-color:#fff;border-color:#004691}.ant-steps-item-process .ant-steps-item-icon>.ant-steps-icon{color:#004691}.ant-steps-item-process .ant-steps-item-icon>.ant-steps-icon .ant-steps-icon-dot{background:#004691}.ant-steps-item-process>.ant-steps-item-container>.ant-steps-item-content>.ant-steps-item-title{color:rgba(0,0,0,.85)}.ant-steps-item-process>.ant-steps-item-container>.ant-steps-item-content>.ant-steps-item-title:after{background-color:#e8e8e8}.ant-steps-item-process>.ant-steps-item-container>.ant-steps-item-content>.ant-steps-item-description{color:rgba(0,0,0,.65)}.ant-steps-item-process>.ant-steps-item-container>.ant-steps-item-tail:after{background-color:#e8e8e8}.ant-steps-item-process .ant-steps-item-icon{background:#004691}.ant-steps-item-process .ant-steps-item-icon>.ant-steps-icon{color:#fff}.ant-steps-item-process .ant-steps-item-title{font-weight:500}.ant-steps-item-finish .ant-steps-item-icon{background-color:#fff;border-color:#004691}.ant-steps-item-finish .ant-steps-item-icon>.ant-steps-icon{color:#004691}.ant-steps-item-finish .ant-steps-item-icon>.ant-steps-icon .ant-steps-icon-dot{background:#004691}.ant-steps-item-finish>.ant-steps-item-container>.ant-steps-item-content>.ant-steps-item-title{color:rgba(0,0,0,.65)}.ant-steps-item-finish>.ant-steps-item-container>.ant-steps-item-content>.ant-steps-item-title:after{background-color:#004691}.ant-steps-item-finish>.ant-steps-item-container>.ant-steps-item-content>.ant-steps-item-description{color:rgba(0,0,0,.45)}.ant-steps-item-finish>.ant-steps-item-container>.ant-steps-item-tail:after{background-color:#004691}.ant-steps-item-error .ant-steps-item-icon{background-color:#fff;border-color:#f5222d}.ant-steps-item-error .ant-steps-item-icon>.ant-steps-icon{color:#f5222d}.ant-steps-item-error .ant-steps-item-icon>.ant-steps-icon .ant-steps-icon-dot{background:#f5222d}.ant-steps-item-error>.ant-steps-item-container>.ant-steps-item-content>.ant-steps-item-title{color:#f5222d}.ant-steps-item-error>.ant-steps-item-container>.ant-steps-item-content>.ant-steps-item-title:after{background-color:#e8e8e8}.ant-steps-item-error>.ant-steps-item-container>.ant-steps-item-content>.ant-steps-item-description{color:#f5222d}.ant-steps-item-error>.ant-steps-item-container>.ant-steps-item-tail:after{background-color:#e8e8e8}.ant-steps-item.ant-steps-next-error .ant-steps-item-title:after{background:#f5222d}.ant-steps .ant-steps-item:not(.ant-steps-item-active)>.ant-steps-item-container[role=button]{cursor:pointer}.ant-steps .ant-steps-item:not(.ant-steps-item-active)>.ant-steps-item-container[role=button] .ant-steps-item-description,.ant-steps .ant-steps-item:not(.ant-steps-item-active)>.ant-steps-item-container[role=button] .ant-steps-item-icon .ant-steps-icon,.ant-steps .ant-steps-item:not(.ant-steps-item-active)>.ant-steps-item-container[role=button] .ant-steps-item-title{transition:color .3s}.ant-steps .ant-steps-item:not(.ant-steps-item-active)>.ant-steps-item-container[role=button]:hover .ant-steps-item-description,.ant-steps .ant-steps-item:not(.ant-steps-item-active)>.ant-steps-item-container[role=button]:hover .ant-steps-item-subtitle,.ant-steps .ant-steps-item:not(.ant-steps-item-active)>.ant-steps-item-container[role=button]:hover .ant-steps-item-title{color:#004691}.ant-steps .ant-steps-item:not(.ant-steps-item-active):not(.ant-steps-item-process)>.ant-steps-item-container[role=button]:hover .ant-steps-item-icon{border-color:#004691}.ant-steps .ant-steps-item:not(.ant-steps-item-active):not(.ant-steps-item-process)>.ant-steps-item-container[role=button]:hover .ant-steps-item-icon .ant-steps-icon{color:#004691}.ant-steps-horizontal:not(.ant-steps-label-vertical) .ant-steps-item{margin-right:16px;white-space:nowrap}.ant-steps-horizontal:not(.ant-steps-label-vertical) .ant-steps-item:last-child{margin-right:0}.ant-steps-horizontal:not(.ant-steps-label-vertical) .ant-steps-item:last-child .ant-steps-item-title{padding-right:0}.ant-steps-horizontal:not(.ant-steps-label-vertical) .ant-steps-item-tail{display:none}.ant-steps-horizontal:not(.ant-steps-label-vertical) .ant-steps-item-description{max-width:140px;white-space:normal}.ant-steps-item-custom .ant-steps-item-icon{height:auto;background:none;border:0}.ant-steps-item-custom .ant-steps-item-icon>.ant-steps-icon{top:0;left:.5px;width:32px;height:32px;font-size:24px;line-height:32px}.ant-steps-item-custom.ant-steps-item-process .ant-steps-item-icon>.ant-steps-icon{color:#004691}.ant-steps:not(.ant-steps-vertical) .ant-steps-item-custom .ant-steps-item-icon{width:auto}.ant-steps-small.ant-steps-horizontal:not(.ant-steps-label-vertical) .ant-steps-item{margin-right:12px}.ant-steps-small.ant-steps-horizontal:not(.ant-steps-label-vertical) .ant-steps-item:last-child{margin-right:0}.ant-steps-small .ant-steps-item-icon{width:24px;height:24px;font-size:12px;line-height:24px;text-align:center;border-radius:24px}.ant-steps-small .ant-steps-item-title{padding-right:12px;font-size:15px;line-height:24px}.ant-steps-small .ant-steps-item-title:after{top:12px}.ant-steps-small .ant-steps-item-description{color:rgba(0,0,0,.45);font-size:15px}.ant-steps-small .ant-steps-item-tail{top:8px}.ant-steps-small .ant-steps-item-custom .ant-steps-item-icon{width:inherit;height:inherit;line-height:inherit;background:none;border:0;border-radius:0}.ant-steps-small .ant-steps-item-custom .ant-steps-item-icon>.ant-steps-icon{font-size:24px;line-height:24px;transform:none}.ant-steps-vertical{display:block}.ant-steps-vertical .ant-steps-item{display:block;overflow:visible}.ant-steps-vertical .ant-steps-item-icon{float:left;margin-right:16px}.ant-steps-vertical .ant-steps-item-content{display:block;min-height:48px;overflow:hidden}.ant-steps-vertical .ant-steps-item-title{line-height:32px}.ant-steps-vertical .ant-steps-item-description{padding-bottom:12px}.ant-steps-vertical>.ant-steps-item>.ant-steps-item-container>.ant-steps-item-tail{position:absolute;top:0;left:16px;width:1px;height:100%;padding:38px 0 6px}.ant-steps-vertical>.ant-steps-item>.ant-steps-item-container>.ant-steps-item-tail:after{width:1px;height:100%}.ant-steps-vertical>.ant-steps-item:not(:last-child)>.ant-steps-item-container>.ant-steps-item-tail{display:block}.ant-steps-vertical>.ant-steps-item>.ant-steps-item-container>.ant-steps-item-content>.ant-steps-item-title:after{display:none}.ant-steps-vertical.ant-steps-small .ant-steps-item-container .ant-steps-item-tail{position:absolute;top:0;left:12px;padding:30px 0 6px}.ant-steps-vertical.ant-steps-small .ant-steps-item-container .ant-steps-item-title{line-height:24px}@media (max-width:480px){.ant-steps-horizontal.ant-steps-label-horizontal{display:block}.ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item{display:block;overflow:visible}.ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-icon{float:left;margin-right:16px}.ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-content{display:block;min-height:48px;overflow:hidden}.ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-title{line-height:32px}.ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-description{padding-bottom:12px}.ant-steps-horizontal.ant-steps-label-horizontal>.ant-steps-item>.ant-steps-item-container>.ant-steps-item-tail{position:absolute;top:0;left:16px;width:1px;height:100%;padding:38px 0 6px}.ant-steps-horizontal.ant-steps-label-horizontal>.ant-steps-item>.ant-steps-item-container>.ant-steps-item-tail:after{width:1px;height:100%}.ant-steps-horizontal.ant-steps-label-horizontal>.ant-steps-item:not(:last-child)>.ant-steps-item-container>.ant-steps-item-tail{display:block}.ant-steps-horizontal.ant-steps-label-horizontal>.ant-steps-item>.ant-steps-item-container>.ant-steps-item-content>.ant-steps-item-title:after{display:none}.ant-steps-horizontal.ant-steps-label-horizontal.ant-steps-small .ant-steps-item-container .ant-steps-item-tail{position:absolute;top:0;left:12px;padding:30px 0 6px}.ant-steps-horizontal.ant-steps-label-horizontal.ant-steps-small .ant-steps-item-container .ant-steps-item-title{line-height:24px}}.ant-steps-label-vertical .ant-steps-item{overflow:visible}.ant-steps-label-vertical .ant-steps-item-tail{margin-left:58px;padding:3.5px 24px}.ant-steps-label-vertical .ant-steps-item-content{display:block;width:116px;margin-top:8px;text-align:center}.ant-steps-label-vertical .ant-steps-item-icon{display:inline-block;margin-left:42px}.ant-steps-label-vertical .ant-steps-item-title{padding-right:0}.ant-steps-label-vertical .ant-steps-item-title:after{display:none}.ant-steps-label-vertical .ant-steps-item-subtitle{display:block;margin-bottom:4px;margin-left:0;line-height:1.5}.ant-steps-label-vertical.ant-steps-small:not(.ant-steps-dot) .ant-steps-item-icon{margin-left:46px}.ant-steps-dot .ant-steps-item-title,.ant-steps-dot.ant-steps-small .ant-steps-item-title{line-height:1.5}.ant-steps-dot .ant-steps-item-tail,.ant-steps-dot.ant-steps-small .ant-steps-item-tail{top:2px;width:100%;margin:0 0 0 70px;padding:0}.ant-steps-dot .ant-steps-item-tail:after,.ant-steps-dot.ant-steps-small .ant-steps-item-tail:after{width:calc(100% - 20px);height:3px;margin-left:12px}.ant-steps-dot .ant-steps-item:first-child .ant-steps-icon-dot,.ant-steps-dot.ant-steps-small .ant-steps-item:first-child .ant-steps-icon-dot{left:2px}.ant-steps-dot .ant-steps-item-icon,.ant-steps-dot.ant-steps-small .ant-steps-item-icon{width:8px;height:8px;margin-left:67px;padding-right:0;line-height:8px;background:transparent;border:0}.ant-steps-dot .ant-steps-item-icon .ant-steps-icon-dot,.ant-steps-dot.ant-steps-small .ant-steps-item-icon .ant-steps-icon-dot{position:relative;float:left;width:100%;height:100%;border-radius:100px;transition:all .3s}.ant-steps-dot .ant-steps-item-icon .ant-steps-icon-dot:after,.ant-steps-dot.ant-steps-small .ant-steps-item-icon .ant-steps-icon-dot:after{position:absolute;top:-12px;left:-26px;width:60px;height:32px;background:rgba(0,0,0,.001);content:""}.ant-steps-dot .ant-steps-item-content,.ant-steps-dot.ant-steps-small .ant-steps-item-content{width:140px}.ant-steps-dot .ant-steps-item-process .ant-steps-item-icon,.ant-steps-dot.ant-steps-small .ant-steps-item-process .ant-steps-item-icon{width:10px;height:10px;line-height:10px}.ant-steps-dot .ant-steps-item-process .ant-steps-item-icon .ant-steps-icon-dot,.ant-steps-dot.ant-steps-small .ant-steps-item-process .ant-steps-item-icon .ant-steps-icon-dot{top:-1px}.ant-steps-vertical.ant-steps-dot .ant-steps-item-icon{margin-top:8px;margin-left:0}.ant-steps-vertical.ant-steps-dot .ant-steps-item>.ant-steps-item-container>.ant-steps-item-tail{top:2px;left:-9px;margin:0;padding:22px 0 4px}.ant-steps-vertical.ant-steps-dot .ant-steps-item:first-child .ant-steps-icon-dot{left:0}.ant-steps-vertical.ant-steps-dot .ant-steps-item-process .ant-steps-icon-dot{left:-2px}.ant-steps-navigation{padding-top:12px}.ant-steps-navigation.ant-steps-small .ant-steps-item-container{margin-left:-12px}.ant-steps-navigation .ant-steps-item{overflow:visible;text-align:center}.ant-steps-navigation .ant-steps-item-container{display:inline-block;height:100%;margin-left:-16px;padding-bottom:12px;text-align:left;transition:opacity .3s}.ant-steps-navigation .ant-steps-item-container .ant-steps-item-content{max-width:auto}.ant-steps-navigation .ant-steps-item-container .ant-steps-item-title{max-width:100%;padding-right:0;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.ant-steps-navigation .ant-steps-item-container .ant-steps-item-title:after{display:none}.ant-steps-navigation .ant-steps-item:not(.ant-steps-item-active) .ant-steps-item-container[role=button]{cursor:pointer}.ant-steps-navigation .ant-steps-item:not(.ant-steps-item-active) .ant-steps-item-container[role=button]:hover{opacity:.85}.ant-steps-navigation .ant-steps-item:last-child{flex:1}.ant-steps-navigation .ant-steps-item:last-child:after{display:none}.ant-steps-navigation .ant-steps-item:after{position:absolute;top:50%;left:100%;display:inline-block;width:12px;height:12px;margin-top:-14px;margin-left:-2px;border:1px solid rgba(0,0,0,.25);border-bottom:none;border-left:none;transform:rotate(45deg);content:""}.ant-steps-navigation .ant-steps-item:before{position:absolute;bottom:0;left:50%;display:inline-block;width:0;height:3px;background-color:#004691;transition:width .3s,left .3s;transition-timing-function:ease-out;content:""}.ant-steps-navigation .ant-steps-item.ant-steps-item-active:before{left:0;width:100%}@media (max-width:480px){.ant-steps-navigation>.ant-steps-item{margin-right:0!important}.ant-steps-navigation>.ant-steps-item:before{display:none}.ant-steps-navigation>.ant-steps-item.ant-steps-item-active:before{top:0;right:0;left:unset;display:block;width:3px;height:calc(100% - 24px)}.ant-steps-navigation>.ant-steps-item:after{position:relative;top:-2px;left:50%;display:block;width:8px;height:8px;margin-bottom:8px;text-align:center;transform:rotate(135deg)}.ant-steps-navigation>.ant-steps-item>.ant-steps-item-container>.ant-steps-item-tail{visibility:hidden}}.ant-steps-flex-not-supported.ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item{margin-left:-16px;padding-left:16px;background:#fff}.ant-steps-flex-not-supported.ant-steps-horizontal.ant-steps-label-horizontal.ant-steps-small .ant-steps-item{margin-left:-12px;padding-left:12px}.ant-steps-flex-not-supported.ant-steps-dot .ant-steps-item:last-child{overflow:hidden}.ant-steps-flex-not-supported.ant-steps-dot .ant-steps-item:last-child .ant-steps-icon-dot:after{right:-200px;width:200px}.ant-steps-flex-not-supported.ant-steps-dot .ant-steps-item .ant-steps-icon-dot:after,.ant-steps-flex-not-supported.ant-steps-dot .ant-steps-item .ant-steps-icon-dot:before{position:absolute;top:0;left:-10px;width:10px;height:8px;background:#fff;content:""}.ant-steps-flex-not-supported.ant-steps-dot .ant-steps-item .ant-steps-icon-dot:after{right:-10px;left:auto}.ant-steps-flex-not-supported.ant-steps-dot .ant-steps-item-wait .ant-steps-item-icon>.ant-steps-icon .ant-steps-icon-dot{background:#ccc}.ant-switch{margin:0;padding:0;color:rgba(0,0,0,.65);font-size:15px;font-variant:tabular-nums;line-height:1.5;list-style:none;font-feature-settings:"tnum";position:relative;display:inline-block;box-sizing:border-box;min-width:44px;height:22px;line-height:20px;vertical-align:middle;background-color:rgba(0,0,0,.25);border:1px solid transparent;border-radius:100px;cursor:pointer;transition:all .36s;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.ant-switch-inner{display:block;margin-right:6px;margin-left:24px;color:#fff;font-size:12px}.ant-switch-loading-icon,.ant-switch:after{position:absolute;top:1px;left:1px;width:18px;height:18px;background-color:#fff;border-radius:18px;cursor:pointer;transition:all .36s cubic-bezier(.78,.14,.15,.86);content:" "}.ant-switch:after{box-shadow:0 2px 4px 0 rgba(0,35,11,.2)}.ant-switch:not(.ant-switch-disabled):active:after,.ant-switch:not(.ant-switch-disabled):active:before{width:24px}.ant-switch-loading-icon{z-index:1;display:none;font-size:12px;background:transparent}.ant-switch-loading-icon svg{position:absolute;top:0;right:0;bottom:0;left:0;margin:auto}.ant-switch-loading .ant-switch-loading-icon{display:inline-block;color:rgba(0,0,0,.65)}.ant-switch-checked.ant-switch-loading .ant-switch-loading-icon{color:#004691}.ant-switch:focus{outline:0;box-shadow:0 0 0 2px rgba(0,70,145,.2)}.ant-switch:focus:hover{box-shadow:none}.ant-switch-small{min-width:28px;height:16px;line-height:14px}.ant-switch-small .ant-switch-inner{margin-right:3px;margin-left:18px;font-size:12px}.ant-switch-small:after{width:12px;height:12px}.ant-switch-small:active:after,.ant-switch-small:active:before{width:16px}.ant-switch-small .ant-switch-loading-icon{width:12px;height:12px}.ant-switch-small.ant-switch-checked .ant-switch-inner{margin-right:18px;margin-left:3px}.ant-switch-small.ant-switch-checked .ant-switch-loading-icon{left:100%;margin-left:-13px}.ant-switch-small.ant-switch-loading .ant-switch-loading-icon{font-weight:700;transform:scale(.66667)}.ant-switch-checked{background-color:#004691}.ant-switch-checked .ant-switch-inner{margin-right:24px;margin-left:6px}.ant-switch-checked:after{left:100%;margin-left:-1px;transform:translateX(-100%)}.ant-switch-checked .ant-switch-loading-icon{left:100%;margin-left:-19px}.ant-switch-disabled,.ant-switch-loading{cursor:not-allowed;opacity:.4}.ant-switch-disabled *,.ant-switch-disabled:after,.ant-switch-disabled:before,.ant-switch-loading *,.ant-switch-loading:after,.ant-switch-loading:before{cursor:not-allowed}@-webkit-keyframes AntSwitchSmallLoadingCircle{0%{transform:rotate(0deg) scale(.66667);transform-origin:50% 50%}to{transform:rotate(1turn) scale(.66667);transform-origin:50% 50%}}@keyframes AntSwitchSmallLoadingCircle{0%{transform:rotate(0deg) scale(.66667);transform-origin:50% 50%}to{transform:rotate(1turn) scale(.66667);transform-origin:50% 50%}}.ant-table-wrapper{zoom:1}.ant-table-wrapper:after,.ant-table-wrapper:before{display:table;content:""}.ant-table-wrapper:after{clear:both}.ant-table{box-sizing:border-box;margin:0;padding:0;color:rgba(0,0,0,.65);font-size:15px;font-variant:tabular-nums;line-height:1.5;list-style:none;font-feature-settings:"tnum";position:relative;clear:both}.ant-table-body{transition:opacity .3s}.ant-table-empty .ant-table-body{overflow-x:auto!important;overflow-y:hidden!important}.ant-table table{width:100%;text-align:left;border-radius:4px 4px 0 0;border-collapse:separate;border-spacing:0}.ant-table-layout-fixed table{table-layout:fixed}.ant-table-thead>tr>th{color:rgba(0,0,0,.85);font-weight:500;text-align:left;background:#fafafa;border-bottom:1px solid #e8e8e8;transition:background .3s ease}.ant-table-thead>tr>th[colspan]:not([colspan="1"]){text-align:center}.ant-table-thead>tr>th .ant-table-filter-icon,.ant-table-thead>tr>th .anticon-filter{position:absolute;top:0;right:0;width:28px;height:100%;color:#bfbfbf;font-size:12px;text-align:center;cursor:pointer;transition:all .3s}.ant-table-thead>tr>th .ant-table-filter-icon>svg,.ant-table-thead>tr>th .anticon-filter>svg{position:absolute;top:50%;left:50%;margin-top:-5px;margin-left:-6px}.ant-table-thead>tr>th .ant-table-filter-selected.anticon{color:#004691}.ant-table-thead>tr>th .ant-table-column-sorter{display:table-cell;vertical-align:middle}.ant-table-thead>tr>th .ant-table-column-sorter .ant-table-column-sorter-inner{height:1em;margin-top:.35em;margin-left:.57142857em;color:#bfbfbf;line-height:1em;text-align:center;transition:all .3s}.ant-table-thead>tr>th .ant-table-column-sorter .ant-table-column-sorter-inner .ant-table-column-sorter-down,.ant-table-thead>tr>th .ant-table-column-sorter .ant-table-column-sorter-inner .ant-table-column-sorter-up{display:inline-block;font-size:12px;font-size:11px\9;transform:scale(.91666667) rotate(0deg);display:block;height:1em;line-height:1em;transition:all .3s}:root .ant-table-thead>tr>th .ant-table-column-sorter .ant-table-column-sorter-inner .ant-table-column-sorter-down,:root .ant-table-thead>tr>th .ant-table-column-sorter .ant-table-column-sorter-inner .ant-table-column-sorter-up{font-size:12px}.ant-table-thead>tr>th .ant-table-column-sorter .ant-table-column-sorter-inner .ant-table-column-sorter-down.on,.ant-table-thead>tr>th .ant-table-column-sorter .ant-table-column-sorter-inner .ant-table-column-sorter-up.on{color:#004691}.ant-table-thead>tr>th .ant-table-column-sorter .ant-table-column-sorter-inner-full{margin-top:-.15em}.ant-table-thead>tr>th .ant-table-column-sorter .ant-table-column-sorter-inner-full .ant-table-column-sorter-down,.ant-table-thead>tr>th .ant-table-column-sorter .ant-table-column-sorter-inner-full .ant-table-column-sorter-up{height:.5em;line-height:.5em}.ant-table-thead>tr>th .ant-table-column-sorter .ant-table-column-sorter-inner-full .ant-table-column-sorter-down{margin-top:.125em}.ant-table-thead>tr>th.ant-table-column-has-actions{position:relative;background-clip:padding-box;-webkit-background-clip:border-box}.ant-table-thead>tr>th.ant-table-column-has-actions.ant-table-column-has-filters{padding-right:30px!important}.ant-table-thead>tr>th.ant-table-column-has-actions.ant-table-column-has-filters .ant-table-filter-icon.ant-table-filter-open,.ant-table-thead>tr>th.ant-table-column-has-actions.ant-table-column-has-filters .anticon-filter.ant-table-filter-open,.ant-table-thead>tr>th.ant-table-column-has-actions.ant-table-column-has-filters:hover .ant-table-filter-icon:hover,.ant-table-thead>tr>th.ant-table-column-has-actions.ant-table-column-has-filters:hover .anticon-filter:hover{color:rgba(0,0,0,.45);background:#e5e5e5}.ant-table-thead>tr>th.ant-table-column-has-actions.ant-table-column-has-filters:hover .ant-table-filter-icon:active,.ant-table-thead>tr>th.ant-table-column-has-actions.ant-table-column-has-filters:hover .anticon-filter:active{color:rgba(0,0,0,.65)}.ant-table-thead>tr>th.ant-table-column-has-actions.ant-table-column-has-sorters{cursor:pointer}.ant-table-thead>tr>th.ant-table-column-has-actions.ant-table-column-has-sorters:hover,.ant-table-thead>tr>th.ant-table-column-has-actions.ant-table-column-has-sorters:hover .ant-table-filter-icon,.ant-table-thead>tr>th.ant-table-column-has-actions.ant-table-column-has-sorters:hover .anticon-filter{background:#f2f2f2}.ant-table-thead>tr>th.ant-table-column-has-actions.ant-table-column-has-sorters:active .ant-table-column-sorter-down:not(.on),.ant-table-thead>tr>th.ant-table-column-has-actions.ant-table-column-has-sorters:active .ant-table-column-sorter-up:not(.on){color:rgba(0,0,0,.45)}.ant-table-thead>tr>th .ant-table-header-column{display:inline-block;max-width:100%;vertical-align:top}.ant-table-thead>tr>th .ant-table-header-column .ant-table-column-sorters{display:table}.ant-table-thead>tr>th .ant-table-header-column .ant-table-column-sorters>.ant-table-column-title{display:table-cell;vertical-align:middle}.ant-table-thead>tr>th .ant-table-header-column .ant-table-column-sorters>:not(.ant-table-column-sorter){position:relative}.ant-table-thead>tr>th .ant-table-header-column .ant-table-column-sorters:before{position:absolute;top:0;right:0;bottom:0;left:0;background:transparent;transition:all .3s;content:""}.ant-table-thead>tr>th .ant-table-header-column .ant-table-column-sorters:hover:before{background:rgba(0,0,0,.04)}.ant-table-thead>tr>th.ant-table-column-has-sorters{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.ant-table-thead>tr:first-child>th:first-child{border-top-left-radius:4px}.ant-table-thead>tr:first-child>th:last-child{border-top-right-radius:4px}.ant-table-thead>tr:not(:last-child)>th[colspan]{border-bottom:0}.ant-table-tbody>tr>td{border-bottom:1px solid #e8e8e8;transition:background .3s}.ant-table-tbody>tr.ant-table-row-hover:not(.ant-table-expanded-row):not(.ant-table-row-selected)>td,.ant-table-tbody>tr:hover:not(.ant-table-expanded-row):not(.ant-table-row-selected)>td,.ant-table-thead>tr.ant-table-row-hover:not(.ant-table-expanded-row):not(.ant-table-row-selected)>td,.ant-table-thead>tr:hover:not(.ant-table-expanded-row):not(.ant-table-row-selected)>td{background:#bccad1}.ant-table-tbody>tr.ant-table-row-selected>td.ant-table-column-sort,.ant-table-tbody>tr:hover.ant-table-row-selected>td,.ant-table-tbody>tr:hover.ant-table-row-selected>td.ant-table-column-sort,.ant-table-thead>tr.ant-table-row-selected>td.ant-table-column-sort,.ant-table-thead>tr:hover.ant-table-row-selected>td,.ant-table-thead>tr:hover.ant-table-row-selected>td.ant-table-column-sort{background:#fafafa}.ant-table-thead>tr:hover{background:none}.ant-table-footer{position:relative;padding:16px;color:rgba(0,0,0,.85);background:#fafafa;border-top:1px solid #e8e8e8;border-radius:0 0 4px 4px}.ant-table-footer:before{position:absolute;top:-1px;left:0;width:100%;height:1px;background:#fafafa;content:""}.ant-table.ant-table-bordered .ant-table-footer{border:1px solid #e8e8e8}.ant-table-title{position:relative;top:1px;padding:16px 0;border-radius:4px 4px 0 0}.ant-table.ant-table-bordered .ant-table-title{padding-right:16px;padding-left:16px;border:1px solid #e8e8e8}.ant-table-title+.ant-table-content{position:relative;border-radius:4px 4px 0 0}.ant-table-bordered .ant-table-title+.ant-table-content,.ant-table-bordered .ant-table-title+.ant-table-content .ant-table-thead>tr:first-child>th,.ant-table-bordered .ant-table-title+.ant-table-content table,.ant-table-without-column-header .ant-table-title+.ant-table-content,.ant-table-without-column-header table{border-radius:0}.ant-table-without-column-header.ant-table-bordered.ant-table-empty .ant-table-placeholder{border-top:1px solid #e8e8e8;border-radius:4px}.ant-table-tbody>tr.ant-table-row-selected td{color:inherit;background:#fafafa}.ant-table-thead>tr>th.ant-table-column-sort{background:#f5f5f5}.ant-table-tbody>tr>td.ant-table-column-sort{background:rgba(0,0,0,.01)}.ant-table-tbody>tr>td,.ant-table-thead>tr>th{padding:16px;overflow-wrap:break-word}.ant-table-expand-icon-th,.ant-table-row-expand-icon-cell{width:50px;min-width:50px;text-align:center}.ant-table-header{overflow:hidden;background:#fafafa}.ant-table-header table{border-radius:4px 4px 0 0}.ant-table-loading{position:relative}.ant-table-loading .ant-table-body{background:#fff;opacity:.5}.ant-table-loading .ant-table-spin-holder{position:absolute;top:50%;left:50%;height:20px;margin-left:-30px;line-height:20px}.ant-table-loading .ant-table-with-pagination{margin-top:-20px}.ant-table-loading .ant-table-without-pagination{margin-top:10px}.ant-table-bordered .ant-table-body>table,.ant-table-bordered .ant-table-fixed-left table,.ant-table-bordered .ant-table-fixed-right table,.ant-table-bordered .ant-table-header>table{border:1px solid #e8e8e8;border-right:0;border-bottom:0}.ant-table-bordered.ant-table-empty .ant-table-placeholder{border-right:1px solid #e8e8e8;border-left:1px solid #e8e8e8}.ant-table-bordered.ant-table-fixed-header .ant-table-header>table{border-bottom:0}.ant-table-bordered.ant-table-fixed-header .ant-table-body>table{border-top-left-radius:0;border-top-right-radius:0}.ant-table-bordered.ant-table-fixed-header .ant-table-body-inner>table,.ant-table-bordered.ant-table-fixed-header .ant-table-header+.ant-table-body>table{border-top:0}.ant-table-bordered .ant-table-thead>tr:not(:last-child)>th{border-bottom:1px solid #e8e8e8}.ant-table-bordered .ant-table-tbody>tr>td,.ant-table-bordered .ant-table-thead>tr>th{border-right:1px solid #e8e8e8}.ant-table-placeholder{position:relative;z-index:1;margin-top:-1px;padding:16px;color:rgba(0,0,0,.25);font-size:15px;text-align:center;background:#fff;border-top:1px solid #e8e8e8;border-bottom:1px solid #e8e8e8;border-radius:0 0 4px 4px}.ant-table-pagination.ant-pagination{float:right;margin:16px 0}.ant-table-filter-dropdown{position:relative;min-width:96px;margin-left:-8px;background:#fff;border-radius:4px;box-shadow:0 2px 8px rgba(0,0,0,.15)}.ant-table-filter-dropdown .ant-dropdown-menu{max-height:calc(100vh - 130px);overflow-x:hidden;border:0;border-radius:4px 4px 0 0;box-shadow:none}.ant-table-filter-dropdown .ant-dropdown-menu-item>label+span{padding-right:0}.ant-table-filter-dropdown .ant-dropdown-menu-sub{border-radius:4px;box-shadow:0 2px 8px rgba(0,0,0,.15)}.ant-table-filter-dropdown .ant-dropdown-menu .ant-dropdown-submenu-contain-selected .ant-dropdown-menu-submenu-title:after{color:#004691;font-weight:700;text-shadow:0 0 2px #7ea9c4}.ant-table-filter-dropdown .ant-dropdown-menu-item{overflow:hidden}.ant-table-filter-dropdown>.ant-dropdown-menu>.ant-dropdown-menu-item:last-child,.ant-table-filter-dropdown>.ant-dropdown-menu>.ant-dropdown-menu-submenu:last-child .ant-dropdown-menu-submenu-title{border-radius:0}.ant-table-filter-dropdown-btns{padding:7px 8px;overflow:hidden;border-top:1px solid #e8e8e8}.ant-table-filter-dropdown-link{color:#004691}.ant-table-filter-dropdown-link:hover{color:#195e9e}.ant-table-filter-dropdown-link:active{color:#00306b}.ant-table-filter-dropdown-link.confirm{float:left}.ant-table-filter-dropdown-link.clear{float:right}.ant-table-selection{white-space:nowrap}.ant-table-selection-select-all-custom{margin-right:4px!important}.ant-table-selection .anticon-down{color:#bfbfbf;transition:all .3s}.ant-table-selection-menu{min-width:96px;margin-top:5px;margin-left:-30px;background:#fff;border-radius:4px;box-shadow:0 2px 8px rgba(0,0,0,.15)}.ant-table-selection-menu .ant-action-down{color:#bfbfbf}.ant-table-selection-down{display:inline-block;padding:0;line-height:1;cursor:pointer}.ant-table-selection-down:hover .anticon-down{color:rgba(0,0,0,.6)}.ant-table-row-expand-icon{color:#004691;text-decoration:none;cursor:pointer;transition:color .3s;display:inline-block;width:17px;height:17px;color:inherit;line-height:13px;text-align:center;background:#fff;border:1px solid #e8e8e8;border-radius:2px;outline:none;transition:all .3s;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.ant-table-row-expand-icon:focus,.ant-table-row-expand-icon:hover{color:#195e9e}.ant-table-row-expand-icon:active{color:#00306b}.ant-table-row-expand-icon:active,.ant-table-row-expand-icon:focus,.ant-table-row-expand-icon:hover{border-color:currentColor}.ant-table-row-expanded:after{content:"-"}.ant-table-row-collapsed:after{content:"+"}.ant-table-row-spaced{visibility:hidden}.ant-table-row-spaced:after{content:"."}.ant-table-row-cell-ellipsis,.ant-table-row-cell-ellipsis .ant-table-column-title{overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.ant-table-row-cell-ellipsis .ant-table-column-title{display:block}.ant-table-row-cell-break-word{word-wrap:break-word;word-break:break-word}tr.ant-table-expanded-row,tr.ant-table-expanded-row:hover{background:#fbfbfb}tr.ant-table-expanded-row td>.ant-table-wrapper{margin:-16px -16px -17px}.ant-table .ant-table-row-indent+.ant-table-row-expand-icon{margin-right:8px}.ant-table-scroll{overflow:auto;overflow-x:hidden}.ant-table-scroll table{min-width:100%}.ant-table-scroll table .ant-table-fixed-columns-in-body:not([colspan]){color:transparent}.ant-table-scroll table .ant-table-fixed-columns-in-body:not([colspan])>*{visibility:hidden}.ant-table-body-inner{height:100%}.ant-table-fixed-header>.ant-table-content>.ant-table-scroll>.ant-table-body{position:relative;background:#fff}.ant-table-fixed-header .ant-table-body-inner{overflow:scroll}.ant-table-fixed-header .ant-table-scroll .ant-table-header{margin-bottom:-20px;padding-bottom:20px;overflow:scroll;opacity:.9999}.ant-table-fixed-header .ant-table-scroll .ant-table-header::-webkit-scrollbar{border:solid #e8e8e8;border-width:0 0 1px}.ant-table-hide-scrollbar{scrollbar-color:transparent transparent;min-width:unset}.ant-table-hide-scrollbar::-webkit-scrollbar{min-width:inherit;background-color:transparent}.ant-table-bordered.ant-table-fixed-header .ant-table-scroll .ant-table-header::-webkit-scrollbar{border:1px solid #e8e8e8;border-left-width:0}.ant-table-bordered.ant-table-fixed-header .ant-table-scroll .ant-table-header.ant-table-hide-scrollbar .ant-table-thead>tr:only-child>th:last-child{border-right-color:transparent}.ant-table-fixed-left,.ant-table-fixed-right{position:absolute;top:0;z-index:1;overflow:hidden;border-radius:0;transition:box-shadow .3s ease}.ant-table-fixed-left table,.ant-table-fixed-right table{width:auto;background:#fff}.ant-table-fixed-header .ant-table-fixed-left .ant-table-body-outer .ant-table-fixed,.ant-table-fixed-header .ant-table-fixed-right .ant-table-body-outer .ant-table-fixed{border-radius:0}.ant-table-fixed-left{left:0;box-shadow:6px 0 6px -4px rgba(0,0,0,.15)}.ant-table-fixed-left .ant-table-header{overflow-y:hidden}.ant-table-fixed-left .ant-table-body-inner{margin-right:-20px;padding-right:20px}.ant-table-fixed-header .ant-table-fixed-left .ant-table-body-inner{padding-right:0}.ant-table-fixed-left,.ant-table-fixed-left table{border-radius:4px 0 0 0}.ant-table-fixed-left .ant-table-thead>tr>th:last-child{border-top-right-radius:0}.ant-table-fixed-right{right:0;box-shadow:-6px 0 6px -4px rgba(0,0,0,.15)}.ant-table-fixed-right,.ant-table-fixed-right table{border-radius:0 4px 0 0}.ant-table-fixed-right .ant-table-expanded-row{color:transparent;pointer-events:none}.ant-table-fixed-right .ant-table-thead>tr>th:first-child{border-top-left-radius:0}.ant-table.ant-table-scroll-position-left .ant-table-fixed-left,.ant-table.ant-table-scroll-position-right .ant-table-fixed-right{box-shadow:none}.ant-table colgroup>col.ant-table-selection-col{width:60px}.ant-table-thead>tr>th.ant-table-selection-column-custom .ant-table-selection{margin-right:-15px}.ant-table-tbody>tr>td.ant-table-selection-column,.ant-table-thead>tr>th.ant-table-selection-column{text-align:center}.ant-table-tbody>tr>td.ant-table-selection-column .ant-radio-wrapper,.ant-table-thead>tr>th.ant-table-selection-column .ant-radio-wrapper{margin-right:0}.ant-table-row[class*=ant-table-row-level-0] .ant-table-selection-column>span{display:inline-block}.ant-table-filter-dropdown-submenu .ant-checkbox-wrapper+span,.ant-table-filter-dropdown .ant-checkbox-wrapper+span{padding-left:8px}@supports (-moz-appearance:meterbar){.ant-table-thead>tr>th.ant-table-column-has-actions{background-clip:padding-box}}.ant-table-middle>.ant-table-content>.ant-table-body>table>.ant-table-tbody>tr>td,.ant-table-middle>.ant-table-content>.ant-table-body>table>.ant-table-thead>tr>th,.ant-table-middle>.ant-table-content>.ant-table-fixed-left>.ant-table-body-outer>.ant-table-body-inner>table>.ant-table-tbody>tr>td,.ant-table-middle>.ant-table-content>.ant-table-fixed-left>.ant-table-body-outer>.ant-table-body-inner>table>.ant-table-thead>tr>th,.ant-table-middle>.ant-table-content>.ant-table-fixed-left>.ant-table-header>table>.ant-table-tbody>tr>td,.ant-table-middle>.ant-table-content>.ant-table-fixed-left>.ant-table-header>table>.ant-table-thead>tr>th,.ant-table-middle>.ant-table-content>.ant-table-fixed-right>.ant-table-body-outer>.ant-table-body-inner>table>.ant-table-tbody>tr>td,.ant-table-middle>.ant-table-content>.ant-table-fixed-right>.ant-table-body-outer>.ant-table-body-inner>table>.ant-table-thead>tr>th,.ant-table-middle>.ant-table-content>.ant-table-fixed-right>.ant-table-header>table>.ant-table-tbody>tr>td,.ant-table-middle>.ant-table-content>.ant-table-fixed-right>.ant-table-header>table>.ant-table-thead>tr>th,.ant-table-middle>.ant-table-content>.ant-table-footer,.ant-table-middle>.ant-table-content>.ant-table-header>table>.ant-table-tbody>tr>td,.ant-table-middle>.ant-table-content>.ant-table-header>table>.ant-table-thead>tr>th,.ant-table-middle>.ant-table-content>.ant-table-scroll>.ant-table-body>table>.ant-table-tbody>tr>td,.ant-table-middle>.ant-table-content>.ant-table-scroll>.ant-table-body>table>.ant-table-thead>tr>th,.ant-table-middle>.ant-table-content>.ant-table-scroll>.ant-table-header>table>.ant-table-tbody>tr>td,.ant-table-middle>.ant-table-content>.ant-table-scroll>.ant-table-header>table>.ant-table-thead>tr>th,.ant-table-middle>.ant-table-title{padding:12px 8px}.ant-table-middle tr.ant-table-expanded-row td>.ant-table-wrapper{margin:-12px -8px -13px}.ant-table-small{border:1px solid #e8e8e8;border-radius:4px}.ant-table-small>.ant-table-content>.ant-table-footer,.ant-table-small>.ant-table-title{padding:8px}.ant-table-small>.ant-table-title{top:0;border-bottom:1px solid #e8e8e8}.ant-table-small>.ant-table-content>.ant-table-footer{background-color:transparent;border-top:1px solid #e8e8e8}.ant-table-small>.ant-table-content>.ant-table-footer:before{background-color:transparent}.ant-table-small>.ant-table-content>.ant-table-body{margin:0 8px}.ant-table-small>.ant-table-content>.ant-table-body>table,.ant-table-small>.ant-table-content>.ant-table-fixed-left>.ant-table-body-outer>.ant-table-body-inner>table,.ant-table-small>.ant-table-content>.ant-table-fixed-left>.ant-table-header>table,.ant-table-small>.ant-table-content>.ant-table-fixed-right>.ant-table-body-outer>.ant-table-body-inner>table,.ant-table-small>.ant-table-content>.ant-table-fixed-right>.ant-table-header>table,.ant-table-small>.ant-table-content>.ant-table-header>table,.ant-table-small>.ant-table-content>.ant-table-scroll>.ant-table-body>table,.ant-table-small>.ant-table-content>.ant-table-scroll>.ant-table-header>table{border:0}.ant-table-small>.ant-table-content>.ant-table-body>table>.ant-table-tbody>tr>td,.ant-table-small>.ant-table-content>.ant-table-body>table>.ant-table-thead>tr>th,.ant-table-small>.ant-table-content>.ant-table-fixed-left>.ant-table-body-outer>.ant-table-body-inner>table>.ant-table-tbody>tr>td,.ant-table-small>.ant-table-content>.ant-table-fixed-left>.ant-table-body-outer>.ant-table-body-inner>table>.ant-table-thead>tr>th,.ant-table-small>.ant-table-content>.ant-table-fixed-left>.ant-table-header>table>.ant-table-tbody>tr>td,.ant-table-small>.ant-table-content>.ant-table-fixed-left>.ant-table-header>table>.ant-table-thead>tr>th,.ant-table-small>.ant-table-content>.ant-table-fixed-right>.ant-table-body-outer>.ant-table-body-inner>table>.ant-table-tbody>tr>td,.ant-table-small>.ant-table-content>.ant-table-fixed-right>.ant-table-body-outer>.ant-table-body-inner>table>.ant-table-thead>tr>th,.ant-table-small>.ant-table-content>.ant-table-fixed-right>.ant-table-header>table>.ant-table-tbody>tr>td,.ant-table-small>.ant-table-content>.ant-table-fixed-right>.ant-table-header>table>.ant-table-thead>tr>th,.ant-table-small>.ant-table-content>.ant-table-header>table>.ant-table-tbody>tr>td,.ant-table-small>.ant-table-content>.ant-table-header>table>.ant-table-thead>tr>th,.ant-table-small>.ant-table-content>.ant-table-scroll>.ant-table-body>table>.ant-table-tbody>tr>td,.ant-table-small>.ant-table-content>.ant-table-scroll>.ant-table-body>table>.ant-table-thead>tr>th,.ant-table-small>.ant-table-content>.ant-table-scroll>.ant-table-header>table>.ant-table-tbody>tr>td,.ant-table-small>.ant-table-content>.ant-table-scroll>.ant-table-header>table>.ant-table-thead>tr>th{padding:8px}.ant-table-small>.ant-table-content>.ant-table-body>table>.ant-table-thead>tr>th,.ant-table-small>.ant-table-content>.ant-table-fixed-left>.ant-table-body-outer>.ant-table-body-inner>table>.ant-table-thead>tr>th,.ant-table-small>.ant-table-content>.ant-table-fixed-left>.ant-table-header>table>.ant-table-thead>tr>th,.ant-table-small>.ant-table-content>.ant-table-fixed-right>.ant-table-body-outer>.ant-table-body-inner>table>.ant-table-thead>tr>th,.ant-table-small>.ant-table-content>.ant-table-fixed-right>.ant-table-header>table>.ant-table-thead>tr>th,.ant-table-small>.ant-table-content>.ant-table-header>table>.ant-table-thead>tr>th,.ant-table-small>.ant-table-content>.ant-table-scroll>.ant-table-body>table>.ant-table-thead>tr>th,.ant-table-small>.ant-table-content>.ant-table-scroll>.ant-table-header>table>.ant-table-thead>tr>th{background-color:transparent}.ant-table-small>.ant-table-content>.ant-table-body>table>.ant-table-thead>tr,.ant-table-small>.ant-table-content>.ant-table-fixed-left>.ant-table-body-outer>.ant-table-body-inner>table>.ant-table-thead>tr,.ant-table-small>.ant-table-content>.ant-table-fixed-left>.ant-table-header>table>.ant-table-thead>tr,.ant-table-small>.ant-table-content>.ant-table-fixed-right>.ant-table-body-outer>.ant-table-body-inner>table>.ant-table-thead>tr,.ant-table-small>.ant-table-content>.ant-table-fixed-right>.ant-table-header>table>.ant-table-thead>tr,.ant-table-small>.ant-table-content>.ant-table-header>table>.ant-table-thead>tr,.ant-table-small>.ant-table-content>.ant-table-scroll>.ant-table-body>table>.ant-table-thead>tr,.ant-table-small>.ant-table-content>.ant-table-scroll>.ant-table-header>table>.ant-table-thead>tr{border-bottom:1px solid #e8e8e8}.ant-table-small>.ant-table-content>.ant-table-body>table>.ant-table-thead>tr>th.ant-table-column-sort,.ant-table-small>.ant-table-content>.ant-table-fixed-left>.ant-table-body-outer>.ant-table-body-inner>table>.ant-table-thead>tr>th.ant-table-column-sort,.ant-table-small>.ant-table-content>.ant-table-fixed-left>.ant-table-header>table>.ant-table-thead>tr>th.ant-table-column-sort,.ant-table-small>.ant-table-content>.ant-table-fixed-right>.ant-table-body-outer>.ant-table-body-inner>table>.ant-table-thead>tr>th.ant-table-column-sort,.ant-table-small>.ant-table-content>.ant-table-fixed-right>.ant-table-header>table>.ant-table-thead>tr>th.ant-table-column-sort,.ant-table-small>.ant-table-content>.ant-table-header>table>.ant-table-thead>tr>th.ant-table-column-sort,.ant-table-small>.ant-table-content>.ant-table-scroll>.ant-table-body>table>.ant-table-thead>tr>th.ant-table-column-sort,.ant-table-small>.ant-table-content>.ant-table-scroll>.ant-table-header>table>.ant-table-thead>tr>th.ant-table-column-sort{background-color:rgba(0,0,0,.01)}.ant-table-small>.ant-table-content>.ant-table-fixed-left>.ant-table-body-outer>.ant-table-body-inner>table,.ant-table-small>.ant-table-content>.ant-table-fixed-left>.ant-table-header>table,.ant-table-small>.ant-table-content>.ant-table-fixed-right>.ant-table-body-outer>.ant-table-body-inner>table,.ant-table-small>.ant-table-content>.ant-table-fixed-right>.ant-table-header>table,.ant-table-small>.ant-table-content>.ant-table-scroll>.ant-table-body>table,.ant-table-small>.ant-table-content>.ant-table-scroll>.ant-table-header>table{padding:0}.ant-table-small>.ant-table-content .ant-table-header{background-color:transparent;border-radius:4px 4px 0 0}.ant-table-small>.ant-table-content .ant-table-placeholder,.ant-table-small>.ant-table-content .ant-table-row:last-child td{border-bottom:0}.ant-table-small.ant-table-bordered{border-right:0}.ant-table-small.ant-table-bordered .ant-table-title{border:0;border-right:1px solid #e8e8e8;border-bottom:1px solid #e8e8e8}.ant-table-small.ant-table-bordered .ant-table-content{border-right:1px solid #e8e8e8}.ant-table-small.ant-table-bordered .ant-table-footer{border:0;border-top:1px solid #e8e8e8}.ant-table-small.ant-table-bordered .ant-table-footer:before{display:none}.ant-table-small.ant-table-bordered .ant-table-placeholder{border-right:0;border-bottom:0;border-left:0}.ant-table-small.ant-table-bordered .ant-table-tbody>tr>td:last-child,.ant-table-small.ant-table-bordered .ant-table-thead>tr>th.ant-table-row-cell-last{border-right:none}.ant-table-small.ant-table-bordered .ant-table-fixed-left .ant-table-tbody>tr>td:last-child,.ant-table-small.ant-table-bordered .ant-table-fixed-left .ant-table-thead>tr>th:last-child{border-right:1px solid #e8e8e8}.ant-table-small.ant-table-bordered .ant-table-fixed-right{border-right:1px solid #e8e8e8;border-left:1px solid #e8e8e8}.ant-table-small tr.ant-table-expanded-row td>.ant-table-wrapper{margin:-8px -8px -9px}.ant-table-small.ant-table-fixed-header>.ant-table-content>.ant-table-scroll>.ant-table-body{border-radius:0 0 4px 4px}.ant-tabs.ant-tabs-card .ant-tabs-card-bar .ant-tabs-nav-container{height:40px}.ant-tabs.ant-tabs-card .ant-tabs-card-bar .ant-tabs-ink-bar{visibility:hidden}.ant-tabs.ant-tabs-card .ant-tabs-card-bar .ant-tabs-tab{height:40px;margin:0 2px 0 0;padding:0 16px;line-height:38px;background:#fafafa;border:1px solid #e8e8e8;border-radius:4px 4px 0 0;transition:all .3s cubic-bezier(.645,.045,.355,1)}.ant-tabs.ant-tabs-card .ant-tabs-card-bar .ant-tabs-tab-active{height:40px;color:#004691;background:#fff;border-color:#e8e8e8;border-bottom:1px solid #fff}.ant-tabs.ant-tabs-card .ant-tabs-card-bar .ant-tabs-tab-active:before{border-top:2px solid transparent}.ant-tabs.ant-tabs-card .ant-tabs-card-bar .ant-tabs-tab-disabled{color:#004691;color:rgba(0,0,0,.25)}.ant-tabs.ant-tabs-card .ant-tabs-card-bar .ant-tabs-tab-inactive{padding:0}.ant-tabs.ant-tabs-card .ant-tabs-card-bar .ant-tabs-nav-wrap{margin-bottom:0}.ant-tabs.ant-tabs-card .ant-tabs-card-bar .ant-tabs-tab .ant-tabs-close-x{width:16px;height:16px;height:15px;margin-right:-5px;margin-left:3px;overflow:hidden;color:rgba(0,0,0,.45);font-size:12px;vertical-align:middle;transition:all .3s}.ant-tabs.ant-tabs-card .ant-tabs-card-bar .ant-tabs-tab .ant-tabs-close-x:hover{color:rgba(0,0,0,.85)}.ant-tabs.ant-tabs-card .ant-tabs-card-content>.ant-tabs-tabpane,.ant-tabs.ant-tabs-editable-card .ant-tabs-card-content>.ant-tabs-tabpane{transition:none!important}.ant-tabs.ant-tabs-card .ant-tabs-card-content>.ant-tabs-tabpane-inactive,.ant-tabs.ant-tabs-editable-card .ant-tabs-card-content>.ant-tabs-tabpane-inactive{overflow:hidden}.ant-tabs.ant-tabs-card .ant-tabs-card-bar .ant-tabs-tab:hover .anticon-close{opacity:1}.ant-tabs-extra-content{line-height:46.5px}.ant-tabs-extra-content .ant-tabs-new-tab{position:relative;width:20px;height:20px;color:rgba(0,0,0,.65);font-size:12px;line-height:20px;text-align:center;border:1px solid #e8e8e8;border-radius:2px;cursor:pointer;transition:all .3s}.ant-tabs-extra-content .ant-tabs-new-tab:hover{color:#004691;border-color:#004691}.ant-tabs-extra-content .ant-tabs-new-tab svg{position:absolute;top:0;right:0;bottom:0;left:0;margin:auto}.ant-tabs.ant-tabs-large .ant-tabs-extra-content{line-height:57.5px}.ant-tabs.ant-tabs-small .ant-tabs-extra-content{line-height:38.5px}.ant-tabs.ant-tabs-card .ant-tabs-extra-content{line-height:40px}.ant-tabs-vertical.ant-tabs-card .ant-tabs-card-bar.ant-tabs-left-bar .ant-tabs-nav-container,.ant-tabs-vertical.ant-tabs-card .ant-tabs-card-bar.ant-tabs-right-bar .ant-tabs-nav-container{height:100%}.ant-tabs-vertical.ant-tabs-card .ant-tabs-card-bar.ant-tabs-left-bar .ant-tabs-tab,.ant-tabs-vertical.ant-tabs-card .ant-tabs-card-bar.ant-tabs-right-bar .ant-tabs-tab{margin-bottom:8px;border-bottom:1px solid #e8e8e8}.ant-tabs-vertical.ant-tabs-card .ant-tabs-card-bar.ant-tabs-left-bar .ant-tabs-tab-active,.ant-tabs-vertical.ant-tabs-card .ant-tabs-card-bar.ant-tabs-right-bar .ant-tabs-tab-active{padding-bottom:4px}.ant-tabs-vertical.ant-tabs-card .ant-tabs-card-bar.ant-tabs-left-bar .ant-tabs-tab:last-child,.ant-tabs-vertical.ant-tabs-card .ant-tabs-card-bar.ant-tabs-right-bar .ant-tabs-tab:last-child{margin-bottom:8px}.ant-tabs-vertical.ant-tabs-card .ant-tabs-card-bar.ant-tabs-left-bar .ant-tabs-new-tab,.ant-tabs-vertical.ant-tabs-card .ant-tabs-card-bar.ant-tabs-right-bar .ant-tabs-new-tab{width:90%}.ant-tabs-vertical.ant-tabs-card.ant-tabs-left .ant-tabs-card-bar.ant-tabs-left-bar .ant-tabs-nav-wrap{margin-right:0}.ant-tabs-vertical.ant-tabs-card.ant-tabs-left .ant-tabs-card-bar.ant-tabs-left-bar .ant-tabs-tab{margin-right:1px;border-right:0;border-radius:4px 0 0 4px}.ant-tabs-vertical.ant-tabs-card.ant-tabs-left .ant-tabs-card-bar.ant-tabs-left-bar .ant-tabs-tab-active{margin-right:-1px;padding-right:18px}.ant-tabs-vertical.ant-tabs-card.ant-tabs-right .ant-tabs-card-bar.ant-tabs-right-bar .ant-tabs-nav-wrap{margin-left:0}.ant-tabs-vertical.ant-tabs-card.ant-tabs-right .ant-tabs-card-bar.ant-tabs-right-bar .ant-tabs-tab{margin-left:1px;border-left:0;border-radius:0 4px 4px 0}.ant-tabs-vertical.ant-tabs-card.ant-tabs-right .ant-tabs-card-bar.ant-tabs-right-bar .ant-tabs-tab-active{margin-left:-1px;padding-left:18px}.ant-tabs .ant-tabs-card-bar.ant-tabs-bottom-bar .ant-tabs-tab{height:auto;border-top:0;border-bottom:1px solid #e8e8e8;border-radius:0 0 4px 4px}.ant-tabs .ant-tabs-card-bar.ant-tabs-bottom-bar .ant-tabs-tab-active{padding-top:1px;padding-bottom:0;color:#004691}.ant-tabs{box-sizing:border-box;margin:0;padding:0;color:rgba(0,0,0,.65);font-size:15px;font-variant:tabular-nums;line-height:1.5;list-style:none;font-feature-settings:"tnum";position:relative;overflow:hidden;zoom:1}.ant-tabs:after,.ant-tabs:before{display:table;content:""}.ant-tabs:after{clear:both}.ant-tabs-ink-bar{position:absolute;bottom:1px;left:0;z-index:1;box-sizing:border-box;width:0;height:2px;background-color:#004691;transform-origin:0 0}.ant-tabs-bar{margin:0 0 16px;border-bottom:1px solid #e8e8e8;outline:none}.ant-tabs-bar,.ant-tabs-nav-container{transition:padding .3s cubic-bezier(.645,.045,.355,1)}.ant-tabs-nav-container{position:relative;box-sizing:border-box;margin-bottom:-1px;overflow:hidden;font-size:15px;line-height:1.5;white-space:nowrap;zoom:1}.ant-tabs-nav-container:after,.ant-tabs-nav-container:before{display:table;content:""}.ant-tabs-nav-container:after{clear:both}.ant-tabs-nav-container-scrolling{padding-right:32px;padding-left:32px}.ant-tabs-bottom .ant-tabs-bottom-bar{margin-top:16px;margin-bottom:0;border-top:1px solid #e8e8e8;border-bottom:none}.ant-tabs-bottom .ant-tabs-bottom-bar .ant-tabs-ink-bar{top:1px;bottom:auto}.ant-tabs-bottom .ant-tabs-bottom-bar .ant-tabs-nav-container{margin-top:-1px;margin-bottom:0}.ant-tabs-tab-next,.ant-tabs-tab-prev{position:absolute;z-index:2;width:0;height:100%;color:rgba(0,0,0,.45);text-align:center;background-color:transparent;border:0;cursor:pointer;opacity:0;transition:width .3s cubic-bezier(.645,.045,.355,1),opacity .3s cubic-bezier(.645,.045,.355,1),color .3s cubic-bezier(.645,.045,.355,1);-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;pointer-events:none}.ant-tabs-tab-next.ant-tabs-tab-arrow-show,.ant-tabs-tab-prev.ant-tabs-tab-arrow-show{width:32px;height:100%;opacity:1;pointer-events:auto}.ant-tabs-tab-next:hover,.ant-tabs-tab-prev:hover{color:rgba(0,0,0,.65)}.ant-tabs-tab-next-icon,.ant-tabs-tab-prev-icon{position:absolute;top:50%;left:50%;font-weight:700;font-style:normal;font-variant:normal;line-height:inherit;text-align:center;text-transform:none;transform:translate(-50%,-50%)}.ant-tabs-tab-next-icon-target,.ant-tabs-tab-prev-icon-target{display:block;display:inline-block;font-size:12px;font-size:10px\9;transform:scale(.83333333) rotate(0deg)}:root .ant-tabs-tab-next-icon-target,:root .ant-tabs-tab-prev-icon-target{font-size:12px}.ant-tabs-tab-btn-disabled{cursor:not-allowed}.ant-tabs-tab-btn-disabled,.ant-tabs-tab-btn-disabled:hover{color:rgba(0,0,0,.25)}.ant-tabs-tab-next{right:2px}.ant-tabs-tab-prev{left:0}:root .ant-tabs-tab-prev{filter:none}.ant-tabs-nav-wrap{margin-bottom:-1px;overflow:hidden}.ant-tabs-nav-scroll{overflow:hidden;white-space:nowrap}.ant-tabs-nav{position:relative;display:inline-block;box-sizing:border-box;margin:0;padding-left:0;list-style:none;transition:transform .3s cubic-bezier(.645,.045,.355,1)}.ant-tabs-nav:after,.ant-tabs-nav:before{display:table;content:" "}.ant-tabs-nav:after{clear:both}.ant-tabs-nav .ant-tabs-tab{position:relative;display:inline-block;box-sizing:border-box;height:100%;margin:0 32px 0 0;padding:12px 16px;text-decoration:none;cursor:pointer;transition:color .3s cubic-bezier(.645,.045,.355,1)}.ant-tabs-nav .ant-tabs-tab:before{position:absolute;top:-1px;left:0;width:100%;border-top:2px solid transparent;border-radius:4px 4px 0 0;transition:all .3s;content:"";pointer-events:none}.ant-tabs-nav .ant-tabs-tab:last-child{margin-right:0}.ant-tabs-nav .ant-tabs-tab:hover{color:#195e9e}.ant-tabs-nav .ant-tabs-tab:active{color:#00306b}.ant-tabs-nav .ant-tabs-tab .anticon{margin-right:8px}.ant-tabs-nav .ant-tabs-tab-active{color:#004691;font-weight:500}.ant-tabs-nav .ant-tabs-tab-disabled,.ant-tabs-nav .ant-tabs-tab-disabled:hover{color:rgba(0,0,0,.25);cursor:not-allowed}.ant-tabs .ant-tabs-large-bar .ant-tabs-nav-container{font-size:17px}.ant-tabs .ant-tabs-large-bar .ant-tabs-tab{padding:16px}.ant-tabs .ant-tabs-small-bar .ant-tabs-nav-container{font-size:15px}.ant-tabs .ant-tabs-small-bar .ant-tabs-tab{padding:8px 16px}.ant-tabs-content:before{display:block;overflow:hidden;content:""}.ant-tabs .ant-tabs-bottom-content,.ant-tabs .ant-tabs-top-content{width:100%}.ant-tabs .ant-tabs-bottom-content>.ant-tabs-tabpane,.ant-tabs .ant-tabs-top-content>.ant-tabs-tabpane{flex-shrink:0;width:100%;-webkit-backface-visibility:hidden;opacity:1;transition:opacity .45s}.ant-tabs .ant-tabs-bottom-content>.ant-tabs-tabpane-inactive,.ant-tabs .ant-tabs-top-content>.ant-tabs-tabpane-inactive{height:0;padding:0!important;overflow:hidden;opacity:0;pointer-events:none}.ant-tabs .ant-tabs-bottom-content>.ant-tabs-tabpane-inactive input,.ant-tabs .ant-tabs-top-content>.ant-tabs-tabpane-inactive input{visibility:hidden}.ant-tabs .ant-tabs-bottom-content.ant-tabs-content-animated,.ant-tabs .ant-tabs-top-content.ant-tabs-content-animated{display:flex;flex-direction:row;transition:margin-left .3s cubic-bezier(.645,.045,.355,1);will-change:margin-left}.ant-tabs .ant-tabs-left-bar,.ant-tabs .ant-tabs-right-bar{height:100%;border-bottom:0}.ant-tabs .ant-tabs-left-bar .ant-tabs-tab-arrow-show,.ant-tabs .ant-tabs-right-bar .ant-tabs-tab-arrow-show{width:100%;height:32px}.ant-tabs .ant-tabs-left-bar .ant-tabs-tab,.ant-tabs .ant-tabs-right-bar .ant-tabs-tab{display:block;float:none;margin:0 0 16px;padding:8px 24px}.ant-tabs .ant-tabs-left-bar .ant-tabs-tab:last-child,.ant-tabs .ant-tabs-right-bar .ant-tabs-tab:last-child{margin-bottom:0}.ant-tabs .ant-tabs-left-bar .ant-tabs-extra-content,.ant-tabs .ant-tabs-right-bar .ant-tabs-extra-content{text-align:center}.ant-tabs .ant-tabs-left-bar .ant-tabs-nav-scroll,.ant-tabs .ant-tabs-right-bar .ant-tabs-nav-scroll{width:auto}.ant-tabs .ant-tabs-left-bar .ant-tabs-nav-container,.ant-tabs .ant-tabs-left-bar .ant-tabs-nav-wrap,.ant-tabs .ant-tabs-right-bar .ant-tabs-nav-container,.ant-tabs .ant-tabs-right-bar .ant-tabs-nav-wrap{height:100%}.ant-tabs .ant-tabs-left-bar .ant-tabs-nav-container,.ant-tabs .ant-tabs-right-bar .ant-tabs-nav-container{margin-bottom:0}.ant-tabs .ant-tabs-left-bar .ant-tabs-nav-container.ant-tabs-nav-container-scrolling,.ant-tabs .ant-tabs-right-bar .ant-tabs-nav-container.ant-tabs-nav-container-scrolling{padding:32px 0}.ant-tabs .ant-tabs-left-bar .ant-tabs-nav-wrap,.ant-tabs .ant-tabs-right-bar .ant-tabs-nav-wrap{margin-bottom:0}.ant-tabs .ant-tabs-left-bar .ant-tabs-nav,.ant-tabs .ant-tabs-right-bar .ant-tabs-nav{width:100%}.ant-tabs .ant-tabs-left-bar .ant-tabs-ink-bar,.ant-tabs .ant-tabs-right-bar .ant-tabs-ink-bar{top:0;bottom:auto;left:auto;width:2px;height:0}.ant-tabs .ant-tabs-left-bar .ant-tabs-tab-next,.ant-tabs .ant-tabs-right-bar .ant-tabs-tab-next{right:0;bottom:0;width:100%;height:32px}.ant-tabs .ant-tabs-left-bar .ant-tabs-tab-prev,.ant-tabs .ant-tabs-right-bar .ant-tabs-tab-prev{top:0;width:100%;height:32px}.ant-tabs .ant-tabs-left-content,.ant-tabs .ant-tabs-right-content{width:auto;margin-top:0!important;overflow:hidden}.ant-tabs .ant-tabs-left-bar{float:left;margin-right:-1px;margin-bottom:0;border-right:1px solid #e8e8e8}.ant-tabs .ant-tabs-left-bar .ant-tabs-tab{text-align:right}.ant-tabs .ant-tabs-left-bar .ant-tabs-nav-container,.ant-tabs .ant-tabs-left-bar .ant-tabs-nav-wrap{margin-right:-1px}.ant-tabs .ant-tabs-left-bar .ant-tabs-ink-bar{right:1px}.ant-tabs .ant-tabs-left-content{padding-left:24px;border-left:1px solid #e8e8e8}.ant-tabs .ant-tabs-right-bar{float:right;margin-bottom:0;margin-left:-1px;border-left:1px solid #e8e8e8}.ant-tabs .ant-tabs-right-bar .ant-tabs-nav-container,.ant-tabs .ant-tabs-right-bar .ant-tabs-nav-wrap{margin-left:-1px}.ant-tabs .ant-tabs-right-bar .ant-tabs-ink-bar{left:1px}.ant-tabs .ant-tabs-right-content{padding-right:24px;border-right:1px solid #e8e8e8}.ant-tabs-bottom .ant-tabs-ink-bar-animated,.ant-tabs-top .ant-tabs-ink-bar-animated{transition:transform .3s cubic-bezier(.645,.045,.355,1),width .2s cubic-bezier(.645,.045,.355,1),left .3s cubic-bezier(.645,.045,.355,1)}.ant-tabs-left .ant-tabs-ink-bar-animated,.ant-tabs-right .ant-tabs-ink-bar-animated{transition:transform .3s cubic-bezier(.645,.045,.355,1),height .2s cubic-bezier(.645,.045,.355,1),top .3s cubic-bezier(.645,.045,.355,1)}.ant-tabs-no-animation>.ant-tabs-content>.ant-tabs-content-animated,.no-flex>.ant-tabs-content>.ant-tabs-content-animated{margin-left:0!important;transform:none!important}.ant-tabs-no-animation>.ant-tabs-content>.ant-tabs-tabpane-inactive,.no-flex>.ant-tabs-content>.ant-tabs-tabpane-inactive{height:0;padding:0!important;overflow:hidden;opacity:0;pointer-events:none}.ant-tabs-no-animation>.ant-tabs-content>.ant-tabs-tabpane-inactive input,.no-flex>.ant-tabs-content>.ant-tabs-tabpane-inactive input{visibility:hidden}.ant-tabs-left-content>.ant-tabs-content-animated,.ant-tabs-right-content>.ant-tabs-content-animated{margin-left:0!important;transform:none!important}.ant-tabs-left-content>.ant-tabs-tabpane-inactive,.ant-tabs-right-content>.ant-tabs-tabpane-inactive{height:0;padding:0!important;overflow:hidden;opacity:0;pointer-events:none}.ant-tabs-left-content>.ant-tabs-tabpane-inactive input,.ant-tabs-right-content>.ant-tabs-tabpane-inactive input{visibility:hidden}.ant-tag{box-sizing:border-box;color:rgba(0,0,0,.65);font-size:15px;font-variant:tabular-nums;line-height:1.5;list-style:none;font-feature-settings:"tnum";display:inline-block;height:auto;margin:0 8px 0 0;padding:0 7px;font-size:12px;line-height:20px;white-space:nowrap;background:#fafafa;border:1px solid #d9d9d9;border-radius:4px;cursor:default;opacity:1;transition:all .3s cubic-bezier(.78,.14,.15,.86)}.ant-tag:hover{opacity:.85}.ant-tag,.ant-tag a,.ant-tag a:hover{color:rgba(0,0,0,.65)}.ant-tag>a:first-child:last-child{display:inline-block;margin:0 -8px;padding:0 8px}.ant-tag .anticon-close{display:inline-block;font-size:12px;font-size:10px\9;transform:scale(.83333333) rotate(0deg);margin-left:3px;color:rgba(0,0,0,.45);font-weight:700;cursor:pointer;transition:all .3s cubic-bezier(.78,.14,.15,.86)}:root .ant-tag .anticon-close{font-size:12px}.ant-tag .anticon-close:hover{color:rgba(0,0,0,.85)}.ant-tag-has-color{border-color:transparent}.ant-tag-has-color,.ant-tag-has-color .anticon-close,.ant-tag-has-color .anticon-close:hover,.ant-tag-has-color a,.ant-tag-has-color a:hover{color:#fff}.ant-tag-checkable{background-color:transparent;border-color:transparent}.ant-tag-checkable:not(.ant-tag-checkable-checked):hover{color:#004691}.ant-tag-checkable-checked,.ant-tag-checkable:active{color:#fff}.ant-tag-checkable-checked{background-color:#004691}.ant-tag-checkable:active{background-color:#00306b}.ant-tag-hidden{display:none}.ant-tag-pink{color:#eb2f96;background:#fff0f6;border-color:#ffadd2}.ant-tag-pink-inverse{color:#fff;background:#eb2f96;border-color:#eb2f96}.ant-tag-magenta{color:#eb2f96;background:#fff0f6;border-color:#ffadd2}.ant-tag-magenta-inverse{color:#fff;background:#eb2f96;border-color:#eb2f96}.ant-tag-red{color:#f5222d;background:#fff1f0;border-color:#ffa39e}.ant-tag-red-inverse{color:#fff;background:#f5222d;border-color:#f5222d}.ant-tag-volcano{color:#fa541c;background:#fff2e8;border-color:#ffbb96}.ant-tag-volcano-inverse{color:#fff;background:#fa541c;border-color:#fa541c}.ant-tag-orange{color:#fa8c16;background:#fff7e6;border-color:#ffd591}.ant-tag-orange-inverse{color:#fff;background:#fa8c16;border-color:#fa8c16}.ant-tag-yellow{color:#fadb14;background:#feffe6;border-color:#fffb8f}.ant-tag-yellow-inverse{color:#fff;background:#fadb14;border-color:#fadb14}.ant-tag-gold{color:#faad14;background:#fffbe6;border-color:#ffe58f}.ant-tag-gold-inverse{color:#fff;background:#faad14;border-color:#faad14}.ant-tag-cyan{color:#13c2c2;background:#e6fffb;border-color:#87e8de}.ant-tag-cyan-inverse{color:#fff;background:#13c2c2;border-color:#13c2c2}.ant-tag-lime{color:#a0d911;background:#fcffe6;border-color:#eaff8f}.ant-tag-lime-inverse{color:#fff;background:#a0d911;border-color:#a0d911}.ant-tag-green{color:#52c41a;background:#f6ffed;border-color:#b7eb8f}.ant-tag-green-inverse{color:#fff;background:#52c41a;border-color:#52c41a}.ant-tag-blue{color:#1890ff;background:#e6f7ff;border-color:#91d5ff}.ant-tag-blue-inverse{color:#fff;background:#1890ff;border-color:#1890ff}.ant-tag-geekblue{color:#2f54eb;background:#f0f5ff;border-color:#adc6ff}.ant-tag-geekblue-inverse{color:#fff;background:#2f54eb;border-color:#2f54eb}.ant-tag-purple{color:#722ed1;background:#f9f0ff;border-color:#d3adf7}.ant-tag-purple-inverse{color:#fff;background:#722ed1;border-color:#722ed1}.ant-time-picker-panel{box-sizing:border-box;margin:0;padding:0;color:rgba(0,0,0,.65);font-size:15px;font-variant:tabular-nums;line-height:1.5;list-style:none;font-feature-settings:"tnum";position:absolute;z-index:1050;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,PingFang SC,Hiragino Sans GB,Microsoft YaHei,Helvetica Neue,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol}.ant-time-picker-panel-inner{position:relative;left:-2px;font-size:15px;text-align:left;list-style:none;background-color:#fff;background-clip:padding-box;border-radius:4px;outline:none;box-shadow:0 2px 8px rgba(0,0,0,.15)}.ant-time-picker-panel-input{width:100%;max-width:154px;margin:0;padding:0;line-height:normal;border:0;outline:0;cursor:auto}.ant-time-picker-panel-input::-moz-placeholder{color:#bfbfbf;opacity:1}.ant-time-picker-panel-input:-ms-input-placeholder{color:#bfbfbf}.ant-time-picker-panel-input::-webkit-input-placeholder{color:#bfbfbf}.ant-time-picker-panel-input:-moz-placeholder-shown{text-overflow:ellipsis}.ant-time-picker-panel-input:-ms-input-placeholder{text-overflow:ellipsis}.ant-time-picker-panel-input:placeholder-shown{text-overflow:ellipsis}.ant-time-picker-panel-input-wrap{position:relative;padding:7px 2px 7px 12px;border-bottom:1px solid #e8e8e8}.ant-time-picker-panel-input-invalid{border-color:#f5222d}.ant-time-picker-panel-narrow .ant-time-picker-panel-input-wrap{max-width:112px}.ant-time-picker-panel-select{position:relative;float:left;width:56px;max-height:192px;overflow:hidden;font-size:15px;border-left:1px solid #e8e8e8}.ant-time-picker-panel-select:hover{overflow-y:auto}.ant-time-picker-panel-select:first-child{margin-left:0;border-left:0}.ant-time-picker-panel-select:last-child{border-right:0}.ant-time-picker-panel-select:only-child{width:100%}.ant-time-picker-panel-select ul{width:56px;margin:0;padding:0 0 160px;list-style:none}.ant-time-picker-panel-select li{width:100%;height:32px;margin:0;padding:0 0 0 12px;line-height:32px;text-align:left;list-style:none;cursor:pointer;transition:all .3s;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.ant-time-picker-panel-select li:focus{color:#004691;font-weight:600;outline:none}.ant-time-picker-panel-select li:hover{background:#bccad1}li.ant-time-picker-panel-select-option-selected{font-weight:600;background:#f5f5f5}li.ant-time-picker-panel-select-option-selected:hover{background:#f5f5f5}li.ant-time-picker-panel-select-option-disabled{color:rgba(0,0,0,.25)}li.ant-time-picker-panel-select-option-disabled:hover{background:transparent;cursor:not-allowed}li.ant-time-picker-panel-select-option-disabled:focus{color:rgba(0,0,0,.25);font-weight:inherit}.ant-time-picker-panel-combobox{zoom:1}.ant-time-picker-panel-combobox:after,.ant-time-picker-panel-combobox:before{display:table;content:""}.ant-time-picker-panel-combobox:after{clear:both}.ant-time-picker-panel-addon{padding:8px;border-top:1px solid #e8e8e8}.ant-time-picker-panel.slide-up-appear.slide-up-appear-active.ant-time-picker-panel-placement-topLeft,.ant-time-picker-panel.slide-up-appear.slide-up-appear-active.ant-time-picker-panel-placement-topRight,.ant-time-picker-panel.slide-up-enter.slide-up-enter-active.ant-time-picker-panel-placement-topLeft,.ant-time-picker-panel.slide-up-enter.slide-up-enter-active.ant-time-picker-panel-placement-topRight{-webkit-animation-name:antSlideDownIn;animation-name:antSlideDownIn}.ant-time-picker-panel.slide-up-appear.slide-up-appear-active.ant-time-picker-panel-placement-bottomLeft,.ant-time-picker-panel.slide-up-appear.slide-up-appear-active.ant-time-picker-panel-placement-bottomRight,.ant-time-picker-panel.slide-up-enter.slide-up-enter-active.ant-time-picker-panel-placement-bottomLeft,.ant-time-picker-panel.slide-up-enter.slide-up-enter-active.ant-time-picker-panel-placement-bottomRight{-webkit-animation-name:antSlideUpIn;animation-name:antSlideUpIn}.ant-time-picker-panel.slide-up-leave.slide-up-leave-active.ant-time-picker-panel-placement-topLeft,.ant-time-picker-panel.slide-up-leave.slide-up-leave-active.ant-time-picker-panel-placement-topRight{-webkit-animation-name:antSlideDownOut;animation-name:antSlideDownOut}.ant-time-picker-panel.slide-up-leave.slide-up-leave-active.ant-time-picker-panel-placement-bottomLeft,.ant-time-picker-panel.slide-up-leave.slide-up-leave-active.ant-time-picker-panel-placement-bottomRight{-webkit-animation-name:antSlideUpOut;animation-name:antSlideUpOut}.ant-time-picker{box-sizing:border-box;margin:0;padding:0;font-size:15px;font-variant:tabular-nums;list-style:none;font-feature-settings:"tnum";width:128px;outline:none;cursor:text;transition:opacity .3s}.ant-time-picker,.ant-time-picker-input{color:rgba(0,0,0,.65);line-height:1.5;position:relative;display:inline-block}.ant-time-picker-input{width:100%;height:32px;padding:4px 11px;font-size:15px;background-color:#fff;background-image:none;border:1px solid #d9d9d9;border-radius:4px;transition:all .3s}.ant-time-picker-input::-moz-placeholder{color:#bfbfbf;opacity:1}.ant-time-picker-input:-ms-input-placeholder{color:#bfbfbf}.ant-time-picker-input::-webkit-input-placeholder{color:#bfbfbf}.ant-time-picker-input:-moz-placeholder-shown{text-overflow:ellipsis}.ant-time-picker-input:-ms-input-placeholder{text-overflow:ellipsis}.ant-time-picker-input:placeholder-shown{text-overflow:ellipsis}.ant-time-picker-input:focus,.ant-time-picker-input:hover{border-color:#195e9e;border-right-width:1px!important}.ant-time-picker-input:focus{outline:0;box-shadow:0 0 0 2px rgba(0,70,145,.2)}.ant-time-picker-input-disabled{color:rgba(0,0,0,.25);background-color:#f5f5f5;cursor:not-allowed;opacity:1}.ant-time-picker-input-disabled:hover{border-color:#d9d9d9;border-right-width:1px!important}textarea.ant-time-picker-input{max-width:100%;height:auto;min-height:32px;line-height:1.5;vertical-align:bottom;transition:all .3s,height 0s}.ant-time-picker-input-lg{height:40px;padding:6px 11px;font-size:17px}.ant-time-picker-input-sm{height:24px;padding:1px 7px}.ant-time-picker-input[disabled]{color:rgba(0,0,0,.25);background-color:#f5f5f5;cursor:not-allowed;opacity:1}.ant-time-picker-input[disabled]:hover{border-color:#d9d9d9;border-right-width:1px!important}.ant-time-picker-open{opacity:0}.ant-time-picker-clear,.ant-time-picker-icon{position:absolute;top:50%;right:11px;z-index:1;width:14px;height:14px;margin-top:-7px;color:rgba(0,0,0,.25);line-height:14px;transition:all .3s cubic-bezier(.645,.045,.355,1);-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.ant-time-picker-clear .ant-time-picker-clock-icon,.ant-time-picker-icon .ant-time-picker-clock-icon{display:block;color:rgba(0,0,0,.25);line-height:1}.ant-time-picker-clear{z-index:2;background:#fff;opacity:0;pointer-events:none}.ant-time-picker-clear:hover{color:rgba(0,0,0,.45)}.ant-time-picker:hover .ant-time-picker-clear{opacity:1;pointer-events:auto}.ant-time-picker-large .ant-time-picker-input{height:40px;padding:6px 11px;font-size:17px}.ant-time-picker-small .ant-time-picker-input{height:24px;padding:1px 7px}.ant-time-picker-small .ant-time-picker-clear,.ant-time-picker-small .ant-time-picker-icon{right:7px}@media not all and (-webkit-min-device-pixel-ratio:0), not all and (min-resolution:0.001dpcm){@supports (-webkit-appearance:none) and (stroke-color:transparent){.ant-input{line-height:1.5}}}.ant-timeline{box-sizing:border-box;color:rgba(0,0,0,.65);font-size:15px;font-variant:tabular-nums;line-height:1.5;font-feature-settings:"tnum";margin:0;padding:0;list-style:none}.ant-timeline-item{position:relative;margin:0;padding:0 0 20px;font-size:15px;list-style:none}.ant-timeline-item-tail{position:absolute;top:10px;left:4px;height:calc(100% - 10px);border-left:2px solid #e8e8e8}.ant-timeline-item-pending .ant-timeline-item-head{font-size:12px;background-color:transparent}.ant-timeline-item-pending .ant-timeline-item-tail{display:none}.ant-timeline-item-head{position:absolute;width:10px;height:10px;background-color:#fff;border:2px solid transparent;border-radius:100px}.ant-timeline-item-head-blue{color:#004691;border-color:#004691}.ant-timeline-item-head-red{color:#f5222d;border-color:#f5222d}.ant-timeline-item-head-green{color:#52c41a;border-color:#52c41a}.ant-timeline-item-head-gray{color:rgba(0,0,0,.25);border-color:rgba(0,0,0,.25)}.ant-timeline-item-head-custom{position:absolute;top:5.5px;left:5px;width:auto;height:auto;margin-top:0;padding:3px 1px;line-height:1;text-align:center;border:0;border-radius:0;transform:translate(-50%,-50%)}.ant-timeline-item-content{position:relative;top:-6.5px;margin:0 0 0 18px;word-break:break-word}.ant-timeline-item-last>.ant-timeline-item-tail{display:none}.ant-timeline-item-last>.ant-timeline-item-content{min-height:48px}.ant-timeline.ant-timeline-alternate .ant-timeline-item-head,.ant-timeline.ant-timeline-alternate .ant-timeline-item-head-custom,.ant-timeline.ant-timeline-alternate .ant-timeline-item-tail,.ant-timeline.ant-timeline-right .ant-timeline-item-head,.ant-timeline.ant-timeline-right .ant-timeline-item-head-custom,.ant-timeline.ant-timeline-right .ant-timeline-item-tail{left:50%}.ant-timeline.ant-timeline-alternate .ant-timeline-item-head,.ant-timeline.ant-timeline-right .ant-timeline-item-head{margin-left:-4px}.ant-timeline.ant-timeline-alternate .ant-timeline-item-head-custom,.ant-timeline.ant-timeline-right .ant-timeline-item-head-custom{margin-left:1px}.ant-timeline.ant-timeline-alternate .ant-timeline-item-left .ant-timeline-item-content,.ant-timeline.ant-timeline-right .ant-timeline-item-left .ant-timeline-item-content{left:calc(50% - 4px);width:calc(50% - 14px);text-align:left}.ant-timeline.ant-timeline-alternate .ant-timeline-item-right .ant-timeline-item-content,.ant-timeline.ant-timeline-right .ant-timeline-item-right .ant-timeline-item-content{width:calc(50% - 12px);margin:0;text-align:right}.ant-timeline.ant-timeline-right .ant-timeline-item-right .ant-timeline-item-head,.ant-timeline.ant-timeline-right .ant-timeline-item-right .ant-timeline-item-head-custom,.ant-timeline.ant-timeline-right .ant-timeline-item-right .ant-timeline-item-tail{left:calc(100% - 6px)}.ant-timeline.ant-timeline-right .ant-timeline-item-right .ant-timeline-item-content{width:calc(100% - 18px)}.ant-timeline.ant-timeline-pending .ant-timeline-item-last .ant-timeline-item-tail{display:block;height:calc(100% - 14px);border-left:2px dotted #e8e8e8}.ant-timeline.ant-timeline-reverse .ant-timeline-item-last .ant-timeline-item-tail{display:none}.ant-timeline.ant-timeline-reverse .ant-timeline-item-pending .ant-timeline-item-tail{top:15px;display:block;height:calc(100% - 15px);border-left:2px dotted #e8e8e8}.ant-timeline.ant-timeline-reverse .ant-timeline-item-pending .ant-timeline-item-content{min-height:48px}.ant-tooltip{box-sizing:border-box;margin:0;padding:0;color:rgba(0,0,0,.65);font-size:15px;font-variant:tabular-nums;line-height:1.5;list-style:none;font-feature-settings:"tnum";position:absolute;z-index:1060;display:block;max-width:250px;visibility:visible}.ant-tooltip-hidden{display:none}.ant-tooltip-placement-top,.ant-tooltip-placement-topLeft,.ant-tooltip-placement-topRight{padding-bottom:8px}.ant-tooltip-placement-right,.ant-tooltip-placement-rightBottom,.ant-tooltip-placement-rightTop{padding-left:8px}.ant-tooltip-placement-bottom,.ant-tooltip-placement-bottomLeft,.ant-tooltip-placement-bottomRight{padding-top:8px}.ant-tooltip-placement-left,.ant-tooltip-placement-leftBottom,.ant-tooltip-placement-leftTop{padding-right:8px}.ant-tooltip-inner{min-width:30px;min-height:32px;padding:6px 8px;color:#fff;text-align:left;text-decoration:none;word-wrap:break-word;background-color:rgba(0,0,0,.75);border-radius:4px;box-shadow:0 2px 8px rgba(0,0,0,.15)}.ant-tooltip-arrow{position:absolute;display:block;width:13.07106781px;height:13.07106781px;overflow:hidden;background:transparent;pointer-events:none}.ant-tooltip-arrow:before{position:absolute;top:0;right:0;bottom:0;left:0;display:block;width:5px;height:5px;margin:auto;background-color:rgba(0,0,0,.75);content:"";pointer-events:auto}.ant-tooltip-placement-top .ant-tooltip-arrow,.ant-tooltip-placement-topLeft .ant-tooltip-arrow,.ant-tooltip-placement-topRight .ant-tooltip-arrow{bottom:-5.07106781px}.ant-tooltip-placement-top .ant-tooltip-arrow:before,.ant-tooltip-placement-topLeft .ant-tooltip-arrow:before,.ant-tooltip-placement-topRight .ant-tooltip-arrow:before{box-shadow:3px 3px 7px rgba(0,0,0,.07);transform:translateY(-6.53553391px) rotate(45deg)}.ant-tooltip-placement-top .ant-tooltip-arrow{left:50%;transform:translateX(-50%)}.ant-tooltip-placement-topLeft .ant-tooltip-arrow{left:13px}.ant-tooltip-placement-topRight .ant-tooltip-arrow{right:13px}.ant-tooltip-placement-right .ant-tooltip-arrow,.ant-tooltip-placement-rightBottom .ant-tooltip-arrow,.ant-tooltip-placement-rightTop .ant-tooltip-arrow{left:-5.07106781px}.ant-tooltip-placement-right .ant-tooltip-arrow:before,.ant-tooltip-placement-rightBottom .ant-tooltip-arrow:before,.ant-tooltip-placement-rightTop .ant-tooltip-arrow:before{box-shadow:-3px 3px 7px rgba(0,0,0,.07);transform:translateX(6.53553391px) rotate(45deg)}.ant-tooltip-placement-right .ant-tooltip-arrow{top:50%;transform:translateY(-50%)}.ant-tooltip-placement-rightTop .ant-tooltip-arrow{top:5px}.ant-tooltip-placement-rightBottom .ant-tooltip-arrow{bottom:5px}.ant-tooltip-placement-left .ant-tooltip-arrow,.ant-tooltip-placement-leftBottom .ant-tooltip-arrow,.ant-tooltip-placement-leftTop .ant-tooltip-arrow{right:-5.07106781px}.ant-tooltip-placement-left .ant-tooltip-arrow:before,.ant-tooltip-placement-leftBottom .ant-tooltip-arrow:before,.ant-tooltip-placement-leftTop .ant-tooltip-arrow:before{box-shadow:3px -3px 7px rgba(0,0,0,.07);transform:translateX(-6.53553391px) rotate(45deg)}.ant-tooltip-placement-left .ant-tooltip-arrow{top:50%;transform:translateY(-50%)}.ant-tooltip-placement-leftTop .ant-tooltip-arrow{top:5px}.ant-tooltip-placement-leftBottom .ant-tooltip-arrow{bottom:5px}.ant-tooltip-placement-bottom .ant-tooltip-arrow,.ant-tooltip-placement-bottomLeft .ant-tooltip-arrow,.ant-tooltip-placement-bottomRight .ant-tooltip-arrow{top:-5.07106781px}.ant-tooltip-placement-bottom .ant-tooltip-arrow:before,.ant-tooltip-placement-bottomLeft .ant-tooltip-arrow:before,.ant-tooltip-placement-bottomRight .ant-tooltip-arrow:before{box-shadow:-3px -3px 7px rgba(0,0,0,.07);transform:translateY(6.53553391px) rotate(45deg)}.ant-tooltip-placement-bottom .ant-tooltip-arrow{left:50%;transform:translateX(-50%)}.ant-tooltip-placement-bottomLeft .ant-tooltip-arrow{left:13px}.ant-tooltip-placement-bottomRight .ant-tooltip-arrow{right:13px}.ant-transfer-customize-list{display:flex}.ant-transfer-customize-list .ant-transfer-operation{flex:none;align-self:center}.ant-transfer-customize-list .ant-transfer-list{flex:auto;width:auto;height:auto;min-height:200px}.ant-transfer-customize-list .ant-transfer-list-body-with-search{padding-top:0}.ant-transfer-customize-list .ant-transfer-list-body-search-wrapper{position:relative;padding-bottom:0}.ant-transfer-customize-list .ant-transfer-list-body-customize-wrapper{padding:12px}.ant-transfer-customize-list .ant-table-wrapper .ant-table-small{border:0;border-radius:0}.ant-transfer-customize-list .ant-table-wrapper .ant-table-small>.ant-table-content>.ant-table-body>table>.ant-table-thead>tr>th{background:#fafafa}.ant-transfer-customize-list .ant-table-wrapper .ant-table-small>.ant-table-content .ant-table-row:last-child td{border-bottom:1px solid #e8e8e8}.ant-transfer-customize-list .ant-table-wrapper .ant-table-small .ant-table-body{margin:0}.ant-transfer-customize-list .ant-table-wrapper .ant-table-pagination.ant-pagination{margin:16px 0 4px}.ant-transfer{box-sizing:border-box;margin:0;padding:0;color:rgba(0,0,0,.65);font-size:15px;font-variant:tabular-nums;line-height:1.5;list-style:none;font-feature-settings:"tnum";position:relative}.ant-transfer-disabled .ant-transfer-list{background:#f5f5f5}.ant-transfer-list{position:relative;display:inline-block;width:180px;height:200px;padding-top:40px;vertical-align:middle;border:1px solid #d9d9d9;border-radius:4px}.ant-transfer-list-with-footer{padding-bottom:34px}.ant-transfer-list-search{padding:0 24px 0 8px}.ant-transfer-list-search-action{position:absolute;top:12px;right:12px;bottom:12px;width:28px;color:rgba(0,0,0,.25);line-height:32px;text-align:center}.ant-transfer-list-search-action .anticon{color:rgba(0,0,0,.25);transition:all .3s}.ant-transfer-list-search-action .anticon:hover{color:rgba(0,0,0,.45)}span.ant-transfer-list-search-action{pointer-events:none}.ant-transfer-list-header{position:absolute;top:0;left:0;width:100%;padding:7.25px 12px 8.25px;overflow:hidden;color:rgba(0,0,0,.65);background:#fff;border-bottom:1px solid #e8e8e8;border-radius:4px 4px 0 0}.ant-transfer-list-header-title{position:absolute;right:12px}.ant-transfer-list-header .ant-checkbox-wrapper+span{padding-left:8px}.ant-transfer-list-body{position:relative;height:100%;font-size:15px}.ant-transfer-list-body-search-wrapper{position:absolute;top:0;left:0;width:100%;padding:12px}.ant-transfer-list-body-with-search{padding-top:56px}.ant-transfer-list-content{height:100%;margin:0;padding:0;overflow:auto;list-style:none}.ant-transfer-list-content>.LazyLoad{-webkit-animation:transferHighlightIn 1s;animation:transferHighlightIn 1s}.ant-transfer-list-content-item{min-height:32px;padding:6px 12px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;transition:all .3s}.ant-transfer-list-content-item>span{padding-right:0}.ant-transfer-list-content-item-text{padding-left:8px}.ant-transfer-list-content-item:not(.ant-transfer-list-content-item-disabled):hover{background-color:#bccad1;cursor:pointer}.ant-transfer-list-content-item-disabled{color:rgba(0,0,0,.25);cursor:not-allowed}.ant-transfer-list-body-not-found{position:absolute;top:50%;width:100%;padding-top:0;color:rgba(0,0,0,.25);text-align:center;transform:translateY(-50%)}.ant-transfer-list-body-with-search .ant-transfer-list-body-not-found{margin-top:16px}.ant-transfer-list-footer{position:absolute;bottom:0;left:0;width:100%;border-top:1px solid #e8e8e8;border-radius:0 0 4px 4px}.ant-transfer-operation{display:inline-block;margin:0 8px;overflow:hidden;vertical-align:middle}.ant-transfer-operation .ant-btn{display:block}.ant-transfer-operation .ant-btn:first-child{margin-bottom:4px}.ant-transfer-operation .ant-btn .anticon{font-size:12px}@-webkit-keyframes transferHighlightIn{0%{background:#7ea9c4}to{background:transparent}}@keyframes transferHighlightIn{0%{background:#7ea9c4}to{background:transparent}}.ant-tree.ant-tree-directory{position:relative}.ant-tree.ant-tree-directory .ant-tree-child-tree>li span.ant-tree-switcher,.ant-tree.ant-tree-directory>li span.ant-tree-switcher{position:relative;z-index:1}.ant-tree.ant-tree-directory .ant-tree-child-tree>li span.ant-tree-switcher.ant-tree-switcher-noop,.ant-tree.ant-tree-directory>li span.ant-tree-switcher.ant-tree-switcher-noop{pointer-events:none}.ant-tree.ant-tree-directory .ant-tree-child-tree>li span.ant-tree-checkbox,.ant-tree.ant-tree-directory>li span.ant-tree-checkbox{position:relative;z-index:1}.ant-tree.ant-tree-directory .ant-tree-child-tree>li span.ant-tree-node-content-wrapper,.ant-tree.ant-tree-directory>li span.ant-tree-node-content-wrapper{border-radius:0;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.ant-tree.ant-tree-directory .ant-tree-child-tree>li span.ant-tree-node-content-wrapper:hover,.ant-tree.ant-tree-directory>li span.ant-tree-node-content-wrapper:hover{background:transparent}.ant-tree.ant-tree-directory .ant-tree-child-tree>li span.ant-tree-node-content-wrapper:hover:before,.ant-tree.ant-tree-directory>li span.ant-tree-node-content-wrapper:hover:before{background:#bccad1}.ant-tree.ant-tree-directory .ant-tree-child-tree>li span.ant-tree-node-content-wrapper.ant-tree-node-selected,.ant-tree.ant-tree-directory>li span.ant-tree-node-content-wrapper.ant-tree-node-selected{color:#fff;background:transparent}.ant-tree.ant-tree-directory .ant-tree-child-tree>li span.ant-tree-node-content-wrapper:before,.ant-tree.ant-tree-directory>li span.ant-tree-node-content-wrapper:before{position:absolute;right:0;left:0;height:24px;transition:all .3s;content:""}.ant-tree.ant-tree-directory .ant-tree-child-tree>li span.ant-tree-node-content-wrapper>span,.ant-tree.ant-tree-directory>li span.ant-tree-node-content-wrapper>span{position:relative;z-index:1}.ant-tree.ant-tree-directory .ant-tree-child-tree>li.ant-tree-treenode-selected>span.ant-tree-switcher,.ant-tree.ant-tree-directory>li.ant-tree-treenode-selected>span.ant-tree-switcher{color:#fff}.ant-tree.ant-tree-directory .ant-tree-child-tree>li.ant-tree-treenode-selected>span.ant-tree-checkbox .ant-tree-checkbox-inner,.ant-tree.ant-tree-directory>li.ant-tree-treenode-selected>span.ant-tree-checkbox .ant-tree-checkbox-inner{border-color:#004691}.ant-tree.ant-tree-directory .ant-tree-child-tree>li.ant-tree-treenode-selected>span.ant-tree-checkbox.ant-tree-checkbox-checked:after,.ant-tree.ant-tree-directory>li.ant-tree-treenode-selected>span.ant-tree-checkbox.ant-tree-checkbox-checked:after{border-color:#fff}.ant-tree.ant-tree-directory .ant-tree-child-tree>li.ant-tree-treenode-selected>span.ant-tree-checkbox.ant-tree-checkbox-checked .ant-tree-checkbox-inner,.ant-tree.ant-tree-directory>li.ant-tree-treenode-selected>span.ant-tree-checkbox.ant-tree-checkbox-checked .ant-tree-checkbox-inner{background:#fff}.ant-tree.ant-tree-directory .ant-tree-child-tree>li.ant-tree-treenode-selected>span.ant-tree-checkbox.ant-tree-checkbox-checked .ant-tree-checkbox-inner:after,.ant-tree.ant-tree-directory>li.ant-tree-treenode-selected>span.ant-tree-checkbox.ant-tree-checkbox-checked .ant-tree-checkbox-inner:after{border-color:#004691}.ant-tree.ant-tree-directory .ant-tree-child-tree>li.ant-tree-treenode-selected>span.ant-tree-node-content-wrapper:before,.ant-tree.ant-tree-directory>li.ant-tree-treenode-selected>span.ant-tree-node-content-wrapper:before{background:#004691}.ant-tree-checkbox{box-sizing:border-box;margin:0;padding:0;color:rgba(0,0,0,.65);font-size:15px;font-variant:tabular-nums;line-height:1.5;list-style:none;font-feature-settings:"tnum";position:relative;top:-.09em;display:inline-block;line-height:1;white-space:nowrap;vertical-align:middle;outline:none;cursor:pointer}.ant-tree-checkbox-input:focus+.ant-tree-checkbox-inner,.ant-tree-checkbox-wrapper:hover .ant-tree-checkbox-inner,.ant-tree-checkbox:hover .ant-tree-checkbox-inner{border-color:#004691}.ant-tree-checkbox-checked:after{top:0;height:100%;border:1px solid #004691;border-radius:2px;visibility:hidden;-webkit-animation:antCheckboxEffect .36s ease-in-out;animation:antCheckboxEffect .36s ease-in-out;-webkit-animation-fill-mode:backwards;animation-fill-mode:backwards;content:""}.ant-tree-checkbox-wrapper:hover .ant-tree-checkbox:after,.ant-tree-checkbox:hover:after{visibility:visible}.ant-tree-checkbox-inner{position:relative;top:0;left:0;display:block;width:16px;height:16px;background-color:#fff;border:1px solid #d9d9d9;border-radius:2px;border-collapse:separate;transition:all .3s}.ant-tree-checkbox-inner:after{position:absolute;top:50%;left:22%;display:table;width:5.71428571px;height:9.14285714px;border:2px solid #fff;border-top:0;border-left:0;transform:rotate(45deg) scale(0) translate(-50%,-50%);opacity:0;transition:all .1s cubic-bezier(.71,-.46,.88,.6),opacity .1s;content:" "}.ant-tree-checkbox-input{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;width:100%;height:100%;cursor:pointer;opacity:0}.ant-tree-checkbox-checked .ant-tree-checkbox-inner:after{position:absolute;display:table;border:2px solid #fff;border-top:0;border-left:0;transform:rotate(45deg) scale(1) translate(-50%,-50%);opacity:1;transition:all .2s cubic-bezier(.12,.4,.29,1.46) .1s;content:" "}.ant-tree-checkbox-checked .ant-tree-checkbox-inner{background-color:#004691;border-color:#004691}.ant-tree-checkbox-disabled{cursor:not-allowed}.ant-tree-checkbox-disabled.ant-tree-checkbox-checked .ant-tree-checkbox-inner:after{border-color:rgba(0,0,0,.25);-webkit-animation-name:none;animation-name:none}.ant-tree-checkbox-disabled .ant-tree-checkbox-input{cursor:not-allowed}.ant-tree-checkbox-disabled .ant-tree-checkbox-inner{background-color:#f5f5f5;border-color:#d9d9d9!important}.ant-tree-checkbox-disabled .ant-tree-checkbox-inner:after{border-color:#f5f5f5;border-collapse:separate;-webkit-animation-name:none;animation-name:none}.ant-tree-checkbox-disabled+span{color:rgba(0,0,0,.25);cursor:not-allowed}.ant-tree-checkbox-disabled:hover:after,.ant-tree-checkbox-wrapper:hover .ant-tree-checkbox-disabled:after{visibility:hidden}.ant-tree-checkbox-wrapper{box-sizing:border-box;margin:0;padding:0;color:rgba(0,0,0,.65);font-size:15px;font-variant:tabular-nums;line-height:1.5;list-style:none;font-feature-settings:"tnum";display:inline-block;line-height:unset;cursor:pointer}.ant-tree-checkbox-wrapper.ant-tree-checkbox-wrapper-disabled{cursor:not-allowed}.ant-tree-checkbox-wrapper+.ant-tree-checkbox-wrapper{margin-left:8px}.ant-tree-checkbox+span{padding-right:8px;padding-left:8px}.ant-tree-checkbox-group{box-sizing:border-box;margin:0;padding:0;color:rgba(0,0,0,.65);font-size:15px;font-variant:tabular-nums;line-height:1.5;list-style:none;font-feature-settings:"tnum";display:inline-block}.ant-tree-checkbox-group-item{display:inline-block;margin-right:8px}.ant-tree-checkbox-group-item:last-child{margin-right:0}.ant-tree-checkbox-group-item+.ant-tree-checkbox-group-item{margin-left:0}.ant-tree-checkbox-indeterminate .ant-tree-checkbox-inner{background-color:#fff;border-color:#d9d9d9}.ant-tree-checkbox-indeterminate .ant-tree-checkbox-inner:after{top:50%;left:50%;width:8px;height:8px;background-color:#004691;border:0;transform:translate(-50%,-50%) scale(1);opacity:1;content:" "}.ant-tree-checkbox-indeterminate.ant-tree-checkbox-disabled .ant-tree-checkbox-inner:after{background-color:rgba(0,0,0,.25);border-color:rgba(0,0,0,.25)}.ant-tree{box-sizing:border-box;color:rgba(0,0,0,.65);font-size:15px;font-variant:tabular-nums;line-height:1.5;list-style:none;font-feature-settings:"tnum";margin:0;padding:0}.ant-tree-checkbox-checked:after{position:absolute;top:16.67%;left:0;width:100%;height:66.67%}.ant-tree ol,.ant-tree ul{margin:0;padding:0;list-style:none}.ant-tree li{margin:0;padding:4px 0;white-space:nowrap;list-style:none;outline:0}.ant-tree li span[draggable=true],.ant-tree li span[draggable]{line-height:20px;border-top:2px solid transparent;border-bottom:2px solid transparent;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-khtml-user-drag:element;-webkit-user-drag:element}.ant-tree li.drag-over>span[draggable]{color:#fff;background-color:#004691;opacity:.8}.ant-tree li.drag-over-gap-top>span[draggable]{border-top-color:#004691}.ant-tree li.drag-over-gap-bottom>span[draggable]{border-bottom-color:#004691}.ant-tree li.filter-node>span{color:#f5222d!important;font-weight:500!important}.ant-tree li.ant-tree-treenode-loading span.ant-tree-switcher.ant-tree-switcher_close .ant-tree-switcher-loading-icon,.ant-tree li.ant-tree-treenode-loading span.ant-tree-switcher.ant-tree-switcher_open .ant-tree-switcher-loading-icon{position:absolute;left:0;display:inline-block;width:24px;height:24px;color:#004691;font-size:14px;transform:none}.ant-tree li.ant-tree-treenode-loading span.ant-tree-switcher.ant-tree-switcher_close .ant-tree-switcher-loading-icon svg,.ant-tree li.ant-tree-treenode-loading span.ant-tree-switcher.ant-tree-switcher_open .ant-tree-switcher-loading-icon svg{position:absolute;top:0;right:0;bottom:0;left:0;margin:auto}:root .ant-tree li.ant-tree-treenode-loading span.ant-tree-switcher.ant-tree-switcher_close:after,:root .ant-tree li.ant-tree-treenode-loading span.ant-tree-switcher.ant-tree-switcher_open:after{opacity:0}.ant-tree li ul{margin:0;padding:0 0 0 18px}.ant-tree li .ant-tree-node-content-wrapper{display:inline-block;height:24px;margin:0;padding:0 5px;color:rgba(0,0,0,.65);line-height:24px;text-decoration:none;vertical-align:top;border-radius:2px;cursor:pointer;transition:all .3s}.ant-tree li .ant-tree-node-content-wrapper:hover{background-color:#bccad1}.ant-tree li .ant-tree-node-content-wrapper.ant-tree-node-selected{background-color:#7ea9c4}.ant-tree li span.ant-tree-checkbox{top:auto;height:24px;margin:0 4px 0 2px;padding:4px 0}.ant-tree li span.ant-tree-iconEle,.ant-tree li span.ant-tree-switcher{display:inline-block;width:24px;height:24px;margin:0;line-height:24px;text-align:center;vertical-align:top;border:0;outline:none;cursor:pointer}.ant-tree li span.ant-tree-iconEle:empty{display:none}.ant-tree li span.ant-tree-switcher{position:relative}.ant-tree li span.ant-tree-switcher.ant-tree-switcher-noop{cursor:default}.ant-tree li span.ant-tree-switcher.ant-tree-switcher_open .ant-select-switcher-icon,.ant-tree li span.ant-tree-switcher.ant-tree-switcher_open .ant-tree-switcher-icon{font-size:12px;font-size:10px\9;transform:scale(.83333333) rotate(0deg);display:inline-block;font-weight:700}:root .ant-tree li span.ant-tree-switcher.ant-tree-switcher_open .ant-select-switcher-icon,:root .ant-tree li span.ant-tree-switcher.ant-tree-switcher_open .ant-tree-switcher-icon{font-size:12px}.ant-tree li span.ant-tree-switcher.ant-tree-switcher_open .ant-select-switcher-icon svg,.ant-tree li span.ant-tree-switcher.ant-tree-switcher_open .ant-tree-switcher-icon svg{transition:transform .3s}.ant-tree li span.ant-tree-switcher.ant-tree-switcher_close .ant-select-switcher-icon,.ant-tree li span.ant-tree-switcher.ant-tree-switcher_close .ant-tree-switcher-icon{font-size:12px;font-size:10px\9;transform:scale(.83333333) rotate(0deg);display:inline-block;font-weight:700}:root .ant-tree li span.ant-tree-switcher.ant-tree-switcher_close .ant-select-switcher-icon,:root .ant-tree li span.ant-tree-switcher.ant-tree-switcher_close .ant-tree-switcher-icon{font-size:12px}.ant-tree li span.ant-tree-switcher.ant-tree-switcher_close .ant-select-switcher-icon svg,.ant-tree li span.ant-tree-switcher.ant-tree-switcher_close .ant-tree-switcher-icon svg{transition:transform .3s}.ant-tree li span.ant-tree-switcher.ant-tree-switcher_close .ant-tree-switcher-icon svg{transform:rotate(-90deg)}.ant-tree li:last-child>span.ant-tree-iconEle:before,.ant-tree li:last-child>span.ant-tree-switcher:before{display:none}.ant-tree>li:first-child{padding-top:7px}.ant-tree>li:last-child{padding-bottom:7px}.ant-tree-child-tree>li:first-child{padding-top:8px}.ant-tree-child-tree>li:last-child{padding-bottom:0}li.ant-tree-treenode-disabled>.ant-tree-node-content-wrapper,li.ant-tree-treenode-disabled>.ant-tree-node-content-wrapper span,li.ant-tree-treenode-disabled>span:not(.ant-tree-switcher){color:rgba(0,0,0,.25);cursor:not-allowed}li.ant-tree-treenode-disabled>.ant-tree-node-content-wrapper:hover{background:transparent}.ant-tree-icon__close,.ant-tree-icon__open{margin-right:2px;vertical-align:top}.ant-tree.ant-tree-show-line li{position:relative}.ant-tree.ant-tree-show-line li span.ant-tree-switcher{color:rgba(0,0,0,.45);background:#fff}.ant-tree.ant-tree-show-line li span.ant-tree-switcher.ant-tree-switcher-noop .ant-select-switcher-icon,.ant-tree.ant-tree-show-line li span.ant-tree-switcher.ant-tree-switcher-noop .ant-tree-switcher-icon{display:inline-block;font-weight:400;font-size:12px}.ant-tree.ant-tree-show-line li span.ant-tree-switcher.ant-tree-switcher-noop .ant-select-switcher-icon svg,.ant-tree.ant-tree-show-line li span.ant-tree-switcher.ant-tree-switcher-noop .ant-tree-switcher-icon svg{transition:transform .3s}.ant-tree.ant-tree-show-line li span.ant-tree-switcher.ant-tree-switcher_open .ant-select-switcher-icon,.ant-tree.ant-tree-show-line li span.ant-tree-switcher.ant-tree-switcher_open .ant-tree-switcher-icon{display:inline-block;font-weight:400;font-size:12px}.ant-tree.ant-tree-show-line li span.ant-tree-switcher.ant-tree-switcher_open .ant-select-switcher-icon svg,.ant-tree.ant-tree-show-line li span.ant-tree-switcher.ant-tree-switcher_open .ant-tree-switcher-icon svg{transition:transform .3s}.ant-tree.ant-tree-show-line li span.ant-tree-switcher.ant-tree-switcher_close .ant-select-switcher-icon,.ant-tree.ant-tree-show-line li span.ant-tree-switcher.ant-tree-switcher_close .ant-tree-switcher-icon{display:inline-block;font-weight:400;font-size:12px}.ant-tree.ant-tree-show-line li span.ant-tree-switcher.ant-tree-switcher_close .ant-select-switcher-icon svg,.ant-tree.ant-tree-show-line li span.ant-tree-switcher.ant-tree-switcher_close .ant-tree-switcher-icon svg{transition:transform .3s}.ant-tree.ant-tree-show-line li:not(:last-child):before{position:absolute;left:12px;width:1px;height:100%;height:calc(100% - 22px);margin:22px 0 0;border-left:1px solid #d9d9d9;content:" "}.ant-tree.ant-tree-icon-hide .ant-tree-treenode-loading .ant-tree-iconEle{display:none}.ant-tree.ant-tree-block-node li .ant-tree-node-content-wrapper{width:calc(100% - 24px)}.ant-tree.ant-tree-block-node li span.ant-tree-checkbox+.ant-tree-node-content-wrapper{width:calc(100% - 46px)}.ant-select-tree-checkbox{box-sizing:border-box;margin:0;padding:0;color:rgba(0,0,0,.65);font-size:15px;font-variant:tabular-nums;line-height:1.5;list-style:none;font-feature-settings:"tnum";position:relative;top:-.09em;display:inline-block;line-height:1;white-space:nowrap;vertical-align:middle;outline:none;cursor:pointer}.ant-select-tree-checkbox-input:focus+.ant-select-tree-checkbox-inner,.ant-select-tree-checkbox-wrapper:hover .ant-select-tree-checkbox-inner,.ant-select-tree-checkbox:hover .ant-select-tree-checkbox-inner{border-color:#004691}.ant-select-tree-checkbox-checked:after{position:absolute;top:0;left:0;width:100%;height:100%;border:1px solid #004691;border-radius:2px;visibility:hidden;-webkit-animation:antCheckboxEffect .36s ease-in-out;animation:antCheckboxEffect .36s ease-in-out;-webkit-animation-fill-mode:backwards;animation-fill-mode:backwards;content:""}.ant-select-tree-checkbox-wrapper:hover .ant-select-tree-checkbox:after,.ant-select-tree-checkbox:hover:after{visibility:visible}.ant-select-tree-checkbox-inner{position:relative;top:0;left:0;display:block;width:16px;height:16px;background-color:#fff;border:1px solid #d9d9d9;border-radius:2px;border-collapse:separate;transition:all .3s}.ant-select-tree-checkbox-inner:after{position:absolute;top:50%;left:22%;display:table;width:5.71428571px;height:9.14285714px;border:2px solid #fff;border-top:0;border-left:0;transform:rotate(45deg) scale(0) translate(-50%,-50%);opacity:0;transition:all .1s cubic-bezier(.71,-.46,.88,.6),opacity .1s;content:" "}.ant-select-tree-checkbox-input{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;width:100%;height:100%;cursor:pointer;opacity:0}.ant-select-tree-checkbox-checked .ant-select-tree-checkbox-inner:after{position:absolute;display:table;border:2px solid #fff;border-top:0;border-left:0;transform:rotate(45deg) scale(1) translate(-50%,-50%);opacity:1;transition:all .2s cubic-bezier(.12,.4,.29,1.46) .1s;content:" "}.ant-select-tree-checkbox-checked .ant-select-tree-checkbox-inner{background-color:#004691;border-color:#004691}.ant-select-tree-checkbox-disabled{cursor:not-allowed}.ant-select-tree-checkbox-disabled.ant-select-tree-checkbox-checked .ant-select-tree-checkbox-inner:after{border-color:rgba(0,0,0,.25);-webkit-animation-name:none;animation-name:none}.ant-select-tree-checkbox-disabled .ant-select-tree-checkbox-input{cursor:not-allowed}.ant-select-tree-checkbox-disabled .ant-select-tree-checkbox-inner{background-color:#f5f5f5;border-color:#d9d9d9!important}.ant-select-tree-checkbox-disabled .ant-select-tree-checkbox-inner:after{border-color:#f5f5f5;border-collapse:separate;-webkit-animation-name:none;animation-name:none}.ant-select-tree-checkbox-disabled+span{color:rgba(0,0,0,.25);cursor:not-allowed}.ant-select-tree-checkbox-disabled:hover:after,.ant-select-tree-checkbox-wrapper:hover .ant-select-tree-checkbox-disabled:after{visibility:hidden}.ant-select-tree-checkbox-wrapper{box-sizing:border-box;margin:0;padding:0;color:rgba(0,0,0,.65);font-size:15px;font-variant:tabular-nums;line-height:1.5;list-style:none;font-feature-settings:"tnum";display:inline-block;line-height:unset;cursor:pointer}.ant-select-tree-checkbox-wrapper.ant-select-tree-checkbox-wrapper-disabled{cursor:not-allowed}.ant-select-tree-checkbox-wrapper+.ant-select-tree-checkbox-wrapper{margin-left:8px}.ant-select-tree-checkbox+span{padding-right:8px;padding-left:8px}.ant-select-tree-checkbox-group{box-sizing:border-box;margin:0;padding:0;color:rgba(0,0,0,.65);font-size:15px;font-variant:tabular-nums;line-height:1.5;list-style:none;font-feature-settings:"tnum";display:inline-block}.ant-select-tree-checkbox-group-item{display:inline-block;margin-right:8px}.ant-select-tree-checkbox-group-item:last-child{margin-right:0}.ant-select-tree-checkbox-group-item+.ant-select-tree-checkbox-group-item{margin-left:0}.ant-select-tree-checkbox-indeterminate .ant-select-tree-checkbox-inner{background-color:#fff;border-color:#d9d9d9}.ant-select-tree-checkbox-indeterminate .ant-select-tree-checkbox-inner:after{top:50%;left:50%;width:8px;height:8px;background-color:#004691;border:0;transform:translate(-50%,-50%) scale(1);opacity:1;content:" "}.ant-select-tree-checkbox-indeterminate.ant-select-tree-checkbox-disabled .ant-select-tree-checkbox-inner:after{background-color:rgba(0,0,0,.25);border-color:rgba(0,0,0,.25)}.ant-select-tree{box-sizing:border-box;color:rgba(0,0,0,.65);font-size:15px;font-variant:tabular-nums;line-height:1.5;list-style:none;font-feature-settings:"tnum";margin:-4px 0 0;padding:0 4px}.ant-select-tree li{margin:8px 0;padding:0;white-space:nowrap;list-style:none;outline:0}.ant-select-tree li.filter-node>span{font-weight:500}.ant-select-tree li ul{margin:0;padding:0 0 0 18px}.ant-select-tree li .ant-select-tree-node-content-wrapper{display:inline-block;width:calc(100% - 24px);margin:0;padding:3px 5px;color:rgba(0,0,0,.65);text-decoration:none;border-radius:2px;cursor:pointer;transition:all .3s}.ant-select-tree li .ant-select-tree-node-content-wrapper:hover{background-color:#bccad1}.ant-select-tree li .ant-select-tree-node-content-wrapper.ant-select-tree-node-selected{background-color:#7ea9c4}.ant-select-tree li span.ant-select-tree-checkbox{margin:0 4px 0 0}.ant-select-tree li span.ant-select-tree-checkbox+.ant-select-tree-node-content-wrapper{width:calc(100% - 46px)}.ant-select-tree li span.ant-select-tree-iconEle,.ant-select-tree li span.ant-select-tree-switcher{display:inline-block;width:24px;height:24px;margin:0;line-height:22px;text-align:center;vertical-align:middle;border:0;outline:none;cursor:pointer}.ant-select-tree li span.ant-select-icon_loading .ant-select-switcher-loading-icon{position:absolute;left:0;display:inline-block;color:#004691;font-size:14px;transform:none}.ant-select-tree li span.ant-select-icon_loading .ant-select-switcher-loading-icon svg{position:absolute;top:0;right:0;bottom:0;left:0;margin:auto}.ant-select-tree li span.ant-select-tree-switcher{position:relative}.ant-select-tree li span.ant-select-tree-switcher.ant-select-tree-switcher-noop{cursor:auto}.ant-select-tree li span.ant-select-tree-switcher.ant-select-tree-switcher_open .ant-select-switcher-icon,.ant-select-tree li span.ant-select-tree-switcher.ant-select-tree-switcher_open .ant-tree-switcher-icon{font-size:12px;font-size:10px\9;transform:scale(.83333333) rotate(0deg);display:inline-block;font-weight:700}:root .ant-select-tree li span.ant-select-tree-switcher.ant-select-tree-switcher_open .ant-select-switcher-icon,:root .ant-select-tree li span.ant-select-tree-switcher.ant-select-tree-switcher_open .ant-tree-switcher-icon{font-size:12px}.ant-select-tree li span.ant-select-tree-switcher.ant-select-tree-switcher_open .ant-select-switcher-icon svg,.ant-select-tree li span.ant-select-tree-switcher.ant-select-tree-switcher_open .ant-tree-switcher-icon svg{transition:transform .3s}.ant-select-tree li span.ant-select-tree-switcher.ant-select-tree-switcher_close .ant-select-switcher-icon,.ant-select-tree li span.ant-select-tree-switcher.ant-select-tree-switcher_close .ant-tree-switcher-icon{font-size:12px;font-size:10px\9;transform:scale(.83333333) rotate(0deg);display:inline-block;font-weight:700}:root .ant-select-tree li span.ant-select-tree-switcher.ant-select-tree-switcher_close .ant-select-switcher-icon,:root .ant-select-tree li span.ant-select-tree-switcher.ant-select-tree-switcher_close .ant-tree-switcher-icon{font-size:12px}.ant-select-tree li span.ant-select-tree-switcher.ant-select-tree-switcher_close .ant-select-switcher-icon svg,.ant-select-tree li span.ant-select-tree-switcher.ant-select-tree-switcher_close .ant-tree-switcher-icon svg{transition:transform .3s}.ant-select-tree li span.ant-select-tree-switcher.ant-select-tree-switcher_close .ant-select-switcher-icon svg{transform:rotate(-90deg)}.ant-select-tree li span.ant-select-tree-switcher.ant-select-tree-switcher_close .ant-select-switcher-loading-icon,.ant-select-tree li span.ant-select-tree-switcher.ant-select-tree-switcher_open .ant-select-switcher-loading-icon{position:absolute;left:0;display:inline-block;width:24px;height:24px;color:#004691;font-size:14px;transform:none}.ant-select-tree li span.ant-select-tree-switcher.ant-select-tree-switcher_close .ant-select-switcher-loading-icon svg,.ant-select-tree li span.ant-select-tree-switcher.ant-select-tree-switcher_open .ant-select-switcher-loading-icon svg{position:absolute;top:0;right:0;bottom:0;left:0;margin:auto}.ant-select-tree-child-tree,.ant-select-tree .ant-select-tree-treenode-loading .ant-select-tree-iconEle{display:none}.ant-select-tree-child-tree-open{display:block}li.ant-select-tree-treenode-disabled>.ant-select-tree-node-content-wrapper,li.ant-select-tree-treenode-disabled>.ant-select-tree-node-content-wrapper span,li.ant-select-tree-treenode-disabled>span:not(.ant-select-tree-switcher){color:rgba(0,0,0,.25);cursor:not-allowed}li.ant-select-tree-treenode-disabled>.ant-select-tree-node-content-wrapper:hover{background:transparent}.ant-select-tree-icon__close,.ant-select-tree-icon__open{margin-right:2px;vertical-align:top}.ant-select-tree-dropdown{box-sizing:border-box;margin:0;padding:0;color:rgba(0,0,0,.65);font-size:15px;font-variant:tabular-nums;line-height:1.5;list-style:none;font-feature-settings:"tnum"}.ant-select-tree-dropdown .ant-select-dropdown-search{position:sticky;top:0;z-index:1;display:block;padding:4px;background:#fff}.ant-select-tree-dropdown .ant-select-dropdown-search .ant-select-search__field__wrap{width:100%}.ant-select-tree-dropdown .ant-select-dropdown-search .ant-select-search__field{box-sizing:border-box;width:100%;padding:4px 7px;border:1px solid #d9d9d9;border-radius:4px;outline:none}.ant-select-tree-dropdown .ant-select-dropdown-search.ant-select-search--hide{display:none}.ant-select-tree-dropdown .ant-select-not-found{display:block;padding:7px 16px;color:rgba(0,0,0,.25);cursor:not-allowed}.ant-upload{box-sizing:border-box;margin:0;padding:0;color:rgba(0,0,0,.65);font-size:15px;font-variant:tabular-nums;line-height:1.5;list-style:none;font-feature-settings:"tnum";outline:0}.ant-upload p{margin:0}.ant-upload-btn{display:block;width:100%;outline:none}.ant-upload input[type=file]{cursor:pointer}.ant-upload.ant-upload-select{display:inline-block}.ant-upload.ant-upload-disabled{cursor:not-allowed}.ant-upload.ant-upload-select-picture-card{display:table;float:left;width:104px;height:104px;margin-right:8px;margin-bottom:8px;text-align:center;vertical-align:top;background-color:#fafafa;border:1px dashed #d9d9d9;border-radius:4px;cursor:pointer;transition:border-color .3s ease}.ant-upload.ant-upload-select-picture-card>.ant-upload{display:table-cell;width:100%;height:100%;padding:8px;text-align:center;vertical-align:middle}.ant-upload.ant-upload-select-picture-card:hover{border-color:#004691}.ant-upload.ant-upload-drag{position:relative;width:100%;height:100%;text-align:center;background:#fafafa;border:1px dashed #d9d9d9;border-radius:4px;cursor:pointer;transition:border-color .3s}.ant-upload.ant-upload-drag .ant-upload{padding:16px 0}.ant-upload.ant-upload-drag.ant-upload-drag-hover:not(.ant-upload-disabled){border-color:#00306b}.ant-upload.ant-upload-drag.ant-upload-disabled{cursor:not-allowed}.ant-upload.ant-upload-drag .ant-upload-btn{display:table;height:100%}.ant-upload.ant-upload-drag .ant-upload-drag-container{display:table-cell;vertical-align:middle}.ant-upload.ant-upload-drag:not(.ant-upload-disabled):hover{border-color:#195e9e}.ant-upload.ant-upload-drag p.ant-upload-drag-icon{margin-bottom:20px}.ant-upload.ant-upload-drag p.ant-upload-drag-icon .anticon{color:#195e9e;font-size:48px}.ant-upload.ant-upload-drag p.ant-upload-text{margin:0 0 4px;color:rgba(0,0,0,.85);font-size:17px}.ant-upload.ant-upload-drag p.ant-upload-hint{color:rgba(0,0,0,.45);font-size:15px}.ant-upload.ant-upload-drag .anticon-plus{color:rgba(0,0,0,.25);font-size:30px;transition:all .3s}.ant-upload.ant-upload-drag .anticon-plus:hover,.ant-upload.ant-upload-drag:hover .anticon-plus{color:rgba(0,0,0,.45)}.ant-upload-picture-card-wrapper{zoom:1;display:inline-block;width:100%}.ant-upload-picture-card-wrapper:after,.ant-upload-picture-card-wrapper:before{display:table;content:""}.ant-upload-picture-card-wrapper:after{clear:both}.ant-upload-list{box-sizing:border-box;margin:0;padding:0;color:rgba(0,0,0,.65);font-size:15px;font-variant:tabular-nums;line-height:1.5;list-style:none;font-feature-settings:"tnum";zoom:1}.ant-upload-list:after,.ant-upload-list:before{display:table;content:""}.ant-upload-list:after{clear:both}.ant-upload-list-item-list-type-text:hover .ant-upload-list-item-name-icon-count-1{padding-right:14px}.ant-upload-list-item-list-type-text:hover .ant-upload-list-item-name-icon-count-2{padding-right:28px}.ant-upload-list-item{position:relative;height:22px;margin-top:8px;font-size:15px}.ant-upload-list-item-name{display:inline-block;width:100%;padding-left:23px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.ant-upload-list-item-name-icon-count-1{padding-right:14px}.ant-upload-list-item-card-actions{position:absolute;right:0;opacity:0}.ant-upload-list-item-card-actions.picture{top:25px;line-height:1;opacity:1}.ant-upload-list-item-card-actions .anticon{padding-right:6px;color:rgba(0,0,0,.45)}.ant-upload-list-item-info{height:100%;padding:0 12px 0 4px;transition:background-color .3s}.ant-upload-list-item-info>span{display:block;width:100%;height:100%}.ant-upload-list-item-info .anticon-loading,.ant-upload-list-item-info .anticon-paper-clip{position:absolute;top:5.5px;color:rgba(0,0,0,.45);font-size:15px}.ant-upload-list-item .anticon-close{display:inline-block;font-size:12px;font-size:10px\9;transform:scale(.83333333) rotate(0deg);position:absolute;top:6px;right:4px;color:rgba(0,0,0,.45);line-height:0;cursor:pointer;opacity:0;transition:all .3s}:root .ant-upload-list-item .anticon-close{font-size:12px}.ant-upload-list-item .anticon-close:hover{color:rgba(0,0,0,.65)}.ant-upload-list-item:hover .ant-upload-list-item-info{background-color:#bccad1}.ant-upload-list-item:hover .ant-upload-list-item-card-actions,.ant-upload-list-item:hover .anticon-close{opacity:1}.ant-upload-list-item-error,.ant-upload-list-item-error .ant-upload-list-item-name,.ant-upload-list-item-error .anticon-paper-clip{color:#f5222d}.ant-upload-list-item-error .ant-upload-list-item-card-actions{opacity:1}.ant-upload-list-item-error .ant-upload-list-item-card-actions .anticon{color:#f5222d}.ant-upload-list-item-progress{position:absolute;bottom:-12px;width:100%;padding-left:27px;font-size:15px;line-height:0}.ant-upload-list-picture-card .ant-upload-list-item,.ant-upload-list-picture .ant-upload-list-item{position:relative;height:66px;padding:8px;border:1px solid #d9d9d9;border-radius:4px}.ant-upload-list-picture-card .ant-upload-list-item:hover,.ant-upload-list-picture .ant-upload-list-item:hover{background:transparent}.ant-upload-list-picture-card .ant-upload-list-item-error,.ant-upload-list-picture .ant-upload-list-item-error{border-color:#f5222d}.ant-upload-list-picture-card .ant-upload-list-item-info,.ant-upload-list-picture .ant-upload-list-item-info{padding:0}.ant-upload-list-picture-card .ant-upload-list-item:hover .ant-upload-list-item-info,.ant-upload-list-picture .ant-upload-list-item:hover .ant-upload-list-item-info{background:transparent}.ant-upload-list-picture-card .ant-upload-list-item-uploading,.ant-upload-list-picture .ant-upload-list-item-uploading{border-style:dashed}.ant-upload-list-picture-card .ant-upload-list-item-thumbnail,.ant-upload-list-picture .ant-upload-list-item-thumbnail{position:absolute;top:8px;left:8px;width:48px;height:48px;font-size:26px;line-height:54px;text-align:center;opacity:.8}.ant-upload-list-picture-card .ant-upload-list-item-icon,.ant-upload-list-picture .ant-upload-list-item-icon{position:absolute;top:50%;left:50%;font-size:26px;transform:translate(-50%,-50%)}.ant-upload-list-picture-card .ant-upload-list-item-image,.ant-upload-list-picture .ant-upload-list-item-image{max-width:100%}.ant-upload-list-picture-card .ant-upload-list-item-thumbnail img,.ant-upload-list-picture .ant-upload-list-item-thumbnail img{display:block;width:48px;height:48px;overflow:hidden}.ant-upload-list-picture-card .ant-upload-list-item-name,.ant-upload-list-picture .ant-upload-list-item-name{display:inline-block;box-sizing:border-box;max-width:100%;margin:0 0 0 8px;padding-right:8px;padding-left:48px;overflow:hidden;line-height:44px;white-space:nowrap;text-overflow:ellipsis;transition:all .3s}.ant-upload-list-picture-card .ant-upload-list-item-name-icon-count-1,.ant-upload-list-picture .ant-upload-list-item-name-icon-count-1{padding-right:18px}.ant-upload-list-picture-card .ant-upload-list-item-name-icon-count-2,.ant-upload-list-picture .ant-upload-list-item-name-icon-count-2{padding-right:36px}.ant-upload-list-picture-card .ant-upload-list-item-uploading .ant-upload-list-item-name,.ant-upload-list-picture .ant-upload-list-item-uploading .ant-upload-list-item-name{line-height:28px}.ant-upload-list-picture-card .ant-upload-list-item-progress,.ant-upload-list-picture .ant-upload-list-item-progress{bottom:14px;width:calc(100% - 24px);margin-top:0;padding-left:56px}.ant-upload-list-picture-card .anticon-close,.ant-upload-list-picture .anticon-close{position:absolute;top:8px;right:8px;line-height:1;opacity:1}.ant-upload-list-picture-card.ant-upload-list:after{display:none}.ant-upload-list-picture-card-container,.ant-upload-list-picture-card .ant-upload-list-item{float:left;width:104px;height:104px;margin:0 8px 8px 0}.ant-upload-list-picture-card .ant-upload-list-item-info{position:relative;height:100%;overflow:hidden}.ant-upload-list-picture-card .ant-upload-list-item-info:before{position:absolute;z-index:1;width:100%;height:100%;background-color:rgba(0,0,0,.5);opacity:0;transition:all .3s;content:" "}.ant-upload-list-picture-card .ant-upload-list-item:hover .ant-upload-list-item-info:before{opacity:1}.ant-upload-list-picture-card .ant-upload-list-item-actions{position:absolute;top:50%;left:50%;z-index:10;white-space:nowrap;transform:translate(-50%,-50%);opacity:0;transition:all .3s}.ant-upload-list-picture-card .ant-upload-list-item-actions .anticon-delete,.ant-upload-list-picture-card .ant-upload-list-item-actions .anticon-download,.ant-upload-list-picture-card .ant-upload-list-item-actions .anticon-eye-o{z-index:10;width:16px;margin:0 4px;color:hsla(0,0%,100%,.85);font-size:16px;cursor:pointer;transition:all .3s}.ant-upload-list-picture-card .ant-upload-list-item-actions .anticon-delete:hover,.ant-upload-list-picture-card .ant-upload-list-item-actions .anticon-download:hover,.ant-upload-list-picture-card .ant-upload-list-item-actions .anticon-eye-o:hover{color:#fff}.ant-upload-list-picture-card .ant-upload-list-item-actions:hover,.ant-upload-list-picture-card .ant-upload-list-item-info:hover+.ant-upload-list-item-actions{opacity:1}.ant-upload-list-picture-card .ant-upload-list-item-thumbnail,.ant-upload-list-picture-card .ant-upload-list-item-thumbnail img{position:static;display:block;width:100%;height:100%;-o-object-fit:cover;object-fit:cover}.ant-upload-list-picture-card .ant-upload-list-item-name{display:none;margin:8px 0 0;padding:0;line-height:1.5;text-align:center}.ant-upload-list-picture-card .anticon-picture+.ant-upload-list-item-name{position:absolute;bottom:10px;display:block}.ant-upload-list-picture-card .ant-upload-list-item-uploading.ant-upload-list-item{background-color:#fafafa}.ant-upload-list-picture-card .ant-upload-list-item-uploading .ant-upload-list-item-info{height:auto}.ant-upload-list-picture-card .ant-upload-list-item-uploading .ant-upload-list-item-info .anticon-delete,.ant-upload-list-picture-card .ant-upload-list-item-uploading .ant-upload-list-item-info .anticon-eye-o,.ant-upload-list-picture-card .ant-upload-list-item-uploading .ant-upload-list-item-info:before{display:none}.ant-upload-list-picture-card .ant-upload-list-item-uploading-text{margin-top:18px;color:rgba(0,0,0,.45)}.ant-upload-list-picture-card .ant-upload-list-item-progress{bottom:32px;padding-left:0}.ant-upload-list .ant-upload-success-icon{color:#52c41a;font-weight:700}.ant-upload-list .ant-upload-animate-enter,.ant-upload-list .ant-upload-animate-inline-enter,.ant-upload-list .ant-upload-animate-inline-leave,.ant-upload-list .ant-upload-animate-leave{-webkit-animation-duration:.3s;animation-duration:.3s;-webkit-animation-fill-mode:cubic-bezier(.78,.14,.15,.86);animation-fill-mode:cubic-bezier(.78,.14,.15,.86)}.ant-upload-list .ant-upload-animate-enter{-webkit-animation-name:uploadAnimateIn;animation-name:uploadAnimateIn}.ant-upload-list .ant-upload-animate-leave{-webkit-animation-name:uploadAnimateOut;animation-name:uploadAnimateOut}.ant-upload-list .ant-upload-animate-inline-enter{-webkit-animation-name:uploadAnimateInlineIn;animation-name:uploadAnimateInlineIn}.ant-upload-list .ant-upload-animate-inline-leave{-webkit-animation-name:uploadAnimateInlineOut;animation-name:uploadAnimateInlineOut}@-webkit-keyframes uploadAnimateIn{0%{height:0;margin:0;padding:0;opacity:0}}@keyframes uploadAnimateIn{0%{height:0;margin:0;padding:0;opacity:0}}@-webkit-keyframes uploadAnimateOut{to{height:0;margin:0;padding:0;opacity:0}}@keyframes uploadAnimateOut{to{height:0;margin:0;padding:0;opacity:0}}@-webkit-keyframes uploadAnimateInlineIn{0%{width:0;height:0;margin:0;padding:0;opacity:0}}@keyframes uploadAnimateInlineIn{0%{width:0;height:0;margin:0;padding:0;opacity:0}}@-webkit-keyframes uploadAnimateInlineOut{to{width:0;height:0;margin:0;padding:0;opacity:0}}@keyframes uploadAnimateInlineOut{to{width:0;height:0;margin:0;padding:0;opacity:0}}.ant-checkbox-inner,.ant-input,.ant-select-selection{border-color:#004691}.ant-input::-moz-placeholder{color:rgba(0,70,145,.6);font-weight:500}.ant-input:-ms-input-placeholder{color:rgba(0,70,145,.6);font-weight:500}.ant-input::placeholder,.ant-select-selection__placeholder{color:rgba(0,70,145,.6);font-weight:500}.ant-select-arrow{color:#004691}.ant-form-item-no-colon:after{display:none} +/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */ +/* stylelint-disable no-duplicate-selectors */ +/* stylelint-disable */ +/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */ +/* stylelint-disable at-rule-no-unknown */ +html, +body { + width: 100%; + height: 100%; +} +input::-ms-clear, +input::-ms-reveal { + display: none; +} +*, +*::before, +*::after { + box-sizing: border-box; +} +html { + font-family: sans-serif; + line-height: 1.15; + -webkit-text-size-adjust: 100%; + -ms-text-size-adjust: 100%; + -ms-overflow-style: scrollbar; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); +} +@-ms-viewport { + width: device-width; +} +article, +aside, +dialog, +figcaption, +figure, +footer, +header, +hgroup, +main, +nav, +section { + display: block; +} +body { + margin: 0; + color: rgba(0, 0, 0, 0.65); + font-size: 15px; + font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', 'Helvetica Neue', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol'; + font-variant: tabular-nums; + line-height: 1.5; + background-color: #fff; + font-feature-settings: 'tnum'; +} +[tabindex='-1']:focus { + outline: none !important; +} +hr { + box-sizing: content-box; + height: 0; + overflow: visible; +} +h1, +h2, +h3, +h4, +h5, +h6 { + margin-top: 0; + margin-bottom: 0.5em; + color: rgba(0, 0, 0, 0.85); + font-weight: 500; +} +p { + margin-top: 0; + margin-bottom: 1em; +} +abbr[title], +abbr[data-original-title] { + text-decoration: underline; + -webkit-text-decoration: underline dotted; + text-decoration: underline dotted; + border-bottom: 0; + cursor: help; +} +address { + margin-bottom: 1em; + font-style: normal; + line-height: inherit; +} +input[type='text'], +input[type='password'], +input[type='number'], +textarea { + -webkit-appearance: none; +} +ol, +ul, +dl { + margin-top: 0; + margin-bottom: 1em; +} +ol ol, +ul ul, +ol ul, +ul ol { + margin-bottom: 0; +} +dt { + font-weight: 500; +} +dd { + margin-bottom: 0.5em; + margin-left: 0; +} +blockquote { + margin: 0 0 1em; +} +dfn { + font-style: italic; +} +b, +strong { + font-weight: bolder; +} +small { + font-size: 80%; +} +sub, +sup { + position: relative; + font-size: 75%; + line-height: 0; + vertical-align: baseline; +} +sub { + bottom: -0.25em; +} +sup { + top: -0.5em; +} +a { + color: #004691; + text-decoration: none; + background-color: transparent; + outline: none; + cursor: pointer; + transition: color 0.3s; + -webkit-text-decoration-skip: objects; +} +a:hover { + color: #195e9e; +} +a:active { + color: #00306b; +} +a:active, +a:hover { + text-decoration: none; + outline: 0; +} +a[disabled] { + color: rgba(0, 0, 0, 0.25); + cursor: not-allowed; + pointer-events: none; +} +pre, +code, +kbd, +samp { + font-size: 1em; + font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, Courier, monospace; +} +pre { + margin-top: 0; + margin-bottom: 1em; + overflow: auto; +} +figure { + margin: 0 0 1em; +} +img { + vertical-align: middle; + border-style: none; +} +svg:not(:root) { + overflow: hidden; +} +a, +area, +button, +[role='button'], +input:not([type='range']), +label, +select, +summary, +textarea { + touch-action: manipulation; +} +table { + border-collapse: collapse; +} +caption { + padding-top: 0.75em; + padding-bottom: 0.3em; + color: rgba(0, 0, 0, 0.45); + text-align: left; + caption-side: bottom; +} +th { + text-align: inherit; +} +input, +button, +select, +optgroup, +textarea { + margin: 0; + color: inherit; + font-size: inherit; + font-family: inherit; + line-height: inherit; +} +button, +input { + overflow: visible; +} +button, +select { + text-transform: none; +} +button, +html [type="button"], +[type="reset"], +[type="submit"] { + -webkit-appearance: button; +} +button::-moz-focus-inner, +[type='button']::-moz-focus-inner, +[type='reset']::-moz-focus-inner, +[type='submit']::-moz-focus-inner { + padding: 0; + border-style: none; +} +input[type='radio'], +input[type='checkbox'] { + box-sizing: border-box; + padding: 0; +} +input[type='date'], +input[type='time'], +input[type='datetime-local'], +input[type='month'] { + -webkit-appearance: listbox; +} +textarea { + overflow: auto; + resize: vertical; +} +fieldset { + min-width: 0; + margin: 0; + padding: 0; + border: 0; +} +legend { + display: block; + width: 100%; + max-width: 100%; + margin-bottom: 0.5em; + padding: 0; + color: inherit; + font-size: 1.5em; + line-height: inherit; + white-space: normal; +} +progress { + vertical-align: baseline; +} +[type='number']::-webkit-inner-spin-button, +[type='number']::-webkit-outer-spin-button { + height: auto; +} +[type='search'] { + outline-offset: -2px; + -webkit-appearance: none; +} +[type='search']::-webkit-search-cancel-button, +[type='search']::-webkit-search-decoration { + -webkit-appearance: none; +} +::-webkit-file-upload-button { + font: inherit; + -webkit-appearance: button; +} +output { + display: inline-block; +} +summary { + display: list-item; +} +template { + display: none; +} +[hidden] { + display: none !important; +} +mark { + padding: 0.2em; + background-color: #feffe6; +} +::-moz-selection { + color: #fff; + background: #004691; +} +::selection { + color: #fff; + background: #004691; +} +.clearfix { + zoom: 1; +} +.clearfix::before, +.clearfix::after { + display: table; + content: ''; +} +.clearfix::after { + clear: both; +} +.anticon { + display: inline-block; + color: inherit; + font-style: normal; + line-height: 0; + text-align: center; + text-transform: none; + vertical-align: -0.125em; + text-rendering: optimizeLegibility; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} +.anticon > * { + line-height: 1; +} +.anticon svg { + display: inline-block; +} +.anticon::before { + display: none; +} +.anticon .anticon-icon { + display: block; +} +.anticon[tabindex] { + cursor: pointer; +} +.anticon-spin::before { + display: inline-block; + -webkit-animation: loadingCircle 1s infinite linear; + animation: loadingCircle 1s infinite linear; +} +.anticon-spin { + display: inline-block; + -webkit-animation: loadingCircle 1s infinite linear; + animation: loadingCircle 1s infinite linear; +} +.fade-enter, +.fade-appear { + -webkit-animation-duration: 0.2s; + animation-duration: 0.2s; + -webkit-animation-fill-mode: both; + animation-fill-mode: both; + -webkit-animation-play-state: paused; + animation-play-state: paused; +} +.fade-leave { + -webkit-animation-duration: 0.2s; + animation-duration: 0.2s; + -webkit-animation-fill-mode: both; + animation-fill-mode: both; + -webkit-animation-play-state: paused; + animation-play-state: paused; +} +.fade-enter.fade-enter-active, +.fade-appear.fade-appear-active { + -webkit-animation-name: antFadeIn; + animation-name: antFadeIn; + -webkit-animation-play-state: running; + animation-play-state: running; +} +.fade-leave.fade-leave-active { + -webkit-animation-name: antFadeOut; + animation-name: antFadeOut; + -webkit-animation-play-state: running; + animation-play-state: running; + pointer-events: none; +} +.fade-enter, +.fade-appear { + opacity: 0; + -webkit-animation-timing-function: linear; + animation-timing-function: linear; +} +.fade-leave { + -webkit-animation-timing-function: linear; + animation-timing-function: linear; +} +@-webkit-keyframes antFadeIn { + 0% { + opacity: 0; + } + 100% { + opacity: 1; + } +} +@keyframes antFadeIn { + 0% { + opacity: 0; + } + 100% { + opacity: 1; + } +} +@-webkit-keyframes antFadeOut { + 0% { + opacity: 1; + } + 100% { + opacity: 0; + } +} +@keyframes antFadeOut { + 0% { + opacity: 1; + } + 100% { + opacity: 0; + } +} +.move-up-enter, +.move-up-appear { + -webkit-animation-duration: 0.2s; + animation-duration: 0.2s; + -webkit-animation-fill-mode: both; + animation-fill-mode: both; + -webkit-animation-play-state: paused; + animation-play-state: paused; +} +.move-up-leave { + -webkit-animation-duration: 0.2s; + animation-duration: 0.2s; + -webkit-animation-fill-mode: both; + animation-fill-mode: both; + -webkit-animation-play-state: paused; + animation-play-state: paused; +} +.move-up-enter.move-up-enter-active, +.move-up-appear.move-up-appear-active { + -webkit-animation-name: antMoveUpIn; + animation-name: antMoveUpIn; + -webkit-animation-play-state: running; + animation-play-state: running; +} +.move-up-leave.move-up-leave-active { + -webkit-animation-name: antMoveUpOut; + animation-name: antMoveUpOut; + -webkit-animation-play-state: running; + animation-play-state: running; + pointer-events: none; +} +.move-up-enter, +.move-up-appear { + opacity: 0; + -webkit-animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); + animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); +} +.move-up-leave { + -webkit-animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34); + animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34); +} +.move-down-enter, +.move-down-appear { + -webkit-animation-duration: 0.2s; + animation-duration: 0.2s; + -webkit-animation-fill-mode: both; + animation-fill-mode: both; + -webkit-animation-play-state: paused; + animation-play-state: paused; +} +.move-down-leave { + -webkit-animation-duration: 0.2s; + animation-duration: 0.2s; + -webkit-animation-fill-mode: both; + animation-fill-mode: both; + -webkit-animation-play-state: paused; + animation-play-state: paused; +} +.move-down-enter.move-down-enter-active, +.move-down-appear.move-down-appear-active { + -webkit-animation-name: antMoveDownIn; + animation-name: antMoveDownIn; + -webkit-animation-play-state: running; + animation-play-state: running; +} +.move-down-leave.move-down-leave-active { + -webkit-animation-name: antMoveDownOut; + animation-name: antMoveDownOut; + -webkit-animation-play-state: running; + animation-play-state: running; + pointer-events: none; +} +.move-down-enter, +.move-down-appear { + opacity: 0; + -webkit-animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); + animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); +} +.move-down-leave { + -webkit-animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34); + animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34); +} +.move-left-enter, +.move-left-appear { + -webkit-animation-duration: 0.2s; + animation-duration: 0.2s; + -webkit-animation-fill-mode: both; + animation-fill-mode: both; + -webkit-animation-play-state: paused; + animation-play-state: paused; +} +.move-left-leave { + -webkit-animation-duration: 0.2s; + animation-duration: 0.2s; + -webkit-animation-fill-mode: both; + animation-fill-mode: both; + -webkit-animation-play-state: paused; + animation-play-state: paused; +} +.move-left-enter.move-left-enter-active, +.move-left-appear.move-left-appear-active { + -webkit-animation-name: antMoveLeftIn; + animation-name: antMoveLeftIn; + -webkit-animation-play-state: running; + animation-play-state: running; +} +.move-left-leave.move-left-leave-active { + -webkit-animation-name: antMoveLeftOut; + animation-name: antMoveLeftOut; + -webkit-animation-play-state: running; + animation-play-state: running; + pointer-events: none; +} +.move-left-enter, +.move-left-appear { + opacity: 0; + -webkit-animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); + animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); +} +.move-left-leave { + -webkit-animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34); + animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34); +} +.move-right-enter, +.move-right-appear { + -webkit-animation-duration: 0.2s; + animation-duration: 0.2s; + -webkit-animation-fill-mode: both; + animation-fill-mode: both; + -webkit-animation-play-state: paused; + animation-play-state: paused; +} +.move-right-leave { + -webkit-animation-duration: 0.2s; + animation-duration: 0.2s; + -webkit-animation-fill-mode: both; + animation-fill-mode: both; + -webkit-animation-play-state: paused; + animation-play-state: paused; +} +.move-right-enter.move-right-enter-active, +.move-right-appear.move-right-appear-active { + -webkit-animation-name: antMoveRightIn; + animation-name: antMoveRightIn; + -webkit-animation-play-state: running; + animation-play-state: running; +} +.move-right-leave.move-right-leave-active { + -webkit-animation-name: antMoveRightOut; + animation-name: antMoveRightOut; + -webkit-animation-play-state: running; + animation-play-state: running; + pointer-events: none; +} +.move-right-enter, +.move-right-appear { + opacity: 0; + -webkit-animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); + animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); +} +.move-right-leave { + -webkit-animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34); + animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34); +} +@-webkit-keyframes antMoveDownIn { + 0% { + transform: translateY(100%); + transform-origin: 0 0; + opacity: 0; + } + 100% { + transform: translateY(0%); + transform-origin: 0 0; + opacity: 1; + } +} +@keyframes antMoveDownIn { + 0% { + transform: translateY(100%); + transform-origin: 0 0; + opacity: 0; + } + 100% { + transform: translateY(0%); + transform-origin: 0 0; + opacity: 1; + } +} +@-webkit-keyframes antMoveDownOut { + 0% { + transform: translateY(0%); + transform-origin: 0 0; + opacity: 1; + } + 100% { + transform: translateY(100%); + transform-origin: 0 0; + opacity: 0; + } +} +@keyframes antMoveDownOut { + 0% { + transform: translateY(0%); + transform-origin: 0 0; + opacity: 1; + } + 100% { + transform: translateY(100%); + transform-origin: 0 0; + opacity: 0; + } +} +@-webkit-keyframes antMoveLeftIn { + 0% { + transform: translateX(-100%); + transform-origin: 0 0; + opacity: 0; + } + 100% { + transform: translateX(0%); + transform-origin: 0 0; + opacity: 1; + } +} +@keyframes antMoveLeftIn { + 0% { + transform: translateX(-100%); + transform-origin: 0 0; + opacity: 0; + } + 100% { + transform: translateX(0%); + transform-origin: 0 0; + opacity: 1; + } +} +@-webkit-keyframes antMoveLeftOut { + 0% { + transform: translateX(0%); + transform-origin: 0 0; + opacity: 1; + } + 100% { + transform: translateX(-100%); + transform-origin: 0 0; + opacity: 0; + } +} +@keyframes antMoveLeftOut { + 0% { + transform: translateX(0%); + transform-origin: 0 0; + opacity: 1; + } + 100% { + transform: translateX(-100%); + transform-origin: 0 0; + opacity: 0; + } +} +@-webkit-keyframes antMoveRightIn { + 0% { + transform: translateX(100%); + transform-origin: 0 0; + opacity: 0; + } + 100% { + transform: translateX(0%); + transform-origin: 0 0; + opacity: 1; + } +} +@keyframes antMoveRightIn { + 0% { + transform: translateX(100%); + transform-origin: 0 0; + opacity: 0; + } + 100% { + transform: translateX(0%); + transform-origin: 0 0; + opacity: 1; + } +} +@-webkit-keyframes antMoveRightOut { + 0% { + transform: translateX(0%); + transform-origin: 0 0; + opacity: 1; + } + 100% { + transform: translateX(100%); + transform-origin: 0 0; + opacity: 0; + } +} +@keyframes antMoveRightOut { + 0% { + transform: translateX(0%); + transform-origin: 0 0; + opacity: 1; + } + 100% { + transform: translateX(100%); + transform-origin: 0 0; + opacity: 0; + } +} +@-webkit-keyframes antMoveUpIn { + 0% { + transform: translateY(-100%); + transform-origin: 0 0; + opacity: 0; + } + 100% { + transform: translateY(0%); + transform-origin: 0 0; + opacity: 1; + } +} +@keyframes antMoveUpIn { + 0% { + transform: translateY(-100%); + transform-origin: 0 0; + opacity: 0; + } + 100% { + transform: translateY(0%); + transform-origin: 0 0; + opacity: 1; + } +} +@-webkit-keyframes antMoveUpOut { + 0% { + transform: translateY(0%); + transform-origin: 0 0; + opacity: 1; + } + 100% { + transform: translateY(-100%); + transform-origin: 0 0; + opacity: 0; + } +} +@keyframes antMoveUpOut { + 0% { + transform: translateY(0%); + transform-origin: 0 0; + opacity: 1; + } + 100% { + transform: translateY(-100%); + transform-origin: 0 0; + opacity: 0; + } +} +@-webkit-keyframes loadingCircle { + 100% { + transform: rotate(360deg); + } +} +@keyframes loadingCircle { + 100% { + transform: rotate(360deg); + } +} +[ant-click-animating='true'], +[ant-click-animating-without-extra-node='true'] { + position: relative; +} +html { + --antd-wave-shadow-color: #004691; +} +[ant-click-animating-without-extra-node='true']::after, +.ant-click-animating-node { + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + display: block; + border-radius: inherit; + box-shadow: 0 0 0 0 #004691; + box-shadow: 0 0 0 0 var(--antd-wave-shadow-color); + opacity: 0.2; + -webkit-animation: fadeEffect 2s cubic-bezier(0.08, 0.82, 0.17, 1), waveEffect 0.4s cubic-bezier(0.08, 0.82, 0.17, 1); + animation: fadeEffect 2s cubic-bezier(0.08, 0.82, 0.17, 1), waveEffect 0.4s cubic-bezier(0.08, 0.82, 0.17, 1); + -webkit-animation-fill-mode: forwards; + animation-fill-mode: forwards; + content: ''; + pointer-events: none; +} +@-webkit-keyframes waveEffect { + 100% { + box-shadow: 0 0 0 #004691; + box-shadow: 0 0 0 6px var(--antd-wave-shadow-color); + } +} +@keyframes waveEffect { + 100% { + box-shadow: 0 0 0 #004691; + box-shadow: 0 0 0 6px var(--antd-wave-shadow-color); + } +} +@-webkit-keyframes fadeEffect { + 100% { + opacity: 0; + } +} +@keyframes fadeEffect { + 100% { + opacity: 0; + } +} +.slide-up-enter, +.slide-up-appear { + -webkit-animation-duration: 0.2s; + animation-duration: 0.2s; + -webkit-animation-fill-mode: both; + animation-fill-mode: both; + -webkit-animation-play-state: paused; + animation-play-state: paused; +} +.slide-up-leave { + -webkit-animation-duration: 0.2s; + animation-duration: 0.2s; + -webkit-animation-fill-mode: both; + animation-fill-mode: both; + -webkit-animation-play-state: paused; + animation-play-state: paused; +} +.slide-up-enter.slide-up-enter-active, +.slide-up-appear.slide-up-appear-active { + -webkit-animation-name: antSlideUpIn; + animation-name: antSlideUpIn; + -webkit-animation-play-state: running; + animation-play-state: running; +} +.slide-up-leave.slide-up-leave-active { + -webkit-animation-name: antSlideUpOut; + animation-name: antSlideUpOut; + -webkit-animation-play-state: running; + animation-play-state: running; + pointer-events: none; +} +.slide-up-enter, +.slide-up-appear { + opacity: 0; + -webkit-animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1); + animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1); +} +.slide-up-leave { + -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06); + animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06); +} +.slide-down-enter, +.slide-down-appear { + -webkit-animation-duration: 0.2s; + animation-duration: 0.2s; + -webkit-animation-fill-mode: both; + animation-fill-mode: both; + -webkit-animation-play-state: paused; + animation-play-state: paused; +} +.slide-down-leave { + -webkit-animation-duration: 0.2s; + animation-duration: 0.2s; + -webkit-animation-fill-mode: both; + animation-fill-mode: both; + -webkit-animation-play-state: paused; + animation-play-state: paused; +} +.slide-down-enter.slide-down-enter-active, +.slide-down-appear.slide-down-appear-active { + -webkit-animation-name: antSlideDownIn; + animation-name: antSlideDownIn; + -webkit-animation-play-state: running; + animation-play-state: running; +} +.slide-down-leave.slide-down-leave-active { + -webkit-animation-name: antSlideDownOut; + animation-name: antSlideDownOut; + -webkit-animation-play-state: running; + animation-play-state: running; + pointer-events: none; +} +.slide-down-enter, +.slide-down-appear { + opacity: 0; + -webkit-animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1); + animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1); +} +.slide-down-leave { + -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06); + animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06); +} +.slide-left-enter, +.slide-left-appear { + -webkit-animation-duration: 0.2s; + animation-duration: 0.2s; + -webkit-animation-fill-mode: both; + animation-fill-mode: both; + -webkit-animation-play-state: paused; + animation-play-state: paused; +} +.slide-left-leave { + -webkit-animation-duration: 0.2s; + animation-duration: 0.2s; + -webkit-animation-fill-mode: both; + animation-fill-mode: both; + -webkit-animation-play-state: paused; + animation-play-state: paused; +} +.slide-left-enter.slide-left-enter-active, +.slide-left-appear.slide-left-appear-active { + -webkit-animation-name: antSlideLeftIn; + animation-name: antSlideLeftIn; + -webkit-animation-play-state: running; + animation-play-state: running; +} +.slide-left-leave.slide-left-leave-active { + -webkit-animation-name: antSlideLeftOut; + animation-name: antSlideLeftOut; + -webkit-animation-play-state: running; + animation-play-state: running; + pointer-events: none; +} +.slide-left-enter, +.slide-left-appear { + opacity: 0; + -webkit-animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1); + animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1); +} +.slide-left-leave { + -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06); + animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06); +} +.slide-right-enter, +.slide-right-appear { + -webkit-animation-duration: 0.2s; + animation-duration: 0.2s; + -webkit-animation-fill-mode: both; + animation-fill-mode: both; + -webkit-animation-play-state: paused; + animation-play-state: paused; +} +.slide-right-leave { + -webkit-animation-duration: 0.2s; + animation-duration: 0.2s; + -webkit-animation-fill-mode: both; + animation-fill-mode: both; + -webkit-animation-play-state: paused; + animation-play-state: paused; +} +.slide-right-enter.slide-right-enter-active, +.slide-right-appear.slide-right-appear-active { + -webkit-animation-name: antSlideRightIn; + animation-name: antSlideRightIn; + -webkit-animation-play-state: running; + animation-play-state: running; +} +.slide-right-leave.slide-right-leave-active { + -webkit-animation-name: antSlideRightOut; + animation-name: antSlideRightOut; + -webkit-animation-play-state: running; + animation-play-state: running; + pointer-events: none; +} +.slide-right-enter, +.slide-right-appear { + opacity: 0; + -webkit-animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1); + animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1); +} +.slide-right-leave { + -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06); + animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06); +} +@-webkit-keyframes antSlideUpIn { + 0% { + transform: scaleY(0.8); + transform-origin: 0% 0%; + opacity: 0; + } + 100% { + transform: scaleY(1); + transform-origin: 0% 0%; + opacity: 1; + } +} +@keyframes antSlideUpIn { + 0% { + transform: scaleY(0.8); + transform-origin: 0% 0%; + opacity: 0; + } + 100% { + transform: scaleY(1); + transform-origin: 0% 0%; + opacity: 1; + } +} +@-webkit-keyframes antSlideUpOut { + 0% { + transform: scaleY(1); + transform-origin: 0% 0%; + opacity: 1; + } + 100% { + transform: scaleY(0.8); + transform-origin: 0% 0%; + opacity: 0; + } +} +@keyframes antSlideUpOut { + 0% { + transform: scaleY(1); + transform-origin: 0% 0%; + opacity: 1; + } + 100% { + transform: scaleY(0.8); + transform-origin: 0% 0%; + opacity: 0; + } +} +@-webkit-keyframes antSlideDownIn { + 0% { + transform: scaleY(0.8); + transform-origin: 100% 100%; + opacity: 0; + } + 100% { + transform: scaleY(1); + transform-origin: 100% 100%; + opacity: 1; + } +} +@keyframes antSlideDownIn { + 0% { + transform: scaleY(0.8); + transform-origin: 100% 100%; + opacity: 0; + } + 100% { + transform: scaleY(1); + transform-origin: 100% 100%; + opacity: 1; + } +} +@-webkit-keyframes antSlideDownOut { + 0% { + transform: scaleY(1); + transform-origin: 100% 100%; + opacity: 1; + } + 100% { + transform: scaleY(0.8); + transform-origin: 100% 100%; + opacity: 0; + } +} +@keyframes antSlideDownOut { + 0% { + transform: scaleY(1); + transform-origin: 100% 100%; + opacity: 1; + } + 100% { + transform: scaleY(0.8); + transform-origin: 100% 100%; + opacity: 0; + } +} +@-webkit-keyframes antSlideLeftIn { + 0% { + transform: scaleX(0.8); + transform-origin: 0% 0%; + opacity: 0; + } + 100% { + transform: scaleX(1); + transform-origin: 0% 0%; + opacity: 1; + } +} +@keyframes antSlideLeftIn { + 0% { + transform: scaleX(0.8); + transform-origin: 0% 0%; + opacity: 0; + } + 100% { + transform: scaleX(1); + transform-origin: 0% 0%; + opacity: 1; + } +} +@-webkit-keyframes antSlideLeftOut { + 0% { + transform: scaleX(1); + transform-origin: 0% 0%; + opacity: 1; + } + 100% { + transform: scaleX(0.8); + transform-origin: 0% 0%; + opacity: 0; + } +} +@keyframes antSlideLeftOut { + 0% { + transform: scaleX(1); + transform-origin: 0% 0%; + opacity: 1; + } + 100% { + transform: scaleX(0.8); + transform-origin: 0% 0%; + opacity: 0; + } +} +@-webkit-keyframes antSlideRightIn { + 0% { + transform: scaleX(0.8); + transform-origin: 100% 0%; + opacity: 0; + } + 100% { + transform: scaleX(1); + transform-origin: 100% 0%; + opacity: 1; + } +} +@keyframes antSlideRightIn { + 0% { + transform: scaleX(0.8); + transform-origin: 100% 0%; + opacity: 0; + } + 100% { + transform: scaleX(1); + transform-origin: 100% 0%; + opacity: 1; + } +} +@-webkit-keyframes antSlideRightOut { + 0% { + transform: scaleX(1); + transform-origin: 100% 0%; + opacity: 1; + } + 100% { + transform: scaleX(0.8); + transform-origin: 100% 0%; + opacity: 0; + } +} +@keyframes antSlideRightOut { + 0% { + transform: scaleX(1); + transform-origin: 100% 0%; + opacity: 1; + } + 100% { + transform: scaleX(0.8); + transform-origin: 100% 0%; + opacity: 0; + } +} +.swing-enter, +.swing-appear { + -webkit-animation-duration: 0.2s; + animation-duration: 0.2s; + -webkit-animation-fill-mode: both; + animation-fill-mode: both; + -webkit-animation-play-state: paused; + animation-play-state: paused; +} +.swing-enter.swing-enter-active, +.swing-appear.swing-appear-active { + -webkit-animation-name: antSwingIn; + animation-name: antSwingIn; + -webkit-animation-play-state: running; + animation-play-state: running; +} +@-webkit-keyframes antSwingIn { + 0%, + 100% { + transform: translateX(0); + } + 20% { + transform: translateX(-10px); + } + 40% { + transform: translateX(10px); + } + 60% { + transform: translateX(-5px); + } + 80% { + transform: translateX(5px); + } +} +@keyframes antSwingIn { + 0%, + 100% { + transform: translateX(0); + } + 20% { + transform: translateX(-10px); + } + 40% { + transform: translateX(10px); + } + 60% { + transform: translateX(-5px); + } + 80% { + transform: translateX(5px); + } +} +.zoom-enter, +.zoom-appear { + -webkit-animation-duration: 0.2s; + animation-duration: 0.2s; + -webkit-animation-fill-mode: both; + animation-fill-mode: both; + -webkit-animation-play-state: paused; + animation-play-state: paused; +} +.zoom-leave { + -webkit-animation-duration: 0.2s; + animation-duration: 0.2s; + -webkit-animation-fill-mode: both; + animation-fill-mode: both; + -webkit-animation-play-state: paused; + animation-play-state: paused; +} +.zoom-enter.zoom-enter-active, +.zoom-appear.zoom-appear-active { + -webkit-animation-name: antZoomIn; + animation-name: antZoomIn; + -webkit-animation-play-state: running; + animation-play-state: running; +} +.zoom-leave.zoom-leave-active { + -webkit-animation-name: antZoomOut; + animation-name: antZoomOut; + -webkit-animation-play-state: running; + animation-play-state: running; + pointer-events: none; +} +.zoom-enter, +.zoom-appear { + transform: scale(0); + opacity: 0; + -webkit-animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); + animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); +} +.zoom-leave { + -webkit-animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86); + animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86); +} +.zoom-big-enter, +.zoom-big-appear { + -webkit-animation-duration: 0.2s; + animation-duration: 0.2s; + -webkit-animation-fill-mode: both; + animation-fill-mode: both; + -webkit-animation-play-state: paused; + animation-play-state: paused; +} +.zoom-big-leave { + -webkit-animation-duration: 0.2s; + animation-duration: 0.2s; + -webkit-animation-fill-mode: both; + animation-fill-mode: both; + -webkit-animation-play-state: paused; + animation-play-state: paused; +} +.zoom-big-enter.zoom-big-enter-active, +.zoom-big-appear.zoom-big-appear-active { + -webkit-animation-name: antZoomBigIn; + animation-name: antZoomBigIn; + -webkit-animation-play-state: running; + animation-play-state: running; +} +.zoom-big-leave.zoom-big-leave-active { + -webkit-animation-name: antZoomBigOut; + animation-name: antZoomBigOut; + -webkit-animation-play-state: running; + animation-play-state: running; + pointer-events: none; +} +.zoom-big-enter, +.zoom-big-appear { + transform: scale(0); + opacity: 0; + -webkit-animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); + animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); +} +.zoom-big-leave { + -webkit-animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86); + animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86); +} +.zoom-big-fast-enter, +.zoom-big-fast-appear { + -webkit-animation-duration: 0.1s; + animation-duration: 0.1s; + -webkit-animation-fill-mode: both; + animation-fill-mode: both; + -webkit-animation-play-state: paused; + animation-play-state: paused; +} +.zoom-big-fast-leave { + -webkit-animation-duration: 0.1s; + animation-duration: 0.1s; + -webkit-animation-fill-mode: both; + animation-fill-mode: both; + -webkit-animation-play-state: paused; + animation-play-state: paused; +} +.zoom-big-fast-enter.zoom-big-fast-enter-active, +.zoom-big-fast-appear.zoom-big-fast-appear-active { + -webkit-animation-name: antZoomBigIn; + animation-name: antZoomBigIn; + -webkit-animation-play-state: running; + animation-play-state: running; +} +.zoom-big-fast-leave.zoom-big-fast-leave-active { + -webkit-animation-name: antZoomBigOut; + animation-name: antZoomBigOut; + -webkit-animation-play-state: running; + animation-play-state: running; + pointer-events: none; +} +.zoom-big-fast-enter, +.zoom-big-fast-appear { + transform: scale(0); + opacity: 0; + -webkit-animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); + animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); +} +.zoom-big-fast-leave { + -webkit-animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86); + animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86); +} +.zoom-up-enter, +.zoom-up-appear { + -webkit-animation-duration: 0.2s; + animation-duration: 0.2s; + -webkit-animation-fill-mode: both; + animation-fill-mode: both; + -webkit-animation-play-state: paused; + animation-play-state: paused; +} +.zoom-up-leave { + -webkit-animation-duration: 0.2s; + animation-duration: 0.2s; + -webkit-animation-fill-mode: both; + animation-fill-mode: both; + -webkit-animation-play-state: paused; + animation-play-state: paused; +} +.zoom-up-enter.zoom-up-enter-active, +.zoom-up-appear.zoom-up-appear-active { + -webkit-animation-name: antZoomUpIn; + animation-name: antZoomUpIn; + -webkit-animation-play-state: running; + animation-play-state: running; +} +.zoom-up-leave.zoom-up-leave-active { + -webkit-animation-name: antZoomUpOut; + animation-name: antZoomUpOut; + -webkit-animation-play-state: running; + animation-play-state: running; + pointer-events: none; +} +.zoom-up-enter, +.zoom-up-appear { + transform: scale(0); + opacity: 0; + -webkit-animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); + animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); +} +.zoom-up-leave { + -webkit-animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86); + animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86); +} +.zoom-down-enter, +.zoom-down-appear { + -webkit-animation-duration: 0.2s; + animation-duration: 0.2s; + -webkit-animation-fill-mode: both; + animation-fill-mode: both; + -webkit-animation-play-state: paused; + animation-play-state: paused; +} +.zoom-down-leave { + -webkit-animation-duration: 0.2s; + animation-duration: 0.2s; + -webkit-animation-fill-mode: both; + animation-fill-mode: both; + -webkit-animation-play-state: paused; + animation-play-state: paused; +} +.zoom-down-enter.zoom-down-enter-active, +.zoom-down-appear.zoom-down-appear-active { + -webkit-animation-name: antZoomDownIn; + animation-name: antZoomDownIn; + -webkit-animation-play-state: running; + animation-play-state: running; +} +.zoom-down-leave.zoom-down-leave-active { + -webkit-animation-name: antZoomDownOut; + animation-name: antZoomDownOut; + -webkit-animation-play-state: running; + animation-play-state: running; + pointer-events: none; +} +.zoom-down-enter, +.zoom-down-appear { + transform: scale(0); + opacity: 0; + -webkit-animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); + animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); +} +.zoom-down-leave { + -webkit-animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86); + animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86); +} +.zoom-left-enter, +.zoom-left-appear { + -webkit-animation-duration: 0.2s; + animation-duration: 0.2s; + -webkit-animation-fill-mode: both; + animation-fill-mode: both; + -webkit-animation-play-state: paused; + animation-play-state: paused; +} +.zoom-left-leave { + -webkit-animation-duration: 0.2s; + animation-duration: 0.2s; + -webkit-animation-fill-mode: both; + animation-fill-mode: both; + -webkit-animation-play-state: paused; + animation-play-state: paused; +} +.zoom-left-enter.zoom-left-enter-active, +.zoom-left-appear.zoom-left-appear-active { + -webkit-animation-name: antZoomLeftIn; + animation-name: antZoomLeftIn; + -webkit-animation-play-state: running; + animation-play-state: running; +} +.zoom-left-leave.zoom-left-leave-active { + -webkit-animation-name: antZoomLeftOut; + animation-name: antZoomLeftOut; + -webkit-animation-play-state: running; + animation-play-state: running; + pointer-events: none; +} +.zoom-left-enter, +.zoom-left-appear { + transform: scale(0); + opacity: 0; + -webkit-animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); + animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); +} +.zoom-left-leave { + -webkit-animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86); + animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86); +} +.zoom-right-enter, +.zoom-right-appear { + -webkit-animation-duration: 0.2s; + animation-duration: 0.2s; + -webkit-animation-fill-mode: both; + animation-fill-mode: both; + -webkit-animation-play-state: paused; + animation-play-state: paused; +} +.zoom-right-leave { + -webkit-animation-duration: 0.2s; + animation-duration: 0.2s; + -webkit-animation-fill-mode: both; + animation-fill-mode: both; + -webkit-animation-play-state: paused; + animation-play-state: paused; +} +.zoom-right-enter.zoom-right-enter-active, +.zoom-right-appear.zoom-right-appear-active { + -webkit-animation-name: antZoomRightIn; + animation-name: antZoomRightIn; + -webkit-animation-play-state: running; + animation-play-state: running; +} +.zoom-right-leave.zoom-right-leave-active { + -webkit-animation-name: antZoomRightOut; + animation-name: antZoomRightOut; + -webkit-animation-play-state: running; + animation-play-state: running; + pointer-events: none; +} +.zoom-right-enter, +.zoom-right-appear { + transform: scale(0); + opacity: 0; + -webkit-animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); + animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); +} +.zoom-right-leave { + -webkit-animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86); + animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86); +} +@-webkit-keyframes antZoomIn { + 0% { + transform: scale(0.2); + opacity: 0; + } + 100% { + transform: scale(1); + opacity: 1; + } +} +@keyframes antZoomIn { + 0% { + transform: scale(0.2); + opacity: 0; + } + 100% { + transform: scale(1); + opacity: 1; + } +} +@-webkit-keyframes antZoomOut { + 0% { + transform: scale(1); + } + 100% { + transform: scale(0.2); + opacity: 0; + } +} +@keyframes antZoomOut { + 0% { + transform: scale(1); + } + 100% { + transform: scale(0.2); + opacity: 0; + } +} +@-webkit-keyframes antZoomBigIn { + 0% { + transform: scale(0.8); + opacity: 0; + } + 100% { + transform: scale(1); + opacity: 1; + } +} +@keyframes antZoomBigIn { + 0% { + transform: scale(0.8); + opacity: 0; + } + 100% { + transform: scale(1); + opacity: 1; + } +} +@-webkit-keyframes antZoomBigOut { + 0% { + transform: scale(1); + } + 100% { + transform: scale(0.8); + opacity: 0; + } +} +@keyframes antZoomBigOut { + 0% { + transform: scale(1); + } + 100% { + transform: scale(0.8); + opacity: 0; + } +} +@-webkit-keyframes antZoomUpIn { + 0% { + transform: scale(0.8); + transform-origin: 50% 0%; + opacity: 0; + } + 100% { + transform: scale(1); + transform-origin: 50% 0%; + } +} +@keyframes antZoomUpIn { + 0% { + transform: scale(0.8); + transform-origin: 50% 0%; + opacity: 0; + } + 100% { + transform: scale(1); + transform-origin: 50% 0%; + } +} +@-webkit-keyframes antZoomUpOut { + 0% { + transform: scale(1); + transform-origin: 50% 0%; + } + 100% { + transform: scale(0.8); + transform-origin: 50% 0%; + opacity: 0; + } +} +@keyframes antZoomUpOut { + 0% { + transform: scale(1); + transform-origin: 50% 0%; + } + 100% { + transform: scale(0.8); + transform-origin: 50% 0%; + opacity: 0; + } +} +@-webkit-keyframes antZoomLeftIn { + 0% { + transform: scale(0.8); + transform-origin: 0% 50%; + opacity: 0; + } + 100% { + transform: scale(1); + transform-origin: 0% 50%; + } +} +@keyframes antZoomLeftIn { + 0% { + transform: scale(0.8); + transform-origin: 0% 50%; + opacity: 0; + } + 100% { + transform: scale(1); + transform-origin: 0% 50%; + } +} +@-webkit-keyframes antZoomLeftOut { + 0% { + transform: scale(1); + transform-origin: 0% 50%; + } + 100% { + transform: scale(0.8); + transform-origin: 0% 50%; + opacity: 0; + } +} +@keyframes antZoomLeftOut { + 0% { + transform: scale(1); + transform-origin: 0% 50%; + } + 100% { + transform: scale(0.8); + transform-origin: 0% 50%; + opacity: 0; + } +} +@-webkit-keyframes antZoomRightIn { + 0% { + transform: scale(0.8); + transform-origin: 100% 50%; + opacity: 0; + } + 100% { + transform: scale(1); + transform-origin: 100% 50%; + } +} +@keyframes antZoomRightIn { + 0% { + transform: scale(0.8); + transform-origin: 100% 50%; + opacity: 0; + } + 100% { + transform: scale(1); + transform-origin: 100% 50%; + } +} +@-webkit-keyframes antZoomRightOut { + 0% { + transform: scale(1); + transform-origin: 100% 50%; + } + 100% { + transform: scale(0.8); + transform-origin: 100% 50%; + opacity: 0; + } +} +@keyframes antZoomRightOut { + 0% { + transform: scale(1); + transform-origin: 100% 50%; + } + 100% { + transform: scale(0.8); + transform-origin: 100% 50%; + opacity: 0; + } +} +@-webkit-keyframes antZoomDownIn { + 0% { + transform: scale(0.8); + transform-origin: 50% 100%; + opacity: 0; + } + 100% { + transform: scale(1); + transform-origin: 50% 100%; + } +} +@keyframes antZoomDownIn { + 0% { + transform: scale(0.8); + transform-origin: 50% 100%; + opacity: 0; + } + 100% { + transform: scale(1); + transform-origin: 50% 100%; + } +} +@-webkit-keyframes antZoomDownOut { + 0% { + transform: scale(1); + transform-origin: 50% 100%; + } + 100% { + transform: scale(0.8); + transform-origin: 50% 100%; + opacity: 0; + } +} +@keyframes antZoomDownOut { + 0% { + transform: scale(1); + transform-origin: 50% 100%; + } + 100% { + transform: scale(0.8); + transform-origin: 50% 100%; + opacity: 0; + } +} +.ant-motion-collapse-legacy { + overflow: hidden; +} +.ant-motion-collapse-legacy-active { + transition: height 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), opacity 0.15s cubic-bezier(0.645, 0.045, 0.355, 1) !important; +} +.ant-motion-collapse { + overflow: hidden; + transition: height 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), opacity 0.15s cubic-bezier(0.645, 0.045, 0.355, 1) !important; +} +.ant-affix { + position: fixed; + z-index: 10; +} +.ant-alert { + box-sizing: border-box; + margin: 0; + padding: 0; + color: rgba(0, 0, 0, 0.65); + font-size: 15px; + font-variant: tabular-nums; + line-height: 1.5; + list-style: none; + font-feature-settings: 'tnum'; + position: relative; + padding: 8px 15px 8px 37px; + word-wrap: break-word; + border-radius: 4px; +} +.ant-alert.ant-alert-no-icon { + padding: 8px 15px; +} +.ant-alert.ant-alert-closable { + padding-right: 30px; +} +.ant-alert-icon { + position: absolute; + top: 11.75px; + left: 16px; +} +.ant-alert-description { + display: none; + font-size: 15px; + line-height: 22px; +} +.ant-alert-success { + background-color: #f6ffed; + border: 1px solid #b7eb8f; +} +.ant-alert-success .ant-alert-icon { + color: #52c41a; +} +.ant-alert-info { + background-color: #e6f7ff; + border: 1px solid #91d5ff; +} +.ant-alert-info .ant-alert-icon { + color: #1890ff; +} +.ant-alert-warning { + background-color: #fffbe6; + border: 1px solid #ffe58f; +} +.ant-alert-warning .ant-alert-icon { + color: #faad14; +} +.ant-alert-error { + background-color: #fff1f0; + border: 1px solid #ffa39e; +} +.ant-alert-error .ant-alert-icon { + color: #f5222d; +} +.ant-alert-close-icon { + position: absolute; + top: 8px; + right: 16px; + padding: 0; + overflow: hidden; + font-size: 12px; + line-height: 22px; + background-color: transparent; + border: none; + outline: none; + cursor: pointer; +} +.ant-alert-close-icon .anticon-close { + color: rgba(0, 0, 0, 0.45); + transition: color 0.3s; +} +.ant-alert-close-icon .anticon-close:hover { + color: rgba(0, 0, 0, 0.75); +} +.ant-alert-close-text { + color: rgba(0, 0, 0, 0.45); + transition: color 0.3s; +} +.ant-alert-close-text:hover { + color: rgba(0, 0, 0, 0.75); +} +.ant-alert-with-description { + position: relative; + padding: 15px 15px 15px 64px; + color: rgba(0, 0, 0, 0.65); + line-height: 1.5; + border-radius: 4px; +} +.ant-alert-with-description.ant-alert-no-icon { + padding: 15px; +} +.ant-alert-with-description .ant-alert-icon { + position: absolute; + top: 16px; + left: 24px; + font-size: 24px; +} +.ant-alert-with-description .ant-alert-close-icon { + position: absolute; + top: 16px; + right: 16px; + font-size: 15px; + cursor: pointer; +} +.ant-alert-with-description .ant-alert-message { + display: block; + margin-bottom: 4px; + color: rgba(0, 0, 0, 0.85); + font-size: 17px; +} +.ant-alert-message { + color: rgba(0, 0, 0, 0.85); +} +.ant-alert-with-description .ant-alert-description { + display: block; +} +.ant-alert.ant-alert-closing { + height: 0 !important; + margin: 0; + padding-top: 0; + padding-bottom: 0; + transform-origin: 50% 0; + transition: all 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86); +} +.ant-alert-slide-up-leave { + -webkit-animation: antAlertSlideUpOut 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86); + animation: antAlertSlideUpOut 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86); + -webkit-animation-fill-mode: both; + animation-fill-mode: both; +} +.ant-alert-banner { + margin-bottom: 0; + border: 0; + border-radius: 0; +} +@-webkit-keyframes antAlertSlideUpIn { + 0% { + transform: scaleY(0); + transform-origin: 0% 0%; + opacity: 0; + } + 100% { + transform: scaleY(1); + transform-origin: 0% 0%; + opacity: 1; + } +} +@keyframes antAlertSlideUpIn { + 0% { + transform: scaleY(0); + transform-origin: 0% 0%; + opacity: 0; + } + 100% { + transform: scaleY(1); + transform-origin: 0% 0%; + opacity: 1; + } +} +@-webkit-keyframes antAlertSlideUpOut { + 0% { + transform: scaleY(1); + transform-origin: 0% 0%; + opacity: 1; + } + 100% { + transform: scaleY(0); + transform-origin: 0% 0%; + opacity: 0; + } +} +@keyframes antAlertSlideUpOut { + 0% { + transform: scaleY(1); + transform-origin: 0% 0%; + opacity: 1; + } + 100% { + transform: scaleY(0); + transform-origin: 0% 0%; + opacity: 0; + } +} +.ant-anchor { + box-sizing: border-box; + margin: 0; + padding: 0; + color: rgba(0, 0, 0, 0.65); + font-size: 15px; + font-variant: tabular-nums; + line-height: 1.5; + list-style: none; + font-feature-settings: 'tnum'; + position: relative; + padding-left: 2px; +} +.ant-anchor-wrapper { + margin-left: -4px; + padding-left: 4px; + overflow: auto; + background-color: #fff; +} +.ant-anchor-ink { + position: absolute; + top: 0; + left: 0; + height: 100%; +} +.ant-anchor-ink::before { + position: relative; + display: block; + width: 2px; + height: 100%; + margin: 0 auto; + background-color: #e8e8e8; + content: ' '; +} +.ant-anchor-ink-ball { + position: absolute; + left: 50%; + display: none; + width: 8px; + height: 8px; + background-color: #fff; + border: 2px solid #004691; + border-radius: 8px; + transform: translateX(-50%); + transition: top 0.3s ease-in-out; +} +.ant-anchor-ink-ball.visible { + display: inline-block; +} +.ant-anchor.fixed .ant-anchor-ink .ant-anchor-ink-ball { + display: none; +} +.ant-anchor-link { + padding: 7px 0 7px 16px; + line-height: 1.143; +} +.ant-anchor-link-title { + position: relative; + display: block; + margin-bottom: 6px; + overflow: hidden; + color: rgba(0, 0, 0, 0.65); + white-space: nowrap; + text-overflow: ellipsis; + transition: all 0.3s; +} +.ant-anchor-link-title:only-child { + margin-bottom: 0; +} +.ant-anchor-link-active > .ant-anchor-link-title { + color: #004691; +} +.ant-anchor-link .ant-anchor-link { + padding-top: 5px; + padding-bottom: 5px; +} +.ant-select-auto-complete { + box-sizing: border-box; + margin: 0; + padding: 0; + color: rgba(0, 0, 0, 0.65); + font-size: 15px; + font-variant: tabular-nums; + line-height: 1.5; + list-style: none; + font-feature-settings: 'tnum'; +} +.ant-select-auto-complete.ant-select .ant-select-selection { + border: 0; + box-shadow: none; +} +.ant-select-auto-complete.ant-select .ant-select-selection__rendered { + height: 100%; + margin-right: 0; + margin-left: 0; + line-height: 32px; +} +.ant-select-auto-complete.ant-select .ant-select-selection__placeholder { + margin-right: 12px; + margin-left: 12px; +} +.ant-select-auto-complete.ant-select .ant-select-selection--single { + height: auto; +} +.ant-select-auto-complete.ant-select .ant-select-search--inline { + position: static; + float: left; +} +.ant-select-auto-complete.ant-select-allow-clear .ant-select-selection:hover .ant-select-selection__rendered { + margin-right: 0 !important; +} +.ant-select-auto-complete.ant-select .ant-input { + height: 32px; + line-height: 1.5; + background: transparent; + border-width: 1px; +} +.ant-select-auto-complete.ant-select .ant-input:focus, +.ant-select-auto-complete.ant-select .ant-input:hover { + border-color: #195e9e; + border-right-width: 1px !important; +} +.ant-select-auto-complete.ant-select .ant-input[disabled] { + color: rgba(0, 0, 0, 0.25); + background-color: #f5f5f5; + cursor: not-allowed; + opacity: 1; +} +.ant-select-auto-complete.ant-select .ant-input[disabled]:hover { + border-color: #d9d9d9; + border-right-width: 1px !important; +} +.ant-select-auto-complete.ant-select-lg .ant-select-selection__rendered { + line-height: 40px; +} +.ant-select-auto-complete.ant-select-lg .ant-input { + height: 40px; + padding-top: 6px; + padding-bottom: 6px; +} +.ant-select-auto-complete.ant-select-sm .ant-select-selection__rendered { + line-height: 24px; +} +.ant-select-auto-complete.ant-select-sm .ant-input { + height: 24px; + padding-top: 1px; + padding-bottom: 1px; +} +.ant-input-group > .ant-select-auto-complete .ant-select-search__field.ant-input-affix-wrapper { + display: inline; + float: none; +} +.ant-avatar { + box-sizing: border-box; + margin: 0; + padding: 0; + color: rgba(0, 0, 0, 0.65); + font-size: 15px; + font-variant: tabular-nums; + line-height: 1.5; + list-style: none; + font-feature-settings: 'tnum'; + position: relative; + display: inline-block; + overflow: hidden; + color: #fff; + white-space: nowrap; + text-align: center; + vertical-align: middle; + background: #ccc; + width: 32px; + height: 32px; + line-height: 32px; + border-radius: 50%; +} +.ant-avatar-image { + background: transparent; +} +.ant-avatar-string { + position: absolute; + left: 50%; + transform-origin: 0 center; +} +.ant-avatar.ant-avatar-icon { + font-size: 18px; +} +.ant-avatar-lg { + width: 40px; + height: 40px; + line-height: 40px; + border-radius: 50%; +} +.ant-avatar-lg-string { + position: absolute; + left: 50%; + transform-origin: 0 center; +} +.ant-avatar-lg.ant-avatar-icon { + font-size: 24px; +} +.ant-avatar-sm { + width: 24px; + height: 24px; + line-height: 24px; + border-radius: 50%; +} +.ant-avatar-sm-string { + position: absolute; + left: 50%; + transform-origin: 0 center; +} +.ant-avatar-sm.ant-avatar-icon { + font-size: 14px; +} +.ant-avatar-square { + border-radius: 4px; +} +.ant-avatar > img { + display: block; + width: 100%; + height: 100%; + -o-object-fit: cover; + object-fit: cover; +} +.ant-back-top { + box-sizing: border-box; + margin: 0; + padding: 0; + color: rgba(0, 0, 0, 0.65); + font-size: 15px; + font-variant: tabular-nums; + line-height: 1.5; + list-style: none; + font-feature-settings: 'tnum'; + position: fixed; + right: 100px; + bottom: 50px; + z-index: 10; + width: 40px; + height: 40px; + cursor: pointer; +} +.ant-back-top-content { + width: 40px; + height: 40px; + overflow: hidden; + color: #fff; + text-align: center; + background-color: rgba(0, 0, 0, 0.45); + border-radius: 20px; + transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); +} +.ant-back-top-content:hover { + background-color: rgba(0, 0, 0, 0.65); + transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); +} +.ant-back-top-icon { + width: 14px; + height: 16px; + margin: 12px auto; + background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACQAAAAoCAYAAACWwljjAAAABGdBTUEAALGPC/xhBQAAAbtJREFUWAntmMtKw0AUhhMvS5cuxILgQlRUpIggIoKIIoigG1eC+AA+jo+i6FIXBfeuXIgoeKVeitVWJX5HWhhDksnUpp3FDPyZk3Nm5nycmZKkXhAEOXSA3lG7muTeRzmfy6HneUvIhnYkQK+Q9NhAA0Opg0vBEhjBKHiyb8iGMyQMOYuK41BcBSypAL+MYXSKjtFAW7EAGEO3qN4uMQbbAkXiSfRQJ1H6a+yhlkKRcAoVFYiweYNjtCVQJJpBz2GCiPt7fBOZQpFgDpUikse5HgnkM4Fi4QX0Fpc5wf9EbLqpUCy4jMoJSXWhFwbMNgWKhVbRhy5jirhs9fy/oFhgHVVTJEs7RLZ8sSEoJm6iz7SZDMbJ+/OKERQTttCXQRLToRUmrKWCYuA2+jbN0MB4OQobYShfdTCgn/sL1K36M7TLrN3n+758aPy2rrpR6+/od5E8tf/A1uLS9aId5T7J3CNYihkQ4D9PiMdMC7mp4rjB9kjFjZp8BlnVHJBuO1yFXIV0FdDF3RlyFdJVQBdv5AxVdIsq8apiZ2PyYO1EVykesGfZEESsCkweyR8MUW+V8uJ1gkYipmpdP1pm2aJVPEGzAAAAAElFTkSuQmCC) 100%/100% no-repeat; +} +@media screen and (max-width: 768px) { + .ant-back-top { + right: 60px; + } +} +@media screen and (max-width: 480px) { + .ant-back-top { + right: 20px; + } +} +.ant-badge { + box-sizing: border-box; + margin: 0; + padding: 0; + color: rgba(0, 0, 0, 0.65); + font-size: 15px; + font-variant: tabular-nums; + line-height: 1.5; + list-style: none; + font-feature-settings: 'tnum'; + position: relative; + display: inline-block; + color: unset; + line-height: 1; +} +.ant-badge-count { + min-width: 20px; + height: 20px; + padding: 0 6px; + color: #fff; + font-weight: normal; + font-size: 12px; + line-height: 20px; + white-space: nowrap; + text-align: center; + background: #f5222d; + border-radius: 10px; + box-shadow: 0 0 0 1px #fff; +} +.ant-badge-count a, +.ant-badge-count a:hover { + color: #fff; +} +.ant-badge-multiple-words { + padding: 0 8px; +} +.ant-badge-dot { + width: 6px; + height: 6px; + background: #f5222d; + border-radius: 100%; + box-shadow: 0 0 0 1px #fff; +} +.ant-badge-count, +.ant-badge-dot, +.ant-badge .ant-scroll-number-custom-component { + position: absolute; + top: 0; + right: 0; + z-index: 1; + transform: translate(50%, -50%); + transform-origin: 100% 0%; +} +.ant-badge-status { + line-height: inherit; + vertical-align: baseline; +} +.ant-badge-status-dot { + position: relative; + top: -1px; + display: inline-block; + width: 6px; + height: 6px; + vertical-align: middle; + border-radius: 50%; +} +.ant-badge-status-success { + background-color: #52c41a; +} +.ant-badge-status-processing { + position: relative; + background-color: #1890ff; +} +.ant-badge-status-processing::after { + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + border: 1px solid #1890ff; + border-radius: 50%; + -webkit-animation: antStatusProcessing 1.2s infinite ease-in-out; + animation: antStatusProcessing 1.2s infinite ease-in-out; + content: ''; +} +.ant-badge-status-default { + background-color: #d9d9d9; +} +.ant-badge-status-error { + background-color: #f5222d; +} +.ant-badge-status-warning { + background-color: #faad14; +} +.ant-badge-status-pink { + background: #eb2f96; +} +.ant-badge-status-magenta { + background: #eb2f96; +} +.ant-badge-status-red { + background: #f5222d; +} +.ant-badge-status-volcano { + background: #fa541c; +} +.ant-badge-status-orange { + background: #fa8c16; +} +.ant-badge-status-yellow { + background: #fadb14; +} +.ant-badge-status-gold { + background: #faad14; +} +.ant-badge-status-cyan { + background: #13c2c2; +} +.ant-badge-status-lime { + background: #a0d911; +} +.ant-badge-status-green { + background: #52c41a; +} +.ant-badge-status-blue { + background: #1890ff; +} +.ant-badge-status-geekblue { + background: #2f54eb; +} +.ant-badge-status-purple { + background: #722ed1; +} +.ant-badge-status-text { + margin-left: 8px; + color: rgba(0, 0, 0, 0.65); + font-size: 15px; +} +.ant-badge-zoom-appear, +.ant-badge-zoom-enter { + -webkit-animation: antZoomBadgeIn 0.3s cubic-bezier(0.12, 0.4, 0.29, 1.46); + animation: antZoomBadgeIn 0.3s cubic-bezier(0.12, 0.4, 0.29, 1.46); + -webkit-animation-fill-mode: both; + animation-fill-mode: both; +} +.ant-badge-zoom-leave { + -webkit-animation: antZoomBadgeOut 0.3s cubic-bezier(0.71, -0.46, 0.88, 0.6); + animation: antZoomBadgeOut 0.3s cubic-bezier(0.71, -0.46, 0.88, 0.6); + -webkit-animation-fill-mode: both; + animation-fill-mode: both; +} +.ant-badge-not-a-wrapper:not(.ant-badge-status) { + vertical-align: middle; +} +.ant-badge-not-a-wrapper .ant-scroll-number { + position: relative; + top: auto; + display: block; +} +.ant-badge-not-a-wrapper .ant-badge-count { + transform: none; +} +@-webkit-keyframes antStatusProcessing { + 0% { + transform: scale(0.8); + opacity: 0.5; + } + 100% { + transform: scale(2.4); + opacity: 0; + } +} +@keyframes antStatusProcessing { + 0% { + transform: scale(0.8); + opacity: 0.5; + } + 100% { + transform: scale(2.4); + opacity: 0; + } +} +.ant-scroll-number { + overflow: hidden; +} +.ant-scroll-number-only { + display: inline-block; + height: 20px; + transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); +} +.ant-scroll-number-only > p.ant-scroll-number-only-unit { + height: 20px; + margin: 0; +} +.ant-scroll-number-symbol { + vertical-align: top; +} +@-webkit-keyframes antZoomBadgeIn { + 0% { + transform: scale(0) translate(50%, -50%); + opacity: 0; + } + 100% { + transform: scale(1) translate(50%, -50%); + } +} +@keyframes antZoomBadgeIn { + 0% { + transform: scale(0) translate(50%, -50%); + opacity: 0; + } + 100% { + transform: scale(1) translate(50%, -50%); + } +} +@-webkit-keyframes antZoomBadgeOut { + 0% { + transform: scale(1) translate(50%, -50%); + } + 100% { + transform: scale(0) translate(50%, -50%); + opacity: 0; + } +} +@keyframes antZoomBadgeOut { + 0% { + transform: scale(1) translate(50%, -50%); + } + 100% { + transform: scale(0) translate(50%, -50%); + opacity: 0; + } +} +.ant-breadcrumb { + box-sizing: border-box; + margin: 0; + padding: 0; + color: rgba(0, 0, 0, 0.65); + font-variant: tabular-nums; + line-height: 1.5; + list-style: none; + font-feature-settings: 'tnum'; + color: rgba(0, 0, 0, 0.45); + font-size: 15px; +} +.ant-breadcrumb .anticon { + font-size: 15px; +} +.ant-breadcrumb a { + color: rgba(0, 0, 0, 0.45); + transition: color 0.3s; +} +.ant-breadcrumb a:hover { + color: #195e9e; +} +.ant-breadcrumb > span:last-child { + color: rgba(0, 0, 0, 0.65); +} +.ant-breadcrumb > span:last-child a { + color: rgba(0, 0, 0, 0.65); +} +.ant-breadcrumb > span:last-child .ant-breadcrumb-separator { + display: none; +} +.ant-breadcrumb-separator { + margin: 0 8px; + color: rgba(0, 0, 0, 0.45); +} +.ant-breadcrumb-link > .anticon + span { + margin-left: 4px; +} +.ant-breadcrumb-overlay-link > .anticon { + margin-left: 4px; +} +.ant-btn { + line-height: 1.499; + position: relative; + display: inline-block; + font-weight: 400; + white-space: nowrap; + text-align: center; + background-image: none; + border: 1px solid transparent; + box-shadow: 0 2px 0 rgba(0, 0, 0, 0.015); + cursor: pointer; + transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + touch-action: manipulation; + height: 32px; + padding: 0 15px; + font-size: 15px; + border-radius: 4px; + color: rgba(0, 0, 0, 0.65); + background-color: #fff; + border-color: #d9d9d9; +} +.ant-btn > .anticon { + line-height: 1; +} +.ant-btn, +.ant-btn:active, +.ant-btn:focus { + outline: 0; +} +.ant-btn:not([disabled]):hover { + text-decoration: none; +} +.ant-btn:not([disabled]):active { + outline: 0; + box-shadow: none; +} +.ant-btn.disabled, +.ant-btn[disabled] { + cursor: not-allowed; +} +.ant-btn.disabled > *, +.ant-btn[disabled] > * { + pointer-events: none; +} +.ant-btn-lg { + height: 40px; + padding: 0 15px; + font-size: 17px; + border-radius: 4px; +} +.ant-btn-sm { + height: 24px; + padding: 0 7px; + font-size: 15px; + border-radius: 4px; +} +.ant-btn > a:only-child { + color: currentColor; +} +.ant-btn > a:only-child::after { + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + background: transparent; + content: ''; +} +.ant-btn:hover, +.ant-btn:focus { + color: #195e9e; + background-color: #fff; + border-color: #195e9e; +} +.ant-btn:hover > a:only-child, +.ant-btn:focus > a:only-child { + color: currentColor; +} +.ant-btn:hover > a:only-child::after, +.ant-btn:focus > a:only-child::after { + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + background: transparent; + content: ''; +} +.ant-btn:active, +.ant-btn.active { + color: #00306b; + background-color: #fff; + border-color: #00306b; +} +.ant-btn:active > a:only-child, +.ant-btn.active > a:only-child { + color: currentColor; +} +.ant-btn:active > a:only-child::after, +.ant-btn.active > a:only-child::after { + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + background: transparent; + content: ''; +} +.ant-btn-disabled, +.ant-btn.disabled, +.ant-btn[disabled], +.ant-btn-disabled:hover, +.ant-btn.disabled:hover, +.ant-btn[disabled]:hover, +.ant-btn-disabled:focus, +.ant-btn.disabled:focus, +.ant-btn[disabled]:focus, +.ant-btn-disabled:active, +.ant-btn.disabled:active, +.ant-btn[disabled]:active, +.ant-btn-disabled.active, +.ant-btn.disabled.active, +.ant-btn[disabled].active { + color: rgba(0, 0, 0, 0.25); + background-color: #f5f5f5; + border-color: #d9d9d9; + text-shadow: none; + box-shadow: none; +} +.ant-btn-disabled > a:only-child, +.ant-btn.disabled > a:only-child, +.ant-btn[disabled] > a:only-child, +.ant-btn-disabled:hover > a:only-child, +.ant-btn.disabled:hover > a:only-child, +.ant-btn[disabled]:hover > a:only-child, +.ant-btn-disabled:focus > a:only-child, +.ant-btn.disabled:focus > a:only-child, +.ant-btn[disabled]:focus > a:only-child, +.ant-btn-disabled:active > a:only-child, +.ant-btn.disabled:active > a:only-child, +.ant-btn[disabled]:active > a:only-child, +.ant-btn-disabled.active > a:only-child, +.ant-btn.disabled.active > a:only-child, +.ant-btn[disabled].active > a:only-child { + color: currentColor; +} +.ant-btn-disabled > a:only-child::after, +.ant-btn.disabled > a:only-child::after, +.ant-btn[disabled] > a:only-child::after, +.ant-btn-disabled:hover > a:only-child::after, +.ant-btn.disabled:hover > a:only-child::after, +.ant-btn[disabled]:hover > a:only-child::after, +.ant-btn-disabled:focus > a:only-child::after, +.ant-btn.disabled:focus > a:only-child::after, +.ant-btn[disabled]:focus > a:only-child::after, +.ant-btn-disabled:active > a:only-child::after, +.ant-btn.disabled:active > a:only-child::after, +.ant-btn[disabled]:active > a:only-child::after, +.ant-btn-disabled.active > a:only-child::after, +.ant-btn.disabled.active > a:only-child::after, +.ant-btn[disabled].active > a:only-child::after { + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + background: transparent; + content: ''; +} +.ant-btn:hover, +.ant-btn:focus, +.ant-btn:active, +.ant-btn.active { + text-decoration: none; + background: #fff; +} +.ant-btn > i, +.ant-btn > span { + display: inline-block; + transition: margin-left 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); + pointer-events: none; +} +.ant-btn-primary { + color: #fff; + background-color: #004691; + border-color: #004691; + text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.12); + box-shadow: 0 2px 0 rgba(0, 0, 0, 0.045); +} +.ant-btn-primary > a:only-child { + color: currentColor; +} +.ant-btn-primary > a:only-child::after { + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + background: transparent; + content: ''; +} +.ant-btn-primary:hover, +.ant-btn-primary:focus { + color: #fff; + background-color: #195e9e; + border-color: #195e9e; +} +.ant-btn-primary:hover > a:only-child, +.ant-btn-primary:focus > a:only-child { + color: currentColor; +} +.ant-btn-primary:hover > a:only-child::after, +.ant-btn-primary:focus > a:only-child::after { + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + background: transparent; + content: ''; +} +.ant-btn-primary:active, +.ant-btn-primary.active { + color: #fff; + background-color: #00306b; + border-color: #00306b; +} +.ant-btn-primary:active > a:only-child, +.ant-btn-primary.active > a:only-child { + color: currentColor; +} +.ant-btn-primary:active > a:only-child::after, +.ant-btn-primary.active > a:only-child::after { + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + background: transparent; + content: ''; +} +.ant-btn-primary-disabled, +.ant-btn-primary.disabled, +.ant-btn-primary[disabled], +.ant-btn-primary-disabled:hover, +.ant-btn-primary.disabled:hover, +.ant-btn-primary[disabled]:hover, +.ant-btn-primary-disabled:focus, +.ant-btn-primary.disabled:focus, +.ant-btn-primary[disabled]:focus, +.ant-btn-primary-disabled:active, +.ant-btn-primary.disabled:active, +.ant-btn-primary[disabled]:active, +.ant-btn-primary-disabled.active, +.ant-btn-primary.disabled.active, +.ant-btn-primary[disabled].active { + color: rgba(0, 0, 0, 0.25); + background-color: #f5f5f5; + border-color: #d9d9d9; + text-shadow: none; + box-shadow: none; +} +.ant-btn-primary-disabled > a:only-child, +.ant-btn-primary.disabled > a:only-child, +.ant-btn-primary[disabled] > a:only-child, +.ant-btn-primary-disabled:hover > a:only-child, +.ant-btn-primary.disabled:hover > a:only-child, +.ant-btn-primary[disabled]:hover > a:only-child, +.ant-btn-primary-disabled:focus > a:only-child, +.ant-btn-primary.disabled:focus > a:only-child, +.ant-btn-primary[disabled]:focus > a:only-child, +.ant-btn-primary-disabled:active > a:only-child, +.ant-btn-primary.disabled:active > a:only-child, +.ant-btn-primary[disabled]:active > a:only-child, +.ant-btn-primary-disabled.active > a:only-child, +.ant-btn-primary.disabled.active > a:only-child, +.ant-btn-primary[disabled].active > a:only-child { + color: currentColor; +} +.ant-btn-primary-disabled > a:only-child::after, +.ant-btn-primary.disabled > a:only-child::after, +.ant-btn-primary[disabled] > a:only-child::after, +.ant-btn-primary-disabled:hover > a:only-child::after, +.ant-btn-primary.disabled:hover > a:only-child::after, +.ant-btn-primary[disabled]:hover > a:only-child::after, +.ant-btn-primary-disabled:focus > a:only-child::after, +.ant-btn-primary.disabled:focus > a:only-child::after, +.ant-btn-primary[disabled]:focus > a:only-child::after, +.ant-btn-primary-disabled:active > a:only-child::after, +.ant-btn-primary.disabled:active > a:only-child::after, +.ant-btn-primary[disabled]:active > a:only-child::after, +.ant-btn-primary-disabled.active > a:only-child::after, +.ant-btn-primary.disabled.active > a:only-child::after, +.ant-btn-primary[disabled].active > a:only-child::after { + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + background: transparent; + content: ''; +} +.ant-btn-group .ant-btn-primary:not(:first-child):not(:last-child) { + border-right-color: #195e9e; + border-left-color: #195e9e; +} +.ant-btn-group .ant-btn-primary:not(:first-child):not(:last-child):disabled { + border-color: #d9d9d9; +} +.ant-btn-group .ant-btn-primary:first-child:not(:last-child) { + border-right-color: #195e9e; +} +.ant-btn-group .ant-btn-primary:first-child:not(:last-child)[disabled] { + border-right-color: #d9d9d9; +} +.ant-btn-group .ant-btn-primary:last-child:not(:first-child), +.ant-btn-group .ant-btn-primary + .ant-btn-primary { + border-left-color: #195e9e; +} +.ant-btn-group .ant-btn-primary:last-child:not(:first-child)[disabled], +.ant-btn-group .ant-btn-primary + .ant-btn-primary[disabled] { + border-left-color: #d9d9d9; +} +.ant-btn-ghost { + color: rgba(0, 0, 0, 0.65); + background-color: transparent; + border-color: #d9d9d9; +} +.ant-btn-ghost > a:only-child { + color: currentColor; +} +.ant-btn-ghost > a:only-child::after { + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + background: transparent; + content: ''; +} +.ant-btn-ghost:hover, +.ant-btn-ghost:focus { + color: #195e9e; + background-color: transparent; + border-color: #195e9e; +} +.ant-btn-ghost:hover > a:only-child, +.ant-btn-ghost:focus > a:only-child { + color: currentColor; +} +.ant-btn-ghost:hover > a:only-child::after, +.ant-btn-ghost:focus > a:only-child::after { + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + background: transparent; + content: ''; +} +.ant-btn-ghost:active, +.ant-btn-ghost.active { + color: #00306b; + background-color: transparent; + border-color: #00306b; +} +.ant-btn-ghost:active > a:only-child, +.ant-btn-ghost.active > a:only-child { + color: currentColor; +} +.ant-btn-ghost:active > a:only-child::after, +.ant-btn-ghost.active > a:only-child::after { + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + background: transparent; + content: ''; +} +.ant-btn-ghost-disabled, +.ant-btn-ghost.disabled, +.ant-btn-ghost[disabled], +.ant-btn-ghost-disabled:hover, +.ant-btn-ghost.disabled:hover, +.ant-btn-ghost[disabled]:hover, +.ant-btn-ghost-disabled:focus, +.ant-btn-ghost.disabled:focus, +.ant-btn-ghost[disabled]:focus, +.ant-btn-ghost-disabled:active, +.ant-btn-ghost.disabled:active, +.ant-btn-ghost[disabled]:active, +.ant-btn-ghost-disabled.active, +.ant-btn-ghost.disabled.active, +.ant-btn-ghost[disabled].active { + color: rgba(0, 0, 0, 0.25); + background-color: #f5f5f5; + border-color: #d9d9d9; + text-shadow: none; + box-shadow: none; +} +.ant-btn-ghost-disabled > a:only-child, +.ant-btn-ghost.disabled > a:only-child, +.ant-btn-ghost[disabled] > a:only-child, +.ant-btn-ghost-disabled:hover > a:only-child, +.ant-btn-ghost.disabled:hover > a:only-child, +.ant-btn-ghost[disabled]:hover > a:only-child, +.ant-btn-ghost-disabled:focus > a:only-child, +.ant-btn-ghost.disabled:focus > a:only-child, +.ant-btn-ghost[disabled]:focus > a:only-child, +.ant-btn-ghost-disabled:active > a:only-child, +.ant-btn-ghost.disabled:active > a:only-child, +.ant-btn-ghost[disabled]:active > a:only-child, +.ant-btn-ghost-disabled.active > a:only-child, +.ant-btn-ghost.disabled.active > a:only-child, +.ant-btn-ghost[disabled].active > a:only-child { + color: currentColor; +} +.ant-btn-ghost-disabled > a:only-child::after, +.ant-btn-ghost.disabled > a:only-child::after, +.ant-btn-ghost[disabled] > a:only-child::after, +.ant-btn-ghost-disabled:hover > a:only-child::after, +.ant-btn-ghost.disabled:hover > a:only-child::after, +.ant-btn-ghost[disabled]:hover > a:only-child::after, +.ant-btn-ghost-disabled:focus > a:only-child::after, +.ant-btn-ghost.disabled:focus > a:only-child::after, +.ant-btn-ghost[disabled]:focus > a:only-child::after, +.ant-btn-ghost-disabled:active > a:only-child::after, +.ant-btn-ghost.disabled:active > a:only-child::after, +.ant-btn-ghost[disabled]:active > a:only-child::after, +.ant-btn-ghost-disabled.active > a:only-child::after, +.ant-btn-ghost.disabled.active > a:only-child::after, +.ant-btn-ghost[disabled].active > a:only-child::after { + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + background: transparent; + content: ''; +} +.ant-btn-dashed { + color: rgba(0, 0, 0, 0.65); + background-color: #fff; + border-color: #d9d9d9; + border-style: dashed; +} +.ant-btn-dashed > a:only-child { + color: currentColor; +} +.ant-btn-dashed > a:only-child::after { + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + background: transparent; + content: ''; +} +.ant-btn-dashed:hover, +.ant-btn-dashed:focus { + color: #195e9e; + background-color: #fff; + border-color: #195e9e; +} +.ant-btn-dashed:hover > a:only-child, +.ant-btn-dashed:focus > a:only-child { + color: currentColor; +} +.ant-btn-dashed:hover > a:only-child::after, +.ant-btn-dashed:focus > a:only-child::after { + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + background: transparent; + content: ''; +} +.ant-btn-dashed:active, +.ant-btn-dashed.active { + color: #00306b; + background-color: #fff; + border-color: #00306b; +} +.ant-btn-dashed:active > a:only-child, +.ant-btn-dashed.active > a:only-child { + color: currentColor; +} +.ant-btn-dashed:active > a:only-child::after, +.ant-btn-dashed.active > a:only-child::after { + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + background: transparent; + content: ''; +} +.ant-btn-dashed-disabled, +.ant-btn-dashed.disabled, +.ant-btn-dashed[disabled], +.ant-btn-dashed-disabled:hover, +.ant-btn-dashed.disabled:hover, +.ant-btn-dashed[disabled]:hover, +.ant-btn-dashed-disabled:focus, +.ant-btn-dashed.disabled:focus, +.ant-btn-dashed[disabled]:focus, +.ant-btn-dashed-disabled:active, +.ant-btn-dashed.disabled:active, +.ant-btn-dashed[disabled]:active, +.ant-btn-dashed-disabled.active, +.ant-btn-dashed.disabled.active, +.ant-btn-dashed[disabled].active { + color: rgba(0, 0, 0, 0.25); + background-color: #f5f5f5; + border-color: #d9d9d9; + text-shadow: none; + box-shadow: none; +} +.ant-btn-dashed-disabled > a:only-child, +.ant-btn-dashed.disabled > a:only-child, +.ant-btn-dashed[disabled] > a:only-child, +.ant-btn-dashed-disabled:hover > a:only-child, +.ant-btn-dashed.disabled:hover > a:only-child, +.ant-btn-dashed[disabled]:hover > a:only-child, +.ant-btn-dashed-disabled:focus > a:only-child, +.ant-btn-dashed.disabled:focus > a:only-child, +.ant-btn-dashed[disabled]:focus > a:only-child, +.ant-btn-dashed-disabled:active > a:only-child, +.ant-btn-dashed.disabled:active > a:only-child, +.ant-btn-dashed[disabled]:active > a:only-child, +.ant-btn-dashed-disabled.active > a:only-child, +.ant-btn-dashed.disabled.active > a:only-child, +.ant-btn-dashed[disabled].active > a:only-child { + color: currentColor; +} +.ant-btn-dashed-disabled > a:only-child::after, +.ant-btn-dashed.disabled > a:only-child::after, +.ant-btn-dashed[disabled] > a:only-child::after, +.ant-btn-dashed-disabled:hover > a:only-child::after, +.ant-btn-dashed.disabled:hover > a:only-child::after, +.ant-btn-dashed[disabled]:hover > a:only-child::after, +.ant-btn-dashed-disabled:focus > a:only-child::after, +.ant-btn-dashed.disabled:focus > a:only-child::after, +.ant-btn-dashed[disabled]:focus > a:only-child::after, +.ant-btn-dashed-disabled:active > a:only-child::after, +.ant-btn-dashed.disabled:active > a:only-child::after, +.ant-btn-dashed[disabled]:active > a:only-child::after, +.ant-btn-dashed-disabled.active > a:only-child::after, +.ant-btn-dashed.disabled.active > a:only-child::after, +.ant-btn-dashed[disabled].active > a:only-child::after { + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + background: transparent; + content: ''; +} +.ant-btn-danger { + color: #fff; + background-color: #ff4d4f; + border-color: #ff4d4f; + text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.12); + box-shadow: 0 2px 0 rgba(0, 0, 0, 0.045); +} +.ant-btn-danger > a:only-child { + color: currentColor; +} +.ant-btn-danger > a:only-child::after { + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + background: transparent; + content: ''; +} +.ant-btn-danger:hover, +.ant-btn-danger:focus { + color: #fff; + background-color: #ff7875; + border-color: #ff7875; +} +.ant-btn-danger:hover > a:only-child, +.ant-btn-danger:focus > a:only-child { + color: currentColor; +} +.ant-btn-danger:hover > a:only-child::after, +.ant-btn-danger:focus > a:only-child::after { + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + background: transparent; + content: ''; +} +.ant-btn-danger:active, +.ant-btn-danger.active { + color: #fff; + background-color: #d9363e; + border-color: #d9363e; +} +.ant-btn-danger:active > a:only-child, +.ant-btn-danger.active > a:only-child { + color: currentColor; +} +.ant-btn-danger:active > a:only-child::after, +.ant-btn-danger.active > a:only-child::after { + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + background: transparent; + content: ''; +} +.ant-btn-danger-disabled, +.ant-btn-danger.disabled, +.ant-btn-danger[disabled], +.ant-btn-danger-disabled:hover, +.ant-btn-danger.disabled:hover, +.ant-btn-danger[disabled]:hover, +.ant-btn-danger-disabled:focus, +.ant-btn-danger.disabled:focus, +.ant-btn-danger[disabled]:focus, +.ant-btn-danger-disabled:active, +.ant-btn-danger.disabled:active, +.ant-btn-danger[disabled]:active, +.ant-btn-danger-disabled.active, +.ant-btn-danger.disabled.active, +.ant-btn-danger[disabled].active { + color: rgba(0, 0, 0, 0.25); + background-color: #f5f5f5; + border-color: #d9d9d9; + text-shadow: none; + box-shadow: none; +} +.ant-btn-danger-disabled > a:only-child, +.ant-btn-danger.disabled > a:only-child, +.ant-btn-danger[disabled] > a:only-child, +.ant-btn-danger-disabled:hover > a:only-child, +.ant-btn-danger.disabled:hover > a:only-child, +.ant-btn-danger[disabled]:hover > a:only-child, +.ant-btn-danger-disabled:focus > a:only-child, +.ant-btn-danger.disabled:focus > a:only-child, +.ant-btn-danger[disabled]:focus > a:only-child, +.ant-btn-danger-disabled:active > a:only-child, +.ant-btn-danger.disabled:active > a:only-child, +.ant-btn-danger[disabled]:active > a:only-child, +.ant-btn-danger-disabled.active > a:only-child, +.ant-btn-danger.disabled.active > a:only-child, +.ant-btn-danger[disabled].active > a:only-child { + color: currentColor; +} +.ant-btn-danger-disabled > a:only-child::after, +.ant-btn-danger.disabled > a:only-child::after, +.ant-btn-danger[disabled] > a:only-child::after, +.ant-btn-danger-disabled:hover > a:only-child::after, +.ant-btn-danger.disabled:hover > a:only-child::after, +.ant-btn-danger[disabled]:hover > a:only-child::after, +.ant-btn-danger-disabled:focus > a:only-child::after, +.ant-btn-danger.disabled:focus > a:only-child::after, +.ant-btn-danger[disabled]:focus > a:only-child::after, +.ant-btn-danger-disabled:active > a:only-child::after, +.ant-btn-danger.disabled:active > a:only-child::after, +.ant-btn-danger[disabled]:active > a:only-child::after, +.ant-btn-danger-disabled.active > a:only-child::after, +.ant-btn-danger.disabled.active > a:only-child::after, +.ant-btn-danger[disabled].active > a:only-child::after { + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + background: transparent; + content: ''; +} +.ant-btn-link { + color: #004691; + background-color: transparent; + border-color: transparent; + box-shadow: none; +} +.ant-btn-link > a:only-child { + color: currentColor; +} +.ant-btn-link > a:only-child::after { + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + background: transparent; + content: ''; +} +.ant-btn-link:hover, +.ant-btn-link:focus { + color: #195e9e; + background-color: transparent; + border-color: #195e9e; +} +.ant-btn-link:hover > a:only-child, +.ant-btn-link:focus > a:only-child { + color: currentColor; +} +.ant-btn-link:hover > a:only-child::after, +.ant-btn-link:focus > a:only-child::after { + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + background: transparent; + content: ''; +} +.ant-btn-link:active, +.ant-btn-link.active { + color: #00306b; + background-color: transparent; + border-color: #00306b; +} +.ant-btn-link:active > a:only-child, +.ant-btn-link.active > a:only-child { + color: currentColor; +} +.ant-btn-link:active > a:only-child::after, +.ant-btn-link.active > a:only-child::after { + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + background: transparent; + content: ''; +} +.ant-btn-link-disabled, +.ant-btn-link.disabled, +.ant-btn-link[disabled], +.ant-btn-link-disabled:hover, +.ant-btn-link.disabled:hover, +.ant-btn-link[disabled]:hover, +.ant-btn-link-disabled:focus, +.ant-btn-link.disabled:focus, +.ant-btn-link[disabled]:focus, +.ant-btn-link-disabled:active, +.ant-btn-link.disabled:active, +.ant-btn-link[disabled]:active, +.ant-btn-link-disabled.active, +.ant-btn-link.disabled.active, +.ant-btn-link[disabled].active { + color: rgba(0, 0, 0, 0.25); + background-color: #f5f5f5; + border-color: #d9d9d9; + text-shadow: none; + box-shadow: none; +} +.ant-btn-link-disabled > a:only-child, +.ant-btn-link.disabled > a:only-child, +.ant-btn-link[disabled] > a:only-child, +.ant-btn-link-disabled:hover > a:only-child, +.ant-btn-link.disabled:hover > a:only-child, +.ant-btn-link[disabled]:hover > a:only-child, +.ant-btn-link-disabled:focus > a:only-child, +.ant-btn-link.disabled:focus > a:only-child, +.ant-btn-link[disabled]:focus > a:only-child, +.ant-btn-link-disabled:active > a:only-child, +.ant-btn-link.disabled:active > a:only-child, +.ant-btn-link[disabled]:active > a:only-child, +.ant-btn-link-disabled.active > a:only-child, +.ant-btn-link.disabled.active > a:only-child, +.ant-btn-link[disabled].active > a:only-child { + color: currentColor; +} +.ant-btn-link-disabled > a:only-child::after, +.ant-btn-link.disabled > a:only-child::after, +.ant-btn-link[disabled] > a:only-child::after, +.ant-btn-link-disabled:hover > a:only-child::after, +.ant-btn-link.disabled:hover > a:only-child::after, +.ant-btn-link[disabled]:hover > a:only-child::after, +.ant-btn-link-disabled:focus > a:only-child::after, +.ant-btn-link.disabled:focus > a:only-child::after, +.ant-btn-link[disabled]:focus > a:only-child::after, +.ant-btn-link-disabled:active > a:only-child::after, +.ant-btn-link.disabled:active > a:only-child::after, +.ant-btn-link[disabled]:active > a:only-child::after, +.ant-btn-link-disabled.active > a:only-child::after, +.ant-btn-link.disabled.active > a:only-child::after, +.ant-btn-link[disabled].active > a:only-child::after { + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + background: transparent; + content: ''; +} +.ant-btn-link:hover, +.ant-btn-link:focus, +.ant-btn-link:active { + border-color: transparent; +} +.ant-btn-link-disabled, +.ant-btn-link.disabled, +.ant-btn-link[disabled], +.ant-btn-link-disabled:hover, +.ant-btn-link.disabled:hover, +.ant-btn-link[disabled]:hover, +.ant-btn-link-disabled:focus, +.ant-btn-link.disabled:focus, +.ant-btn-link[disabled]:focus, +.ant-btn-link-disabled:active, +.ant-btn-link.disabled:active, +.ant-btn-link[disabled]:active, +.ant-btn-link-disabled.active, +.ant-btn-link.disabled.active, +.ant-btn-link[disabled].active { + color: rgba(0, 0, 0, 0.25); + background-color: transparent; + border-color: transparent; + text-shadow: none; + box-shadow: none; +} +.ant-btn-link-disabled > a:only-child, +.ant-btn-link.disabled > a:only-child, +.ant-btn-link[disabled] > a:only-child, +.ant-btn-link-disabled:hover > a:only-child, +.ant-btn-link.disabled:hover > a:only-child, +.ant-btn-link[disabled]:hover > a:only-child, +.ant-btn-link-disabled:focus > a:only-child, +.ant-btn-link.disabled:focus > a:only-child, +.ant-btn-link[disabled]:focus > a:only-child, +.ant-btn-link-disabled:active > a:only-child, +.ant-btn-link.disabled:active > a:only-child, +.ant-btn-link[disabled]:active > a:only-child, +.ant-btn-link-disabled.active > a:only-child, +.ant-btn-link.disabled.active > a:only-child, +.ant-btn-link[disabled].active > a:only-child { + color: currentColor; +} +.ant-btn-link-disabled > a:only-child::after, +.ant-btn-link.disabled > a:only-child::after, +.ant-btn-link[disabled] > a:only-child::after, +.ant-btn-link-disabled:hover > a:only-child::after, +.ant-btn-link.disabled:hover > a:only-child::after, +.ant-btn-link[disabled]:hover > a:only-child::after, +.ant-btn-link-disabled:focus > a:only-child::after, +.ant-btn-link.disabled:focus > a:only-child::after, +.ant-btn-link[disabled]:focus > a:only-child::after, +.ant-btn-link-disabled:active > a:only-child::after, +.ant-btn-link.disabled:active > a:only-child::after, +.ant-btn-link[disabled]:active > a:only-child::after, +.ant-btn-link-disabled.active > a:only-child::after, +.ant-btn-link.disabled.active > a:only-child::after, +.ant-btn-link[disabled].active > a:only-child::after { + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + background: transparent; + content: ''; +} +.ant-btn-icon-only { + width: 32px; + height: 32px; + padding: 0; + font-size: 17px; + border-radius: 4px; +} +.ant-btn-icon-only.ant-btn-lg { + width: 40px; + height: 40px; + padding: 0; + font-size: 19px; + border-radius: 4px; +} +.ant-btn-icon-only.ant-btn-sm { + width: 24px; + height: 24px; + padding: 0; + font-size: 15px; + border-radius: 4px; +} +.ant-btn-icon-only > i { + vertical-align: middle; +} +.ant-btn-round { + height: 32px; + padding: 0 16px; + font-size: 15px; + border-radius: 32px; +} +.ant-btn-round.ant-btn-lg { + height: 40px; + padding: 0 20px; + font-size: 17px; + border-radius: 40px; +} +.ant-btn-round.ant-btn-sm { + height: 24px; + padding: 0 12px; + font-size: 15px; + border-radius: 24px; +} +.ant-btn-round.ant-btn-icon-only { + width: auto; +} +.ant-btn-circle, +.ant-btn-circle-outline { + min-width: 32px; + padding-right: 0; + padding-left: 0; + text-align: center; + border-radius: 50%; +} +.ant-btn-circle.ant-btn-lg, +.ant-btn-circle-outline.ant-btn-lg { + min-width: 40px; + border-radius: 50%; +} +.ant-btn-circle.ant-btn-sm, +.ant-btn-circle-outline.ant-btn-sm { + min-width: 24px; + border-radius: 50%; +} +.ant-btn::before { + position: absolute; + top: -1px; + right: -1px; + bottom: -1px; + left: -1px; + z-index: 1; + display: none; + background: #fff; + border-radius: inherit; + opacity: 0.35; + transition: opacity 0.2s; + content: ''; + pointer-events: none; +} +.ant-btn .anticon { + transition: margin-left 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); +} +.ant-btn .anticon.anticon-plus > svg, +.ant-btn .anticon.anticon-minus > svg { + shape-rendering: optimizeSpeed; +} +.ant-btn.ant-btn-loading { + position: relative; +} +.ant-btn.ant-btn-loading:not([disabled]) { + pointer-events: none; +} +.ant-btn.ant-btn-loading::before { + display: block; +} +.ant-btn.ant-btn-loading:not(.ant-btn-circle):not(.ant-btn-circle-outline):not(.ant-btn-icon-only) { + padding-left: 29px; +} +.ant-btn.ant-btn-loading:not(.ant-btn-circle):not(.ant-btn-circle-outline):not(.ant-btn-icon-only) .anticon:not(:last-child) { + margin-left: -14px; +} +.ant-btn-sm.ant-btn-loading:not(.ant-btn-circle):not(.ant-btn-circle-outline):not(.ant-btn-icon-only) { + padding-left: 24px; +} +.ant-btn-sm.ant-btn-loading:not(.ant-btn-circle):not(.ant-btn-circle-outline):not(.ant-btn-icon-only) .anticon { + margin-left: -17px; +} +.ant-btn-group { + position: relative; + display: inline-flex; +} +.ant-btn-group > .ant-btn, +.ant-btn-group > span > .ant-btn { + position: relative; +} +.ant-btn-group > .ant-btn:hover, +.ant-btn-group > span > .ant-btn:hover, +.ant-btn-group > .ant-btn:focus, +.ant-btn-group > span > .ant-btn:focus, +.ant-btn-group > .ant-btn:active, +.ant-btn-group > span > .ant-btn:active, +.ant-btn-group > .ant-btn.active, +.ant-btn-group > span > .ant-btn.active { + z-index: 2; +} +.ant-btn-group > .ant-btn:disabled, +.ant-btn-group > span > .ant-btn:disabled { + z-index: 0; +} +.ant-btn-group > .ant-btn-icon-only { + font-size: 15px; +} +.ant-btn-group-lg > .ant-btn, +.ant-btn-group-lg > span > .ant-btn { + height: 40px; + padding: 0 15px; + font-size: 17px; + border-radius: 0; + line-height: 38px; +} +.ant-btn-group-lg > .ant-btn.ant-btn-icon-only { + width: 40px; + height: 40px; + padding-right: 0; + padding-left: 0; +} +.ant-btn-group-sm > .ant-btn, +.ant-btn-group-sm > span > .ant-btn { + height: 24px; + padding: 0 7px; + font-size: 15px; + border-radius: 0; + line-height: 22px; +} +.ant-btn-group-sm > .ant-btn > .anticon, +.ant-btn-group-sm > span > .ant-btn > .anticon { + font-size: 15px; +} +.ant-btn-group-sm > .ant-btn.ant-btn-icon-only { + width: 24px; + height: 24px; + padding-right: 0; + padding-left: 0; +} +.ant-btn-group .ant-btn + .ant-btn, +.ant-btn + .ant-btn-group, +.ant-btn-group span + .ant-btn, +.ant-btn-group .ant-btn + span, +.ant-btn-group > span + span, +.ant-btn-group + .ant-btn, +.ant-btn-group + .ant-btn-group { + margin-left: -1px; +} +.ant-btn-group .ant-btn-primary + .ant-btn:not(.ant-btn-primary):not([disabled]) { + border-left-color: transparent; +} +.ant-btn-group .ant-btn { + border-radius: 0; +} +.ant-btn-group > .ant-btn:first-child, +.ant-btn-group > span:first-child > .ant-btn { + margin-left: 0; +} +.ant-btn-group > .ant-btn:only-child { + border-radius: 4px; +} +.ant-btn-group > span:only-child > .ant-btn { + border-radius: 4px; +} +.ant-btn-group > .ant-btn:first-child:not(:last-child), +.ant-btn-group > span:first-child:not(:last-child) > .ant-btn { + border-top-left-radius: 4px; + border-bottom-left-radius: 4px; +} +.ant-btn-group > .ant-btn:last-child:not(:first-child), +.ant-btn-group > span:last-child:not(:first-child) > .ant-btn { + border-top-right-radius: 4px; + border-bottom-right-radius: 4px; +} +.ant-btn-group-sm > .ant-btn:only-child { + border-radius: 4px; +} +.ant-btn-group-sm > span:only-child > .ant-btn { + border-radius: 4px; +} +.ant-btn-group-sm > .ant-btn:first-child:not(:last-child), +.ant-btn-group-sm > span:first-child:not(:last-child) > .ant-btn { + border-top-left-radius: 4px; + border-bottom-left-radius: 4px; +} +.ant-btn-group-sm > .ant-btn:last-child:not(:first-child), +.ant-btn-group-sm > span:last-child:not(:first-child) > .ant-btn { + border-top-right-radius: 4px; + border-bottom-right-radius: 4px; +} +.ant-btn-group > .ant-btn-group { + float: left; +} +.ant-btn-group > .ant-btn-group:not(:first-child):not(:last-child) > .ant-btn { + border-radius: 0; +} +.ant-btn-group > .ant-btn-group:first-child:not(:last-child) > .ant-btn:last-child { + padding-right: 8px; + border-top-right-radius: 0; + border-bottom-right-radius: 0; +} +.ant-btn-group > .ant-btn-group:last-child:not(:first-child) > .ant-btn:first-child { + padding-left: 8px; + border-top-left-radius: 0; + border-bottom-left-radius: 0; +} +.ant-btn:focus > span, +.ant-btn:active > span { + position: relative; +} +.ant-btn > .anticon + span, +.ant-btn > span + .anticon { + margin-left: 8px; +} +.ant-btn-background-ghost { + color: #fff; + background: transparent !important; + border-color: #fff; +} +.ant-btn-background-ghost.ant-btn-primary { + color: #004691; + background-color: transparent; + border-color: #004691; + text-shadow: none; +} +.ant-btn-background-ghost.ant-btn-primary > a:only-child { + color: currentColor; +} +.ant-btn-background-ghost.ant-btn-primary > a:only-child::after { + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + background: transparent; + content: ''; +} +.ant-btn-background-ghost.ant-btn-primary:hover, +.ant-btn-background-ghost.ant-btn-primary:focus { + color: #195e9e; + background-color: transparent; + border-color: #195e9e; +} +.ant-btn-background-ghost.ant-btn-primary:hover > a:only-child, +.ant-btn-background-ghost.ant-btn-primary:focus > a:only-child { + color: currentColor; +} +.ant-btn-background-ghost.ant-btn-primary:hover > a:only-child::after, +.ant-btn-background-ghost.ant-btn-primary:focus > a:only-child::after { + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + background: transparent; + content: ''; +} +.ant-btn-background-ghost.ant-btn-primary:active, +.ant-btn-background-ghost.ant-btn-primary.active { + color: #00306b; + background-color: transparent; + border-color: #00306b; +} +.ant-btn-background-ghost.ant-btn-primary:active > a:only-child, +.ant-btn-background-ghost.ant-btn-primary.active > a:only-child { + color: currentColor; +} +.ant-btn-background-ghost.ant-btn-primary:active > a:only-child::after, +.ant-btn-background-ghost.ant-btn-primary.active > a:only-child::after { + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + background: transparent; + content: ''; +} +.ant-btn-background-ghost.ant-btn-primary-disabled, +.ant-btn-background-ghost.ant-btn-primary.disabled, +.ant-btn-background-ghost.ant-btn-primary[disabled], +.ant-btn-background-ghost.ant-btn-primary-disabled:hover, +.ant-btn-background-ghost.ant-btn-primary.disabled:hover, +.ant-btn-background-ghost.ant-btn-primary[disabled]:hover, +.ant-btn-background-ghost.ant-btn-primary-disabled:focus, +.ant-btn-background-ghost.ant-btn-primary.disabled:focus, +.ant-btn-background-ghost.ant-btn-primary[disabled]:focus, +.ant-btn-background-ghost.ant-btn-primary-disabled:active, +.ant-btn-background-ghost.ant-btn-primary.disabled:active, +.ant-btn-background-ghost.ant-btn-primary[disabled]:active, +.ant-btn-background-ghost.ant-btn-primary-disabled.active, +.ant-btn-background-ghost.ant-btn-primary.disabled.active, +.ant-btn-background-ghost.ant-btn-primary[disabled].active { + color: rgba(0, 0, 0, 0.25); + background-color: #f5f5f5; + border-color: #d9d9d9; + text-shadow: none; + box-shadow: none; +} +.ant-btn-background-ghost.ant-btn-primary-disabled > a:only-child, +.ant-btn-background-ghost.ant-btn-primary.disabled > a:only-child, +.ant-btn-background-ghost.ant-btn-primary[disabled] > a:only-child, +.ant-btn-background-ghost.ant-btn-primary-disabled:hover > a:only-child, +.ant-btn-background-ghost.ant-btn-primary.disabled:hover > a:only-child, +.ant-btn-background-ghost.ant-btn-primary[disabled]:hover > a:only-child, +.ant-btn-background-ghost.ant-btn-primary-disabled:focus > a:only-child, +.ant-btn-background-ghost.ant-btn-primary.disabled:focus > a:only-child, +.ant-btn-background-ghost.ant-btn-primary[disabled]:focus > a:only-child, +.ant-btn-background-ghost.ant-btn-primary-disabled:active > a:only-child, +.ant-btn-background-ghost.ant-btn-primary.disabled:active > a:only-child, +.ant-btn-background-ghost.ant-btn-primary[disabled]:active > a:only-child, +.ant-btn-background-ghost.ant-btn-primary-disabled.active > a:only-child, +.ant-btn-background-ghost.ant-btn-primary.disabled.active > a:only-child, +.ant-btn-background-ghost.ant-btn-primary[disabled].active > a:only-child { + color: currentColor; +} +.ant-btn-background-ghost.ant-btn-primary-disabled > a:only-child::after, +.ant-btn-background-ghost.ant-btn-primary.disabled > a:only-child::after, +.ant-btn-background-ghost.ant-btn-primary[disabled] > a:only-child::after, +.ant-btn-background-ghost.ant-btn-primary-disabled:hover > a:only-child::after, +.ant-btn-background-ghost.ant-btn-primary.disabled:hover > a:only-child::after, +.ant-btn-background-ghost.ant-btn-primary[disabled]:hover > a:only-child::after, +.ant-btn-background-ghost.ant-btn-primary-disabled:focus > a:only-child::after, +.ant-btn-background-ghost.ant-btn-primary.disabled:focus > a:only-child::after, +.ant-btn-background-ghost.ant-btn-primary[disabled]:focus > a:only-child::after, +.ant-btn-background-ghost.ant-btn-primary-disabled:active > a:only-child::after, +.ant-btn-background-ghost.ant-btn-primary.disabled:active > a:only-child::after, +.ant-btn-background-ghost.ant-btn-primary[disabled]:active > a:only-child::after, +.ant-btn-background-ghost.ant-btn-primary-disabled.active > a:only-child::after, +.ant-btn-background-ghost.ant-btn-primary.disabled.active > a:only-child::after, +.ant-btn-background-ghost.ant-btn-primary[disabled].active > a:only-child::after { + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + background: transparent; + content: ''; +} +.ant-btn-background-ghost.ant-btn-danger { + color: #ff4d4f; + background-color: transparent; + border-color: #ff4d4f; + text-shadow: none; +} +.ant-btn-background-ghost.ant-btn-danger > a:only-child { + color: currentColor; +} +.ant-btn-background-ghost.ant-btn-danger > a:only-child::after { + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + background: transparent; + content: ''; +} +.ant-btn-background-ghost.ant-btn-danger:hover, +.ant-btn-background-ghost.ant-btn-danger:focus { + color: #ff7875; + background-color: transparent; + border-color: #ff7875; +} +.ant-btn-background-ghost.ant-btn-danger:hover > a:only-child, +.ant-btn-background-ghost.ant-btn-danger:focus > a:only-child { + color: currentColor; +} +.ant-btn-background-ghost.ant-btn-danger:hover > a:only-child::after, +.ant-btn-background-ghost.ant-btn-danger:focus > a:only-child::after { + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + background: transparent; + content: ''; +} +.ant-btn-background-ghost.ant-btn-danger:active, +.ant-btn-background-ghost.ant-btn-danger.active { + color: #d9363e; + background-color: transparent; + border-color: #d9363e; +} +.ant-btn-background-ghost.ant-btn-danger:active > a:only-child, +.ant-btn-background-ghost.ant-btn-danger.active > a:only-child { + color: currentColor; +} +.ant-btn-background-ghost.ant-btn-danger:active > a:only-child::after, +.ant-btn-background-ghost.ant-btn-danger.active > a:only-child::after { + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + background: transparent; + content: ''; +} +.ant-btn-background-ghost.ant-btn-danger-disabled, +.ant-btn-background-ghost.ant-btn-danger.disabled, +.ant-btn-background-ghost.ant-btn-danger[disabled], +.ant-btn-background-ghost.ant-btn-danger-disabled:hover, +.ant-btn-background-ghost.ant-btn-danger.disabled:hover, +.ant-btn-background-ghost.ant-btn-danger[disabled]:hover, +.ant-btn-background-ghost.ant-btn-danger-disabled:focus, +.ant-btn-background-ghost.ant-btn-danger.disabled:focus, +.ant-btn-background-ghost.ant-btn-danger[disabled]:focus, +.ant-btn-background-ghost.ant-btn-danger-disabled:active, +.ant-btn-background-ghost.ant-btn-danger.disabled:active, +.ant-btn-background-ghost.ant-btn-danger[disabled]:active, +.ant-btn-background-ghost.ant-btn-danger-disabled.active, +.ant-btn-background-ghost.ant-btn-danger.disabled.active, +.ant-btn-background-ghost.ant-btn-danger[disabled].active { + color: rgba(0, 0, 0, 0.25); + background-color: #f5f5f5; + border-color: #d9d9d9; + text-shadow: none; + box-shadow: none; +} +.ant-btn-background-ghost.ant-btn-danger-disabled > a:only-child, +.ant-btn-background-ghost.ant-btn-danger.disabled > a:only-child, +.ant-btn-background-ghost.ant-btn-danger[disabled] > a:only-child, +.ant-btn-background-ghost.ant-btn-danger-disabled:hover > a:only-child, +.ant-btn-background-ghost.ant-btn-danger.disabled:hover > a:only-child, +.ant-btn-background-ghost.ant-btn-danger[disabled]:hover > a:only-child, +.ant-btn-background-ghost.ant-btn-danger-disabled:focus > a:only-child, +.ant-btn-background-ghost.ant-btn-danger.disabled:focus > a:only-child, +.ant-btn-background-ghost.ant-btn-danger[disabled]:focus > a:only-child, +.ant-btn-background-ghost.ant-btn-danger-disabled:active > a:only-child, +.ant-btn-background-ghost.ant-btn-danger.disabled:active > a:only-child, +.ant-btn-background-ghost.ant-btn-danger[disabled]:active > a:only-child, +.ant-btn-background-ghost.ant-btn-danger-disabled.active > a:only-child, +.ant-btn-background-ghost.ant-btn-danger.disabled.active > a:only-child, +.ant-btn-background-ghost.ant-btn-danger[disabled].active > a:only-child { + color: currentColor; +} +.ant-btn-background-ghost.ant-btn-danger-disabled > a:only-child::after, +.ant-btn-background-ghost.ant-btn-danger.disabled > a:only-child::after, +.ant-btn-background-ghost.ant-btn-danger[disabled] > a:only-child::after, +.ant-btn-background-ghost.ant-btn-danger-disabled:hover > a:only-child::after, +.ant-btn-background-ghost.ant-btn-danger.disabled:hover > a:only-child::after, +.ant-btn-background-ghost.ant-btn-danger[disabled]:hover > a:only-child::after, +.ant-btn-background-ghost.ant-btn-danger-disabled:focus > a:only-child::after, +.ant-btn-background-ghost.ant-btn-danger.disabled:focus > a:only-child::after, +.ant-btn-background-ghost.ant-btn-danger[disabled]:focus > a:only-child::after, +.ant-btn-background-ghost.ant-btn-danger-disabled:active > a:only-child::after, +.ant-btn-background-ghost.ant-btn-danger.disabled:active > a:only-child::after, +.ant-btn-background-ghost.ant-btn-danger[disabled]:active > a:only-child::after, +.ant-btn-background-ghost.ant-btn-danger-disabled.active > a:only-child::after, +.ant-btn-background-ghost.ant-btn-danger.disabled.active > a:only-child::after, +.ant-btn-background-ghost.ant-btn-danger[disabled].active > a:only-child::after { + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + background: transparent; + content: ''; +} +.ant-btn-background-ghost.ant-btn-link { + color: #004691; + background-color: transparent; + border-color: transparent; + text-shadow: none; + color: #fff; +} +.ant-btn-background-ghost.ant-btn-link > a:only-child { + color: currentColor; +} +.ant-btn-background-ghost.ant-btn-link > a:only-child::after { + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + background: transparent; + content: ''; +} +.ant-btn-background-ghost.ant-btn-link:hover, +.ant-btn-background-ghost.ant-btn-link:focus { + color: #195e9e; + background-color: transparent; + border-color: transparent; +} +.ant-btn-background-ghost.ant-btn-link:hover > a:only-child, +.ant-btn-background-ghost.ant-btn-link:focus > a:only-child { + color: currentColor; +} +.ant-btn-background-ghost.ant-btn-link:hover > a:only-child::after, +.ant-btn-background-ghost.ant-btn-link:focus > a:only-child::after { + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + background: transparent; + content: ''; +} +.ant-btn-background-ghost.ant-btn-link:active, +.ant-btn-background-ghost.ant-btn-link.active { + color: #00306b; + background-color: transparent; + border-color: transparent; +} +.ant-btn-background-ghost.ant-btn-link:active > a:only-child, +.ant-btn-background-ghost.ant-btn-link.active > a:only-child { + color: currentColor; +} +.ant-btn-background-ghost.ant-btn-link:active > a:only-child::after, +.ant-btn-background-ghost.ant-btn-link.active > a:only-child::after { + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + background: transparent; + content: ''; +} +.ant-btn-background-ghost.ant-btn-link-disabled, +.ant-btn-background-ghost.ant-btn-link.disabled, +.ant-btn-background-ghost.ant-btn-link[disabled], +.ant-btn-background-ghost.ant-btn-link-disabled:hover, +.ant-btn-background-ghost.ant-btn-link.disabled:hover, +.ant-btn-background-ghost.ant-btn-link[disabled]:hover, +.ant-btn-background-ghost.ant-btn-link-disabled:focus, +.ant-btn-background-ghost.ant-btn-link.disabled:focus, +.ant-btn-background-ghost.ant-btn-link[disabled]:focus, +.ant-btn-background-ghost.ant-btn-link-disabled:active, +.ant-btn-background-ghost.ant-btn-link.disabled:active, +.ant-btn-background-ghost.ant-btn-link[disabled]:active, +.ant-btn-background-ghost.ant-btn-link-disabled.active, +.ant-btn-background-ghost.ant-btn-link.disabled.active, +.ant-btn-background-ghost.ant-btn-link[disabled].active { + color: rgba(0, 0, 0, 0.25); + background-color: #f5f5f5; + border-color: #d9d9d9; + text-shadow: none; + box-shadow: none; +} +.ant-btn-background-ghost.ant-btn-link-disabled > a:only-child, +.ant-btn-background-ghost.ant-btn-link.disabled > a:only-child, +.ant-btn-background-ghost.ant-btn-link[disabled] > a:only-child, +.ant-btn-background-ghost.ant-btn-link-disabled:hover > a:only-child, +.ant-btn-background-ghost.ant-btn-link.disabled:hover > a:only-child, +.ant-btn-background-ghost.ant-btn-link[disabled]:hover > a:only-child, +.ant-btn-background-ghost.ant-btn-link-disabled:focus > a:only-child, +.ant-btn-background-ghost.ant-btn-link.disabled:focus > a:only-child, +.ant-btn-background-ghost.ant-btn-link[disabled]:focus > a:only-child, +.ant-btn-background-ghost.ant-btn-link-disabled:active > a:only-child, +.ant-btn-background-ghost.ant-btn-link.disabled:active > a:only-child, +.ant-btn-background-ghost.ant-btn-link[disabled]:active > a:only-child, +.ant-btn-background-ghost.ant-btn-link-disabled.active > a:only-child, +.ant-btn-background-ghost.ant-btn-link.disabled.active > a:only-child, +.ant-btn-background-ghost.ant-btn-link[disabled].active > a:only-child { + color: currentColor; +} +.ant-btn-background-ghost.ant-btn-link-disabled > a:only-child::after, +.ant-btn-background-ghost.ant-btn-link.disabled > a:only-child::after, +.ant-btn-background-ghost.ant-btn-link[disabled] > a:only-child::after, +.ant-btn-background-ghost.ant-btn-link-disabled:hover > a:only-child::after, +.ant-btn-background-ghost.ant-btn-link.disabled:hover > a:only-child::after, +.ant-btn-background-ghost.ant-btn-link[disabled]:hover > a:only-child::after, +.ant-btn-background-ghost.ant-btn-link-disabled:focus > a:only-child::after, +.ant-btn-background-ghost.ant-btn-link.disabled:focus > a:only-child::after, +.ant-btn-background-ghost.ant-btn-link[disabled]:focus > a:only-child::after, +.ant-btn-background-ghost.ant-btn-link-disabled:active > a:only-child::after, +.ant-btn-background-ghost.ant-btn-link.disabled:active > a:only-child::after, +.ant-btn-background-ghost.ant-btn-link[disabled]:active > a:only-child::after, +.ant-btn-background-ghost.ant-btn-link-disabled.active > a:only-child::after, +.ant-btn-background-ghost.ant-btn-link.disabled.active > a:only-child::after, +.ant-btn-background-ghost.ant-btn-link[disabled].active > a:only-child::after { + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + background: transparent; + content: ''; +} +.ant-btn-two-chinese-chars::first-letter { + letter-spacing: 0.34em; +} +.ant-btn-two-chinese-chars > *:not(.anticon) { + margin-right: -0.34em; + letter-spacing: 0.34em; +} +.ant-btn-block { + width: 100%; +} +.ant-btn:empty { + vertical-align: top; +} +a.ant-btn { + padding-top: 0.1px; + line-height: 30px; +} +a.ant-btn-lg { + line-height: 38px; +} +a.ant-btn-sm { + line-height: 22px; +} +.ant-fullcalendar { + box-sizing: border-box; + margin: 0; + padding: 0; + color: rgba(0, 0, 0, 0.65); + font-size: 15px; + font-variant: tabular-nums; + line-height: 1.5; + list-style: none; + font-feature-settings: 'tnum'; + border-top: 1px solid #d9d9d9; + outline: none; +} +.ant-select.ant-fullcalendar-year-select { + min-width: 90px; +} +.ant-select.ant-fullcalendar-year-select.ant-select-sm { + min-width: 70px; +} +.ant-select.ant-fullcalendar-month-select { + min-width: 80px; + margin-left: 8px; +} +.ant-select.ant-fullcalendar-month-select.ant-select-sm { + min-width: 70px; +} +.ant-fullcalendar-header { + padding: 11px 16px 11px 0; + text-align: right; +} +.ant-fullcalendar-header .ant-select-dropdown { + text-align: left; +} +.ant-fullcalendar-header .ant-radio-group { + margin-left: 8px; + text-align: left; +} +.ant-fullcalendar-header label.ant-radio-button { + height: 22px; + padding: 0 10px; + line-height: 20px; +} +.ant-fullcalendar-date-panel { + position: relative; + outline: none; +} +.ant-fullcalendar-calendar-body { + padding: 8px 12px; +} +.ant-fullcalendar table { + width: 100%; + max-width: 100%; + height: 256px; + background-color: transparent; + border-collapse: collapse; +} +.ant-fullcalendar table, +.ant-fullcalendar th, +.ant-fullcalendar td { + border: 0; +} +.ant-fullcalendar td { + position: relative; +} +.ant-fullcalendar-calendar-table { + margin-bottom: 0; + border-spacing: 0; +} +.ant-fullcalendar-column-header { + width: 33px; + padding: 0; + line-height: 18px; + text-align: center; +} +.ant-fullcalendar-column-header .ant-fullcalendar-column-header-inner { + display: block; + font-weight: normal; +} +.ant-fullcalendar-week-number-header .ant-fullcalendar-column-header-inner { + display: none; +} +.ant-fullcalendar-month, +.ant-fullcalendar-date { + text-align: center; + transition: all 0.3s; +} +.ant-fullcalendar-value { + display: block; + width: 24px; + height: 24px; + margin: 0 auto; + padding: 0; + color: rgba(0, 0, 0, 0.65); + line-height: 24px; + background: transparent; + border-radius: 2px; + transition: all 0.3s; +} +.ant-fullcalendar-value:hover { + background: #bccad1; + cursor: pointer; +} +.ant-fullcalendar-value:active { + color: #fff; + background: #004691; +} +.ant-fullcalendar-month-panel-cell .ant-fullcalendar-value { + width: 48px; +} +.ant-fullcalendar-today .ant-fullcalendar-value, +.ant-fullcalendar-month-panel-current-cell .ant-fullcalendar-value { + box-shadow: 0 0 0 1px #004691 inset; +} +.ant-fullcalendar-selected-day .ant-fullcalendar-value, +.ant-fullcalendar-month-panel-selected-cell .ant-fullcalendar-value { + color: #fff; + background: #004691; +} +.ant-fullcalendar-disabled-cell-first-of-row .ant-fullcalendar-value { + border-top-left-radius: 4px; + border-bottom-left-radius: 4px; +} +.ant-fullcalendar-disabled-cell-last-of-row .ant-fullcalendar-value { + border-top-right-radius: 4px; + border-bottom-right-radius: 4px; +} +.ant-fullcalendar-last-month-cell .ant-fullcalendar-value, +.ant-fullcalendar-next-month-btn-day .ant-fullcalendar-value { + color: rgba(0, 0, 0, 0.25); +} +.ant-fullcalendar-month-panel-table { + width: 100%; + table-layout: fixed; + border-collapse: separate; +} +.ant-fullcalendar-content { + position: absolute; + bottom: -9px; + left: 0; + width: 100%; +} +.ant-fullcalendar-fullscreen { + border-top: 0; +} +.ant-fullcalendar-fullscreen .ant-fullcalendar-table { + table-layout: fixed; +} +.ant-fullcalendar-fullscreen .ant-fullcalendar-header .ant-radio-group { + margin-left: 16px; +} +.ant-fullcalendar-fullscreen .ant-fullcalendar-header label.ant-radio-button { + height: 32px; + line-height: 30px; +} +.ant-fullcalendar-fullscreen .ant-fullcalendar-month, +.ant-fullcalendar-fullscreen .ant-fullcalendar-date { + display: block; + height: 116px; + margin: 0 4px; + padding: 4px 8px; + color: rgba(0, 0, 0, 0.65); + text-align: left; + border-top: 2px solid #e8e8e8; + transition: background 0.3s; +} +.ant-fullcalendar-fullscreen .ant-fullcalendar-month:hover, +.ant-fullcalendar-fullscreen .ant-fullcalendar-date:hover { + background: #bccad1; + cursor: pointer; +} +.ant-fullcalendar-fullscreen .ant-fullcalendar-month:active, +.ant-fullcalendar-fullscreen .ant-fullcalendar-date:active { + background: #7ea9c4; +} +.ant-fullcalendar-fullscreen .ant-fullcalendar-column-header { + padding-right: 12px; + padding-bottom: 5px; + text-align: right; +} +.ant-fullcalendar-fullscreen .ant-fullcalendar-value { + width: auto; + text-align: right; + background: transparent; +} +.ant-fullcalendar-fullscreen .ant-fullcalendar-today .ant-fullcalendar-value { + color: rgba(0, 0, 0, 0.65); +} +.ant-fullcalendar-fullscreen .ant-fullcalendar-month-panel-current-cell .ant-fullcalendar-month, +.ant-fullcalendar-fullscreen .ant-fullcalendar-today .ant-fullcalendar-date { + background: transparent; + border-top-color: #004691; +} +.ant-fullcalendar-fullscreen .ant-fullcalendar-month-panel-current-cell .ant-fullcalendar-value, +.ant-fullcalendar-fullscreen .ant-fullcalendar-today .ant-fullcalendar-value { + box-shadow: none; +} +.ant-fullcalendar-fullscreen .ant-fullcalendar-month-panel-selected-cell .ant-fullcalendar-month, +.ant-fullcalendar-fullscreen .ant-fullcalendar-selected-day .ant-fullcalendar-date { + background: #bccad1; +} +.ant-fullcalendar-fullscreen .ant-fullcalendar-month-panel-selected-cell .ant-fullcalendar-value, +.ant-fullcalendar-fullscreen .ant-fullcalendar-selected-day .ant-fullcalendar-value { + color: #004691; +} +.ant-fullcalendar-fullscreen .ant-fullcalendar-last-month-cell .ant-fullcalendar-date, +.ant-fullcalendar-fullscreen .ant-fullcalendar-next-month-btn-day .ant-fullcalendar-date { + color: rgba(0, 0, 0, 0.25); +} +.ant-fullcalendar-fullscreen .ant-fullcalendar-content { + position: static; + width: auto; + height: 88px; + overflow-y: auto; +} +.ant-fullcalendar-disabled-cell .ant-fullcalendar-date, +.ant-fullcalendar-disabled-cell .ant-fullcalendar-date:hover { + cursor: not-allowed; +} +.ant-fullcalendar-disabled-cell:not(.ant-fullcalendar-today) .ant-fullcalendar-date, +.ant-fullcalendar-disabled-cell:not(.ant-fullcalendar-today) .ant-fullcalendar-date:hover { + background: transparent; +} +.ant-fullcalendar-disabled-cell .ant-fullcalendar-value { + width: auto; + color: rgba(0, 0, 0, 0.25); + border-radius: 0; + cursor: not-allowed; +} +.ant-card { + box-sizing: border-box; + margin: 0; + padding: 0; + color: rgba(0, 0, 0, 0.65); + font-size: 15px; + font-variant: tabular-nums; + line-height: 1.5; + list-style: none; + font-feature-settings: 'tnum'; + position: relative; + background: #fff; + border-radius: 2px; + transition: all 0.3s; +} +.ant-card-hoverable { + cursor: pointer; +} +.ant-card-hoverable:hover { + border-color: rgba(0, 0, 0, 0.09); + box-shadow: 0 2px 8px rgba(0, 0, 0, 0.09); +} +.ant-card-bordered { + border: 1px solid #e8e8e8; +} +.ant-card-head { + min-height: 48px; + margin-bottom: -1px; + padding: 0 24px; + color: rgba(0, 0, 0, 0.85); + font-weight: 500; + font-size: 17px; + background: transparent; + border-bottom: 1px solid #e8e8e8; + border-radius: 2px 2px 0 0; + zoom: 1; +} +.ant-card-head::before, +.ant-card-head::after { + display: table; + content: ''; +} +.ant-card-head::after { + clear: both; +} +.ant-card-head::before, +.ant-card-head::after { + display: table; + content: ''; +} +.ant-card-head::after { + clear: both; +} +.ant-card-head-wrapper { + display: flex; + align-items: center; +} +.ant-card-head-title { + display: inline-block; + flex: 1; + padding: 16px 0; + overflow: hidden; + white-space: nowrap; + text-overflow: ellipsis; +} +.ant-card-head .ant-tabs { + clear: both; + margin-bottom: -17px; + color: rgba(0, 0, 0, 0.65); + font-weight: normal; + font-size: 15px; +} +.ant-card-head .ant-tabs-bar { + border-bottom: 1px solid #e8e8e8; +} +.ant-card-extra { + float: right; + margin-left: auto; + padding: 16px 0; + color: rgba(0, 0, 0, 0.65); + font-weight: normal; + font-size: 15px; +} +.ant-card-body { + padding: 24px; + zoom: 1; +} +.ant-card-body::before, +.ant-card-body::after { + display: table; + content: ''; +} +.ant-card-body::after { + clear: both; +} +.ant-card-body::before, +.ant-card-body::after { + display: table; + content: ''; +} +.ant-card-body::after { + clear: both; +} +.ant-card-contain-grid:not(.ant-card-loading) .ant-card-body { + margin: -1px 0 0 -1px; + padding: 0; +} +.ant-card-grid { + float: left; + width: 33.33%; + padding: 24px; + border: 0; + border-radius: 0; + box-shadow: 1px 0 0 0 #e8e8e8, 0 1px 0 0 #e8e8e8, 1px 1px 0 0 #e8e8e8, 1px 0 0 0 #e8e8e8 inset, 0 1px 0 0 #e8e8e8 inset; + transition: all 0.3s; +} +.ant-card-grid-hoverable:hover { + position: relative; + z-index: 1; + box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15); +} +.ant-card-contain-tabs > .ant-card-head .ant-card-head-title { + min-height: 32px; + padding-bottom: 0; +} +.ant-card-contain-tabs > .ant-card-head .ant-card-extra { + padding-bottom: 0; +} +.ant-card-cover > * { + display: block; + width: 100%; +} +.ant-card-cover img { + border-radius: 2px 2px 0 0; +} +.ant-card-actions { + margin: 0; + padding: 0; + list-style: none; + background: #fafafa; + border-top: 1px solid #e8e8e8; + zoom: 1; +} +.ant-card-actions::before, +.ant-card-actions::after { + display: table; + content: ''; +} +.ant-card-actions::after { + clear: both; +} +.ant-card-actions::before, +.ant-card-actions::after { + display: table; + content: ''; +} +.ant-card-actions::after { + clear: both; +} +.ant-card-actions > li { + float: left; + margin: 12px 0; + color: rgba(0, 0, 0, 0.45); + text-align: center; +} +.ant-card-actions > li > span { + position: relative; + display: block; + min-width: 32px; + font-size: 15px; + line-height: 22px; + cursor: pointer; +} +.ant-card-actions > li > span:hover { + color: #004691; + transition: color 0.3s; +} +.ant-card-actions > li > span a:not(.ant-btn), +.ant-card-actions > li > span > .anticon { + display: inline-block; + width: 100%; + color: rgba(0, 0, 0, 0.45); + line-height: 22px; + transition: color 0.3s; +} +.ant-card-actions > li > span a:not(.ant-btn):hover, +.ant-card-actions > li > span > .anticon:hover { + color: #004691; +} +.ant-card-actions > li > span > .anticon { + font-size: 16px; + line-height: 22px; +} +.ant-card-actions > li:not(:last-child) { + border-right: 1px solid #e8e8e8; +} +.ant-card-type-inner .ant-card-head { + padding: 0 24px; + background: #fafafa; +} +.ant-card-type-inner .ant-card-head-title { + padding: 12px 0; + font-size: 15px; +} +.ant-card-type-inner .ant-card-body { + padding: 16px 24px; +} +.ant-card-type-inner .ant-card-extra { + padding: 13.5px 0; +} +.ant-card-meta { + margin: -4px 0; + zoom: 1; +} +.ant-card-meta::before, +.ant-card-meta::after { + display: table; + content: ''; +} +.ant-card-meta::after { + clear: both; +} +.ant-card-meta::before, +.ant-card-meta::after { + display: table; + content: ''; +} +.ant-card-meta::after { + clear: both; +} +.ant-card-meta-avatar { + float: left; + padding-right: 16px; +} +.ant-card-meta-detail { + overflow: hidden; +} +.ant-card-meta-detail > div:not(:last-child) { + margin-bottom: 8px; +} +.ant-card-meta-title { + overflow: hidden; + color: rgba(0, 0, 0, 0.85); + font-weight: 500; + font-size: 17px; + white-space: nowrap; + text-overflow: ellipsis; +} +.ant-card-meta-description { + color: rgba(0, 0, 0, 0.45); +} +.ant-card-loading { + overflow: hidden; +} +.ant-card-loading .ant-card-body { + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} +.ant-card-loading-content p { + margin: 0; +} +.ant-card-loading-block { + height: 14px; + margin: 4px 0; + background: linear-gradient(90deg, rgba(207, 216, 220, 0.2), rgba(207, 216, 220, 0.4), rgba(207, 216, 220, 0.2)); + background-size: 600% 600%; + border-radius: 2px; + -webkit-animation: card-loading 1.4s ease infinite; + animation: card-loading 1.4s ease infinite; +} +@-webkit-keyframes card-loading { + 0%, + 100% { + background-position: 0 50%; + } + 50% { + background-position: 100% 50%; + } +} +@keyframes card-loading { + 0%, + 100% { + background-position: 0 50%; + } + 50% { + background-position: 100% 50%; + } +} +.ant-card-small > .ant-card-head { + min-height: 36px; + padding: 0 12px; + font-size: 15px; +} +.ant-card-small > .ant-card-head > .ant-card-head-wrapper > .ant-card-head-title { + padding: 8px 0; +} +.ant-card-small > .ant-card-head > .ant-card-head-wrapper > .ant-card-extra { + padding: 8px 0; + font-size: 15px; +} +.ant-card-small > .ant-card-body { + padding: 12px; +} +.ant-carousel { + box-sizing: border-box; + margin: 0; + padding: 0; + color: rgba(0, 0, 0, 0.65); + font-size: 15px; + font-variant: tabular-nums; + line-height: 1.5; + list-style: none; + font-feature-settings: 'tnum'; +} +.ant-carousel .slick-slider { + position: relative; + display: block; + box-sizing: border-box; + -webkit-touch-callout: none; + touch-action: pan-y; + -webkit-tap-highlight-color: transparent; +} +.ant-carousel .slick-list { + position: relative; + display: block; + margin: 0; + padding: 0; + overflow: hidden; +} +.ant-carousel .slick-list:focus { + outline: none; +} +.ant-carousel .slick-list.dragging { + cursor: pointer; +} +.ant-carousel .slick-list .slick-slide { + pointer-events: none; +} +.ant-carousel .slick-list .slick-slide input.ant-radio-input, +.ant-carousel .slick-list .slick-slide input.ant-checkbox-input { + visibility: hidden; +} +.ant-carousel .slick-list .slick-slide.slick-active { + pointer-events: auto; +} +.ant-carousel .slick-list .slick-slide.slick-active input.ant-radio-input, +.ant-carousel .slick-list .slick-slide.slick-active input.ant-checkbox-input { + visibility: visible; +} +.ant-carousel .slick-slider .slick-track, +.ant-carousel .slick-slider .slick-list { + transform: translate3d(0, 0, 0); +} +.ant-carousel .slick-track { + position: relative; + top: 0; + left: 0; + display: block; +} +.ant-carousel .slick-track::before, +.ant-carousel .slick-track::after { + display: table; + content: ''; +} +.ant-carousel .slick-track::after { + clear: both; +} +.slick-loading .ant-carousel .slick-track { + visibility: hidden; +} +.ant-carousel .slick-slide { + display: none; + float: left; + height: 100%; + min-height: 1px; +} +[dir='rtl'] .ant-carousel .slick-slide { + float: right; +} +.ant-carousel .slick-slide img { + display: block; +} +.ant-carousel .slick-slide.slick-loading img { + display: none; +} +.ant-carousel .slick-slide.dragging img { + pointer-events: none; +} +.ant-carousel .slick-initialized .slick-slide { + display: block; +} +.ant-carousel .slick-loading .slick-slide { + visibility: hidden; +} +.ant-carousel .slick-vertical .slick-slide { + display: block; + height: auto; + border: 1px solid transparent; +} +.ant-carousel .slick-arrow.slick-hidden { + display: none; +} +.ant-carousel .slick-prev, +.ant-carousel .slick-next { + position: absolute; + top: 50%; + display: block; + width: 20px; + height: 20px; + margin-top: -10px; + padding: 0; + color: transparent; + font-size: 0; + line-height: 0; + background: transparent; + border: 0; + outline: none; + cursor: pointer; +} +.ant-carousel .slick-prev:hover, +.ant-carousel .slick-next:hover, +.ant-carousel .slick-prev:focus, +.ant-carousel .slick-next:focus { + color: transparent; + background: transparent; + outline: none; +} +.ant-carousel .slick-prev:hover::before, +.ant-carousel .slick-next:hover::before, +.ant-carousel .slick-prev:focus::before, +.ant-carousel .slick-next:focus::before { + opacity: 1; +} +.ant-carousel .slick-prev.slick-disabled::before, +.ant-carousel .slick-next.slick-disabled::before { + opacity: 0.25; +} +.ant-carousel .slick-prev { + left: -25px; +} +.ant-carousel .slick-prev::before { + content: '←'; +} +.ant-carousel .slick-next { + right: -25px; +} +.ant-carousel .slick-next::before { + content: '→'; +} +.ant-carousel .slick-dots { + position: absolute; + display: block; + width: 100%; + height: 3px; + margin: 0; + padding: 0; + text-align: center; + list-style: none; +} +.ant-carousel .slick-dots-bottom { + bottom: 12px; +} +.ant-carousel .slick-dots-top { + top: 12px; +} +.ant-carousel .slick-dots li { + position: relative; + display: inline-block; + margin: 0 2px; + padding: 0; + text-align: center; + vertical-align: top; +} +.ant-carousel .slick-dots li button { + display: block; + width: 16px; + height: 3px; + padding: 0; + color: transparent; + font-size: 0; + background: #fff; + border: 0; + border-radius: 1px; + outline: none; + cursor: pointer; + opacity: 0.3; + transition: all 0.5s; +} +.ant-carousel .slick-dots li button:hover, +.ant-carousel .slick-dots li button:focus { + opacity: 0.75; +} +.ant-carousel .slick-dots li.slick-active button { + width: 24px; + background: #fff; + opacity: 1; +} +.ant-carousel .slick-dots li.slick-active button:hover, +.ant-carousel .slick-dots li.slick-active button:focus { + opacity: 1; +} +.ant-carousel-vertical .slick-dots { + top: 50%; + bottom: auto; + width: 3px; + height: auto; + transform: translateY(-50%); +} +.ant-carousel-vertical .slick-dots-left { + left: 12px; +} +.ant-carousel-vertical .slick-dots-right { + right: 12px; +} +.ant-carousel-vertical .slick-dots li { + margin: 0 2px; + vertical-align: baseline; +} +.ant-carousel-vertical .slick-dots li button { + width: 3px; + height: 16px; +} +.ant-carousel-vertical .slick-dots li.slick-active button { + width: 3px; + height: 24px; +} +.ant-cascader { + box-sizing: border-box; + margin: 0; + padding: 0; + color: rgba(0, 0, 0, 0.65); + font-size: 15px; + font-variant: tabular-nums; + line-height: 1.5; + list-style: none; + font-feature-settings: 'tnum'; +} +.ant-cascader-input.ant-input { + position: static; + width: 100%; + padding-right: 24px; + background-color: transparent !important; + cursor: pointer; +} +.ant-cascader-picker-show-search .ant-cascader-input.ant-input { + position: relative; +} +.ant-cascader-picker { + box-sizing: border-box; + margin: 0; + padding: 0; + color: rgba(0, 0, 0, 0.65); + font-size: 15px; + font-variant: tabular-nums; + line-height: 1.5; + list-style: none; + font-feature-settings: 'tnum'; + position: relative; + display: inline-block; + background-color: #fff; + border-radius: 4px; + outline: 0; + cursor: pointer; + transition: color 0.3s; +} +.ant-cascader-picker-with-value .ant-cascader-picker-label { + color: transparent; +} +.ant-cascader-picker-disabled { + color: rgba(0, 0, 0, 0.25); + background: #f5f5f5; + cursor: not-allowed; +} +.ant-cascader-picker-disabled .ant-cascader-input { + cursor: not-allowed; +} +.ant-cascader-picker:focus .ant-cascader-input { + border-color: #195e9e; + border-right-width: 1px !important; + outline: 0; + box-shadow: 0 0 0 2px rgba(0, 70, 145, 0.2); +} +.ant-cascader-picker-show-search.ant-cascader-picker-focused { + color: rgba(0, 0, 0, 0.25); +} +.ant-cascader-picker-label { + position: absolute; + top: 50%; + left: 0; + width: 100%; + height: 20px; + margin-top: -10px; + padding: 0 20px 0 12px; + overflow: hidden; + line-height: 20px; + white-space: nowrap; + text-overflow: ellipsis; +} +.ant-cascader-picker-clear { + position: absolute; + top: 50%; + right: 12px; + z-index: 2; + width: 12px; + height: 12px; + margin-top: -6px; + color: rgba(0, 0, 0, 0.25); + font-size: 12px; + line-height: 12px; + background: #fff; + cursor: pointer; + opacity: 0; + transition: color 0.3s ease, opacity 0.15s ease; +} +.ant-cascader-picker-clear:hover { + color: rgba(0, 0, 0, 0.45); +} +.ant-cascader-picker:hover .ant-cascader-picker-clear { + opacity: 1; +} +.ant-cascader-picker-arrow { + position: absolute; + top: 50%; + right: 12px; + z-index: 1; + width: 12px; + height: 12px; + margin-top: -6px; + color: rgba(0, 0, 0, 0.25); + font-size: 12px; + line-height: 12px; + transition: transform 0.2s; +} +.ant-cascader-picker-arrow.ant-cascader-picker-arrow-expand { + transform: rotate(180deg); +} +.ant-cascader-picker-label:hover + .ant-cascader-input { + border-color: #195e9e; + border-right-width: 1px !important; +} +.ant-cascader-picker-small .ant-cascader-picker-clear, +.ant-cascader-picker-small .ant-cascader-picker-arrow { + right: 8px; +} +.ant-cascader-menus { + position: absolute; + z-index: 1050; + font-size: 15px; + white-space: nowrap; + background: #fff; + border-radius: 4px; + box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15); +} +.ant-cascader-menus ul, +.ant-cascader-menus ol { + margin: 0; + list-style: none; +} +.ant-cascader-menus-empty, +.ant-cascader-menus-hidden { + display: none; +} +.ant-cascader-menus.slide-up-enter.slide-up-enter-active.ant-cascader-menus-placement-bottomLeft, +.ant-cascader-menus.slide-up-appear.slide-up-appear-active.ant-cascader-menus-placement-bottomLeft { + -webkit-animation-name: antSlideUpIn; + animation-name: antSlideUpIn; +} +.ant-cascader-menus.slide-up-enter.slide-up-enter-active.ant-cascader-menus-placement-topLeft, +.ant-cascader-menus.slide-up-appear.slide-up-appear-active.ant-cascader-menus-placement-topLeft { + -webkit-animation-name: antSlideDownIn; + animation-name: antSlideDownIn; +} +.ant-cascader-menus.slide-up-leave.slide-up-leave-active.ant-cascader-menus-placement-bottomLeft { + -webkit-animation-name: antSlideUpOut; + animation-name: antSlideUpOut; +} +.ant-cascader-menus.slide-up-leave.slide-up-leave-active.ant-cascader-menus-placement-topLeft { + -webkit-animation-name: antSlideDownOut; + animation-name: antSlideDownOut; +} +.ant-cascader-menu { + display: inline-block; + min-width: 111px; + height: 180px; + margin: 0; + padding: 4px 0; + overflow: auto; + vertical-align: top; + list-style: none; + border-right: 1px solid #e8e8e8; + -ms-overflow-style: -ms-autohiding-scrollbar; +} +.ant-cascader-menu:first-child { + border-radius: 4px 0 0 4px; +} +.ant-cascader-menu:last-child { + margin-right: -1px; + border-right-color: transparent; + border-radius: 0 4px 4px 0; +} +.ant-cascader-menu:only-child { + border-radius: 4px; +} +.ant-cascader-menu-item { + padding: 5px 12px; + line-height: 22px; + white-space: nowrap; + cursor: pointer; + transition: all 0.3s; +} +.ant-cascader-menu-item:hover { + background: #bccad1; +} +.ant-cascader-menu-item-disabled { + color: rgba(0, 0, 0, 0.25); + cursor: not-allowed; +} +.ant-cascader-menu-item-disabled:hover { + background: transparent; +} +.ant-cascader-menu-item-active:not(.ant-cascader-menu-item-disabled), +.ant-cascader-menu-item-active:not(.ant-cascader-menu-item-disabled):hover { + font-weight: 600; + background-color: #fafafa; +} +.ant-cascader-menu-item-expand { + position: relative; + padding-right: 24px; +} +.ant-cascader-menu-item-expand .ant-cascader-menu-item-expand-icon, +.ant-cascader-menu-item-loading-icon { + display: inline-block; + font-size: 12px; + font-size: 10px \9; + transform: scale(0.83333333) rotate(0deg); + position: absolute; + right: 12px; + color: rgba(0, 0, 0, 0.45); +} +:root .ant-cascader-menu-item-expand .ant-cascader-menu-item-expand-icon, +:root .ant-cascader-menu-item-loading-icon { + font-size: 12px; +} +.ant-cascader-menu-item-disabled.ant-cascader-menu-item-expand .ant-cascader-menu-item-expand-icon, +.ant-cascader-menu-item-disabled.ant-cascader-menu-item-loading-icon { + color: rgba(0, 0, 0, 0.25); +} +.ant-cascader-menu-item .ant-cascader-menu-item-keyword { + color: #f5222d; +} +@-webkit-keyframes antCheckboxEffect { + 0% { + transform: scale(1); + opacity: 0.5; + } + 100% { + transform: scale(1.6); + opacity: 0; + } +} +@keyframes antCheckboxEffect { + 0% { + transform: scale(1); + opacity: 0.5; + } + 100% { + transform: scale(1.6); + opacity: 0; + } +} +.ant-checkbox { + box-sizing: border-box; + margin: 0; + padding: 0; + color: rgba(0, 0, 0, 0.65); + font-size: 15px; + font-variant: tabular-nums; + line-height: 1.5; + list-style: none; + font-feature-settings: 'tnum'; + position: relative; + top: -0.09em; + display: inline-block; + line-height: 1; + white-space: nowrap; + vertical-align: middle; + outline: none; + cursor: pointer; +} +.ant-checkbox-wrapper:hover .ant-checkbox-inner, +.ant-checkbox:hover .ant-checkbox-inner, +.ant-checkbox-input:focus + .ant-checkbox-inner { + border-color: #004691; +} +.ant-checkbox-checked::after { + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + border: 1px solid #004691; + border-radius: 2px; + visibility: hidden; + -webkit-animation: antCheckboxEffect 0.36s ease-in-out; + animation: antCheckboxEffect 0.36s ease-in-out; + -webkit-animation-fill-mode: backwards; + animation-fill-mode: backwards; + content: ''; +} +.ant-checkbox:hover::after, +.ant-checkbox-wrapper:hover .ant-checkbox::after { + visibility: visible; +} +.ant-checkbox-inner { + position: relative; + top: 0; + left: 0; + display: block; + width: 16px; + height: 16px; + background-color: #fff; + border: 1px solid #d9d9d9; + border-radius: 2px; + border-collapse: separate; + transition: all 0.3s; +} +.ant-checkbox-inner::after { + position: absolute; + top: 50%; + left: 22%; + display: table; + width: 5.71428571px; + height: 9.14285714px; + border: 2px solid #fff; + border-top: 0; + border-left: 0; + transform: rotate(45deg) scale(0) translate(-50%, -50%); + opacity: 0; + transition: all 0.1s cubic-bezier(0.71, -0.46, 0.88, 0.6), opacity 0.1s; + content: ' '; +} +.ant-checkbox-input { + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + z-index: 1; + width: 100%; + height: 100%; + cursor: pointer; + opacity: 0; +} +.ant-checkbox-checked .ant-checkbox-inner::after { + position: absolute; + display: table; + border: 2px solid #fff; + border-top: 0; + border-left: 0; + transform: rotate(45deg) scale(1) translate(-50%, -50%); + opacity: 1; + transition: all 0.2s cubic-bezier(0.12, 0.4, 0.29, 1.46) 0.1s; + content: ' '; +} +.ant-checkbox-checked .ant-checkbox-inner { + background-color: #004691; + border-color: #004691; +} +.ant-checkbox-disabled { + cursor: not-allowed; +} +.ant-checkbox-disabled.ant-checkbox-checked .ant-checkbox-inner::after { + border-color: rgba(0, 0, 0, 0.25); + -webkit-animation-name: none; + animation-name: none; +} +.ant-checkbox-disabled .ant-checkbox-input { + cursor: not-allowed; +} +.ant-checkbox-disabled .ant-checkbox-inner { + background-color: #f5f5f5; + border-color: #d9d9d9 !important; +} +.ant-checkbox-disabled .ant-checkbox-inner::after { + border-color: #f5f5f5; + border-collapse: separate; + -webkit-animation-name: none; + animation-name: none; +} +.ant-checkbox-disabled + span { + color: rgba(0, 0, 0, 0.25); + cursor: not-allowed; +} +.ant-checkbox-disabled:hover::after, +.ant-checkbox-wrapper:hover .ant-checkbox-disabled::after { + visibility: hidden; +} +.ant-checkbox-wrapper { + box-sizing: border-box; + margin: 0; + padding: 0; + color: rgba(0, 0, 0, 0.65); + font-size: 15px; + font-variant: tabular-nums; + line-height: 1.5; + list-style: none; + font-feature-settings: 'tnum'; + display: inline-block; + line-height: unset; + cursor: pointer; +} +.ant-checkbox-wrapper.ant-checkbox-wrapper-disabled { + cursor: not-allowed; +} +.ant-checkbox-wrapper + .ant-checkbox-wrapper { + margin-left: 8px; +} +.ant-checkbox + span { + padding-right: 8px; + padding-left: 8px; +} +.ant-checkbox-group { + box-sizing: border-box; + margin: 0; + padding: 0; + color: rgba(0, 0, 0, 0.65); + font-size: 15px; + font-variant: tabular-nums; + line-height: 1.5; + list-style: none; + font-feature-settings: 'tnum'; + display: inline-block; +} +.ant-checkbox-group-item { + display: inline-block; + margin-right: 8px; +} +.ant-checkbox-group-item:last-child { + margin-right: 0; +} +.ant-checkbox-group-item + .ant-checkbox-group-item { + margin-left: 0; +} +.ant-checkbox-indeterminate .ant-checkbox-inner { + background-color: #fff; + border-color: #d9d9d9; +} +.ant-checkbox-indeterminate .ant-checkbox-inner::after { + top: 50%; + left: 50%; + width: 8px; + height: 8px; + background-color: #004691; + border: 0; + transform: translate(-50%, -50%) scale(1); + opacity: 1; + content: ' '; +} +.ant-checkbox-indeterminate.ant-checkbox-disabled .ant-checkbox-inner::after { + background-color: rgba(0, 0, 0, 0.25); + border-color: rgba(0, 0, 0, 0.25); +} +.ant-collapse { + box-sizing: border-box; + margin: 0; + padding: 0; + color: rgba(0, 0, 0, 0.65); + font-size: 15px; + font-variant: tabular-nums; + line-height: 1.5; + list-style: none; + font-feature-settings: 'tnum'; + background-color: #fafafa; + border: 1px solid #d9d9d9; + border-bottom: 0; + border-radius: 4px; +} +.ant-collapse > .ant-collapse-item { + border-bottom: 1px solid #d9d9d9; +} +.ant-collapse > .ant-collapse-item:last-child, +.ant-collapse > .ant-collapse-item:last-child > .ant-collapse-header { + border-radius: 0 0 4px 4px; +} +.ant-collapse > .ant-collapse-item > .ant-collapse-header { + position: relative; + padding: 12px 16px; + padding-left: 40px; + color: rgba(0, 0, 0, 0.85); + line-height: 22px; + cursor: pointer; + transition: all 0.3s; +} +.ant-collapse > .ant-collapse-item > .ant-collapse-header .ant-collapse-arrow { + color: inherit; + font-style: normal; + line-height: 0; + text-align: center; + text-transform: none; + vertical-align: -0.125em; + text-rendering: optimizeLegibility; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + position: absolute; + top: 50%; + left: 16px; + display: inline-block; + font-size: 12px; + transform: translateY(-50%); +} +.ant-collapse > .ant-collapse-item > .ant-collapse-header .ant-collapse-arrow > * { + line-height: 1; +} +.ant-collapse > .ant-collapse-item > .ant-collapse-header .ant-collapse-arrow svg { + display: inline-block; +} +.ant-collapse > .ant-collapse-item > .ant-collapse-header .ant-collapse-arrow::before { + display: none; +} +.ant-collapse > .ant-collapse-item > .ant-collapse-header .ant-collapse-arrow .ant-collapse > .ant-collapse-item > .ant-collapse-header .ant-collapse-arrow-icon { + display: block; +} +.ant-collapse > .ant-collapse-item > .ant-collapse-header .ant-collapse-arrow svg { + transition: transform 0.24s; +} +.ant-collapse > .ant-collapse-item > .ant-collapse-header .ant-collapse-extra { + float: right; +} +.ant-collapse > .ant-collapse-item > .ant-collapse-header:focus { + outline: none; +} +.ant-collapse > .ant-collapse-item.ant-collapse-no-arrow > .ant-collapse-header { + padding-left: 12px; +} +.ant-collapse-icon-position-right > .ant-collapse-item > .ant-collapse-header { + padding: 12px 16px; + padding-right: 40px; +} +.ant-collapse-icon-position-right > .ant-collapse-item > .ant-collapse-header .ant-collapse-arrow { + right: 16px; + left: auto; +} +.ant-collapse-anim-active { + transition: height 0.2s cubic-bezier(0.215, 0.61, 0.355, 1); +} +.ant-collapse-content { + overflow: hidden; + color: rgba(0, 0, 0, 0.65); + background-color: #fff; + border-top: 1px solid #d9d9d9; +} +.ant-collapse-content > .ant-collapse-content-box { + padding: 16px; +} +.ant-collapse-content-inactive { + display: none; +} +.ant-collapse-item:last-child > .ant-collapse-content { + border-radius: 0 0 4px 4px; +} +.ant-collapse-borderless { + background-color: #fafafa; + border: 0; +} +.ant-collapse-borderless > .ant-collapse-item { + border-bottom: 1px solid #d9d9d9; +} +.ant-collapse-borderless > .ant-collapse-item:last-child, +.ant-collapse-borderless > .ant-collapse-item:last-child .ant-collapse-header { + border-radius: 0; +} +.ant-collapse-borderless > .ant-collapse-item > .ant-collapse-content { + background-color: transparent; + border-top: 0; +} +.ant-collapse-borderless > .ant-collapse-item > .ant-collapse-content > .ant-collapse-content-box { + padding-top: 4px; +} +.ant-collapse .ant-collapse-item-disabled > .ant-collapse-header, +.ant-collapse .ant-collapse-item-disabled > .ant-collapse-header > .arrow { + color: rgba(0, 0, 0, 0.25); + cursor: not-allowed; +} +.ant-comment { + position: relative; +} +.ant-comment-inner { + display: flex; + padding: 16px 0; +} +.ant-comment-avatar { + position: relative; + flex-shrink: 0; + margin-right: 12px; + cursor: pointer; +} +.ant-comment-avatar img { + width: 32px; + height: 32px; + border-radius: 50%; +} +.ant-comment-content { + position: relative; + flex: 1 1 auto; + min-width: 1px; + font-size: 15px; + word-wrap: break-word; +} +.ant-comment-content-author { + display: flex; + flex-wrap: wrap; + justify-content: flex-start; + margin-bottom: 4px; + font-size: 15px; +} +.ant-comment-content-author > a, +.ant-comment-content-author > span { + padding-right: 8px; + font-size: 12px; + line-height: 18px; +} +.ant-comment-content-author-name { + color: rgba(0, 0, 0, 0.45); + font-size: 15px; + transition: color 0.3s; +} +.ant-comment-content-author-name > * { + color: rgba(0, 0, 0, 0.45); +} +.ant-comment-content-author-name > *:hover { + color: rgba(0, 0, 0, 0.45); +} +.ant-comment-content-author-time { + color: #ccc; + white-space: nowrap; + cursor: auto; +} +.ant-comment-content-detail p { + white-space: pre-wrap; +} +.ant-comment-actions { + margin-top: 12px; + padding-left: 0; +} +.ant-comment-actions > li { + display: inline-block; + color: rgba(0, 0, 0, 0.45); +} +.ant-comment-actions > li > span { + padding-right: 10px; + color: rgba(0, 0, 0, 0.45); + font-size: 12px; + cursor: pointer; + transition: color 0.3s; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} +.ant-comment-actions > li > span:hover { + color: #595959; +} +.ant-comment-nested { + margin-left: 44px; +} +.ant-calendar-picker-container { + box-sizing: border-box; + margin: 0; + padding: 0; + color: rgba(0, 0, 0, 0.65); + font-size: 15px; + font-variant: tabular-nums; + line-height: 1.5; + list-style: none; + font-feature-settings: 'tnum'; + position: absolute; + z-index: 1050; + font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', 'Helvetica Neue', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol'; +} +.ant-calendar-picker-container.slide-up-enter.slide-up-enter-active.ant-calendar-picker-container-placement-topLeft, +.ant-calendar-picker-container.slide-up-enter.slide-up-enter-active.ant-calendar-picker-container-placement-topRight, +.ant-calendar-picker-container.slide-up-appear.slide-up-appear-active.ant-calendar-picker-container-placement-topLeft, +.ant-calendar-picker-container.slide-up-appear.slide-up-appear-active.ant-calendar-picker-container-placement-topRight { + -webkit-animation-name: antSlideDownIn; + animation-name: antSlideDownIn; +} +.ant-calendar-picker-container.slide-up-enter.slide-up-enter-active.ant-calendar-picker-container-placement-bottomLeft, +.ant-calendar-picker-container.slide-up-enter.slide-up-enter-active.ant-calendar-picker-container-placement-bottomRight, +.ant-calendar-picker-container.slide-up-appear.slide-up-appear-active.ant-calendar-picker-container-placement-bottomLeft, +.ant-calendar-picker-container.slide-up-appear.slide-up-appear-active.ant-calendar-picker-container-placement-bottomRight { + -webkit-animation-name: antSlideUpIn; + animation-name: antSlideUpIn; +} +.ant-calendar-picker-container.slide-up-leave.slide-up-leave-active.ant-calendar-picker-container-placement-topLeft, +.ant-calendar-picker-container.slide-up-leave.slide-up-leave-active.ant-calendar-picker-container-placement-topRight { + -webkit-animation-name: antSlideDownOut; + animation-name: antSlideDownOut; +} +.ant-calendar-picker-container.slide-up-leave.slide-up-leave-active.ant-calendar-picker-container-placement-bottomLeft, +.ant-calendar-picker-container.slide-up-leave.slide-up-leave-active.ant-calendar-picker-container-placement-bottomRight { + -webkit-animation-name: antSlideUpOut; + animation-name: antSlideUpOut; +} +.ant-calendar-picker { + box-sizing: border-box; + margin: 0; + padding: 0; + color: rgba(0, 0, 0, 0.65); + font-size: 15px; + font-variant: tabular-nums; + line-height: 1.5; + list-style: none; + font-feature-settings: 'tnum'; + position: relative; + display: inline-block; + outline: none; + cursor: text; + transition: opacity 0.3s; +} +.ant-calendar-picker-input { + outline: none; +} +.ant-calendar-picker-input.ant-input { + line-height: 1.5; +} +.ant-calendar-picker-input.ant-input-sm { + padding-top: 0; + padding-bottom: 0; +} +.ant-calendar-picker:hover .ant-calendar-picker-input:not(.ant-input-disabled) { + border-color: #195e9e; +} +.ant-calendar-picker:focus .ant-calendar-picker-input:not(.ant-input-disabled) { + border-color: #195e9e; + border-right-width: 1px !important; + outline: 0; + box-shadow: 0 0 0 2px rgba(0, 70, 145, 0.2); +} +.ant-calendar-picker-clear, +.ant-calendar-picker-icon { + position: absolute; + top: 50%; + right: 12px; + z-index: 1; + width: 14px; + height: 14px; + margin-top: -7px; + font-size: 12px; + line-height: 14px; + transition: all 0.3s; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} +.ant-calendar-picker-clear { + z-index: 2; + color: rgba(0, 0, 0, 0.25); + font-size: 15px; + background: #fff; + cursor: pointer; + opacity: 0; + pointer-events: none; +} +.ant-calendar-picker-clear:hover { + color: rgba(0, 0, 0, 0.45); +} +.ant-calendar-picker:hover .ant-calendar-picker-clear { + opacity: 1; + pointer-events: auto; +} +.ant-calendar-picker-icon { + display: inline-block; + color: rgba(0, 0, 0, 0.25); + font-size: 15px; + line-height: 1; +} +.ant-input-disabled + .ant-calendar-picker-icon { + cursor: not-allowed; +} +.ant-calendar-picker-small .ant-calendar-picker-clear, +.ant-calendar-picker-small .ant-calendar-picker-icon { + right: 8px; +} +.ant-calendar { + position: relative; + width: 280px; + font-size: 15px; + line-height: 1.5; + text-align: left; + list-style: none; + background-color: #fff; + background-clip: padding-box; + border: 1px solid #fff; + border-radius: 4px; + outline: none; + box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15); +} +.ant-calendar-input-wrap { + height: 34px; + padding: 6px 10px; + border-bottom: 1px solid #e8e8e8; +} +.ant-calendar-input { + width: 100%; + height: 22px; + color: rgba(0, 0, 0, 0.65); + background: #fff; + border: 0; + outline: 0; + cursor: auto; +} +.ant-calendar-input::-moz-placeholder { + color: #bfbfbf; + opacity: 1; +} +.ant-calendar-input:-ms-input-placeholder { + color: #bfbfbf; +} +.ant-calendar-input::-webkit-input-placeholder { + color: #bfbfbf; +} +.ant-calendar-input:-moz-placeholder-shown { + text-overflow: ellipsis; +} +.ant-calendar-input:-ms-input-placeholder { + text-overflow: ellipsis; +} +.ant-calendar-input:placeholder-shown { + text-overflow: ellipsis; +} +.ant-calendar-week-number { + width: 286px; +} +.ant-calendar-week-number-cell { + text-align: center; +} +.ant-calendar-header { + height: 40px; + line-height: 40px; + text-align: center; + border-bottom: 1px solid #e8e8e8; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} +.ant-calendar-header a:hover { + color: #195e9e; +} +.ant-calendar-header .ant-calendar-century-select, +.ant-calendar-header .ant-calendar-decade-select, +.ant-calendar-header .ant-calendar-year-select, +.ant-calendar-header .ant-calendar-month-select { + display: inline-block; + padding: 0 2px; + color: rgba(0, 0, 0, 0.85); + font-weight: 500; + line-height: 40px; +} +.ant-calendar-header .ant-calendar-century-select-arrow, +.ant-calendar-header .ant-calendar-decade-select-arrow, +.ant-calendar-header .ant-calendar-year-select-arrow, +.ant-calendar-header .ant-calendar-month-select-arrow { + display: none; +} +.ant-calendar-header .ant-calendar-prev-century-btn, +.ant-calendar-header .ant-calendar-next-century-btn, +.ant-calendar-header .ant-calendar-prev-decade-btn, +.ant-calendar-header .ant-calendar-next-decade-btn, +.ant-calendar-header .ant-calendar-prev-month-btn, +.ant-calendar-header .ant-calendar-next-month-btn, +.ant-calendar-header .ant-calendar-prev-year-btn, +.ant-calendar-header .ant-calendar-next-year-btn { + position: absolute; + top: 0; + display: inline-block; + padding: 0 5px; + color: rgba(0, 0, 0, 0.45); + font-size: 16px; + font-family: Arial, 'Hiragino Sans GB', 'Microsoft Yahei', 'Microsoft Sans Serif', sans-serif; + line-height: 40px; +} +.ant-calendar-header .ant-calendar-prev-century-btn, +.ant-calendar-header .ant-calendar-prev-decade-btn, +.ant-calendar-header .ant-calendar-prev-year-btn { + left: 7px; + height: 100%; +} +.ant-calendar-header .ant-calendar-prev-century-btn::before, +.ant-calendar-header .ant-calendar-prev-decade-btn::before, +.ant-calendar-header .ant-calendar-prev-year-btn::before, +.ant-calendar-header .ant-calendar-prev-century-btn::after, +.ant-calendar-header .ant-calendar-prev-decade-btn::after, +.ant-calendar-header .ant-calendar-prev-year-btn::after { + position: relative; + top: -1px; + display: inline-block; + width: 8px; + height: 8px; + vertical-align: middle; + border: 0 solid #aaa; + border-width: 1.5px 0 0 1.5px; + border-radius: 1px; + transform: rotate(-45deg) scale(0.8); + transition: all 0.3s; + content: ''; +} +.ant-calendar-header .ant-calendar-prev-century-btn:hover::before, +.ant-calendar-header .ant-calendar-prev-decade-btn:hover::before, +.ant-calendar-header .ant-calendar-prev-year-btn:hover::before, +.ant-calendar-header .ant-calendar-prev-century-btn:hover::after, +.ant-calendar-header .ant-calendar-prev-decade-btn:hover::after, +.ant-calendar-header .ant-calendar-prev-year-btn:hover::after { + border-color: rgba(0, 0, 0, 0.65); +} +.ant-calendar-header .ant-calendar-prev-century-btn::after, +.ant-calendar-header .ant-calendar-prev-decade-btn::after, +.ant-calendar-header .ant-calendar-prev-year-btn::after { + display: none; +} +.ant-calendar-header .ant-calendar-prev-century-btn::after, +.ant-calendar-header .ant-calendar-prev-decade-btn::after, +.ant-calendar-header .ant-calendar-prev-year-btn::after { + position: relative; + left: -3px; + display: inline-block; +} +.ant-calendar-header .ant-calendar-next-century-btn, +.ant-calendar-header .ant-calendar-next-decade-btn, +.ant-calendar-header .ant-calendar-next-year-btn { + right: 7px; + height: 100%; +} +.ant-calendar-header .ant-calendar-next-century-btn::before, +.ant-calendar-header .ant-calendar-next-decade-btn::before, +.ant-calendar-header .ant-calendar-next-year-btn::before, +.ant-calendar-header .ant-calendar-next-century-btn::after, +.ant-calendar-header .ant-calendar-next-decade-btn::after, +.ant-calendar-header .ant-calendar-next-year-btn::after { + position: relative; + top: -1px; + display: inline-block; + width: 8px; + height: 8px; + vertical-align: middle; + border: 0 solid #aaa; + border-width: 1.5px 0 0 1.5px; + border-radius: 1px; + transform: rotate(-45deg) scale(0.8); + transition: all 0.3s; + content: ''; +} +.ant-calendar-header .ant-calendar-next-century-btn:hover::before, +.ant-calendar-header .ant-calendar-next-decade-btn:hover::before, +.ant-calendar-header .ant-calendar-next-year-btn:hover::before, +.ant-calendar-header .ant-calendar-next-century-btn:hover::after, +.ant-calendar-header .ant-calendar-next-decade-btn:hover::after, +.ant-calendar-header .ant-calendar-next-year-btn:hover::after { + border-color: rgba(0, 0, 0, 0.65); +} +.ant-calendar-header .ant-calendar-next-century-btn::after, +.ant-calendar-header .ant-calendar-next-decade-btn::after, +.ant-calendar-header .ant-calendar-next-year-btn::after { + display: none; +} +.ant-calendar-header .ant-calendar-next-century-btn::before, +.ant-calendar-header .ant-calendar-next-decade-btn::before, +.ant-calendar-header .ant-calendar-next-year-btn::before, +.ant-calendar-header .ant-calendar-next-century-btn::after, +.ant-calendar-header .ant-calendar-next-decade-btn::after, +.ant-calendar-header .ant-calendar-next-year-btn::after { + transform: rotate(135deg) scale(0.8); +} +.ant-calendar-header .ant-calendar-next-century-btn::before, +.ant-calendar-header .ant-calendar-next-decade-btn::before, +.ant-calendar-header .ant-calendar-next-year-btn::before { + position: relative; + left: 3px; +} +.ant-calendar-header .ant-calendar-next-century-btn::after, +.ant-calendar-header .ant-calendar-next-decade-btn::after, +.ant-calendar-header .ant-calendar-next-year-btn::after { + display: inline-block; +} +.ant-calendar-header .ant-calendar-prev-month-btn { + left: 29px; + height: 100%; +} +.ant-calendar-header .ant-calendar-prev-month-btn::before, +.ant-calendar-header .ant-calendar-prev-month-btn::after { + position: relative; + top: -1px; + display: inline-block; + width: 8px; + height: 8px; + vertical-align: middle; + border: 0 solid #aaa; + border-width: 1.5px 0 0 1.5px; + border-radius: 1px; + transform: rotate(-45deg) scale(0.8); + transition: all 0.3s; + content: ''; +} +.ant-calendar-header .ant-calendar-prev-month-btn:hover::before, +.ant-calendar-header .ant-calendar-prev-month-btn:hover::after { + border-color: rgba(0, 0, 0, 0.65); +} +.ant-calendar-header .ant-calendar-prev-month-btn::after { + display: none; +} +.ant-calendar-header .ant-calendar-next-month-btn { + right: 29px; + height: 100%; +} +.ant-calendar-header .ant-calendar-next-month-btn::before, +.ant-calendar-header .ant-calendar-next-month-btn::after { + position: relative; + top: -1px; + display: inline-block; + width: 8px; + height: 8px; + vertical-align: middle; + border: 0 solid #aaa; + border-width: 1.5px 0 0 1.5px; + border-radius: 1px; + transform: rotate(-45deg) scale(0.8); + transition: all 0.3s; + content: ''; +} +.ant-calendar-header .ant-calendar-next-month-btn:hover::before, +.ant-calendar-header .ant-calendar-next-month-btn:hover::after { + border-color: rgba(0, 0, 0, 0.65); +} +.ant-calendar-header .ant-calendar-next-month-btn::after { + display: none; +} +.ant-calendar-header .ant-calendar-next-month-btn::before, +.ant-calendar-header .ant-calendar-next-month-btn::after { + transform: rotate(135deg) scale(0.8); +} +.ant-calendar-body { + padding: 8px 12px; +} +.ant-calendar table { + width: 100%; + max-width: 100%; + background-color: transparent; + border-collapse: collapse; +} +.ant-calendar table, +.ant-calendar th, +.ant-calendar td { + text-align: center; + border: 0; +} +.ant-calendar-calendar-table { + margin-bottom: 0; + border-spacing: 0; +} +.ant-calendar-column-header { + width: 33px; + padding: 6px 0; + line-height: 18px; + text-align: center; +} +.ant-calendar-column-header .ant-calendar-column-header-inner { + display: block; + font-weight: normal; +} +.ant-calendar-week-number-header .ant-calendar-column-header-inner { + display: none; +} +.ant-calendar-cell { + height: 30px; + padding: 3px 0; +} +.ant-calendar-date { + display: block; + width: 24px; + height: 24px; + margin: 0 auto; + padding: 0; + color: rgba(0, 0, 0, 0.65); + line-height: 22px; + text-align: center; + background: transparent; + border: 1px solid transparent; + border-radius: 2px; + transition: background 0.3s ease; +} +.ant-calendar-date-panel { + position: relative; + outline: none; +} +.ant-calendar-date:hover { + background: #bccad1; + cursor: pointer; +} +.ant-calendar-date:active { + color: #fff; + background: #195e9e; +} +.ant-calendar-today .ant-calendar-date { + color: #004691; + font-weight: bold; + border-color: #004691; +} +.ant-calendar-selected-day .ant-calendar-date { + background: #7ea9c4; +} +.ant-calendar-last-month-cell .ant-calendar-date, +.ant-calendar-next-month-btn-day .ant-calendar-date, +.ant-calendar-last-month-cell .ant-calendar-date:hover, +.ant-calendar-next-month-btn-day .ant-calendar-date:hover { + color: rgba(0, 0, 0, 0.25); + background: transparent; + border-color: transparent; +} +.ant-calendar-disabled-cell .ant-calendar-date { + position: relative; + width: auto; + color: rgba(0, 0, 0, 0.25); + background: #f5f5f5; + border: 1px solid transparent; + border-radius: 0; + cursor: not-allowed; +} +.ant-calendar-disabled-cell .ant-calendar-date:hover { + background: #f5f5f5; +} +.ant-calendar-disabled-cell.ant-calendar-selected-day .ant-calendar-date::before { + position: absolute; + top: -1px; + left: 5px; + width: 24px; + height: 24px; + background: rgba(0, 0, 0, 0.1); + border-radius: 2px; + content: ''; +} +.ant-calendar-disabled-cell.ant-calendar-today .ant-calendar-date { + position: relative; + padding-right: 5px; + padding-left: 5px; +} +.ant-calendar-disabled-cell.ant-calendar-today .ant-calendar-date::before { + position: absolute; + top: -1px; + left: 5px; + width: 24px; + height: 24px; + border: 1px solid rgba(0, 0, 0, 0.25); + border-radius: 2px; + content: ' '; +} +.ant-calendar-disabled-cell-first-of-row .ant-calendar-date { + border-top-left-radius: 4px; + border-bottom-left-radius: 4px; +} +.ant-calendar-disabled-cell-last-of-row .ant-calendar-date { + border-top-right-radius: 4px; + border-bottom-right-radius: 4px; +} +.ant-calendar-footer { + padding: 0 12px; + line-height: 38px; + border-top: 1px solid #e8e8e8; +} +.ant-calendar-footer:empty { + border-top: 0; +} +.ant-calendar-footer-btn { + display: block; + text-align: center; +} +.ant-calendar-footer-extra { + text-align: left; +} +.ant-calendar .ant-calendar-today-btn, +.ant-calendar .ant-calendar-clear-btn { + display: inline-block; + margin: 0 0 0 8px; + text-align: center; +} +.ant-calendar .ant-calendar-today-btn-disabled, +.ant-calendar .ant-calendar-clear-btn-disabled { + color: rgba(0, 0, 0, 0.25); + cursor: not-allowed; +} +.ant-calendar .ant-calendar-today-btn:only-child, +.ant-calendar .ant-calendar-clear-btn:only-child { + margin: 0; +} +.ant-calendar .ant-calendar-clear-btn { + position: absolute; + top: 7px; + right: 5px; + display: none; + width: 20px; + height: 20px; + margin: 0; + overflow: hidden; + line-height: 20px; + text-align: center; + text-indent: -76px; +} +.ant-calendar .ant-calendar-clear-btn::after { + display: inline-block; + width: 20px; + color: rgba(0, 0, 0, 0.25); + font-size: 15px; + line-height: 1; + text-indent: 43px; + transition: color 0.3s ease; +} +.ant-calendar .ant-calendar-clear-btn:hover::after { + color: rgba(0, 0, 0, 0.45); +} +.ant-calendar .ant-calendar-ok-btn { + position: relative; + display: inline-block; + font-weight: 400; + white-space: nowrap; + text-align: center; + background-image: none; + border: 1px solid transparent; + box-shadow: 0 2px 0 rgba(0, 0, 0, 0.015); + cursor: pointer; + transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + touch-action: manipulation; + height: 32px; + padding: 0 15px; + color: #fff; + background-color: #004691; + border-color: #004691; + text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.12); + box-shadow: 0 2px 0 rgba(0, 0, 0, 0.045); + height: 24px; + padding: 0 7px; + font-size: 15px; + border-radius: 4px; + line-height: 22px; +} +.ant-calendar .ant-calendar-ok-btn > .anticon { + line-height: 1; +} +.ant-calendar .ant-calendar-ok-btn, +.ant-calendar .ant-calendar-ok-btn:active, +.ant-calendar .ant-calendar-ok-btn:focus { + outline: 0; +} +.ant-calendar .ant-calendar-ok-btn:not([disabled]):hover { + text-decoration: none; +} +.ant-calendar .ant-calendar-ok-btn:not([disabled]):active { + outline: 0; + box-shadow: none; +} +.ant-calendar .ant-calendar-ok-btn.disabled, +.ant-calendar .ant-calendar-ok-btn[disabled] { + cursor: not-allowed; +} +.ant-calendar .ant-calendar-ok-btn.disabled > *, +.ant-calendar .ant-calendar-ok-btn[disabled] > * { + pointer-events: none; +} +.ant-calendar .ant-calendar-ok-btn-lg { + height: 40px; + padding: 0 15px; + font-size: 17px; + border-radius: 4px; +} +.ant-calendar .ant-calendar-ok-btn-sm { + height: 24px; + padding: 0 7px; + font-size: 15px; + border-radius: 4px; +} +.ant-calendar .ant-calendar-ok-btn > a:only-child { + color: currentColor; +} +.ant-calendar .ant-calendar-ok-btn > a:only-child::after { + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + background: transparent; + content: ''; +} +.ant-calendar .ant-calendar-ok-btn:hover, +.ant-calendar .ant-calendar-ok-btn:focus { + color: #fff; + background-color: #195e9e; + border-color: #195e9e; +} +.ant-calendar .ant-calendar-ok-btn:hover > a:only-child, +.ant-calendar .ant-calendar-ok-btn:focus > a:only-child { + color: currentColor; +} +.ant-calendar .ant-calendar-ok-btn:hover > a:only-child::after, +.ant-calendar .ant-calendar-ok-btn:focus > a:only-child::after { + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + background: transparent; + content: ''; +} +.ant-calendar .ant-calendar-ok-btn:active, +.ant-calendar .ant-calendar-ok-btn.active { + color: #fff; + background-color: #00306b; + border-color: #00306b; +} +.ant-calendar .ant-calendar-ok-btn:active > a:only-child, +.ant-calendar .ant-calendar-ok-btn.active > a:only-child { + color: currentColor; +} +.ant-calendar .ant-calendar-ok-btn:active > a:only-child::after, +.ant-calendar .ant-calendar-ok-btn.active > a:only-child::after { + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + background: transparent; + content: ''; +} +.ant-calendar .ant-calendar-ok-btn-disabled, +.ant-calendar .ant-calendar-ok-btn.disabled, +.ant-calendar .ant-calendar-ok-btn[disabled], +.ant-calendar .ant-calendar-ok-btn-disabled:hover, +.ant-calendar .ant-calendar-ok-btn.disabled:hover, +.ant-calendar .ant-calendar-ok-btn[disabled]:hover, +.ant-calendar .ant-calendar-ok-btn-disabled:focus, +.ant-calendar .ant-calendar-ok-btn.disabled:focus, +.ant-calendar .ant-calendar-ok-btn[disabled]:focus, +.ant-calendar .ant-calendar-ok-btn-disabled:active, +.ant-calendar .ant-calendar-ok-btn.disabled:active, +.ant-calendar .ant-calendar-ok-btn[disabled]:active, +.ant-calendar .ant-calendar-ok-btn-disabled.active, +.ant-calendar .ant-calendar-ok-btn.disabled.active, +.ant-calendar .ant-calendar-ok-btn[disabled].active { + color: rgba(0, 0, 0, 0.25); + background-color: #f5f5f5; + border-color: #d9d9d9; + text-shadow: none; + box-shadow: none; +} +.ant-calendar .ant-calendar-ok-btn-disabled > a:only-child, +.ant-calendar .ant-calendar-ok-btn.disabled > a:only-child, +.ant-calendar .ant-calendar-ok-btn[disabled] > a:only-child, +.ant-calendar .ant-calendar-ok-btn-disabled:hover > a:only-child, +.ant-calendar .ant-calendar-ok-btn.disabled:hover > a:only-child, +.ant-calendar .ant-calendar-ok-btn[disabled]:hover > a:only-child, +.ant-calendar .ant-calendar-ok-btn-disabled:focus > a:only-child, +.ant-calendar .ant-calendar-ok-btn.disabled:focus > a:only-child, +.ant-calendar .ant-calendar-ok-btn[disabled]:focus > a:only-child, +.ant-calendar .ant-calendar-ok-btn-disabled:active > a:only-child, +.ant-calendar .ant-calendar-ok-btn.disabled:active > a:only-child, +.ant-calendar .ant-calendar-ok-btn[disabled]:active > a:only-child, +.ant-calendar .ant-calendar-ok-btn-disabled.active > a:only-child, +.ant-calendar .ant-calendar-ok-btn.disabled.active > a:only-child, +.ant-calendar .ant-calendar-ok-btn[disabled].active > a:only-child { + color: currentColor; +} +.ant-calendar .ant-calendar-ok-btn-disabled > a:only-child::after, +.ant-calendar .ant-calendar-ok-btn.disabled > a:only-child::after, +.ant-calendar .ant-calendar-ok-btn[disabled] > a:only-child::after, +.ant-calendar .ant-calendar-ok-btn-disabled:hover > a:only-child::after, +.ant-calendar .ant-calendar-ok-btn.disabled:hover > a:only-child::after, +.ant-calendar .ant-calendar-ok-btn[disabled]:hover > a:only-child::after, +.ant-calendar .ant-calendar-ok-btn-disabled:focus > a:only-child::after, +.ant-calendar .ant-calendar-ok-btn.disabled:focus > a:only-child::after, +.ant-calendar .ant-calendar-ok-btn[disabled]:focus > a:only-child::after, +.ant-calendar .ant-calendar-ok-btn-disabled:active > a:only-child::after, +.ant-calendar .ant-calendar-ok-btn.disabled:active > a:only-child::after, +.ant-calendar .ant-calendar-ok-btn[disabled]:active > a:only-child::after, +.ant-calendar .ant-calendar-ok-btn-disabled.active > a:only-child::after, +.ant-calendar .ant-calendar-ok-btn.disabled.active > a:only-child::after, +.ant-calendar .ant-calendar-ok-btn[disabled].active > a:only-child::after { + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + background: transparent; + content: ''; +} +.ant-calendar .ant-calendar-ok-btn-disabled, +.ant-calendar .ant-calendar-ok-btn.disabled, +.ant-calendar .ant-calendar-ok-btn[disabled], +.ant-calendar .ant-calendar-ok-btn-disabled:hover, +.ant-calendar .ant-calendar-ok-btn.disabled:hover, +.ant-calendar .ant-calendar-ok-btn[disabled]:hover, +.ant-calendar .ant-calendar-ok-btn-disabled:focus, +.ant-calendar .ant-calendar-ok-btn.disabled:focus, +.ant-calendar .ant-calendar-ok-btn[disabled]:focus, +.ant-calendar .ant-calendar-ok-btn-disabled:active, +.ant-calendar .ant-calendar-ok-btn.disabled:active, +.ant-calendar .ant-calendar-ok-btn[disabled]:active, +.ant-calendar .ant-calendar-ok-btn-disabled.active, +.ant-calendar .ant-calendar-ok-btn.disabled.active, +.ant-calendar .ant-calendar-ok-btn[disabled].active { + color: rgba(0, 0, 0, 0.25); + background-color: #f5f5f5; + border-color: #d9d9d9; + text-shadow: none; + box-shadow: none; +} +.ant-calendar .ant-calendar-ok-btn-disabled > a:only-child, +.ant-calendar .ant-calendar-ok-btn.disabled > a:only-child, +.ant-calendar .ant-calendar-ok-btn[disabled] > a:only-child, +.ant-calendar .ant-calendar-ok-btn-disabled:hover > a:only-child, +.ant-calendar .ant-calendar-ok-btn.disabled:hover > a:only-child, +.ant-calendar .ant-calendar-ok-btn[disabled]:hover > a:only-child, +.ant-calendar .ant-calendar-ok-btn-disabled:focus > a:only-child, +.ant-calendar .ant-calendar-ok-btn.disabled:focus > a:only-child, +.ant-calendar .ant-calendar-ok-btn[disabled]:focus > a:only-child, +.ant-calendar .ant-calendar-ok-btn-disabled:active > a:only-child, +.ant-calendar .ant-calendar-ok-btn.disabled:active > a:only-child, +.ant-calendar .ant-calendar-ok-btn[disabled]:active > a:only-child, +.ant-calendar .ant-calendar-ok-btn-disabled.active > a:only-child, +.ant-calendar .ant-calendar-ok-btn.disabled.active > a:only-child, +.ant-calendar .ant-calendar-ok-btn[disabled].active > a:only-child { + color: currentColor; +} +.ant-calendar .ant-calendar-ok-btn-disabled > a:only-child::after, +.ant-calendar .ant-calendar-ok-btn.disabled > a:only-child::after, +.ant-calendar .ant-calendar-ok-btn[disabled] > a:only-child::after, +.ant-calendar .ant-calendar-ok-btn-disabled:hover > a:only-child::after, +.ant-calendar .ant-calendar-ok-btn.disabled:hover > a:only-child::after, +.ant-calendar .ant-calendar-ok-btn[disabled]:hover > a:only-child::after, +.ant-calendar .ant-calendar-ok-btn-disabled:focus > a:only-child::after, +.ant-calendar .ant-calendar-ok-btn.disabled:focus > a:only-child::after, +.ant-calendar .ant-calendar-ok-btn[disabled]:focus > a:only-child::after, +.ant-calendar .ant-calendar-ok-btn-disabled:active > a:only-child::after, +.ant-calendar .ant-calendar-ok-btn.disabled:active > a:only-child::after, +.ant-calendar .ant-calendar-ok-btn[disabled]:active > a:only-child::after, +.ant-calendar .ant-calendar-ok-btn-disabled.active > a:only-child::after, +.ant-calendar .ant-calendar-ok-btn.disabled.active > a:only-child::after, +.ant-calendar .ant-calendar-ok-btn[disabled].active > a:only-child::after { + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + background: transparent; + content: ''; +} +.ant-calendar-range-picker-input { + width: 44%; + height: 99%; + text-align: center; + background-color: transparent; + border: 0; + outline: 0; +} +.ant-calendar-range-picker-input::-moz-placeholder { + color: #bfbfbf; + opacity: 1; +} +.ant-calendar-range-picker-input:-ms-input-placeholder { + color: #bfbfbf; +} +.ant-calendar-range-picker-input::-webkit-input-placeholder { + color: #bfbfbf; +} +.ant-calendar-range-picker-input:-moz-placeholder-shown { + text-overflow: ellipsis; +} +.ant-calendar-range-picker-input:-ms-input-placeholder { + text-overflow: ellipsis; +} +.ant-calendar-range-picker-input:placeholder-shown { + text-overflow: ellipsis; +} +.ant-calendar-range-picker-input[disabled] { + cursor: not-allowed; +} +.ant-calendar-range-picker-separator { + display: inline-block; + min-width: 10px; + height: 100%; + color: rgba(0, 0, 0, 0.45); + white-space: nowrap; + text-align: center; + vertical-align: top; + pointer-events: none; +} +.ant-input-disabled .ant-calendar-range-picker-separator { + color: rgba(0, 0, 0, 0.25); +} +.ant-calendar-range { + width: 552px; + overflow: hidden; +} +.ant-calendar-range .ant-calendar-date-panel::after { + display: block; + clear: both; + height: 0; + visibility: hidden; + content: '.'; +} +.ant-calendar-range-part { + position: relative; + width: 50%; +} +.ant-calendar-range-left { + float: left; +} +.ant-calendar-range-left .ant-calendar-time-picker-inner { + border-right: 1px solid #e8e8e8; +} +.ant-calendar-range-right { + float: right; +} +.ant-calendar-range-right .ant-calendar-time-picker-inner { + border-left: 1px solid #e8e8e8; +} +.ant-calendar-range-middle { + position: absolute; + left: 50%; + z-index: 1; + height: 34px; + margin: 1px 0 0 0; + padding: 0 200px 0 0; + color: rgba(0, 0, 0, 0.45); + line-height: 34px; + text-align: center; + transform: translateX(-50%); + pointer-events: none; +} +.ant-calendar-range-right .ant-calendar-date-input-wrap { + margin-left: -90px; +} +.ant-calendar-range.ant-calendar-time .ant-calendar-range-middle { + padding: 0 10px 0 0; + transform: translateX(-50%); +} +.ant-calendar-range .ant-calendar-today :not(.ant-calendar-disabled-cell) :not(.ant-calendar-last-month-cell) :not(.ant-calendar-next-month-btn-day) .ant-calendar-date { + color: #004691; + background: #7ea9c4; + border-color: #004691; +} +.ant-calendar-range .ant-calendar-selected-start-date .ant-calendar-date, +.ant-calendar-range .ant-calendar-selected-end-date .ant-calendar-date { + color: #fff; + background: #004691; + border: 1px solid transparent; +} +.ant-calendar-range .ant-calendar-selected-start-date .ant-calendar-date:hover, +.ant-calendar-range .ant-calendar-selected-end-date .ant-calendar-date:hover { + background: #004691; +} +.ant-calendar-range.ant-calendar-time .ant-calendar-range-right .ant-calendar-date-input-wrap { + margin-left: 0; +} +.ant-calendar-range .ant-calendar-input-wrap { + position: relative; + height: 34px; +} +.ant-calendar-range .ant-calendar-input, +.ant-calendar-range .ant-calendar-time-picker-input { + position: relative; + display: inline-block; + width: 100%; + height: 32px; + padding: 4px 11px; + color: rgba(0, 0, 0, 0.65); + font-size: 15px; + line-height: 1.5; + background-color: #fff; + background-image: none; + border: 1px solid #d9d9d9; + border-radius: 4px; + transition: all 0.3s; + height: 24px; + padding-right: 0; + padding-left: 0; + line-height: 24px; + border: 0; + box-shadow: none; +} +.ant-calendar-range .ant-calendar-input::-moz-placeholder, +.ant-calendar-range .ant-calendar-time-picker-input::-moz-placeholder { + color: #bfbfbf; + opacity: 1; +} +.ant-calendar-range .ant-calendar-input:-ms-input-placeholder, +.ant-calendar-range .ant-calendar-time-picker-input:-ms-input-placeholder { + color: #bfbfbf; +} +.ant-calendar-range .ant-calendar-input::-webkit-input-placeholder, +.ant-calendar-range .ant-calendar-time-picker-input::-webkit-input-placeholder { + color: #bfbfbf; +} +.ant-calendar-range .ant-calendar-input:-moz-placeholder-shown, .ant-calendar-range .ant-calendar-time-picker-input:-moz-placeholder-shown { + text-overflow: ellipsis; +} +.ant-calendar-range .ant-calendar-input:-ms-input-placeholder, .ant-calendar-range .ant-calendar-time-picker-input:-ms-input-placeholder { + text-overflow: ellipsis; +} +.ant-calendar-range .ant-calendar-input:placeholder-shown, +.ant-calendar-range .ant-calendar-time-picker-input:placeholder-shown { + text-overflow: ellipsis; +} +.ant-calendar-range .ant-calendar-input:hover, +.ant-calendar-range .ant-calendar-time-picker-input:hover { + border-color: #195e9e; + border-right-width: 1px !important; +} +.ant-calendar-range .ant-calendar-input:focus, +.ant-calendar-range .ant-calendar-time-picker-input:focus { + border-color: #195e9e; + border-right-width: 1px !important; + outline: 0; + box-shadow: 0 0 0 2px rgba(0, 70, 145, 0.2); +} +.ant-calendar-range .ant-calendar-input-disabled, +.ant-calendar-range .ant-calendar-time-picker-input-disabled { + color: rgba(0, 0, 0, 0.25); + background-color: #f5f5f5; + cursor: not-allowed; + opacity: 1; +} +.ant-calendar-range .ant-calendar-input-disabled:hover, +.ant-calendar-range .ant-calendar-time-picker-input-disabled:hover { + border-color: #d9d9d9; + border-right-width: 1px !important; +} +.ant-calendar-range .ant-calendar-input[disabled], +.ant-calendar-range .ant-calendar-time-picker-input[disabled] { + color: rgba(0, 0, 0, 0.25); + background-color: #f5f5f5; + cursor: not-allowed; + opacity: 1; +} +.ant-calendar-range .ant-calendar-input[disabled]:hover, +.ant-calendar-range .ant-calendar-time-picker-input[disabled]:hover { + border-color: #d9d9d9; + border-right-width: 1px !important; +} +textarea.ant-calendar-range .ant-calendar-input, +textarea.ant-calendar-range .ant-calendar-time-picker-input { + max-width: 100%; + height: auto; + min-height: 32px; + line-height: 1.5; + vertical-align: bottom; + transition: all 0.3s, height 0s; +} +.ant-calendar-range .ant-calendar-input-lg, +.ant-calendar-range .ant-calendar-time-picker-input-lg { + height: 40px; + padding: 6px 11px; + font-size: 17px; +} +.ant-calendar-range .ant-calendar-input-sm, +.ant-calendar-range .ant-calendar-time-picker-input-sm { + height: 24px; + padding: 1px 7px; +} +.ant-calendar-range .ant-calendar-input:focus, +.ant-calendar-range .ant-calendar-time-picker-input:focus { + box-shadow: none; +} +.ant-calendar-range .ant-calendar-time-picker-icon { + display: none; +} +.ant-calendar-range.ant-calendar-week-number { + width: 574px; +} +.ant-calendar-range.ant-calendar-week-number .ant-calendar-range-part { + width: 286px; +} +.ant-calendar-range .ant-calendar-year-panel, +.ant-calendar-range .ant-calendar-month-panel, +.ant-calendar-range .ant-calendar-decade-panel { + top: 34px; +} +.ant-calendar-range .ant-calendar-month-panel .ant-calendar-year-panel { + top: 0; +} +.ant-calendar-range .ant-calendar-decade-panel-table, +.ant-calendar-range .ant-calendar-year-panel-table, +.ant-calendar-range .ant-calendar-month-panel-table { + height: 208px; +} +.ant-calendar-range .ant-calendar-in-range-cell { + position: relative; + border-radius: 0; +} +.ant-calendar-range .ant-calendar-in-range-cell > div { + position: relative; + z-index: 1; +} +.ant-calendar-range .ant-calendar-in-range-cell::before { + position: absolute; + top: 4px; + right: 0; + bottom: 4px; + left: 0; + display: block; + background: #bccad1; + border: 0; + border-radius: 0; + content: ''; +} +.ant-calendar-range .ant-calendar-footer-extra { + float: left; +} +div.ant-calendar-range-quick-selector { + text-align: left; +} +div.ant-calendar-range-quick-selector > a { + margin-right: 8px; +} +.ant-calendar-range .ant-calendar-header, +.ant-calendar-range .ant-calendar-month-panel-header, +.ant-calendar-range .ant-calendar-year-panel-header, +.ant-calendar-range .ant-calendar-decade-panel-header { + border-bottom: 0; +} +.ant-calendar-range .ant-calendar-body, +.ant-calendar-range .ant-calendar-month-panel-body, +.ant-calendar-range .ant-calendar-year-panel-body, +.ant-calendar-range .ant-calendar-decade-panel-body { + border-top: 1px solid #e8e8e8; +} +.ant-calendar-range.ant-calendar-time .ant-calendar-time-picker { + top: 68px; + z-index: 2; + width: 100%; + height: 207px; +} +.ant-calendar-range.ant-calendar-time .ant-calendar-time-picker-panel { + height: 267px; + margin-top: -34px; +} +.ant-calendar-range.ant-calendar-time .ant-calendar-time-picker-inner { + height: 100%; + padding-top: 40px; + background: none; +} +.ant-calendar-range.ant-calendar-time .ant-calendar-time-picker-combobox { + display: inline-block; + height: 100%; + background-color: #fff; + border-top: 1px solid #e8e8e8; +} +.ant-calendar-range.ant-calendar-time .ant-calendar-time-picker-select { + height: 100%; +} +.ant-calendar-range.ant-calendar-time .ant-calendar-time-picker-select ul { + max-height: 100%; +} +.ant-calendar-range.ant-calendar-time .ant-calendar-footer .ant-calendar-time-picker-btn { + margin-right: 8px; +} +.ant-calendar-range.ant-calendar-time .ant-calendar-today-btn { + height: 22px; + margin: 8px 12px; + line-height: 22px; +} +.ant-calendar-range-with-ranges.ant-calendar-time .ant-calendar-time-picker { + height: 233px; +} +.ant-calendar-range.ant-calendar-show-time-picker .ant-calendar-body { + border-top-color: transparent; +} +.ant-calendar-time-picker { + position: absolute; + top: 40px; + width: 100%; + background-color: #fff; +} +.ant-calendar-time-picker-panel { + position: absolute; + z-index: 1050; + width: 100%; +} +.ant-calendar-time-picker-inner { + position: relative; + display: inline-block; + width: 100%; + overflow: hidden; + font-size: 15px; + line-height: 1.5; + text-align: left; + list-style: none; + background-color: #fff; + background-clip: padding-box; + outline: none; +} +.ant-calendar-time-picker-combobox { + width: 100%; +} +.ant-calendar-time-picker-column-1, +.ant-calendar-time-picker-column-1 .ant-calendar-time-picker-select { + width: 100%; +} +.ant-calendar-time-picker-column-2 .ant-calendar-time-picker-select { + width: 50%; +} +.ant-calendar-time-picker-column-3 .ant-calendar-time-picker-select { + width: 33.33%; +} +.ant-calendar-time-picker-column-4 .ant-calendar-time-picker-select { + width: 25%; +} +.ant-calendar-time-picker-input-wrap { + display: none; +} +.ant-calendar-time-picker-select { + position: relative; + float: left; + height: 226px; + overflow: hidden; + font-size: 15px; + border-right: 1px solid #e8e8e8; +} +.ant-calendar-time-picker-select:hover { + overflow-y: auto; +} +.ant-calendar-time-picker-select:first-child { + margin-left: 0; + border-left: 0; +} +.ant-calendar-time-picker-select:last-child { + border-right: 0; +} +.ant-calendar-time-picker-select ul { + width: 100%; + max-height: 206px; + margin: 0; + padding: 0; + list-style: none; +} +.ant-calendar-time-picker-select li { + width: 100%; + height: 24px; + margin: 0; + line-height: 24px; + text-align: center; + list-style: none; + cursor: pointer; + transition: all 0.3s; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} +.ant-calendar-time-picker-select li:last-child::after { + display: block; + height: 202px; + content: ''; +} +.ant-calendar-time-picker-select li:hover { + background: #bccad1; +} +.ant-calendar-time-picker-select li:focus { + color: #004691; + font-weight: 600; + outline: none; +} +li.ant-calendar-time-picker-select-option-selected { + font-weight: 600; + background: #f5f5f5; +} +li.ant-calendar-time-picker-select-option-disabled { + color: rgba(0, 0, 0, 0.25); +} +li.ant-calendar-time-picker-select-option-disabled:hover { + background: transparent; + cursor: not-allowed; +} +.ant-calendar-time .ant-calendar-day-select { + display: inline-block; + padding: 0 2px; + color: rgba(0, 0, 0, 0.85); + font-weight: 500; + line-height: 34px; +} +.ant-calendar-time .ant-calendar-footer { + position: relative; + height: auto; +} +.ant-calendar-time .ant-calendar-footer-btn { + text-align: right; +} +.ant-calendar-time .ant-calendar-footer .ant-calendar-today-btn { + float: left; + margin: 0; +} +.ant-calendar-time .ant-calendar-footer .ant-calendar-time-picker-btn { + display: inline-block; + margin-right: 8px; +} +.ant-calendar-time .ant-calendar-footer .ant-calendar-time-picker-btn-disabled { + color: rgba(0, 0, 0, 0.25); +} +.ant-calendar-month-panel { + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + z-index: 10; + background: #fff; + border-radius: 4px; + outline: none; +} +.ant-calendar-month-panel > div { + display: flex; + flex-direction: column; + height: 100%; +} +.ant-calendar-month-panel-hidden { + display: none; +} +.ant-calendar-month-panel-header { + height: 40px; + line-height: 40px; + text-align: center; + border-bottom: 1px solid #e8e8e8; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + position: relative; +} +.ant-calendar-month-panel-header a:hover { + color: #195e9e; +} +.ant-calendar-month-panel-header .ant-calendar-month-panel-century-select, +.ant-calendar-month-panel-header .ant-calendar-month-panel-decade-select, +.ant-calendar-month-panel-header .ant-calendar-month-panel-year-select, +.ant-calendar-month-panel-header .ant-calendar-month-panel-month-select { + display: inline-block; + padding: 0 2px; + color: rgba(0, 0, 0, 0.85); + font-weight: 500; + line-height: 40px; +} +.ant-calendar-month-panel-header .ant-calendar-month-panel-century-select-arrow, +.ant-calendar-month-panel-header .ant-calendar-month-panel-decade-select-arrow, +.ant-calendar-month-panel-header .ant-calendar-month-panel-year-select-arrow, +.ant-calendar-month-panel-header .ant-calendar-month-panel-month-select-arrow { + display: none; +} +.ant-calendar-month-panel-header .ant-calendar-month-panel-prev-century-btn, +.ant-calendar-month-panel-header .ant-calendar-month-panel-next-century-btn, +.ant-calendar-month-panel-header .ant-calendar-month-panel-prev-decade-btn, +.ant-calendar-month-panel-header .ant-calendar-month-panel-next-decade-btn, +.ant-calendar-month-panel-header .ant-calendar-month-panel-prev-month-btn, +.ant-calendar-month-panel-header .ant-calendar-month-panel-next-month-btn, +.ant-calendar-month-panel-header .ant-calendar-month-panel-prev-year-btn, +.ant-calendar-month-panel-header .ant-calendar-month-panel-next-year-btn { + position: absolute; + top: 0; + display: inline-block; + padding: 0 5px; + color: rgba(0, 0, 0, 0.45); + font-size: 16px; + font-family: Arial, 'Hiragino Sans GB', 'Microsoft Yahei', 'Microsoft Sans Serif', sans-serif; + line-height: 40px; +} +.ant-calendar-month-panel-header .ant-calendar-month-panel-prev-century-btn, +.ant-calendar-month-panel-header .ant-calendar-month-panel-prev-decade-btn, +.ant-calendar-month-panel-header .ant-calendar-month-panel-prev-year-btn { + left: 7px; + height: 100%; +} +.ant-calendar-month-panel-header .ant-calendar-month-panel-prev-century-btn::before, +.ant-calendar-month-panel-header .ant-calendar-month-panel-prev-decade-btn::before, +.ant-calendar-month-panel-header .ant-calendar-month-panel-prev-year-btn::before, +.ant-calendar-month-panel-header .ant-calendar-month-panel-prev-century-btn::after, +.ant-calendar-month-panel-header .ant-calendar-month-panel-prev-decade-btn::after, +.ant-calendar-month-panel-header .ant-calendar-month-panel-prev-year-btn::after { + position: relative; + top: -1px; + display: inline-block; + width: 8px; + height: 8px; + vertical-align: middle; + border: 0 solid #aaa; + border-width: 1.5px 0 0 1.5px; + border-radius: 1px; + transform: rotate(-45deg) scale(0.8); + transition: all 0.3s; + content: ''; +} +.ant-calendar-month-panel-header .ant-calendar-month-panel-prev-century-btn:hover::before, +.ant-calendar-month-panel-header .ant-calendar-month-panel-prev-decade-btn:hover::before, +.ant-calendar-month-panel-header .ant-calendar-month-panel-prev-year-btn:hover::before, +.ant-calendar-month-panel-header .ant-calendar-month-panel-prev-century-btn:hover::after, +.ant-calendar-month-panel-header .ant-calendar-month-panel-prev-decade-btn:hover::after, +.ant-calendar-month-panel-header .ant-calendar-month-panel-prev-year-btn:hover::after { + border-color: rgba(0, 0, 0, 0.65); +} +.ant-calendar-month-panel-header .ant-calendar-month-panel-prev-century-btn::after, +.ant-calendar-month-panel-header .ant-calendar-month-panel-prev-decade-btn::after, +.ant-calendar-month-panel-header .ant-calendar-month-panel-prev-year-btn::after { + display: none; +} +.ant-calendar-month-panel-header .ant-calendar-month-panel-prev-century-btn::after, +.ant-calendar-month-panel-header .ant-calendar-month-panel-prev-decade-btn::after, +.ant-calendar-month-panel-header .ant-calendar-month-panel-prev-year-btn::after { + position: relative; + left: -3px; + display: inline-block; +} +.ant-calendar-month-panel-header .ant-calendar-month-panel-next-century-btn, +.ant-calendar-month-panel-header .ant-calendar-month-panel-next-decade-btn, +.ant-calendar-month-panel-header .ant-calendar-month-panel-next-year-btn { + right: 7px; + height: 100%; +} +.ant-calendar-month-panel-header .ant-calendar-month-panel-next-century-btn::before, +.ant-calendar-month-panel-header .ant-calendar-month-panel-next-decade-btn::before, +.ant-calendar-month-panel-header .ant-calendar-month-panel-next-year-btn::before, +.ant-calendar-month-panel-header .ant-calendar-month-panel-next-century-btn::after, +.ant-calendar-month-panel-header .ant-calendar-month-panel-next-decade-btn::after, +.ant-calendar-month-panel-header .ant-calendar-month-panel-next-year-btn::after { + position: relative; + top: -1px; + display: inline-block; + width: 8px; + height: 8px; + vertical-align: middle; + border: 0 solid #aaa; + border-width: 1.5px 0 0 1.5px; + border-radius: 1px; + transform: rotate(-45deg) scale(0.8); + transition: all 0.3s; + content: ''; +} +.ant-calendar-month-panel-header .ant-calendar-month-panel-next-century-btn:hover::before, +.ant-calendar-month-panel-header .ant-calendar-month-panel-next-decade-btn:hover::before, +.ant-calendar-month-panel-header .ant-calendar-month-panel-next-year-btn:hover::before, +.ant-calendar-month-panel-header .ant-calendar-month-panel-next-century-btn:hover::after, +.ant-calendar-month-panel-header .ant-calendar-month-panel-next-decade-btn:hover::after, +.ant-calendar-month-panel-header .ant-calendar-month-panel-next-year-btn:hover::after { + border-color: rgba(0, 0, 0, 0.65); +} +.ant-calendar-month-panel-header .ant-calendar-month-panel-next-century-btn::after, +.ant-calendar-month-panel-header .ant-calendar-month-panel-next-decade-btn::after, +.ant-calendar-month-panel-header .ant-calendar-month-panel-next-year-btn::after { + display: none; +} +.ant-calendar-month-panel-header .ant-calendar-month-panel-next-century-btn::before, +.ant-calendar-month-panel-header .ant-calendar-month-panel-next-decade-btn::before, +.ant-calendar-month-panel-header .ant-calendar-month-panel-next-year-btn::before, +.ant-calendar-month-panel-header .ant-calendar-month-panel-next-century-btn::after, +.ant-calendar-month-panel-header .ant-calendar-month-panel-next-decade-btn::after, +.ant-calendar-month-panel-header .ant-calendar-month-panel-next-year-btn::after { + transform: rotate(135deg) scale(0.8); +} +.ant-calendar-month-panel-header .ant-calendar-month-panel-next-century-btn::before, +.ant-calendar-month-panel-header .ant-calendar-month-panel-next-decade-btn::before, +.ant-calendar-month-panel-header .ant-calendar-month-panel-next-year-btn::before { + position: relative; + left: 3px; +} +.ant-calendar-month-panel-header .ant-calendar-month-panel-next-century-btn::after, +.ant-calendar-month-panel-header .ant-calendar-month-panel-next-decade-btn::after, +.ant-calendar-month-panel-header .ant-calendar-month-panel-next-year-btn::after { + display: inline-block; +} +.ant-calendar-month-panel-header .ant-calendar-month-panel-prev-month-btn { + left: 29px; + height: 100%; +} +.ant-calendar-month-panel-header .ant-calendar-month-panel-prev-month-btn::before, +.ant-calendar-month-panel-header .ant-calendar-month-panel-prev-month-btn::after { + position: relative; + top: -1px; + display: inline-block; + width: 8px; + height: 8px; + vertical-align: middle; + border: 0 solid #aaa; + border-width: 1.5px 0 0 1.5px; + border-radius: 1px; + transform: rotate(-45deg) scale(0.8); + transition: all 0.3s; + content: ''; +} +.ant-calendar-month-panel-header .ant-calendar-month-panel-prev-month-btn:hover::before, +.ant-calendar-month-panel-header .ant-calendar-month-panel-prev-month-btn:hover::after { + border-color: rgba(0, 0, 0, 0.65); +} +.ant-calendar-month-panel-header .ant-calendar-month-panel-prev-month-btn::after { + display: none; +} +.ant-calendar-month-panel-header .ant-calendar-month-panel-next-month-btn { + right: 29px; + height: 100%; +} +.ant-calendar-month-panel-header .ant-calendar-month-panel-next-month-btn::before, +.ant-calendar-month-panel-header .ant-calendar-month-panel-next-month-btn::after { + position: relative; + top: -1px; + display: inline-block; + width: 8px; + height: 8px; + vertical-align: middle; + border: 0 solid #aaa; + border-width: 1.5px 0 0 1.5px; + border-radius: 1px; + transform: rotate(-45deg) scale(0.8); + transition: all 0.3s; + content: ''; +} +.ant-calendar-month-panel-header .ant-calendar-month-panel-next-month-btn:hover::before, +.ant-calendar-month-panel-header .ant-calendar-month-panel-next-month-btn:hover::after { + border-color: rgba(0, 0, 0, 0.65); +} +.ant-calendar-month-panel-header .ant-calendar-month-panel-next-month-btn::after { + display: none; +} +.ant-calendar-month-panel-header .ant-calendar-month-panel-next-month-btn::before, +.ant-calendar-month-panel-header .ant-calendar-month-panel-next-month-btn::after { + transform: rotate(135deg) scale(0.8); +} +.ant-calendar-month-panel-body { + flex: 1; +} +.ant-calendar-month-panel-footer { + border-top: 1px solid #e8e8e8; +} +.ant-calendar-month-panel-footer .ant-calendar-footer-extra { + padding: 0 12px; +} +.ant-calendar-month-panel-table { + width: 100%; + height: 100%; + table-layout: fixed; + border-collapse: separate; +} +.ant-calendar-month-panel-selected-cell .ant-calendar-month-panel-month { + color: #fff; + background: #004691; +} +.ant-calendar-month-panel-selected-cell .ant-calendar-month-panel-month:hover { + color: #fff; + background: #004691; +} +.ant-calendar-month-panel-cell { + text-align: center; +} +.ant-calendar-month-panel-cell-disabled .ant-calendar-month-panel-month, +.ant-calendar-month-panel-cell-disabled .ant-calendar-month-panel-month:hover { + color: rgba(0, 0, 0, 0.25); + background: #f5f5f5; + cursor: not-allowed; +} +.ant-calendar-month-panel-month { + display: inline-block; + height: 24px; + margin: 0 auto; + padding: 0 8px; + color: rgba(0, 0, 0, 0.65); + line-height: 24px; + text-align: center; + background: transparent; + border-radius: 2px; + transition: background 0.3s ease; +} +.ant-calendar-month-panel-month:hover { + background: #bccad1; + cursor: pointer; +} +.ant-calendar-year-panel { + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + z-index: 10; + background: #fff; + border-radius: 4px; + outline: none; +} +.ant-calendar-year-panel > div { + display: flex; + flex-direction: column; + height: 100%; +} +.ant-calendar-year-panel-hidden { + display: none; +} +.ant-calendar-year-panel-header { + height: 40px; + line-height: 40px; + text-align: center; + border-bottom: 1px solid #e8e8e8; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + position: relative; +} +.ant-calendar-year-panel-header a:hover { + color: #195e9e; +} +.ant-calendar-year-panel-header .ant-calendar-year-panel-century-select, +.ant-calendar-year-panel-header .ant-calendar-year-panel-decade-select, +.ant-calendar-year-panel-header .ant-calendar-year-panel-year-select, +.ant-calendar-year-panel-header .ant-calendar-year-panel-month-select { + display: inline-block; + padding: 0 2px; + color: rgba(0, 0, 0, 0.85); + font-weight: 500; + line-height: 40px; +} +.ant-calendar-year-panel-header .ant-calendar-year-panel-century-select-arrow, +.ant-calendar-year-panel-header .ant-calendar-year-panel-decade-select-arrow, +.ant-calendar-year-panel-header .ant-calendar-year-panel-year-select-arrow, +.ant-calendar-year-panel-header .ant-calendar-year-panel-month-select-arrow { + display: none; +} +.ant-calendar-year-panel-header .ant-calendar-year-panel-prev-century-btn, +.ant-calendar-year-panel-header .ant-calendar-year-panel-next-century-btn, +.ant-calendar-year-panel-header .ant-calendar-year-panel-prev-decade-btn, +.ant-calendar-year-panel-header .ant-calendar-year-panel-next-decade-btn, +.ant-calendar-year-panel-header .ant-calendar-year-panel-prev-month-btn, +.ant-calendar-year-panel-header .ant-calendar-year-panel-next-month-btn, +.ant-calendar-year-panel-header .ant-calendar-year-panel-prev-year-btn, +.ant-calendar-year-panel-header .ant-calendar-year-panel-next-year-btn { + position: absolute; + top: 0; + display: inline-block; + padding: 0 5px; + color: rgba(0, 0, 0, 0.45); + font-size: 16px; + font-family: Arial, 'Hiragino Sans GB', 'Microsoft Yahei', 'Microsoft Sans Serif', sans-serif; + line-height: 40px; +} +.ant-calendar-year-panel-header .ant-calendar-year-panel-prev-century-btn, +.ant-calendar-year-panel-header .ant-calendar-year-panel-prev-decade-btn, +.ant-calendar-year-panel-header .ant-calendar-year-panel-prev-year-btn { + left: 7px; + height: 100%; +} +.ant-calendar-year-panel-header .ant-calendar-year-panel-prev-century-btn::before, +.ant-calendar-year-panel-header .ant-calendar-year-panel-prev-decade-btn::before, +.ant-calendar-year-panel-header .ant-calendar-year-panel-prev-year-btn::before, +.ant-calendar-year-panel-header .ant-calendar-year-panel-prev-century-btn::after, +.ant-calendar-year-panel-header .ant-calendar-year-panel-prev-decade-btn::after, +.ant-calendar-year-panel-header .ant-calendar-year-panel-prev-year-btn::after { + position: relative; + top: -1px; + display: inline-block; + width: 8px; + height: 8px; + vertical-align: middle; + border: 0 solid #aaa; + border-width: 1.5px 0 0 1.5px; + border-radius: 1px; + transform: rotate(-45deg) scale(0.8); + transition: all 0.3s; + content: ''; +} +.ant-calendar-year-panel-header .ant-calendar-year-panel-prev-century-btn:hover::before, +.ant-calendar-year-panel-header .ant-calendar-year-panel-prev-decade-btn:hover::before, +.ant-calendar-year-panel-header .ant-calendar-year-panel-prev-year-btn:hover::before, +.ant-calendar-year-panel-header .ant-calendar-year-panel-prev-century-btn:hover::after, +.ant-calendar-year-panel-header .ant-calendar-year-panel-prev-decade-btn:hover::after, +.ant-calendar-year-panel-header .ant-calendar-year-panel-prev-year-btn:hover::after { + border-color: rgba(0, 0, 0, 0.65); +} +.ant-calendar-year-panel-header .ant-calendar-year-panel-prev-century-btn::after, +.ant-calendar-year-panel-header .ant-calendar-year-panel-prev-decade-btn::after, +.ant-calendar-year-panel-header .ant-calendar-year-panel-prev-year-btn::after { + display: none; +} +.ant-calendar-year-panel-header .ant-calendar-year-panel-prev-century-btn::after, +.ant-calendar-year-panel-header .ant-calendar-year-panel-prev-decade-btn::after, +.ant-calendar-year-panel-header .ant-calendar-year-panel-prev-year-btn::after { + position: relative; + left: -3px; + display: inline-block; +} +.ant-calendar-year-panel-header .ant-calendar-year-panel-next-century-btn, +.ant-calendar-year-panel-header .ant-calendar-year-panel-next-decade-btn, +.ant-calendar-year-panel-header .ant-calendar-year-panel-next-year-btn { + right: 7px; + height: 100%; +} +.ant-calendar-year-panel-header .ant-calendar-year-panel-next-century-btn::before, +.ant-calendar-year-panel-header .ant-calendar-year-panel-next-decade-btn::before, +.ant-calendar-year-panel-header .ant-calendar-year-panel-next-year-btn::before, +.ant-calendar-year-panel-header .ant-calendar-year-panel-next-century-btn::after, +.ant-calendar-year-panel-header .ant-calendar-year-panel-next-decade-btn::after, +.ant-calendar-year-panel-header .ant-calendar-year-panel-next-year-btn::after { + position: relative; + top: -1px; + display: inline-block; + width: 8px; + height: 8px; + vertical-align: middle; + border: 0 solid #aaa; + border-width: 1.5px 0 0 1.5px; + border-radius: 1px; + transform: rotate(-45deg) scale(0.8); + transition: all 0.3s; + content: ''; +} +.ant-calendar-year-panel-header .ant-calendar-year-panel-next-century-btn:hover::before, +.ant-calendar-year-panel-header .ant-calendar-year-panel-next-decade-btn:hover::before, +.ant-calendar-year-panel-header .ant-calendar-year-panel-next-year-btn:hover::before, +.ant-calendar-year-panel-header .ant-calendar-year-panel-next-century-btn:hover::after, +.ant-calendar-year-panel-header .ant-calendar-year-panel-next-decade-btn:hover::after, +.ant-calendar-year-panel-header .ant-calendar-year-panel-next-year-btn:hover::after { + border-color: rgba(0, 0, 0, 0.65); +} +.ant-calendar-year-panel-header .ant-calendar-year-panel-next-century-btn::after, +.ant-calendar-year-panel-header .ant-calendar-year-panel-next-decade-btn::after, +.ant-calendar-year-panel-header .ant-calendar-year-panel-next-year-btn::after { + display: none; +} +.ant-calendar-year-panel-header .ant-calendar-year-panel-next-century-btn::before, +.ant-calendar-year-panel-header .ant-calendar-year-panel-next-decade-btn::before, +.ant-calendar-year-panel-header .ant-calendar-year-panel-next-year-btn::before, +.ant-calendar-year-panel-header .ant-calendar-year-panel-next-century-btn::after, +.ant-calendar-year-panel-header .ant-calendar-year-panel-next-decade-btn::after, +.ant-calendar-year-panel-header .ant-calendar-year-panel-next-year-btn::after { + transform: rotate(135deg) scale(0.8); +} +.ant-calendar-year-panel-header .ant-calendar-year-panel-next-century-btn::before, +.ant-calendar-year-panel-header .ant-calendar-year-panel-next-decade-btn::before, +.ant-calendar-year-panel-header .ant-calendar-year-panel-next-year-btn::before { + position: relative; + left: 3px; +} +.ant-calendar-year-panel-header .ant-calendar-year-panel-next-century-btn::after, +.ant-calendar-year-panel-header .ant-calendar-year-panel-next-decade-btn::after, +.ant-calendar-year-panel-header .ant-calendar-year-panel-next-year-btn::after { + display: inline-block; +} +.ant-calendar-year-panel-header .ant-calendar-year-panel-prev-month-btn { + left: 29px; + height: 100%; +} +.ant-calendar-year-panel-header .ant-calendar-year-panel-prev-month-btn::before, +.ant-calendar-year-panel-header .ant-calendar-year-panel-prev-month-btn::after { + position: relative; + top: -1px; + display: inline-block; + width: 8px; + height: 8px; + vertical-align: middle; + border: 0 solid #aaa; + border-width: 1.5px 0 0 1.5px; + border-radius: 1px; + transform: rotate(-45deg) scale(0.8); + transition: all 0.3s; + content: ''; +} +.ant-calendar-year-panel-header .ant-calendar-year-panel-prev-month-btn:hover::before, +.ant-calendar-year-panel-header .ant-calendar-year-panel-prev-month-btn:hover::after { + border-color: rgba(0, 0, 0, 0.65); +} +.ant-calendar-year-panel-header .ant-calendar-year-panel-prev-month-btn::after { + display: none; +} +.ant-calendar-year-panel-header .ant-calendar-year-panel-next-month-btn { + right: 29px; + height: 100%; +} +.ant-calendar-year-panel-header .ant-calendar-year-panel-next-month-btn::before, +.ant-calendar-year-panel-header .ant-calendar-year-panel-next-month-btn::after { + position: relative; + top: -1px; + display: inline-block; + width: 8px; + height: 8px; + vertical-align: middle; + border: 0 solid #aaa; + border-width: 1.5px 0 0 1.5px; + border-radius: 1px; + transform: rotate(-45deg) scale(0.8); + transition: all 0.3s; + content: ''; +} +.ant-calendar-year-panel-header .ant-calendar-year-panel-next-month-btn:hover::before, +.ant-calendar-year-panel-header .ant-calendar-year-panel-next-month-btn:hover::after { + border-color: rgba(0, 0, 0, 0.65); +} +.ant-calendar-year-panel-header .ant-calendar-year-panel-next-month-btn::after { + display: none; +} +.ant-calendar-year-panel-header .ant-calendar-year-panel-next-month-btn::before, +.ant-calendar-year-panel-header .ant-calendar-year-panel-next-month-btn::after { + transform: rotate(135deg) scale(0.8); +} +.ant-calendar-year-panel-body { + flex: 1; +} +.ant-calendar-year-panel-footer { + border-top: 1px solid #e8e8e8; +} +.ant-calendar-year-panel-footer .ant-calendar-footer-extra { + padding: 0 12px; +} +.ant-calendar-year-panel-table { + width: 100%; + height: 100%; + table-layout: fixed; + border-collapse: separate; +} +.ant-calendar-year-panel-cell { + text-align: center; +} +.ant-calendar-year-panel-cell-disabled .ant-calendar-year-panel-year, +.ant-calendar-year-panel-cell-disabled .ant-calendar-year-panel-year:hover { + color: rgba(0, 0, 0, 0.25); + background: #f5f5f5; + cursor: not-allowed; +} +.ant-calendar-year-panel-year { + display: inline-block; + height: 24px; + margin: 0 auto; + padding: 0 8px; + color: rgba(0, 0, 0, 0.65); + line-height: 24px; + text-align: center; + background: transparent; + border-radius: 2px; + transition: background 0.3s ease; +} +.ant-calendar-year-panel-year:hover { + background: #bccad1; + cursor: pointer; +} +.ant-calendar-year-panel-selected-cell .ant-calendar-year-panel-year { + color: #fff; + background: #004691; +} +.ant-calendar-year-panel-selected-cell .ant-calendar-year-panel-year:hover { + color: #fff; + background: #004691; +} +.ant-calendar-year-panel-last-decade-cell .ant-calendar-year-panel-year, +.ant-calendar-year-panel-next-decade-cell .ant-calendar-year-panel-year { + color: rgba(0, 0, 0, 0.25); + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} +.ant-calendar-decade-panel { + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + z-index: 10; + display: flex; + flex-direction: column; + background: #fff; + border-radius: 4px; + outline: none; +} +.ant-calendar-decade-panel-hidden { + display: none; +} +.ant-calendar-decade-panel-header { + height: 40px; + line-height: 40px; + text-align: center; + border-bottom: 1px solid #e8e8e8; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + position: relative; +} +.ant-calendar-decade-panel-header a:hover { + color: #195e9e; +} +.ant-calendar-decade-panel-header .ant-calendar-decade-panel-century-select, +.ant-calendar-decade-panel-header .ant-calendar-decade-panel-decade-select, +.ant-calendar-decade-panel-header .ant-calendar-decade-panel-year-select, +.ant-calendar-decade-panel-header .ant-calendar-decade-panel-month-select { + display: inline-block; + padding: 0 2px; + color: rgba(0, 0, 0, 0.85); + font-weight: 500; + line-height: 40px; +} +.ant-calendar-decade-panel-header .ant-calendar-decade-panel-century-select-arrow, +.ant-calendar-decade-panel-header .ant-calendar-decade-panel-decade-select-arrow, +.ant-calendar-decade-panel-header .ant-calendar-decade-panel-year-select-arrow, +.ant-calendar-decade-panel-header .ant-calendar-decade-panel-month-select-arrow { + display: none; +} +.ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-century-btn, +.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-century-btn, +.ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-decade-btn, +.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-decade-btn, +.ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-month-btn, +.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-month-btn, +.ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-year-btn, +.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-year-btn { + position: absolute; + top: 0; + display: inline-block; + padding: 0 5px; + color: rgba(0, 0, 0, 0.45); + font-size: 16px; + font-family: Arial, 'Hiragino Sans GB', 'Microsoft Yahei', 'Microsoft Sans Serif', sans-serif; + line-height: 40px; +} +.ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-century-btn, +.ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-decade-btn, +.ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-year-btn { + left: 7px; + height: 100%; +} +.ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-century-btn::before, +.ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-decade-btn::before, +.ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-year-btn::before, +.ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-century-btn::after, +.ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-decade-btn::after, +.ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-year-btn::after { + position: relative; + top: -1px; + display: inline-block; + width: 8px; + height: 8px; + vertical-align: middle; + border: 0 solid #aaa; + border-width: 1.5px 0 0 1.5px; + border-radius: 1px; + transform: rotate(-45deg) scale(0.8); + transition: all 0.3s; + content: ''; +} +.ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-century-btn:hover::before, +.ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-decade-btn:hover::before, +.ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-year-btn:hover::before, +.ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-century-btn:hover::after, +.ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-decade-btn:hover::after, +.ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-year-btn:hover::after { + border-color: rgba(0, 0, 0, 0.65); +} +.ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-century-btn::after, +.ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-decade-btn::after, +.ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-year-btn::after { + display: none; +} +.ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-century-btn::after, +.ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-decade-btn::after, +.ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-year-btn::after { + position: relative; + left: -3px; + display: inline-block; +} +.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-century-btn, +.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-decade-btn, +.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-year-btn { + right: 7px; + height: 100%; +} +.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-century-btn::before, +.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-decade-btn::before, +.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-year-btn::before, +.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-century-btn::after, +.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-decade-btn::after, +.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-year-btn::after { + position: relative; + top: -1px; + display: inline-block; + width: 8px; + height: 8px; + vertical-align: middle; + border: 0 solid #aaa; + border-width: 1.5px 0 0 1.5px; + border-radius: 1px; + transform: rotate(-45deg) scale(0.8); + transition: all 0.3s; + content: ''; +} +.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-century-btn:hover::before, +.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-decade-btn:hover::before, +.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-year-btn:hover::before, +.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-century-btn:hover::after, +.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-decade-btn:hover::after, +.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-year-btn:hover::after { + border-color: rgba(0, 0, 0, 0.65); +} +.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-century-btn::after, +.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-decade-btn::after, +.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-year-btn::after { + display: none; +} +.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-century-btn::before, +.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-decade-btn::before, +.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-year-btn::before, +.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-century-btn::after, +.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-decade-btn::after, +.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-year-btn::after { + transform: rotate(135deg) scale(0.8); +} +.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-century-btn::before, +.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-decade-btn::before, +.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-year-btn::before { + position: relative; + left: 3px; +} +.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-century-btn::after, +.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-decade-btn::after, +.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-year-btn::after { + display: inline-block; +} +.ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-month-btn { + left: 29px; + height: 100%; +} +.ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-month-btn::before, +.ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-month-btn::after { + position: relative; + top: -1px; + display: inline-block; + width: 8px; + height: 8px; + vertical-align: middle; + border: 0 solid #aaa; + border-width: 1.5px 0 0 1.5px; + border-radius: 1px; + transform: rotate(-45deg) scale(0.8); + transition: all 0.3s; + content: ''; +} +.ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-month-btn:hover::before, +.ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-month-btn:hover::after { + border-color: rgba(0, 0, 0, 0.65); +} +.ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-month-btn::after { + display: none; +} +.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-month-btn { + right: 29px; + height: 100%; +} +.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-month-btn::before, +.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-month-btn::after { + position: relative; + top: -1px; + display: inline-block; + width: 8px; + height: 8px; + vertical-align: middle; + border: 0 solid #aaa; + border-width: 1.5px 0 0 1.5px; + border-radius: 1px; + transform: rotate(-45deg) scale(0.8); + transition: all 0.3s; + content: ''; +} +.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-month-btn:hover::before, +.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-month-btn:hover::after { + border-color: rgba(0, 0, 0, 0.65); +} +.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-month-btn::after { + display: none; +} +.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-month-btn::before, +.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-month-btn::after { + transform: rotate(135deg) scale(0.8); +} +.ant-calendar-decade-panel-body { + flex: 1; +} +.ant-calendar-decade-panel-footer { + border-top: 1px solid #e8e8e8; +} +.ant-calendar-decade-panel-footer .ant-calendar-footer-extra { + padding: 0 12px; +} +.ant-calendar-decade-panel-table { + width: 100%; + height: 100%; + table-layout: fixed; + border-collapse: separate; +} +.ant-calendar-decade-panel-cell { + white-space: nowrap; + text-align: center; +} +.ant-calendar-decade-panel-decade { + display: inline-block; + height: 24px; + margin: 0 auto; + padding: 0 6px; + color: rgba(0, 0, 0, 0.65); + line-height: 24px; + text-align: center; + background: transparent; + border-radius: 2px; + transition: background 0.3s ease; +} +.ant-calendar-decade-panel-decade:hover { + background: #bccad1; + cursor: pointer; +} +.ant-calendar-decade-panel-selected-cell .ant-calendar-decade-panel-decade { + color: #fff; + background: #004691; +} +.ant-calendar-decade-panel-selected-cell .ant-calendar-decade-panel-decade:hover { + color: #fff; + background: #004691; +} +.ant-calendar-decade-panel-last-century-cell .ant-calendar-decade-panel-decade, +.ant-calendar-decade-panel-next-century-cell .ant-calendar-decade-panel-decade { + color: rgba(0, 0, 0, 0.25); + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} +.ant-calendar-month .ant-calendar-month-header-wrap { + position: relative; + height: 288px; +} +.ant-calendar-month .ant-calendar-month-panel, +.ant-calendar-month .ant-calendar-year-panel { + top: 0; + height: 100%; +} +.ant-calendar-week-number-cell { + opacity: 0.5; +} +.ant-calendar-week-number .ant-calendar-body tr { + cursor: pointer; + transition: all 0.3s; +} +.ant-calendar-week-number .ant-calendar-body tr:hover { + background: #bccad1; +} +.ant-calendar-week-number .ant-calendar-body tr.ant-calendar-active-week { + font-weight: bold; + background: #7ea9c4; +} +.ant-calendar-week-number .ant-calendar-body tr .ant-calendar-selected-day .ant-calendar-date, +.ant-calendar-week-number .ant-calendar-body tr .ant-calendar-selected-day:hover .ant-calendar-date { + color: rgba(0, 0, 0, 0.65); + background: transparent; +} +.ant-descriptions-title { + margin-bottom: 20px; + color: rgba(0, 0, 0, 0.85); + font-weight: bold; + font-size: 17px; + line-height: 1.5; +} +.ant-descriptions-view { + width: 100%; + overflow: hidden; + border-radius: 4px; +} +.ant-descriptions-view table { + width: 100%; + table-layout: fixed; +} +.ant-descriptions-row > th, +.ant-descriptions-row > td { + padding-bottom: 16px; +} +.ant-descriptions-row:last-child { + border-bottom: none; +} +.ant-descriptions-item-label { + color: rgba(0, 0, 0, 0.85); + font-weight: normal; + font-size: 15px; + line-height: 1.5; +} +.ant-descriptions-item-label::after { + position: relative; + top: -0.5px; + margin: 0 8px 0 2px; + content: ' '; +} +.ant-descriptions-item-colon::after { + content: ':'; +} +.ant-descriptions-item-no-label::after { + margin: 0; + content: ''; +} +.ant-descriptions-item-content { + display: table-cell; + color: rgba(0, 0, 0, 0.65); + font-size: 15px; + line-height: 1.5; +} +.ant-descriptions-item { + padding-bottom: 0; +} +.ant-descriptions-item > span { + display: inline-block; +} +.ant-descriptions-middle .ant-descriptions-row > th, +.ant-descriptions-middle .ant-descriptions-row > td { + padding-bottom: 12px; +} +.ant-descriptions-small .ant-descriptions-row > th, +.ant-descriptions-small .ant-descriptions-row > td { + padding-bottom: 8px; +} +.ant-descriptions-bordered .ant-descriptions-view { + border: 1px solid #e8e8e8; +} +.ant-descriptions-bordered .ant-descriptions-view > table { + table-layout: auto; +} +.ant-descriptions-bordered .ant-descriptions-item-label, +.ant-descriptions-bordered .ant-descriptions-item-content { + padding: 16px 24px; + border-right: 1px solid #e8e8e8; +} +.ant-descriptions-bordered .ant-descriptions-item-label:last-child, +.ant-descriptions-bordered .ant-descriptions-item-content:last-child { + border-right: none; +} +.ant-descriptions-bordered .ant-descriptions-item-label { + background-color: #fafafa; +} +.ant-descriptions-bordered .ant-descriptions-item-label::after { + display: none; +} +.ant-descriptions-bordered .ant-descriptions-row { + border-bottom: 1px solid #e8e8e8; +} +.ant-descriptions-bordered .ant-descriptions-row:last-child { + border-bottom: none; +} +.ant-descriptions-bordered.ant-descriptions-middle .ant-descriptions-item-label, +.ant-descriptions-bordered.ant-descriptions-middle .ant-descriptions-item-content { + padding: 12px 24px; +} +.ant-descriptions-bordered.ant-descriptions-small .ant-descriptions-item-label, +.ant-descriptions-bordered.ant-descriptions-small .ant-descriptions-item-content { + padding: 8px 16px; +} +.ant-divider { + box-sizing: border-box; + margin: 0; + padding: 0; + color: rgba(0, 0, 0, 0.65); + font-size: 15px; + font-variant: tabular-nums; + line-height: 1.5; + list-style: none; + font-feature-settings: 'tnum'; + background: #e8e8e8; +} +.ant-divider, +.ant-divider-vertical { + position: relative; + top: -0.06em; + display: inline-block; + width: 1px; + height: 0.9em; + margin: 0 8px; + vertical-align: middle; +} +.ant-divider-horizontal { + display: block; + clear: both; + width: 100%; + min-width: 100%; + height: 1px; + margin: 24px 0; +} +.ant-divider-horizontal.ant-divider-with-text-center, +.ant-divider-horizontal.ant-divider-with-text-left, +.ant-divider-horizontal.ant-divider-with-text-right { + display: table; + margin: 16px 0; + color: rgba(0, 0, 0, 0.85); + font-weight: 500; + font-size: 17px; + white-space: nowrap; + text-align: center; + background: transparent; +} +.ant-divider-horizontal.ant-divider-with-text-center::before, +.ant-divider-horizontal.ant-divider-with-text-left::before, +.ant-divider-horizontal.ant-divider-with-text-right::before, +.ant-divider-horizontal.ant-divider-with-text-center::after, +.ant-divider-horizontal.ant-divider-with-text-left::after, +.ant-divider-horizontal.ant-divider-with-text-right::after { + position: relative; + top: 50%; + display: table-cell; + width: 50%; + border-top: 1px solid #e8e8e8; + transform: translateY(50%); + content: ''; +} +.ant-divider-horizontal.ant-divider-with-text-left .ant-divider-inner-text, +.ant-divider-horizontal.ant-divider-with-text-right .ant-divider-inner-text { + display: inline-block; + padding: 0 10px; +} +.ant-divider-horizontal.ant-divider-with-text-left::before { + top: 50%; + width: 5%; +} +.ant-divider-horizontal.ant-divider-with-text-left::after { + top: 50%; + width: 95%; +} +.ant-divider-horizontal.ant-divider-with-text-right::before { + top: 50%; + width: 95%; +} +.ant-divider-horizontal.ant-divider-with-text-right::after { + top: 50%; + width: 5%; +} +.ant-divider-inner-text { + display: inline-block; + padding: 0 24px; +} +.ant-divider-dashed { + background: none; + border-color: #e8e8e8; + border-style: dashed; + border-width: 1px 0 0; +} +.ant-divider-horizontal.ant-divider-with-text-center.ant-divider-dashed, +.ant-divider-horizontal.ant-divider-with-text-left.ant-divider-dashed, +.ant-divider-horizontal.ant-divider-with-text-right.ant-divider-dashed { + border-top: 0; +} +.ant-divider-horizontal.ant-divider-with-text-center.ant-divider-dashed::before, +.ant-divider-horizontal.ant-divider-with-text-left.ant-divider-dashed::before, +.ant-divider-horizontal.ant-divider-with-text-right.ant-divider-dashed::before, +.ant-divider-horizontal.ant-divider-with-text-center.ant-divider-dashed::after, +.ant-divider-horizontal.ant-divider-with-text-left.ant-divider-dashed::after, +.ant-divider-horizontal.ant-divider-with-text-right.ant-divider-dashed::after { + border-style: dashed none none; +} +.ant-divider-vertical.ant-divider-dashed { + border-width: 0 0 0 1px; +} +.ant-drawer { + position: fixed; + z-index: 1000; + width: 0%; + height: 100%; + transition: transform 0.3s cubic-bezier(0.7, 0.3, 0.1, 1), height 0s ease 0.3s, width 0s ease 0.3s; +} +.ant-drawer > * { + transition: transform 0.3s cubic-bezier(0.7, 0.3, 0.1, 1), box-shadow 0.3s cubic-bezier(0.7, 0.3, 0.1, 1); +} +.ant-drawer-content-wrapper { + position: absolute; +} +.ant-drawer .ant-drawer-content { + width: 100%; + height: 100%; +} +.ant-drawer-left, +.ant-drawer-right { + top: 0; + width: 0%; + height: 100%; +} +.ant-drawer-left .ant-drawer-content-wrapper, +.ant-drawer-right .ant-drawer-content-wrapper { + height: 100%; +} +.ant-drawer-left.ant-drawer-open, +.ant-drawer-right.ant-drawer-open { + width: 100%; + transition: transform 0.3s cubic-bezier(0.7, 0.3, 0.1, 1); +} +.ant-drawer-left.ant-drawer-open.no-mask, +.ant-drawer-right.ant-drawer-open.no-mask { + width: 0%; +} +.ant-drawer-left.ant-drawer-open .ant-drawer-content-wrapper { + box-shadow: 2px 0 8px rgba(0, 0, 0, 0.15); +} +.ant-drawer-right { + right: 0; +} +.ant-drawer-right .ant-drawer-content-wrapper { + right: 0; +} +.ant-drawer-right.ant-drawer-open .ant-drawer-content-wrapper { + box-shadow: -2px 0 8px rgba(0, 0, 0, 0.15); +} +.ant-drawer-right.ant-drawer-open.no-mask { + right: 1px; + transform: translateX(1px); +} +.ant-drawer-top, +.ant-drawer-bottom { + left: 0; + width: 100%; + height: 0%; +} +.ant-drawer-top .ant-drawer-content-wrapper, +.ant-drawer-bottom .ant-drawer-content-wrapper { + width: 100%; +} +.ant-drawer-top.ant-drawer-open, +.ant-drawer-bottom.ant-drawer-open { + height: 100%; + transition: transform 0.3s cubic-bezier(0.7, 0.3, 0.1, 1); +} +.ant-drawer-top.ant-drawer-open.no-mask, +.ant-drawer-bottom.ant-drawer-open.no-mask { + height: 0%; +} +.ant-drawer-top { + top: 0; +} +.ant-drawer-top.ant-drawer-open .ant-drawer-content-wrapper { + box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15); +} +.ant-drawer-bottom { + bottom: 0; +} +.ant-drawer-bottom .ant-drawer-content-wrapper { + bottom: 0; +} +.ant-drawer-bottom.ant-drawer-open .ant-drawer-content-wrapper { + box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.15); +} +.ant-drawer-bottom.ant-drawer-open.no-mask { + bottom: 1px; + transform: translateY(1px); +} +.ant-drawer.ant-drawer-open .ant-drawer-mask { + height: 100%; + opacity: 1; + transition: none; + -webkit-animation: antdDrawerFadeIn 0.3s cubic-bezier(0.7, 0.3, 0.1, 1); + animation: antdDrawerFadeIn 0.3s cubic-bezier(0.7, 0.3, 0.1, 1); +} +.ant-drawer-title { + margin: 0; + color: rgba(0, 0, 0, 0.85); + font-weight: 500; + font-size: 17px; + line-height: 22px; +} +.ant-drawer-content { + position: relative; + z-index: 1; + overflow: auto; + background-color: #fff; + background-clip: padding-box; + border: 0; +} +.ant-drawer-close { + position: absolute; + top: 0; + right: 0; + z-index: 10; + display: block; + width: 56px; + height: 56px; + padding: 0; + color: rgba(0, 0, 0, 0.45); + font-weight: 700; + font-size: 17px; + font-style: normal; + line-height: 56px; + text-align: center; + text-transform: none; + text-decoration: none; + background: transparent; + border: 0; + outline: 0; + cursor: pointer; + transition: color 0.3s; + text-rendering: auto; +} +.ant-drawer-close:focus, +.ant-drawer-close:hover { + color: rgba(0, 0, 0, 0.75); + text-decoration: none; +} +.ant-drawer-header { + position: relative; + padding: 16px 24px; + color: rgba(0, 0, 0, 0.65); + background: #fff; + border-bottom: 1px solid #e8e8e8; + border-radius: 4px 4px 0 0; +} +.ant-drawer-header-no-title { + color: rgba(0, 0, 0, 0.65); + background: #fff; +} +.ant-drawer-body { + padding: 24px; + font-size: 15px; + line-height: 1.5; + word-wrap: break-word; +} +.ant-drawer-wrapper-body { + height: 100%; + overflow: auto; +} +.ant-drawer-mask { + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 0; + background-color: rgba(0, 0, 0, 0.45); + opacity: 0; + filter: alpha(opacity=45); + transition: opacity 0.3s linear, height 0s ease 0.3s; +} +.ant-drawer-open-content { + box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); +} +@-webkit-keyframes antdDrawerFadeIn { + 0% { + opacity: 0; + } + 100% { + opacity: 1; + } +} +@keyframes antdDrawerFadeIn { + 0% { + opacity: 0; + } + 100% { + opacity: 1; + } +} +.ant-dropdown { + box-sizing: border-box; + margin: 0; + padding: 0; + color: rgba(0, 0, 0, 0.65); + font-size: 15px; + font-variant: tabular-nums; + line-height: 1.5; + list-style: none; + font-feature-settings: 'tnum'; + position: absolute; + top: -9999px; + left: -9999px; + z-index: 1050; + display: block; +} +.ant-dropdown::before { + position: absolute; + top: -7px; + right: 0; + bottom: -7px; + left: -7px; + z-index: -9999; + opacity: 0.0001; + content: ' '; +} +.ant-dropdown-wrap { + position: relative; +} +.ant-dropdown-wrap .ant-btn > .anticon-down { + display: inline-block; + font-size: 12px; + font-size: 10px \9; + transform: scale(0.83333333) rotate(0deg); +} +:root .ant-dropdown-wrap .ant-btn > .anticon-down { + font-size: 12px; +} +.ant-dropdown-wrap .anticon-down::before { + transition: transform 0.2s; +} +.ant-dropdown-wrap-open .anticon-down::before { + transform: rotate(180deg); +} +.ant-dropdown-hidden, +.ant-dropdown-menu-hidden { + display: none; +} +.ant-dropdown-menu { + position: relative; + margin: 0; + padding: 4px 0; + text-align: left; + list-style-type: none; + background-color: #fff; + background-clip: padding-box; + border-radius: 4px; + outline: none; + box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15); + -webkit-transform: translate3d(0, 0, 0); +} +.ant-dropdown-menu-item-group-title { + padding: 5px 12px; + color: rgba(0, 0, 0, 0.45); + transition: all 0.3s; +} +.ant-dropdown-menu-submenu-popup { + position: absolute; + z-index: 1050; +} +.ant-dropdown-menu-submenu-popup > .ant-dropdown-menu { + transform-origin: 0 0; +} +.ant-dropdown-menu-submenu-popup ul, +.ant-dropdown-menu-submenu-popup li { + list-style: none; +} +.ant-dropdown-menu-submenu-popup ul { + margin-right: 0.3em; + margin-left: 0.3em; + padding: 0; +} +.ant-dropdown-menu-item, +.ant-dropdown-menu-submenu-title { + clear: both; + margin: 0; + padding: 5px 12px; + color: rgba(0, 0, 0, 0.65); + font-weight: normal; + font-size: 15px; + line-height: 22px; + white-space: nowrap; + cursor: pointer; + transition: all 0.3s; +} +.ant-dropdown-menu-item > .anticon:first-child, +.ant-dropdown-menu-submenu-title > .anticon:first-child, +.ant-dropdown-menu-item > span > .anticon:first-child, +.ant-dropdown-menu-submenu-title > span > .anticon:first-child { + min-width: 12px; + margin-right: 8px; + font-size: 12px; +} +.ant-dropdown-menu-item > a, +.ant-dropdown-menu-submenu-title > a { + display: block; + margin: -5px -12px; + padding: 5px 12px; + color: rgba(0, 0, 0, 0.65); + transition: all 0.3s; +} +.ant-dropdown-menu-item-selected, +.ant-dropdown-menu-submenu-title-selected, +.ant-dropdown-menu-item-selected > a, +.ant-dropdown-menu-submenu-title-selected > a { + color: #004691; + background-color: #bccad1; +} +.ant-dropdown-menu-item:hover, +.ant-dropdown-menu-submenu-title:hover { + background-color: #bccad1; +} +.ant-dropdown-menu-item-disabled, +.ant-dropdown-menu-submenu-title-disabled { + color: rgba(0, 0, 0, 0.25); + cursor: not-allowed; +} +.ant-dropdown-menu-item-disabled:hover, +.ant-dropdown-menu-submenu-title-disabled:hover { + color: rgba(0, 0, 0, 0.25); + background-color: #fff; + cursor: not-allowed; +} +.ant-dropdown-menu-item-divider, +.ant-dropdown-menu-submenu-title-divider { + height: 1px; + margin: 4px 0; + overflow: hidden; + line-height: 0; + background-color: #e8e8e8; +} +.ant-dropdown-menu-item .ant-dropdown-menu-submenu-arrow, +.ant-dropdown-menu-submenu-title .ant-dropdown-menu-submenu-arrow { + position: absolute; + right: 8px; +} +.ant-dropdown-menu-item .ant-dropdown-menu-submenu-arrow-icon, +.ant-dropdown-menu-submenu-title .ant-dropdown-menu-submenu-arrow-icon { + color: rgba(0, 0, 0, 0.45); + font-style: normal; + display: inline-block; + font-size: 12px; + font-size: 10px \9; + transform: scale(0.83333333) rotate(0deg); +} +:root .ant-dropdown-menu-item .ant-dropdown-menu-submenu-arrow-icon, +:root .ant-dropdown-menu-submenu-title .ant-dropdown-menu-submenu-arrow-icon { + font-size: 12px; +} +.ant-dropdown-menu-item-group-list { + margin: 0 8px; + padding: 0; + list-style: none; +} +.ant-dropdown-menu-submenu-title { + padding-right: 26px; +} +.ant-dropdown-menu-submenu-vertical { + position: relative; +} +.ant-dropdown-menu-submenu-vertical > .ant-dropdown-menu { + position: absolute; + top: 0; + left: 100%; + min-width: 100%; + margin-left: 4px; + transform-origin: 0 0; +} +.ant-dropdown-menu-submenu.ant-dropdown-menu-submenu-disabled .ant-dropdown-menu-submenu-title, +.ant-dropdown-menu-submenu.ant-dropdown-menu-submenu-disabled .ant-dropdown-menu-submenu-title .ant-dropdown-menu-submenu-arrow-icon { + color: rgba(0, 0, 0, 0.25); + background-color: #fff; + cursor: not-allowed; +} +.ant-dropdown-menu-submenu-selected .ant-dropdown-menu-submenu-title { + color: #004691; +} +.ant-dropdown.slide-down-enter.slide-down-enter-active.ant-dropdown-placement-bottomLeft, +.ant-dropdown.slide-down-appear.slide-down-appear-active.ant-dropdown-placement-bottomLeft, +.ant-dropdown.slide-down-enter.slide-down-enter-active.ant-dropdown-placement-bottomCenter, +.ant-dropdown.slide-down-appear.slide-down-appear-active.ant-dropdown-placement-bottomCenter, +.ant-dropdown.slide-down-enter.slide-down-enter-active.ant-dropdown-placement-bottomRight, +.ant-dropdown.slide-down-appear.slide-down-appear-active.ant-dropdown-placement-bottomRight { + -webkit-animation-name: antSlideUpIn; + animation-name: antSlideUpIn; +} +.ant-dropdown.slide-up-enter.slide-up-enter-active.ant-dropdown-placement-topLeft, +.ant-dropdown.slide-up-appear.slide-up-appear-active.ant-dropdown-placement-topLeft, +.ant-dropdown.slide-up-enter.slide-up-enter-active.ant-dropdown-placement-topCenter, +.ant-dropdown.slide-up-appear.slide-up-appear-active.ant-dropdown-placement-topCenter, +.ant-dropdown.slide-up-enter.slide-up-enter-active.ant-dropdown-placement-topRight, +.ant-dropdown.slide-up-appear.slide-up-appear-active.ant-dropdown-placement-topRight { + -webkit-animation-name: antSlideDownIn; + animation-name: antSlideDownIn; +} +.ant-dropdown.slide-down-leave.slide-down-leave-active.ant-dropdown-placement-bottomLeft, +.ant-dropdown.slide-down-leave.slide-down-leave-active.ant-dropdown-placement-bottomCenter, +.ant-dropdown.slide-down-leave.slide-down-leave-active.ant-dropdown-placement-bottomRight { + -webkit-animation-name: antSlideUpOut; + animation-name: antSlideUpOut; +} +.ant-dropdown.slide-up-leave.slide-up-leave-active.ant-dropdown-placement-topLeft, +.ant-dropdown.slide-up-leave.slide-up-leave-active.ant-dropdown-placement-topCenter, +.ant-dropdown.slide-up-leave.slide-up-leave-active.ant-dropdown-placement-topRight { + -webkit-animation-name: antSlideDownOut; + animation-name: antSlideDownOut; +} +.ant-dropdown-trigger > .anticon.anticon-down, +.ant-dropdown-link > .anticon.anticon-down { + display: inline-block; + font-size: 12px; + font-size: 10px \9; + transform: scale(0.83333333) rotate(0deg); +} +:root .ant-dropdown-trigger > .anticon.anticon-down, +:root .ant-dropdown-link > .anticon.anticon-down { + font-size: 12px; +} +.ant-dropdown-button { + white-space: nowrap; +} +.ant-dropdown-button.ant-btn-group > .ant-btn:last-child:not(:first-child) { + padding-right: 8px; + padding-left: 8px; +} +.ant-dropdown-button .anticon.anticon-down { + display: inline-block; + font-size: 12px; + font-size: 10px \9; + transform: scale(0.83333333) rotate(0deg); +} +:root .ant-dropdown-button .anticon.anticon-down { + font-size: 12px; +} +.ant-dropdown-menu-dark, +.ant-dropdown-menu-dark .ant-dropdown-menu { + background: #001529; +} +.ant-dropdown-menu-dark .ant-dropdown-menu-item, +.ant-dropdown-menu-dark .ant-dropdown-menu-submenu-title, +.ant-dropdown-menu-dark .ant-dropdown-menu-item > a { + color: rgba(255, 255, 255, 0.65); +} +.ant-dropdown-menu-dark .ant-dropdown-menu-item .ant-dropdown-menu-submenu-arrow::after, +.ant-dropdown-menu-dark .ant-dropdown-menu-submenu-title .ant-dropdown-menu-submenu-arrow::after, +.ant-dropdown-menu-dark .ant-dropdown-menu-item > a .ant-dropdown-menu-submenu-arrow::after { + color: rgba(255, 255, 255, 0.65); +} +.ant-dropdown-menu-dark .ant-dropdown-menu-item:hover, +.ant-dropdown-menu-dark .ant-dropdown-menu-submenu-title:hover, +.ant-dropdown-menu-dark .ant-dropdown-menu-item > a:hover { + color: #fff; + background: transparent; +} +.ant-dropdown-menu-dark .ant-dropdown-menu-item-selected, +.ant-dropdown-menu-dark .ant-dropdown-menu-item-selected:hover, +.ant-dropdown-menu-dark .ant-dropdown-menu-item-selected > a { + color: #fff; + background: #004691; +} +.ant-empty { + margin: 0 8px; + font-size: 15px; + line-height: 22px; + text-align: center; +} +.ant-empty-image { + height: 100px; + margin-bottom: 8px; +} +.ant-empty-image img { + height: 100%; +} +.ant-empty-image svg { + height: 100%; + margin: auto; +} +.ant-empty-description { + margin: 0; +} +.ant-empty-footer { + margin-top: 16px; +} +.ant-empty-normal { + margin: 32px 0; + color: rgba(0, 0, 0, 0.25); +} +.ant-empty-normal .ant-empty-image { + height: 40px; +} +.ant-empty-small { + margin: 8px 0; + color: rgba(0, 0, 0, 0.25); +} +.ant-empty-small .ant-empty-image { + height: 35px; +} +.ant-form { + box-sizing: border-box; + margin: 0; + padding: 0; + color: rgba(0, 0, 0, 0.65); + font-size: 15px; + font-variant: tabular-nums; + line-height: 1.5; + list-style: none; + font-feature-settings: 'tnum'; +} +.ant-form legend { + display: block; + width: 100%; + margin-bottom: 20px; + padding: 0; + color: rgba(0, 0, 0, 0.45); + font-size: 17px; + line-height: inherit; + border: 0; + border-bottom: 1px solid #d9d9d9; +} +.ant-form label { + font-size: 15px; +} +.ant-form input[type='search'] { + box-sizing: border-box; +} +.ant-form input[type='radio'], +.ant-form input[type='checkbox'] { + line-height: normal; +} +.ant-form input[type='file'] { + display: block; +} +.ant-form input[type='range'] { + display: block; + width: 100%; +} +.ant-form select[multiple], +.ant-form select[size] { + height: auto; +} +.ant-form input[type='file']:focus, +.ant-form input[type='radio']:focus, +.ant-form input[type='checkbox']:focus { + outline: thin dotted; + outline: 5px auto -webkit-focus-ring-color; + outline-offset: -2px; +} +.ant-form output { + display: block; + padding-top: 15px; + color: rgba(0, 0, 0, 0.65); + font-size: 15px; + line-height: 1.5; +} +.ant-form legend { + display: block; + width: 100%; + margin-bottom: 20px; + padding: 0; + color: rgba(0, 0, 0, 0.45); + font-size: 17px; + line-height: inherit; + border: 0; + border-bottom: 1px solid #d9d9d9; +} +.ant-form label { + font-size: 15px; +} +.ant-form input[type='search'] { + box-sizing: border-box; +} +.ant-form input[type='radio'], +.ant-form input[type='checkbox'] { + line-height: normal; +} +.ant-form input[type='file'] { + display: block; +} +.ant-form input[type='range'] { + display: block; + width: 100%; +} +.ant-form select[multiple], +.ant-form select[size] { + height: auto; +} +.ant-form input[type='file']:focus, +.ant-form input[type='radio']:focus, +.ant-form input[type='checkbox']:focus { + outline: thin dotted; + outline: 5px auto -webkit-focus-ring-color; + outline-offset: -2px; +} +.ant-form output { + display: block; + padding-top: 15px; + color: rgba(0, 0, 0, 0.65); + font-size: 15px; + line-height: 1.5; +} +.ant-form-item-required::before { + display: inline-block; + margin-right: 4px; + color: #f5222d; + font-size: 15px; + font-family: SimSun, sans-serif; + line-height: 1; + content: '*'; +} +.ant-form-hide-required-mark .ant-form-item-required::before { + display: none; +} +.ant-form-item-label > label { + color: rgba(0, 0, 0, 0.85); +} +.ant-form-item-label > label::after { + content: ':'; + position: relative; + top: -0.5px; + margin: 0 8px 0 2px; +} +.ant-form-item-label > label.ant-form-item-no-colon::after { + content: ' '; +} +.ant-form-item { + box-sizing: border-box; + margin: 0; + padding: 0; + color: rgba(0, 0, 0, 0.65); + font-size: 15px; + font-variant: tabular-nums; + line-height: 1.5; + list-style: none; + font-feature-settings: 'tnum'; + margin-bottom: 24px; + vertical-align: top; +} +.ant-form-item label { + position: relative; +} +.ant-form-item label > .anticon { + font-size: 15px; + vertical-align: top; +} +.ant-form-item-control { + position: relative; + line-height: 40px; + zoom: 1; +} +.ant-form-item-control::before, +.ant-form-item-control::after { + display: table; + content: ''; +} +.ant-form-item-control::after { + clear: both; +} +.ant-form-item-control::before, +.ant-form-item-control::after { + display: table; + content: ''; +} +.ant-form-item-control::after { + clear: both; +} +.ant-form-item-children { + position: relative; +} +.ant-form-item-with-help { + margin-bottom: 4px; +} +.ant-form-item-label { + display: inline-block; + overflow: hidden; + line-height: 39.9999px; + white-space: nowrap; + text-align: right; + vertical-align: middle; +} +.ant-form-item-label-left { + text-align: left; +} +.ant-form-item .ant-switch { + margin: 2px 0 4px; +} +.ant-form-explain, +.ant-form-extra { + clear: both; + min-height: 23px; + margin-top: -2px; + color: rgba(0, 0, 0, 0.45); + font-size: 15px; + line-height: 1.5; + transition: color 0.3s cubic-bezier(0.215, 0.61, 0.355, 1); +} +.ant-form-explain { + margin-bottom: -1px; +} +.ant-form-extra { + padding-top: 4px; +} +.ant-form-text { + display: inline-block; + padding-right: 8px; +} +.ant-form-split { + display: block; + text-align: center; +} +form .has-feedback .ant-input { + padding-right: 30px; +} +form .has-feedback .ant-input-affix-wrapper .ant-input-suffix { + padding-right: 18px; +} +form .has-feedback .ant-input-affix-wrapper .ant-input { + padding-right: 49px; +} +form .has-feedback .ant-input-affix-wrapper.ant-input-affix-wrapper-input-with-clear-btn .ant-input { + padding-right: 68px; +} +form .has-feedback > .ant-select .ant-select-arrow, +form .has-feedback > .ant-select .ant-select-selection__clear, +form .has-feedback :not(.ant-input-group-addon) > .ant-select .ant-select-arrow, +form .has-feedback :not(.ant-input-group-addon) > .ant-select .ant-select-selection__clear { + right: 29px; +} +form .has-feedback > .ant-select .ant-select-selection-selected-value, +form .has-feedback :not(.ant-input-group-addon) > .ant-select .ant-select-selection-selected-value { + padding-right: 42px; +} +form .has-feedback .ant-cascader-picker-arrow { + margin-right: 18px; +} +form .has-feedback .ant-cascader-picker-clear { + right: 29px; +} +form .has-feedback .ant-input-search:not(.ant-input-search-enter-button) .ant-input-suffix { + right: 29px; +} +form .has-feedback .ant-calendar-picker-icon, +form .has-feedback .ant-time-picker-icon, +form .has-feedback .ant-calendar-picker-clear, +form .has-feedback .ant-time-picker-clear { + right: 29px; +} +form .ant-mentions, +form textarea.ant-input { + height: auto; + margin-bottom: 4px; +} +form .ant-upload { + background: transparent; +} +form input[type='radio'], +form input[type='checkbox'] { + width: 14px; + height: 14px; +} +form .ant-radio-inline, +form .ant-checkbox-inline { + display: inline-block; + margin-left: 8px; + font-weight: normal; + vertical-align: middle; + cursor: pointer; +} +form .ant-radio-inline:first-child, +form .ant-checkbox-inline:first-child { + margin-left: 0; +} +form .ant-checkbox-vertical, +form .ant-radio-vertical { + display: block; +} +form .ant-checkbox-vertical + .ant-checkbox-vertical, +form .ant-radio-vertical + .ant-radio-vertical { + margin-left: 0; +} +form .ant-input-number + .ant-form-text { + margin-left: 8px; +} +form .ant-input-number-handler-wrap { + z-index: 2; +} +form .ant-select, +form .ant-cascader-picker { + width: 100%; +} +form .ant-input-group .ant-select, +form .ant-input-group .ant-cascader-picker { + width: auto; +} +form :not(.ant-input-group-wrapper) > .ant-input-group, +form .ant-input-group-wrapper { + display: inline-block; + vertical-align: middle; +} +form:not(.ant-form-vertical) :not(.ant-input-group-wrapper) > .ant-input-group, +form:not(.ant-form-vertical) .ant-input-group-wrapper { + position: relative; + top: -1px; +} +.ant-form-vertical .ant-form-item-label, +.ant-col-24.ant-form-item-label, +.ant-col-xl-24.ant-form-item-label { + display: block; + margin: 0; + padding: 0 0 8px; + line-height: 1.5; + white-space: initial; + text-align: left; +} +.ant-form-vertical .ant-form-item-label label::after, +.ant-col-24.ant-form-item-label label::after, +.ant-col-xl-24.ant-form-item-label label::after { + display: none; +} +.ant-form-vertical .ant-form-item-label label::after, +.ant-col-24.ant-form-item-label label::after, +.ant-col-xl-24.ant-form-item-label label::after { + display: none; +} +.ant-form-vertical .ant-form-item { + padding-bottom: 8px; +} +.ant-form-vertical .ant-form-item-control { + line-height: 1.5; +} +.ant-form-vertical .ant-form-explain { + margin-top: 2px; + margin-bottom: -5px; +} +.ant-form-vertical .ant-form-extra { + margin-top: 2px; + margin-bottom: -4px; +} +@media (max-width: 575px) { + .ant-form-item-label, + .ant-form-item-control-wrapper { + display: block; + width: 100%; + } + .ant-form-item-label { + display: block; + margin: 0; + padding: 0 0 8px; + line-height: 1.5; + white-space: initial; + text-align: left; + } + .ant-form-item-label label::after { + display: none; + } + .ant-form-item-label label::after { + display: none; + } + .ant-form-item-label, + .ant-form-item-control-wrapper { + display: block; + width: 100%; + } + .ant-form-item-label { + display: block; + margin: 0; + padding: 0 0 8px; + line-height: 1.5; + white-space: initial; + text-align: left; + } + .ant-form-item-label label::after { + display: none; + } + .ant-form-item-label label::after { + display: none; + } + .ant-col-xs-24.ant-form-item-label { + display: block; + margin: 0; + padding: 0 0 8px; + line-height: 1.5; + white-space: initial; + text-align: left; + } + .ant-col-xs-24.ant-form-item-label label::after { + display: none; + } + .ant-col-xs-24.ant-form-item-label label::after { + display: none; + } +} +@media (max-width: 767px) { + .ant-col-sm-24.ant-form-item-label { + display: block; + margin: 0; + padding: 0 0 8px; + line-height: 1.5; + white-space: initial; + text-align: left; + } + .ant-col-sm-24.ant-form-item-label label::after { + display: none; + } + .ant-col-sm-24.ant-form-item-label label::after { + display: none; + } +} +@media (max-width: 991px) { + .ant-col-md-24.ant-form-item-label { + display: block; + margin: 0; + padding: 0 0 8px; + line-height: 1.5; + white-space: initial; + text-align: left; + } + .ant-col-md-24.ant-form-item-label label::after { + display: none; + } + .ant-col-md-24.ant-form-item-label label::after { + display: none; + } +} +@media (max-width: 1199px) { + .ant-col-lg-24.ant-form-item-label { + display: block; + margin: 0; + padding: 0 0 8px; + line-height: 1.5; + white-space: initial; + text-align: left; + } + .ant-col-lg-24.ant-form-item-label label::after { + display: none; + } + .ant-col-lg-24.ant-form-item-label label::after { + display: none; + } +} +@media (max-width: 1599px) { + .ant-col-xl-24.ant-form-item-label { + display: block; + margin: 0; + padding: 0 0 8px; + line-height: 1.5; + white-space: initial; + text-align: left; + } + .ant-col-xl-24.ant-form-item-label label::after { + display: none; + } + .ant-col-xl-24.ant-form-item-label label::after { + display: none; + } +} +.ant-form-inline .ant-form-item { + display: inline-block; + margin-right: 16px; + margin-bottom: 0; +} +.ant-form-inline .ant-form-item-with-help { + margin-bottom: 24px; +} +.ant-form-inline .ant-form-item > .ant-form-item-control-wrapper, +.ant-form-inline .ant-form-item > .ant-form-item-label { + display: inline-block; + vertical-align: top; +} +.ant-form-inline .ant-form-text { + display: inline-block; +} +.ant-form-inline .has-feedback { + display: inline-block; +} +.has-success.has-feedback .ant-form-item-children-icon, +.has-warning.has-feedback .ant-form-item-children-icon, +.has-error.has-feedback .ant-form-item-children-icon, +.is-validating.has-feedback .ant-form-item-children-icon { + position: absolute; + top: 50%; + right: 0; + z-index: 1; + width: 32px; + height: 20px; + margin-top: -10px; + font-size: 15px; + line-height: 20px; + text-align: center; + visibility: visible; + -webkit-animation: zoomIn 0.3s cubic-bezier(0.12, 0.4, 0.29, 1.46); + animation: zoomIn 0.3s cubic-bezier(0.12, 0.4, 0.29, 1.46); + pointer-events: none; +} +.has-success.has-feedback .ant-form-item-children-icon svg, +.has-warning.has-feedback .ant-form-item-children-icon svg, +.has-error.has-feedback .ant-form-item-children-icon svg, +.is-validating.has-feedback .ant-form-item-children-icon svg { + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + margin: auto; +} +.has-success.has-feedback .ant-form-item-children-icon { + color: #52c41a; + -webkit-animation-name: diffZoomIn1 !important; + animation-name: diffZoomIn1 !important; +} +.has-warning .ant-form-explain, +.has-warning .ant-form-split { + color: #faad14; +} +.has-warning .ant-input, +.has-warning .ant-input:hover { + background-color: #fff; + border-color: #faad14; +} +.has-warning .ant-input:focus { + border-color: #ffc53d; + border-right-width: 1px !important; + outline: 0; + box-shadow: 0 0 0 2px rgba(250, 173, 20, 0.2); +} +.has-warning .ant-input:not([disabled]):hover { + border-color: #faad14; +} +.has-warning .ant-calendar-picker-open .ant-calendar-picker-input { + border-color: #ffc53d; + border-right-width: 1px !important; + outline: 0; + box-shadow: 0 0 0 2px rgba(250, 173, 20, 0.2); +} +.has-warning .ant-input-affix-wrapper .ant-input, +.has-warning .ant-input-affix-wrapper .ant-input:hover { + background-color: #fff; + border-color: #faad14; +} +.has-warning .ant-input-affix-wrapper .ant-input:focus { + border-color: #ffc53d; + border-right-width: 1px !important; + outline: 0; + box-shadow: 0 0 0 2px rgba(250, 173, 20, 0.2); +} +.has-warning .ant-input-affix-wrapper:hover .ant-input:not(.ant-input-disabled) { + border-color: #faad14; +} +.has-warning .ant-input-prefix { + color: #faad14; +} +.has-warning .ant-input-group-addon { + color: #faad14; + background-color: #fff; + border-color: #faad14; +} +.has-warning .has-feedback { + color: #faad14; +} +.has-warning .ant-form-explain, +.has-warning .ant-form-split { + color: #faad14; +} +.has-warning .ant-input, +.has-warning .ant-input:hover { + background-color: #fff; + border-color: #faad14; +} +.has-warning .ant-input:focus { + border-color: #ffc53d; + border-right-width: 1px !important; + outline: 0; + box-shadow: 0 0 0 2px rgba(250, 173, 20, 0.2); +} +.has-warning .ant-input:not([disabled]):hover { + border-color: #faad14; +} +.has-warning .ant-calendar-picker-open .ant-calendar-picker-input { + border-color: #ffc53d; + border-right-width: 1px !important; + outline: 0; + box-shadow: 0 0 0 2px rgba(250, 173, 20, 0.2); +} +.has-warning .ant-input-affix-wrapper .ant-input, +.has-warning .ant-input-affix-wrapper .ant-input:hover { + background-color: #fff; + border-color: #faad14; +} +.has-warning .ant-input-affix-wrapper .ant-input:focus { + border-color: #ffc53d; + border-right-width: 1px !important; + outline: 0; + box-shadow: 0 0 0 2px rgba(250, 173, 20, 0.2); +} +.has-warning .ant-input-affix-wrapper:hover .ant-input:not(.ant-input-disabled) { + border-color: #faad14; +} +.has-warning .ant-input-prefix { + color: #faad14; +} +.has-warning .ant-input-group-addon { + color: #faad14; + background-color: #fff; + border-color: #faad14; +} +.has-warning .has-feedback { + color: #faad14; +} +.has-warning.has-feedback .ant-form-item-children-icon { + color: #faad14; + -webkit-animation-name: diffZoomIn3 !important; + animation-name: diffZoomIn3 !important; +} +.has-warning .ant-select-selection { + border-color: #faad14; +} +.has-warning .ant-select-selection:hover { + border-color: #faad14; +} +.has-warning .ant-select-open .ant-select-selection, +.has-warning .ant-select-focused .ant-select-selection { + border-color: #ffc53d; + border-right-width: 1px !important; + outline: 0; + box-shadow: 0 0 0 2px rgba(250, 173, 20, 0.2); +} +.has-warning .ant-calendar-picker-icon::after, +.has-warning .ant-time-picker-icon::after, +.has-warning .ant-picker-icon::after, +.has-warning .ant-select-arrow, +.has-warning .ant-cascader-picker-arrow { + color: #faad14; +} +.has-warning .ant-input-number, +.has-warning .ant-time-picker-input { + border-color: #faad14; +} +.has-warning .ant-input-number-focused, +.has-warning .ant-time-picker-input-focused, +.has-warning .ant-input-number:focus, +.has-warning .ant-time-picker-input:focus { + border-color: #ffc53d; + border-right-width: 1px !important; + outline: 0; + box-shadow: 0 0 0 2px rgba(250, 173, 20, 0.2); +} +.has-warning .ant-input-number:not([disabled]):hover, +.has-warning .ant-time-picker-input:not([disabled]):hover { + border-color: #faad14; +} +.has-warning .ant-cascader-picker:focus .ant-cascader-input { + border-color: #ffc53d; + border-right-width: 1px !important; + outline: 0; + box-shadow: 0 0 0 2px rgba(250, 173, 20, 0.2); +} +.has-warning .ant-cascader-picker:hover .ant-cascader-input { + border-color: #faad14; +} +.has-error .ant-form-explain, +.has-error .ant-form-split { + color: #f5222d; +} +.has-error .ant-input, +.has-error .ant-input:hover { + background-color: #fff; + border-color: #f5222d; +} +.has-error .ant-input:focus { + border-color: #ff4d4f; + border-right-width: 1px !important; + outline: 0; + box-shadow: 0 0 0 2px rgba(245, 34, 45, 0.2); +} +.has-error .ant-input:not([disabled]):hover { + border-color: #f5222d; +} +.has-error .ant-calendar-picker-open .ant-calendar-picker-input { + border-color: #ff4d4f; + border-right-width: 1px !important; + outline: 0; + box-shadow: 0 0 0 2px rgba(245, 34, 45, 0.2); +} +.has-error .ant-input-affix-wrapper .ant-input, +.has-error .ant-input-affix-wrapper .ant-input:hover { + background-color: #fff; + border-color: #f5222d; +} +.has-error .ant-input-affix-wrapper .ant-input:focus { + border-color: #ff4d4f; + border-right-width: 1px !important; + outline: 0; + box-shadow: 0 0 0 2px rgba(245, 34, 45, 0.2); +} +.has-error .ant-input-affix-wrapper:hover .ant-input:not(.ant-input-disabled) { + border-color: #f5222d; +} +.has-error .ant-input-prefix { + color: #f5222d; +} +.has-error .ant-input-group-addon { + color: #f5222d; + background-color: #fff; + border-color: #f5222d; +} +.has-error .has-feedback { + color: #f5222d; +} +.has-error .ant-form-explain, +.has-error .ant-form-split { + color: #f5222d; +} +.has-error .ant-input, +.has-error .ant-input:hover { + background-color: #fff; + border-color: #f5222d; +} +.has-error .ant-input:focus { + border-color: #ff4d4f; + border-right-width: 1px !important; + outline: 0; + box-shadow: 0 0 0 2px rgba(245, 34, 45, 0.2); +} +.has-error .ant-input:not([disabled]):hover { + border-color: #f5222d; +} +.has-error .ant-calendar-picker-open .ant-calendar-picker-input { + border-color: #ff4d4f; + border-right-width: 1px !important; + outline: 0; + box-shadow: 0 0 0 2px rgba(245, 34, 45, 0.2); +} +.has-error .ant-input-affix-wrapper .ant-input, +.has-error .ant-input-affix-wrapper .ant-input:hover { + background-color: #fff; + border-color: #f5222d; +} +.has-error .ant-input-affix-wrapper .ant-input:focus { + border-color: #ff4d4f; + border-right-width: 1px !important; + outline: 0; + box-shadow: 0 0 0 2px rgba(245, 34, 45, 0.2); +} +.has-error .ant-input-affix-wrapper:hover .ant-input:not(.ant-input-disabled) { + border-color: #f5222d; +} +.has-error .ant-input-prefix { + color: #f5222d; +} +.has-error .ant-input-group-addon { + color: #f5222d; + background-color: #fff; + border-color: #f5222d; +} +.has-error .has-feedback { + color: #f5222d; +} +.has-error.has-feedback .ant-form-item-children-icon { + color: #f5222d; + -webkit-animation-name: diffZoomIn2 !important; + animation-name: diffZoomIn2 !important; +} +.has-error .ant-select-selection { + border-color: #f5222d; +} +.has-error .ant-select-selection:hover { + border-color: #f5222d; +} +.has-error .ant-select-open .ant-select-selection, +.has-error .ant-select-focused .ant-select-selection { + border-color: #ff4d4f; + border-right-width: 1px !important; + outline: 0; + box-shadow: 0 0 0 2px rgba(245, 34, 45, 0.2); +} +.has-error .ant-select.ant-select-auto-complete .ant-input:focus { + border-color: #f5222d; +} +.has-error .ant-input-group-addon .ant-select-selection { + border-color: transparent; + box-shadow: none; +} +.has-error .ant-calendar-picker-icon::after, +.has-error .ant-time-picker-icon::after, +.has-error .ant-picker-icon::after, +.has-error .ant-select-arrow, +.has-error .ant-cascader-picker-arrow { + color: #f5222d; +} +.has-error .ant-input-number, +.has-error .ant-time-picker-input { + border-color: #f5222d; +} +.has-error .ant-input-number-focused, +.has-error .ant-time-picker-input-focused, +.has-error .ant-input-number:focus, +.has-error .ant-time-picker-input:focus { + border-color: #ff4d4f; + border-right-width: 1px !important; + outline: 0; + box-shadow: 0 0 0 2px rgba(245, 34, 45, 0.2); +} +.has-error .ant-input-number:not([disabled]):hover, +.has-error .ant-time-picker-input:not([disabled]):hover { + border-color: #f5222d; +} +.has-error .ant-mention-wrapper .ant-mention-editor, +.has-error .ant-mention-wrapper .ant-mention-editor:not([disabled]):hover { + border-color: #f5222d; +} +.has-error .ant-mention-wrapper.ant-mention-active:not([disabled]) .ant-mention-editor, +.has-error .ant-mention-wrapper .ant-mention-editor:not([disabled]):focus { + border-color: #ff4d4f; + border-right-width: 1px !important; + outline: 0; + box-shadow: 0 0 0 2px rgba(245, 34, 45, 0.2); +} +.has-error .ant-cascader-picker:focus .ant-cascader-input { + border-color: #ff4d4f; + border-right-width: 1px !important; + outline: 0; + box-shadow: 0 0 0 2px rgba(245, 34, 45, 0.2); +} +.has-error .ant-cascader-picker:hover .ant-cascader-input { + border-color: #f5222d; +} +.has-error .ant-transfer-list { + border-color: #f5222d; +} +.has-error .ant-transfer-list-search:not([disabled]) { + border-color: #d9d9d9; +} +.has-error .ant-transfer-list-search:not([disabled]):hover { + border-color: #195e9e; + border-right-width: 1px !important; +} +.has-error .ant-transfer-list-search:not([disabled]):focus { + border-color: #195e9e; + border-right-width: 1px !important; + outline: 0; + box-shadow: 0 0 0 2px rgba(0, 70, 145, 0.2); +} +.is-validating.has-feedback .ant-form-item-children-icon { + display: inline-block; + color: #004691; +} +.ant-advanced-search-form .ant-form-item { + margin-bottom: 24px; +} +.ant-advanced-search-form .ant-form-item-with-help { + margin-bottom: 4px; +} +.show-help-enter, +.show-help-appear { + -webkit-animation-duration: 0.3s; + animation-duration: 0.3s; + -webkit-animation-fill-mode: both; + animation-fill-mode: both; + -webkit-animation-play-state: paused; + animation-play-state: paused; +} +.show-help-leave { + -webkit-animation-duration: 0.3s; + animation-duration: 0.3s; + -webkit-animation-fill-mode: both; + animation-fill-mode: both; + -webkit-animation-play-state: paused; + animation-play-state: paused; +} +.show-help-enter.show-help-enter-active, +.show-help-appear.show-help-appear-active { + -webkit-animation-name: antShowHelpIn; + animation-name: antShowHelpIn; + -webkit-animation-play-state: running; + animation-play-state: running; +} +.show-help-leave.show-help-leave-active { + -webkit-animation-name: antShowHelpOut; + animation-name: antShowHelpOut; + -webkit-animation-play-state: running; + animation-play-state: running; + pointer-events: none; +} +.show-help-enter, +.show-help-appear { + opacity: 0; + -webkit-animation-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1); + animation-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1); +} +.show-help-leave { + -webkit-animation-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1); + animation-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1); +} +.show-help-enter, +.show-help-appear { + -webkit-animation-duration: 0.3s; + animation-duration: 0.3s; + -webkit-animation-fill-mode: both; + animation-fill-mode: both; + -webkit-animation-play-state: paused; + animation-play-state: paused; +} +.show-help-leave { + -webkit-animation-duration: 0.3s; + animation-duration: 0.3s; + -webkit-animation-fill-mode: both; + animation-fill-mode: both; + -webkit-animation-play-state: paused; + animation-play-state: paused; +} +.show-help-enter.show-help-enter-active, +.show-help-appear.show-help-appear-active { + -webkit-animation-name: antShowHelpIn; + animation-name: antShowHelpIn; + -webkit-animation-play-state: running; + animation-play-state: running; +} +.show-help-leave.show-help-leave-active { + -webkit-animation-name: antShowHelpOut; + animation-name: antShowHelpOut; + -webkit-animation-play-state: running; + animation-play-state: running; + pointer-events: none; +} +.show-help-enter, +.show-help-appear { + opacity: 0; + -webkit-animation-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1); + animation-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1); +} +.show-help-leave { + -webkit-animation-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1); + animation-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1); +} +@-webkit-keyframes antShowHelpIn { + 0% { + transform: translateY(-5px); + opacity: 0; + } + 100% { + transform: translateY(0); + opacity: 1; + } +} +@keyframes antShowHelpIn { + 0% { + transform: translateY(-5px); + opacity: 0; + } + 100% { + transform: translateY(0); + opacity: 1; + } +} +@-webkit-keyframes antShowHelpOut { + to { + transform: translateY(-5px); + opacity: 0; + } +} +@keyframes antShowHelpOut { + to { + transform: translateY(-5px); + opacity: 0; + } +} +@-webkit-keyframes diffZoomIn1 { + 0% { + transform: scale(0); + } + 100% { + transform: scale(1); + } +} +@keyframes diffZoomIn1 { + 0% { + transform: scale(0); + } + 100% { + transform: scale(1); + } +} +@-webkit-keyframes diffZoomIn2 { + 0% { + transform: scale(0); + } + 100% { + transform: scale(1); + } +} +@keyframes diffZoomIn2 { + 0% { + transform: scale(0); + } + 100% { + transform: scale(1); + } +} +@-webkit-keyframes diffZoomIn3 { + 0% { + transform: scale(0); + } + 100% { + transform: scale(1); + } +} +@keyframes diffZoomIn3 { + 0% { + transform: scale(0); + } + 100% { + transform: scale(1); + } +} +.ant-form { + box-sizing: border-box; + margin: 0; + padding: 0; + color: rgba(0, 0, 0, 0.65); + font-size: 15px; + font-variant: tabular-nums; + line-height: 1.5; + list-style: none; + font-feature-settings: 'tnum'; +} +.ant-form legend { + display: block; + width: 100%; + margin-bottom: 20px; + padding: 0; + color: rgba(0, 0, 0, 0.45); + font-size: 17px; + line-height: inherit; + border: 0; + border-bottom: 1px solid #d9d9d9; +} +.ant-form label { + font-size: 15px; +} +.ant-form input[type='search'] { + box-sizing: border-box; +} +.ant-form input[type='radio'], +.ant-form input[type='checkbox'] { + line-height: normal; +} +.ant-form input[type='file'] { + display: block; +} +.ant-form input[type='range'] { + display: block; + width: 100%; +} +.ant-form select[multiple], +.ant-form select[size] { + height: auto; +} +.ant-form input[type='file']:focus, +.ant-form input[type='radio']:focus, +.ant-form input[type='checkbox']:focus { + outline: thin dotted; + outline: 5px auto -webkit-focus-ring-color; + outline-offset: -2px; +} +.ant-form output { + display: block; + padding-top: 15px; + color: rgba(0, 0, 0, 0.65); + font-size: 15px; + line-height: 1.5; +} +.ant-form legend { + display: block; + width: 100%; + margin-bottom: 20px; + padding: 0; + color: rgba(0, 0, 0, 0.45); + font-size: 17px; + line-height: inherit; + border: 0; + border-bottom: 1px solid #d9d9d9; +} +.ant-form label { + font-size: 15px; +} +.ant-form input[type='search'] { + box-sizing: border-box; +} +.ant-form input[type='radio'], +.ant-form input[type='checkbox'] { + line-height: normal; +} +.ant-form input[type='file'] { + display: block; +} +.ant-form input[type='range'] { + display: block; + width: 100%; +} +.ant-form select[multiple], +.ant-form select[size] { + height: auto; +} +.ant-form input[type='file']:focus, +.ant-form input[type='radio']:focus, +.ant-form input[type='checkbox']:focus { + outline: thin dotted; + outline: 5px auto -webkit-focus-ring-color; + outline-offset: -2px; +} +.ant-form output { + display: block; + padding-top: 15px; + color: rgba(0, 0, 0, 0.65); + font-size: 15px; + line-height: 1.5; +} +.ant-form-item-required::before { + display: inline-block; + margin-right: 4px; + color: #f5222d; + font-size: 15px; + font-family: SimSun, sans-serif; + line-height: 1; + content: '*'; +} +.ant-form-hide-required-mark .ant-form-item-required::before { + display: none; +} +.ant-form-item-label > label { + color: rgba(0, 0, 0, 0.85); +} +.ant-form-item-label > label::after { + content: ':'; + position: relative; + top: -0.5px; + margin: 0 8px 0 2px; +} +.ant-form-item-label > label.ant-form-item-no-colon::after { + content: ' '; +} +.ant-form-item { + box-sizing: border-box; + margin: 0; + padding: 0; + color: rgba(0, 0, 0, 0.65); + font-size: 15px; + font-variant: tabular-nums; + line-height: 1.5; + list-style: none; + font-feature-settings: 'tnum'; + margin-bottom: 24px; + vertical-align: top; +} +.ant-form-item label { + position: relative; +} +.ant-form-item label > .anticon { + font-size: 15px; + vertical-align: top; +} +.ant-form-item-control { + position: relative; + line-height: 40px; + zoom: 1; +} +.ant-form-item-control::before, +.ant-form-item-control::after { + display: table; + content: ''; +} +.ant-form-item-control::after { + clear: both; +} +.ant-form-item-control::before, +.ant-form-item-control::after { + display: table; + content: ''; +} +.ant-form-item-control::after { + clear: both; +} +.ant-form-item-children { + position: relative; +} +.ant-form-item-with-help { + margin-bottom: 4px; +} +.ant-form-item-label { + display: inline-block; + overflow: hidden; + line-height: 39.9999px; + white-space: nowrap; + text-align: right; + vertical-align: middle; +} +.ant-form-item-label-left { + text-align: left; +} +.ant-form-item .ant-switch { + margin: 2px 0 4px; +} +.ant-form-explain, +.ant-form-extra { + clear: both; + min-height: 23px; + margin-top: -2px; + color: rgba(0, 0, 0, 0.45); + font-size: 15px; + line-height: 1.5; + transition: color 0.3s cubic-bezier(0.215, 0.61, 0.355, 1); +} +.ant-form-explain { + margin-bottom: -1px; +} +.ant-form-extra { + padding-top: 4px; +} +.ant-form-text { + display: inline-block; + padding-right: 8px; +} +.ant-form-split { + display: block; + text-align: center; +} +form .has-feedback .ant-input { + padding-right: 30px; +} +form .has-feedback .ant-input-affix-wrapper .ant-input-suffix { + padding-right: 18px; +} +form .has-feedback .ant-input-affix-wrapper .ant-input { + padding-right: 49px; +} +form .has-feedback .ant-input-affix-wrapper.ant-input-affix-wrapper-input-with-clear-btn .ant-input { + padding-right: 68px; +} +form .has-feedback > .ant-select .ant-select-arrow, +form .has-feedback > .ant-select .ant-select-selection__clear, +form .has-feedback :not(.ant-input-group-addon) > .ant-select .ant-select-arrow, +form .has-feedback :not(.ant-input-group-addon) > .ant-select .ant-select-selection__clear { + right: 29px; +} +form .has-feedback > .ant-select .ant-select-selection-selected-value, +form .has-feedback :not(.ant-input-group-addon) > .ant-select .ant-select-selection-selected-value { + padding-right: 42px; +} +form .has-feedback .ant-cascader-picker-arrow { + margin-right: 18px; +} +form .has-feedback .ant-cascader-picker-clear { + right: 29px; +} +form .has-feedback .ant-input-search:not(.ant-input-search-enter-button) .ant-input-suffix { + right: 29px; +} +form .has-feedback .ant-calendar-picker-icon, +form .has-feedback .ant-time-picker-icon, +form .has-feedback .ant-calendar-picker-clear, +form .has-feedback .ant-time-picker-clear { + right: 29px; +} +form .ant-mentions, +form textarea.ant-input { + height: auto; + margin-bottom: 4px; +} +form .ant-upload { + background: transparent; +} +form input[type='radio'], +form input[type='checkbox'] { + width: 14px; + height: 14px; +} +form .ant-radio-inline, +form .ant-checkbox-inline { + display: inline-block; + margin-left: 8px; + font-weight: normal; + vertical-align: middle; + cursor: pointer; +} +form .ant-radio-inline:first-child, +form .ant-checkbox-inline:first-child { + margin-left: 0; +} +form .ant-checkbox-vertical, +form .ant-radio-vertical { + display: block; +} +form .ant-checkbox-vertical + .ant-checkbox-vertical, +form .ant-radio-vertical + .ant-radio-vertical { + margin-left: 0; +} +form .ant-input-number + .ant-form-text { + margin-left: 8px; +} +form .ant-input-number-handler-wrap { + z-index: 2; +} +form .ant-select, +form .ant-cascader-picker { + width: 100%; +} +form .ant-input-group .ant-select, +form .ant-input-group .ant-cascader-picker { + width: auto; +} +form :not(.ant-input-group-wrapper) > .ant-input-group, +form .ant-input-group-wrapper { + display: inline-block; + vertical-align: middle; +} +form:not(.ant-form-vertical) :not(.ant-input-group-wrapper) > .ant-input-group, +form:not(.ant-form-vertical) .ant-input-group-wrapper { + position: relative; + top: -1px; +} +.ant-form-vertical .ant-form-item-label, +.ant-col-24.ant-form-item-label, +.ant-col-xl-24.ant-form-item-label { + display: block; + margin: 0; + padding: 0 0 8px; + line-height: 1.5; + white-space: initial; + text-align: left; +} +.ant-form-vertical .ant-form-item-label label::after, +.ant-col-24.ant-form-item-label label::after, +.ant-col-xl-24.ant-form-item-label label::after { + display: none; +} +.ant-form-vertical .ant-form-item-label label::after, +.ant-col-24.ant-form-item-label label::after, +.ant-col-xl-24.ant-form-item-label label::after { + display: none; +} +.ant-form-vertical .ant-form-item { + padding-bottom: 8px; +} +.ant-form-vertical .ant-form-item-control { + line-height: 1.5; +} +.ant-form-vertical .ant-form-explain { + margin-top: 2px; + margin-bottom: -5px; +} +.ant-form-vertical .ant-form-extra { + margin-top: 2px; + margin-bottom: -4px; +} +@media (max-width: 575px) { + .ant-form-item-label, + .ant-form-item-control-wrapper { + display: block; + width: 100%; + } + .ant-form-item-label { + display: block; + margin: 0; + padding: 0 0 8px; + line-height: 1.5; + white-space: initial; + text-align: left; + } + .ant-form-item-label label::after { + display: none; + } + .ant-form-item-label label::after { + display: none; + } + .ant-form-item-label, + .ant-form-item-control-wrapper { + display: block; + width: 100%; + } + .ant-form-item-label { + display: block; + margin: 0; + padding: 0 0 8px; + line-height: 1.5; + white-space: initial; + text-align: left; + } + .ant-form-item-label label::after { + display: none; + } + .ant-form-item-label label::after { + display: none; + } + .ant-col-xs-24.ant-form-item-label { + display: block; + margin: 0; + padding: 0 0 8px; + line-height: 1.5; + white-space: initial; + text-align: left; + } + .ant-col-xs-24.ant-form-item-label label::after { + display: none; + } + .ant-col-xs-24.ant-form-item-label label::after { + display: none; + } +} +@media (max-width: 767px) { + .ant-col-sm-24.ant-form-item-label { + display: block; + margin: 0; + padding: 0 0 8px; + line-height: 1.5; + white-space: initial; + text-align: left; + } + .ant-col-sm-24.ant-form-item-label label::after { + display: none; + } + .ant-col-sm-24.ant-form-item-label label::after { + display: none; + } +} +@media (max-width: 991px) { + .ant-col-md-24.ant-form-item-label { + display: block; + margin: 0; + padding: 0 0 8px; + line-height: 1.5; + white-space: initial; + text-align: left; + } + .ant-col-md-24.ant-form-item-label label::after { + display: none; + } + .ant-col-md-24.ant-form-item-label label::after { + display: none; + } +} +@media (max-width: 1199px) { + .ant-col-lg-24.ant-form-item-label { + display: block; + margin: 0; + padding: 0 0 8px; + line-height: 1.5; + white-space: initial; + text-align: left; + } + .ant-col-lg-24.ant-form-item-label label::after { + display: none; + } + .ant-col-lg-24.ant-form-item-label label::after { + display: none; + } +} +@media (max-width: 1599px) { + .ant-col-xl-24.ant-form-item-label { + display: block; + margin: 0; + padding: 0 0 8px; + line-height: 1.5; + white-space: initial; + text-align: left; + } + .ant-col-xl-24.ant-form-item-label label::after { + display: none; + } + .ant-col-xl-24.ant-form-item-label label::after { + display: none; + } +} +.ant-form-inline .ant-form-item { + display: inline-block; + margin-right: 16px; + margin-bottom: 0; +} +.ant-form-inline .ant-form-item-with-help { + margin-bottom: 24px; +} +.ant-form-inline .ant-form-item > .ant-form-item-control-wrapper, +.ant-form-inline .ant-form-item > .ant-form-item-label { + display: inline-block; + vertical-align: top; +} +.ant-form-inline .ant-form-text { + display: inline-block; +} +.ant-form-inline .has-feedback { + display: inline-block; +} +.has-success.has-feedback .ant-form-item-children-icon, +.has-warning.has-feedback .ant-form-item-children-icon, +.has-error.has-feedback .ant-form-item-children-icon, +.is-validating.has-feedback .ant-form-item-children-icon { + position: absolute; + top: 50%; + right: 0; + z-index: 1; + width: 32px; + height: 20px; + margin-top: -10px; + font-size: 15px; + line-height: 20px; + text-align: center; + visibility: visible; + -webkit-animation: zoomIn 0.3s cubic-bezier(0.12, 0.4, 0.29, 1.46); + animation: zoomIn 0.3s cubic-bezier(0.12, 0.4, 0.29, 1.46); + pointer-events: none; +} +.has-success.has-feedback .ant-form-item-children-icon svg, +.has-warning.has-feedback .ant-form-item-children-icon svg, +.has-error.has-feedback .ant-form-item-children-icon svg, +.is-validating.has-feedback .ant-form-item-children-icon svg { + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + margin: auto; +} +.has-success.has-feedback .ant-form-item-children-icon { + color: #52c41a; + -webkit-animation-name: diffZoomIn1 !important; + animation-name: diffZoomIn1 !important; +} +.has-warning .ant-form-explain, +.has-warning .ant-form-split { + color: #faad14; +} +.has-warning .ant-input, +.has-warning .ant-input:hover { + background-color: #fff; + border-color: #faad14; +} +.has-warning .ant-input:focus { + border-color: #ffc53d; + border-right-width: 1px !important; + outline: 0; + box-shadow: 0 0 0 2px rgba(250, 173, 20, 0.2); +} +.has-warning .ant-input:not([disabled]):hover { + border-color: #faad14; +} +.has-warning .ant-calendar-picker-open .ant-calendar-picker-input { + border-color: #ffc53d; + border-right-width: 1px !important; + outline: 0; + box-shadow: 0 0 0 2px rgba(250, 173, 20, 0.2); +} +.has-warning .ant-input-affix-wrapper .ant-input, +.has-warning .ant-input-affix-wrapper .ant-input:hover { + background-color: #fff; + border-color: #faad14; +} +.has-warning .ant-input-affix-wrapper .ant-input:focus { + border-color: #ffc53d; + border-right-width: 1px !important; + outline: 0; + box-shadow: 0 0 0 2px rgba(250, 173, 20, 0.2); +} +.has-warning .ant-input-affix-wrapper:hover .ant-input:not(.ant-input-disabled) { + border-color: #faad14; +} +.has-warning .ant-input-prefix { + color: #faad14; +} +.has-warning .ant-input-group-addon { + color: #faad14; + background-color: #fff; + border-color: #faad14; +} +.has-warning .has-feedback { + color: #faad14; +} +.has-warning .ant-form-explain, +.has-warning .ant-form-split { + color: #faad14; +} +.has-warning .ant-input, +.has-warning .ant-input:hover { + background-color: #fff; + border-color: #faad14; +} +.has-warning .ant-input:focus { + border-color: #ffc53d; + border-right-width: 1px !important; + outline: 0; + box-shadow: 0 0 0 2px rgba(250, 173, 20, 0.2); +} +.has-warning .ant-input:not([disabled]):hover { + border-color: #faad14; +} +.has-warning .ant-calendar-picker-open .ant-calendar-picker-input { + border-color: #ffc53d; + border-right-width: 1px !important; + outline: 0; + box-shadow: 0 0 0 2px rgba(250, 173, 20, 0.2); +} +.has-warning .ant-input-affix-wrapper .ant-input, +.has-warning .ant-input-affix-wrapper .ant-input:hover { + background-color: #fff; + border-color: #faad14; +} +.has-warning .ant-input-affix-wrapper .ant-input:focus { + border-color: #ffc53d; + border-right-width: 1px !important; + outline: 0; + box-shadow: 0 0 0 2px rgba(250, 173, 20, 0.2); +} +.has-warning .ant-input-affix-wrapper:hover .ant-input:not(.ant-input-disabled) { + border-color: #faad14; +} +.has-warning .ant-input-prefix { + color: #faad14; +} +.has-warning .ant-input-group-addon { + color: #faad14; + background-color: #fff; + border-color: #faad14; +} +.has-warning .has-feedback { + color: #faad14; +} +.has-warning.has-feedback .ant-form-item-children-icon { + color: #faad14; + -webkit-animation-name: diffZoomIn3 !important; + animation-name: diffZoomIn3 !important; +} +.has-warning .ant-select-selection { + border-color: #faad14; +} +.has-warning .ant-select-selection:hover { + border-color: #faad14; +} +.has-warning .ant-select-open .ant-select-selection, +.has-warning .ant-select-focused .ant-select-selection { + border-color: #ffc53d; + border-right-width: 1px !important; + outline: 0; + box-shadow: 0 0 0 2px rgba(250, 173, 20, 0.2); +} +.has-warning .ant-calendar-picker-icon::after, +.has-warning .ant-time-picker-icon::after, +.has-warning .ant-picker-icon::after, +.has-warning .ant-select-arrow, +.has-warning .ant-cascader-picker-arrow { + color: #faad14; +} +.has-warning .ant-input-number, +.has-warning .ant-time-picker-input { + border-color: #faad14; +} +.has-warning .ant-input-number-focused, +.has-warning .ant-time-picker-input-focused, +.has-warning .ant-input-number:focus, +.has-warning .ant-time-picker-input:focus { + border-color: #ffc53d; + border-right-width: 1px !important; + outline: 0; + box-shadow: 0 0 0 2px rgba(250, 173, 20, 0.2); +} +.has-warning .ant-input-number:not([disabled]):hover, +.has-warning .ant-time-picker-input:not([disabled]):hover { + border-color: #faad14; +} +.has-warning .ant-cascader-picker:focus .ant-cascader-input { + border-color: #ffc53d; + border-right-width: 1px !important; + outline: 0; + box-shadow: 0 0 0 2px rgba(250, 173, 20, 0.2); +} +.has-warning .ant-cascader-picker:hover .ant-cascader-input { + border-color: #faad14; +} +.has-error .ant-form-explain, +.has-error .ant-form-split { + color: #f5222d; +} +.has-error .ant-input, +.has-error .ant-input:hover { + background-color: #fff; + border-color: #f5222d; +} +.has-error .ant-input:focus { + border-color: #ff4d4f; + border-right-width: 1px !important; + outline: 0; + box-shadow: 0 0 0 2px rgba(245, 34, 45, 0.2); +} +.has-error .ant-input:not([disabled]):hover { + border-color: #f5222d; +} +.has-error .ant-calendar-picker-open .ant-calendar-picker-input { + border-color: #ff4d4f; + border-right-width: 1px !important; + outline: 0; + box-shadow: 0 0 0 2px rgba(245, 34, 45, 0.2); +} +.has-error .ant-input-affix-wrapper .ant-input, +.has-error .ant-input-affix-wrapper .ant-input:hover { + background-color: #fff; + border-color: #f5222d; +} +.has-error .ant-input-affix-wrapper .ant-input:focus { + border-color: #ff4d4f; + border-right-width: 1px !important; + outline: 0; + box-shadow: 0 0 0 2px rgba(245, 34, 45, 0.2); +} +.has-error .ant-input-affix-wrapper:hover .ant-input:not(.ant-input-disabled) { + border-color: #f5222d; +} +.has-error .ant-input-prefix { + color: #f5222d; +} +.has-error .ant-input-group-addon { + color: #f5222d; + background-color: #fff; + border-color: #f5222d; +} +.has-error .has-feedback { + color: #f5222d; +} +.has-error .ant-form-explain, +.has-error .ant-form-split { + color: #f5222d; +} +.has-error .ant-input, +.has-error .ant-input:hover { + background-color: #fff; + border-color: #f5222d; +} +.has-error .ant-input:focus { + border-color: #ff4d4f; + border-right-width: 1px !important; + outline: 0; + box-shadow: 0 0 0 2px rgba(245, 34, 45, 0.2); +} +.has-error .ant-input:not([disabled]):hover { + border-color: #f5222d; +} +.has-error .ant-calendar-picker-open .ant-calendar-picker-input { + border-color: #ff4d4f; + border-right-width: 1px !important; + outline: 0; + box-shadow: 0 0 0 2px rgba(245, 34, 45, 0.2); +} +.has-error .ant-input-affix-wrapper .ant-input, +.has-error .ant-input-affix-wrapper .ant-input:hover { + background-color: #fff; + border-color: #f5222d; +} +.has-error .ant-input-affix-wrapper .ant-input:focus { + border-color: #ff4d4f; + border-right-width: 1px !important; + outline: 0; + box-shadow: 0 0 0 2px rgba(245, 34, 45, 0.2); +} +.has-error .ant-input-affix-wrapper:hover .ant-input:not(.ant-input-disabled) { + border-color: #f5222d; +} +.has-error .ant-input-prefix { + color: #f5222d; +} +.has-error .ant-input-group-addon { + color: #f5222d; + background-color: #fff; + border-color: #f5222d; +} +.has-error .has-feedback { + color: #f5222d; +} +.has-error.has-feedback .ant-form-item-children-icon { + color: #f5222d; + -webkit-animation-name: diffZoomIn2 !important; + animation-name: diffZoomIn2 !important; +} +.has-error .ant-select-selection { + border-color: #f5222d; +} +.has-error .ant-select-selection:hover { + border-color: #f5222d; +} +.has-error .ant-select-open .ant-select-selection, +.has-error .ant-select-focused .ant-select-selection { + border-color: #ff4d4f; + border-right-width: 1px !important; + outline: 0; + box-shadow: 0 0 0 2px rgba(245, 34, 45, 0.2); +} +.has-error .ant-select.ant-select-auto-complete .ant-input:focus { + border-color: #f5222d; +} +.has-error .ant-input-group-addon .ant-select-selection { + border-color: transparent; + box-shadow: none; +} +.has-error .ant-calendar-picker-icon::after, +.has-error .ant-time-picker-icon::after, +.has-error .ant-picker-icon::after, +.has-error .ant-select-arrow, +.has-error .ant-cascader-picker-arrow { + color: #f5222d; +} +.has-error .ant-input-number, +.has-error .ant-time-picker-input { + border-color: #f5222d; +} +.has-error .ant-input-number-focused, +.has-error .ant-time-picker-input-focused, +.has-error .ant-input-number:focus, +.has-error .ant-time-picker-input:focus { + border-color: #ff4d4f; + border-right-width: 1px !important; + outline: 0; + box-shadow: 0 0 0 2px rgba(245, 34, 45, 0.2); +} +.has-error .ant-input-number:not([disabled]):hover, +.has-error .ant-time-picker-input:not([disabled]):hover { + border-color: #f5222d; +} +.has-error .ant-mention-wrapper .ant-mention-editor, +.has-error .ant-mention-wrapper .ant-mention-editor:not([disabled]):hover { + border-color: #f5222d; +} +.has-error .ant-mention-wrapper.ant-mention-active:not([disabled]) .ant-mention-editor, +.has-error .ant-mention-wrapper .ant-mention-editor:not([disabled]):focus { + border-color: #ff4d4f; + border-right-width: 1px !important; + outline: 0; + box-shadow: 0 0 0 2px rgba(245, 34, 45, 0.2); +} +.has-error .ant-cascader-picker:focus .ant-cascader-input { + border-color: #ff4d4f; + border-right-width: 1px !important; + outline: 0; + box-shadow: 0 0 0 2px rgba(245, 34, 45, 0.2); +} +.has-error .ant-cascader-picker:hover .ant-cascader-input { + border-color: #f5222d; +} +.has-error .ant-transfer-list { + border-color: #f5222d; +} +.has-error .ant-transfer-list-search:not([disabled]) { + border-color: #d9d9d9; +} +.has-error .ant-transfer-list-search:not([disabled]):hover { + border-color: #195e9e; + border-right-width: 1px !important; +} +.has-error .ant-transfer-list-search:not([disabled]):focus { + border-color: #195e9e; + border-right-width: 1px !important; + outline: 0; + box-shadow: 0 0 0 2px rgba(0, 70, 145, 0.2); +} +.is-validating.has-feedback .ant-form-item-children-icon { + display: inline-block; + color: #004691; +} +.ant-advanced-search-form .ant-form-item { + margin-bottom: 24px; +} +.ant-advanced-search-form .ant-form-item-with-help { + margin-bottom: 4px; +} +.show-help-enter, +.show-help-appear { + -webkit-animation-duration: 0.3s; + animation-duration: 0.3s; + -webkit-animation-fill-mode: both; + animation-fill-mode: both; + -webkit-animation-play-state: paused; + animation-play-state: paused; +} +.show-help-leave { + -webkit-animation-duration: 0.3s; + animation-duration: 0.3s; + -webkit-animation-fill-mode: both; + animation-fill-mode: both; + -webkit-animation-play-state: paused; + animation-play-state: paused; +} +.show-help-enter.show-help-enter-active, +.show-help-appear.show-help-appear-active { + -webkit-animation-name: antShowHelpIn; + animation-name: antShowHelpIn; + -webkit-animation-play-state: running; + animation-play-state: running; +} +.show-help-leave.show-help-leave-active { + -webkit-animation-name: antShowHelpOut; + animation-name: antShowHelpOut; + -webkit-animation-play-state: running; + animation-play-state: running; + pointer-events: none; +} +.show-help-enter, +.show-help-appear { + opacity: 0; + -webkit-animation-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1); + animation-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1); +} +.show-help-leave { + -webkit-animation-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1); + animation-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1); +} +.show-help-enter, +.show-help-appear { + -webkit-animation-duration: 0.3s; + animation-duration: 0.3s; + -webkit-animation-fill-mode: both; + animation-fill-mode: both; + -webkit-animation-play-state: paused; + animation-play-state: paused; +} +.show-help-leave { + -webkit-animation-duration: 0.3s; + animation-duration: 0.3s; + -webkit-animation-fill-mode: both; + animation-fill-mode: both; + -webkit-animation-play-state: paused; + animation-play-state: paused; +} +.show-help-enter.show-help-enter-active, +.show-help-appear.show-help-appear-active { + -webkit-animation-name: antShowHelpIn; + animation-name: antShowHelpIn; + -webkit-animation-play-state: running; + animation-play-state: running; +} +.show-help-leave.show-help-leave-active { + -webkit-animation-name: antShowHelpOut; + animation-name: antShowHelpOut; + -webkit-animation-play-state: running; + animation-play-state: running; + pointer-events: none; +} +.show-help-enter, +.show-help-appear { + opacity: 0; + -webkit-animation-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1); + animation-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1); +} +.show-help-leave { + -webkit-animation-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1); + animation-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1); +} +@keyframes antShowHelpIn { + 0% { + transform: translateY(-5px); + opacity: 0; + } + 100% { + transform: translateY(0); + opacity: 1; + } +} +@keyframes antShowHelpOut { + to { + transform: translateY(-5px); + opacity: 0; + } +} +@keyframes diffZoomIn1 { + 0% { + transform: scale(0); + } + 100% { + transform: scale(1); + } +} +@keyframes diffZoomIn2 { + 0% { + transform: scale(0); + } + 100% { + transform: scale(1); + } +} +@keyframes diffZoomIn3 { + 0% { + transform: scale(0); + } + 100% { + transform: scale(1); + } +} +.ant-row { + position: relative; + height: auto; + margin-right: 0; + margin-left: 0; + zoom: 1; + display: block; + box-sizing: border-box; +} +.ant-row::before, +.ant-row::after { + display: table; + content: ''; +} +.ant-row::after { + clear: both; +} +.ant-row::before, +.ant-row::after { + display: table; + content: ''; +} +.ant-row::after { + clear: both; +} +.ant-row + .ant-row::before { + clear: both; +} +.ant-row-flex { + display: flex; + flex-flow: row wrap; +} +.ant-row-flex::before, +.ant-row-flex::after { + display: flex; +} +.ant-row-flex-start { + justify-content: flex-start; +} +.ant-row-flex-center { + justify-content: center; +} +.ant-row-flex-end { + justify-content: flex-end; +} +.ant-row-flex-space-between { + justify-content: space-between; +} +.ant-row-flex-space-around { + justify-content: space-around; +} +.ant-row-flex-top { + align-items: flex-start; +} +.ant-row-flex-middle { + align-items: center; +} +.ant-row-flex-bottom { + align-items: flex-end; +} +.ant-col { + position: relative; + min-height: 1px; +} +.ant-col-1, +.ant-col-xs-1, +.ant-col-sm-1, +.ant-col-md-1, +.ant-col-lg-1, +.ant-col-2, +.ant-col-xs-2, +.ant-col-sm-2, +.ant-col-md-2, +.ant-col-lg-2, +.ant-col-3, +.ant-col-xs-3, +.ant-col-sm-3, +.ant-col-md-3, +.ant-col-lg-3, +.ant-col-4, +.ant-col-xs-4, +.ant-col-sm-4, +.ant-col-md-4, +.ant-col-lg-4, +.ant-col-5, +.ant-col-xs-5, +.ant-col-sm-5, +.ant-col-md-5, +.ant-col-lg-5, +.ant-col-6, +.ant-col-xs-6, +.ant-col-sm-6, +.ant-col-md-6, +.ant-col-lg-6, +.ant-col-7, +.ant-col-xs-7, +.ant-col-sm-7, +.ant-col-md-7, +.ant-col-lg-7, +.ant-col-8, +.ant-col-xs-8, +.ant-col-sm-8, +.ant-col-md-8, +.ant-col-lg-8, +.ant-col-9, +.ant-col-xs-9, +.ant-col-sm-9, +.ant-col-md-9, +.ant-col-lg-9, +.ant-col-10, +.ant-col-xs-10, +.ant-col-sm-10, +.ant-col-md-10, +.ant-col-lg-10, +.ant-col-11, +.ant-col-xs-11, +.ant-col-sm-11, +.ant-col-md-11, +.ant-col-lg-11, +.ant-col-12, +.ant-col-xs-12, +.ant-col-sm-12, +.ant-col-md-12, +.ant-col-lg-12, +.ant-col-13, +.ant-col-xs-13, +.ant-col-sm-13, +.ant-col-md-13, +.ant-col-lg-13, +.ant-col-14, +.ant-col-xs-14, +.ant-col-sm-14, +.ant-col-md-14, +.ant-col-lg-14, +.ant-col-15, +.ant-col-xs-15, +.ant-col-sm-15, +.ant-col-md-15, +.ant-col-lg-15, +.ant-col-16, +.ant-col-xs-16, +.ant-col-sm-16, +.ant-col-md-16, +.ant-col-lg-16, +.ant-col-17, +.ant-col-xs-17, +.ant-col-sm-17, +.ant-col-md-17, +.ant-col-lg-17, +.ant-col-18, +.ant-col-xs-18, +.ant-col-sm-18, +.ant-col-md-18, +.ant-col-lg-18, +.ant-col-19, +.ant-col-xs-19, +.ant-col-sm-19, +.ant-col-md-19, +.ant-col-lg-19, +.ant-col-20, +.ant-col-xs-20, +.ant-col-sm-20, +.ant-col-md-20, +.ant-col-lg-20, +.ant-col-21, +.ant-col-xs-21, +.ant-col-sm-21, +.ant-col-md-21, +.ant-col-lg-21, +.ant-col-22, +.ant-col-xs-22, +.ant-col-sm-22, +.ant-col-md-22, +.ant-col-lg-22, +.ant-col-23, +.ant-col-xs-23, +.ant-col-sm-23, +.ant-col-md-23, +.ant-col-lg-23, +.ant-col-24, +.ant-col-xs-24, +.ant-col-sm-24, +.ant-col-md-24, +.ant-col-lg-24 { + position: relative; + padding-right: 0; + padding-left: 0; +} +.ant-col-1, +.ant-col-2, +.ant-col-3, +.ant-col-4, +.ant-col-5, +.ant-col-6, +.ant-col-7, +.ant-col-8, +.ant-col-9, +.ant-col-10, +.ant-col-11, +.ant-col-12, +.ant-col-13, +.ant-col-14, +.ant-col-15, +.ant-col-16, +.ant-col-17, +.ant-col-18, +.ant-col-19, +.ant-col-20, +.ant-col-21, +.ant-col-22, +.ant-col-23, +.ant-col-24 { + flex: 0 0 auto; + float: left; +} +.ant-col-24 { + display: block; + box-sizing: border-box; + width: 100%; +} +.ant-col-push-24 { + left: 100%; +} +.ant-col-pull-24 { + right: 100%; +} +.ant-col-offset-24 { + margin-left: 100%; +} +.ant-col-order-24 { + order: 24; +} +.ant-col-23 { + display: block; + box-sizing: border-box; + width: 95.83333333%; +} +.ant-col-push-23 { + left: 95.83333333%; +} +.ant-col-pull-23 { + right: 95.83333333%; +} +.ant-col-offset-23 { + margin-left: 95.83333333%; +} +.ant-col-order-23 { + order: 23; +} +.ant-col-22 { + display: block; + box-sizing: border-box; + width: 91.66666667%; +} +.ant-col-push-22 { + left: 91.66666667%; +} +.ant-col-pull-22 { + right: 91.66666667%; +} +.ant-col-offset-22 { + margin-left: 91.66666667%; +} +.ant-col-order-22 { + order: 22; +} +.ant-col-21 { + display: block; + box-sizing: border-box; + width: 87.5%; +} +.ant-col-push-21 { + left: 87.5%; +} +.ant-col-pull-21 { + right: 87.5%; +} +.ant-col-offset-21 { + margin-left: 87.5%; +} +.ant-col-order-21 { + order: 21; +} +.ant-col-20 { + display: block; + box-sizing: border-box; + width: 83.33333333%; +} +.ant-col-push-20 { + left: 83.33333333%; +} +.ant-col-pull-20 { + right: 83.33333333%; +} +.ant-col-offset-20 { + margin-left: 83.33333333%; +} +.ant-col-order-20 { + order: 20; +} +.ant-col-19 { + display: block; + box-sizing: border-box; + width: 79.16666667%; +} +.ant-col-push-19 { + left: 79.16666667%; +} +.ant-col-pull-19 { + right: 79.16666667%; +} +.ant-col-offset-19 { + margin-left: 79.16666667%; +} +.ant-col-order-19 { + order: 19; +} +.ant-col-18 { + display: block; + box-sizing: border-box; + width: 75%; +} +.ant-col-push-18 { + left: 75%; +} +.ant-col-pull-18 { + right: 75%; +} +.ant-col-offset-18 { + margin-left: 75%; +} +.ant-col-order-18 { + order: 18; +} +.ant-col-17 { + display: block; + box-sizing: border-box; + width: 70.83333333%; +} +.ant-col-push-17 { + left: 70.83333333%; +} +.ant-col-pull-17 { + right: 70.83333333%; +} +.ant-col-offset-17 { + margin-left: 70.83333333%; +} +.ant-col-order-17 { + order: 17; +} +.ant-col-16 { + display: block; + box-sizing: border-box; + width: 66.66666667%; +} +.ant-col-push-16 { + left: 66.66666667%; +} +.ant-col-pull-16 { + right: 66.66666667%; +} +.ant-col-offset-16 { + margin-left: 66.66666667%; +} +.ant-col-order-16 { + order: 16; +} +.ant-col-15 { + display: block; + box-sizing: border-box; + width: 62.5%; +} +.ant-col-push-15 { + left: 62.5%; +} +.ant-col-pull-15 { + right: 62.5%; +} +.ant-col-offset-15 { + margin-left: 62.5%; +} +.ant-col-order-15 { + order: 15; +} +.ant-col-14 { + display: block; + box-sizing: border-box; + width: 58.33333333%; +} +.ant-col-push-14 { + left: 58.33333333%; +} +.ant-col-pull-14 { + right: 58.33333333%; +} +.ant-col-offset-14 { + margin-left: 58.33333333%; +} +.ant-col-order-14 { + order: 14; +} +.ant-col-13 { + display: block; + box-sizing: border-box; + width: 54.16666667%; +} +.ant-col-push-13 { + left: 54.16666667%; +} +.ant-col-pull-13 { + right: 54.16666667%; +} +.ant-col-offset-13 { + margin-left: 54.16666667%; +} +.ant-col-order-13 { + order: 13; +} +.ant-col-12 { + display: block; + box-sizing: border-box; + width: 50%; +} +.ant-col-push-12 { + left: 50%; +} +.ant-col-pull-12 { + right: 50%; +} +.ant-col-offset-12 { + margin-left: 50%; +} +.ant-col-order-12 { + order: 12; +} +.ant-col-11 { + display: block; + box-sizing: border-box; + width: 45.83333333%; +} +.ant-col-push-11 { + left: 45.83333333%; +} +.ant-col-pull-11 { + right: 45.83333333%; +} +.ant-col-offset-11 { + margin-left: 45.83333333%; +} +.ant-col-order-11 { + order: 11; +} +.ant-col-10 { + display: block; + box-sizing: border-box; + width: 41.66666667%; +} +.ant-col-push-10 { + left: 41.66666667%; +} +.ant-col-pull-10 { + right: 41.66666667%; +} +.ant-col-offset-10 { + margin-left: 41.66666667%; +} +.ant-col-order-10 { + order: 10; +} +.ant-col-9 { + display: block; + box-sizing: border-box; + width: 37.5%; +} +.ant-col-push-9 { + left: 37.5%; +} +.ant-col-pull-9 { + right: 37.5%; +} +.ant-col-offset-9 { + margin-left: 37.5%; +} +.ant-col-order-9 { + order: 9; +} +.ant-col-8 { + display: block; + box-sizing: border-box; + width: 33.33333333%; +} +.ant-col-push-8 { + left: 33.33333333%; +} +.ant-col-pull-8 { + right: 33.33333333%; +} +.ant-col-offset-8 { + margin-left: 33.33333333%; +} +.ant-col-order-8 { + order: 8; +} +.ant-col-7 { + display: block; + box-sizing: border-box; + width: 29.16666667%; +} +.ant-col-push-7 { + left: 29.16666667%; +} +.ant-col-pull-7 { + right: 29.16666667%; +} +.ant-col-offset-7 { + margin-left: 29.16666667%; +} +.ant-col-order-7 { + order: 7; +} +.ant-col-6 { + display: block; + box-sizing: border-box; + width: 25%; +} +.ant-col-push-6 { + left: 25%; +} +.ant-col-pull-6 { + right: 25%; +} +.ant-col-offset-6 { + margin-left: 25%; +} +.ant-col-order-6 { + order: 6; +} +.ant-col-5 { + display: block; + box-sizing: border-box; + width: 20.83333333%; +} +.ant-col-push-5 { + left: 20.83333333%; +} +.ant-col-pull-5 { + right: 20.83333333%; +} +.ant-col-offset-5 { + margin-left: 20.83333333%; +} +.ant-col-order-5 { + order: 5; +} +.ant-col-4 { + display: block; + box-sizing: border-box; + width: 16.66666667%; +} +.ant-col-push-4 { + left: 16.66666667%; +} +.ant-col-pull-4 { + right: 16.66666667%; +} +.ant-col-offset-4 { + margin-left: 16.66666667%; +} +.ant-col-order-4 { + order: 4; +} +.ant-col-3 { + display: block; + box-sizing: border-box; + width: 12.5%; +} +.ant-col-push-3 { + left: 12.5%; +} +.ant-col-pull-3 { + right: 12.5%; +} +.ant-col-offset-3 { + margin-left: 12.5%; +} +.ant-col-order-3 { + order: 3; +} +.ant-col-2 { + display: block; + box-sizing: border-box; + width: 8.33333333%; +} +.ant-col-push-2 { + left: 8.33333333%; +} +.ant-col-pull-2 { + right: 8.33333333%; +} +.ant-col-offset-2 { + margin-left: 8.33333333%; +} +.ant-col-order-2 { + order: 2; +} +.ant-col-1 { + display: block; + box-sizing: border-box; + width: 4.16666667%; +} +.ant-col-push-1 { + left: 4.16666667%; +} +.ant-col-pull-1 { + right: 4.16666667%; +} +.ant-col-offset-1 { + margin-left: 4.16666667%; +} +.ant-col-order-1 { + order: 1; +} +.ant-col-0 { + display: none; +} +.ant-col-push-0 { + left: auto; +} +.ant-col-pull-0 { + right: auto; +} +.ant-col-push-0 { + left: auto; +} +.ant-col-pull-0 { + right: auto; +} +.ant-col-offset-0 { + margin-left: 0; +} +.ant-col-order-0 { + order: 0; +} +.ant-col-xs-1, +.ant-col-xs-2, +.ant-col-xs-3, +.ant-col-xs-4, +.ant-col-xs-5, +.ant-col-xs-6, +.ant-col-xs-7, +.ant-col-xs-8, +.ant-col-xs-9, +.ant-col-xs-10, +.ant-col-xs-11, +.ant-col-xs-12, +.ant-col-xs-13, +.ant-col-xs-14, +.ant-col-xs-15, +.ant-col-xs-16, +.ant-col-xs-17, +.ant-col-xs-18, +.ant-col-xs-19, +.ant-col-xs-20, +.ant-col-xs-21, +.ant-col-xs-22, +.ant-col-xs-23, +.ant-col-xs-24 { + flex: 0 0 auto; + float: left; +} +.ant-col-xs-24 { + display: block; + box-sizing: border-box; + width: 100%; +} +.ant-col-xs-push-24 { + left: 100%; +} +.ant-col-xs-pull-24 { + right: 100%; +} +.ant-col-xs-offset-24 { + margin-left: 100%; +} +.ant-col-xs-order-24 { + order: 24; +} +.ant-col-xs-23 { + display: block; + box-sizing: border-box; + width: 95.83333333%; +} +.ant-col-xs-push-23 { + left: 95.83333333%; +} +.ant-col-xs-pull-23 { + right: 95.83333333%; +} +.ant-col-xs-offset-23 { + margin-left: 95.83333333%; +} +.ant-col-xs-order-23 { + order: 23; +} +.ant-col-xs-22 { + display: block; + box-sizing: border-box; + width: 91.66666667%; +} +.ant-col-xs-push-22 { + left: 91.66666667%; +} +.ant-col-xs-pull-22 { + right: 91.66666667%; +} +.ant-col-xs-offset-22 { + margin-left: 91.66666667%; +} +.ant-col-xs-order-22 { + order: 22; +} +.ant-col-xs-21 { + display: block; + box-sizing: border-box; + width: 87.5%; +} +.ant-col-xs-push-21 { + left: 87.5%; +} +.ant-col-xs-pull-21 { + right: 87.5%; +} +.ant-col-xs-offset-21 { + margin-left: 87.5%; +} +.ant-col-xs-order-21 { + order: 21; +} +.ant-col-xs-20 { + display: block; + box-sizing: border-box; + width: 83.33333333%; +} +.ant-col-xs-push-20 { + left: 83.33333333%; +} +.ant-col-xs-pull-20 { + right: 83.33333333%; +} +.ant-col-xs-offset-20 { + margin-left: 83.33333333%; +} +.ant-col-xs-order-20 { + order: 20; +} +.ant-col-xs-19 { + display: block; + box-sizing: border-box; + width: 79.16666667%; +} +.ant-col-xs-push-19 { + left: 79.16666667%; +} +.ant-col-xs-pull-19 { + right: 79.16666667%; +} +.ant-col-xs-offset-19 { + margin-left: 79.16666667%; +} +.ant-col-xs-order-19 { + order: 19; +} +.ant-col-xs-18 { + display: block; + box-sizing: border-box; + width: 75%; +} +.ant-col-xs-push-18 { + left: 75%; +} +.ant-col-xs-pull-18 { + right: 75%; +} +.ant-col-xs-offset-18 { + margin-left: 75%; +} +.ant-col-xs-order-18 { + order: 18; +} +.ant-col-xs-17 { + display: block; + box-sizing: border-box; + width: 70.83333333%; +} +.ant-col-xs-push-17 { + left: 70.83333333%; +} +.ant-col-xs-pull-17 { + right: 70.83333333%; +} +.ant-col-xs-offset-17 { + margin-left: 70.83333333%; +} +.ant-col-xs-order-17 { + order: 17; +} +.ant-col-xs-16 { + display: block; + box-sizing: border-box; + width: 66.66666667%; +} +.ant-col-xs-push-16 { + left: 66.66666667%; +} +.ant-col-xs-pull-16 { + right: 66.66666667%; +} +.ant-col-xs-offset-16 { + margin-left: 66.66666667%; +} +.ant-col-xs-order-16 { + order: 16; +} +.ant-col-xs-15 { + display: block; + box-sizing: border-box; + width: 62.5%; +} +.ant-col-xs-push-15 { + left: 62.5%; +} +.ant-col-xs-pull-15 { + right: 62.5%; +} +.ant-col-xs-offset-15 { + margin-left: 62.5%; +} +.ant-col-xs-order-15 { + order: 15; +} +.ant-col-xs-14 { + display: block; + box-sizing: border-box; + width: 58.33333333%; +} +.ant-col-xs-push-14 { + left: 58.33333333%; +} +.ant-col-xs-pull-14 { + right: 58.33333333%; +} +.ant-col-xs-offset-14 { + margin-left: 58.33333333%; +} +.ant-col-xs-order-14 { + order: 14; +} +.ant-col-xs-13 { + display: block; + box-sizing: border-box; + width: 54.16666667%; +} +.ant-col-xs-push-13 { + left: 54.16666667%; +} +.ant-col-xs-pull-13 { + right: 54.16666667%; +} +.ant-col-xs-offset-13 { + margin-left: 54.16666667%; +} +.ant-col-xs-order-13 { + order: 13; +} +.ant-col-xs-12 { + display: block; + box-sizing: border-box; + width: 50%; +} +.ant-col-xs-push-12 { + left: 50%; +} +.ant-col-xs-pull-12 { + right: 50%; +} +.ant-col-xs-offset-12 { + margin-left: 50%; +} +.ant-col-xs-order-12 { + order: 12; +} +.ant-col-xs-11 { + display: block; + box-sizing: border-box; + width: 45.83333333%; +} +.ant-col-xs-push-11 { + left: 45.83333333%; +} +.ant-col-xs-pull-11 { + right: 45.83333333%; +} +.ant-col-xs-offset-11 { + margin-left: 45.83333333%; +} +.ant-col-xs-order-11 { + order: 11; +} +.ant-col-xs-10 { + display: block; + box-sizing: border-box; + width: 41.66666667%; +} +.ant-col-xs-push-10 { + left: 41.66666667%; +} +.ant-col-xs-pull-10 { + right: 41.66666667%; +} +.ant-col-xs-offset-10 { + margin-left: 41.66666667%; +} +.ant-col-xs-order-10 { + order: 10; +} +.ant-col-xs-9 { + display: block; + box-sizing: border-box; + width: 37.5%; +} +.ant-col-xs-push-9 { + left: 37.5%; +} +.ant-col-xs-pull-9 { + right: 37.5%; +} +.ant-col-xs-offset-9 { + margin-left: 37.5%; +} +.ant-col-xs-order-9 { + order: 9; +} +.ant-col-xs-8 { + display: block; + box-sizing: border-box; + width: 33.33333333%; +} +.ant-col-xs-push-8 { + left: 33.33333333%; +} +.ant-col-xs-pull-8 { + right: 33.33333333%; +} +.ant-col-xs-offset-8 { + margin-left: 33.33333333%; +} +.ant-col-xs-order-8 { + order: 8; +} +.ant-col-xs-7 { + display: block; + box-sizing: border-box; + width: 29.16666667%; +} +.ant-col-xs-push-7 { + left: 29.16666667%; +} +.ant-col-xs-pull-7 { + right: 29.16666667%; +} +.ant-col-xs-offset-7 { + margin-left: 29.16666667%; +} +.ant-col-xs-order-7 { + order: 7; +} +.ant-col-xs-6 { + display: block; + box-sizing: border-box; + width: 25%; +} +.ant-col-xs-push-6 { + left: 25%; +} +.ant-col-xs-pull-6 { + right: 25%; +} +.ant-col-xs-offset-6 { + margin-left: 25%; +} +.ant-col-xs-order-6 { + order: 6; +} +.ant-col-xs-5 { + display: block; + box-sizing: border-box; + width: 20.83333333%; +} +.ant-col-xs-push-5 { + left: 20.83333333%; +} +.ant-col-xs-pull-5 { + right: 20.83333333%; +} +.ant-col-xs-offset-5 { + margin-left: 20.83333333%; +} +.ant-col-xs-order-5 { + order: 5; +} +.ant-col-xs-4 { + display: block; + box-sizing: border-box; + width: 16.66666667%; +} +.ant-col-xs-push-4 { + left: 16.66666667%; +} +.ant-col-xs-pull-4 { + right: 16.66666667%; +} +.ant-col-xs-offset-4 { + margin-left: 16.66666667%; +} +.ant-col-xs-order-4 { + order: 4; +} +.ant-col-xs-3 { + display: block; + box-sizing: border-box; + width: 12.5%; +} +.ant-col-xs-push-3 { + left: 12.5%; +} +.ant-col-xs-pull-3 { + right: 12.5%; +} +.ant-col-xs-offset-3 { + margin-left: 12.5%; +} +.ant-col-xs-order-3 { + order: 3; +} +.ant-col-xs-2 { + display: block; + box-sizing: border-box; + width: 8.33333333%; +} +.ant-col-xs-push-2 { + left: 8.33333333%; +} +.ant-col-xs-pull-2 { + right: 8.33333333%; +} +.ant-col-xs-offset-2 { + margin-left: 8.33333333%; +} +.ant-col-xs-order-2 { + order: 2; +} +.ant-col-xs-1 { + display: block; + box-sizing: border-box; + width: 4.16666667%; +} +.ant-col-xs-push-1 { + left: 4.16666667%; +} +.ant-col-xs-pull-1 { + right: 4.16666667%; +} +.ant-col-xs-offset-1 { + margin-left: 4.16666667%; +} +.ant-col-xs-order-1 { + order: 1; +} +.ant-col-xs-0 { + display: none; +} +.ant-col-push-0 { + left: auto; +} +.ant-col-pull-0 { + right: auto; +} +.ant-col-xs-push-0 { + left: auto; +} +.ant-col-xs-pull-0 { + right: auto; +} +.ant-col-xs-offset-0 { + margin-left: 0; +} +.ant-col-xs-order-0 { + order: 0; +} +@media (min-width: 576px) { + .ant-col-sm-1, + .ant-col-sm-2, + .ant-col-sm-3, + .ant-col-sm-4, + .ant-col-sm-5, + .ant-col-sm-6, + .ant-col-sm-7, + .ant-col-sm-8, + .ant-col-sm-9, + .ant-col-sm-10, + .ant-col-sm-11, + .ant-col-sm-12, + .ant-col-sm-13, + .ant-col-sm-14, + .ant-col-sm-15, + .ant-col-sm-16, + .ant-col-sm-17, + .ant-col-sm-18, + .ant-col-sm-19, + .ant-col-sm-20, + .ant-col-sm-21, + .ant-col-sm-22, + .ant-col-sm-23, + .ant-col-sm-24 { + flex: 0 0 auto; + float: left; + } + .ant-col-sm-24 { + display: block; + box-sizing: border-box; + width: 100%; + } + .ant-col-sm-push-24 { + left: 100%; + } + .ant-col-sm-pull-24 { + right: 100%; + } + .ant-col-sm-offset-24 { + margin-left: 100%; + } + .ant-col-sm-order-24 { + order: 24; + } + .ant-col-sm-23 { + display: block; + box-sizing: border-box; + width: 95.83333333%; + } + .ant-col-sm-push-23 { + left: 95.83333333%; + } + .ant-col-sm-pull-23 { + right: 95.83333333%; + } + .ant-col-sm-offset-23 { + margin-left: 95.83333333%; + } + .ant-col-sm-order-23 { + order: 23; + } + .ant-col-sm-22 { + display: block; + box-sizing: border-box; + width: 91.66666667%; + } + .ant-col-sm-push-22 { + left: 91.66666667%; + } + .ant-col-sm-pull-22 { + right: 91.66666667%; + } + .ant-col-sm-offset-22 { + margin-left: 91.66666667%; + } + .ant-col-sm-order-22 { + order: 22; + } + .ant-col-sm-21 { + display: block; + box-sizing: border-box; + width: 87.5%; + } + .ant-col-sm-push-21 { + left: 87.5%; + } + .ant-col-sm-pull-21 { + right: 87.5%; + } + .ant-col-sm-offset-21 { + margin-left: 87.5%; + } + .ant-col-sm-order-21 { + order: 21; + } + .ant-col-sm-20 { + display: block; + box-sizing: border-box; + width: 83.33333333%; + } + .ant-col-sm-push-20 { + left: 83.33333333%; + } + .ant-col-sm-pull-20 { + right: 83.33333333%; + } + .ant-col-sm-offset-20 { + margin-left: 83.33333333%; + } + .ant-col-sm-order-20 { + order: 20; + } + .ant-col-sm-19 { + display: block; + box-sizing: border-box; + width: 79.16666667%; + } + .ant-col-sm-push-19 { + left: 79.16666667%; + } + .ant-col-sm-pull-19 { + right: 79.16666667%; + } + .ant-col-sm-offset-19 { + margin-left: 79.16666667%; + } + .ant-col-sm-order-19 { + order: 19; + } + .ant-col-sm-18 { + display: block; + box-sizing: border-box; + width: 75%; + } + .ant-col-sm-push-18 { + left: 75%; + } + .ant-col-sm-pull-18 { + right: 75%; + } + .ant-col-sm-offset-18 { + margin-left: 75%; + } + .ant-col-sm-order-18 { + order: 18; + } + .ant-col-sm-17 { + display: block; + box-sizing: border-box; + width: 70.83333333%; + } + .ant-col-sm-push-17 { + left: 70.83333333%; + } + .ant-col-sm-pull-17 { + right: 70.83333333%; + } + .ant-col-sm-offset-17 { + margin-left: 70.83333333%; + } + .ant-col-sm-order-17 { + order: 17; + } + .ant-col-sm-16 { + display: block; + box-sizing: border-box; + width: 66.66666667%; + } + .ant-col-sm-push-16 { + left: 66.66666667%; + } + .ant-col-sm-pull-16 { + right: 66.66666667%; + } + .ant-col-sm-offset-16 { + margin-left: 66.66666667%; + } + .ant-col-sm-order-16 { + order: 16; + } + .ant-col-sm-15 { + display: block; + box-sizing: border-box; + width: 62.5%; + } + .ant-col-sm-push-15 { + left: 62.5%; + } + .ant-col-sm-pull-15 { + right: 62.5%; + } + .ant-col-sm-offset-15 { + margin-left: 62.5%; + } + .ant-col-sm-order-15 { + order: 15; + } + .ant-col-sm-14 { + display: block; + box-sizing: border-box; + width: 58.33333333%; + } + .ant-col-sm-push-14 { + left: 58.33333333%; + } + .ant-col-sm-pull-14 { + right: 58.33333333%; + } + .ant-col-sm-offset-14 { + margin-left: 58.33333333%; + } + .ant-col-sm-order-14 { + order: 14; + } + .ant-col-sm-13 { + display: block; + box-sizing: border-box; + width: 54.16666667%; + } + .ant-col-sm-push-13 { + left: 54.16666667%; + } + .ant-col-sm-pull-13 { + right: 54.16666667%; + } + .ant-col-sm-offset-13 { + margin-left: 54.16666667%; + } + .ant-col-sm-order-13 { + order: 13; + } + .ant-col-sm-12 { + display: block; + box-sizing: border-box; + width: 50%; + } + .ant-col-sm-push-12 { + left: 50%; + } + .ant-col-sm-pull-12 { + right: 50%; + } + .ant-col-sm-offset-12 { + margin-left: 50%; + } + .ant-col-sm-order-12 { + order: 12; + } + .ant-col-sm-11 { + display: block; + box-sizing: border-box; + width: 45.83333333%; + } + .ant-col-sm-push-11 { + left: 45.83333333%; + } + .ant-col-sm-pull-11 { + right: 45.83333333%; + } + .ant-col-sm-offset-11 { + margin-left: 45.83333333%; + } + .ant-col-sm-order-11 { + order: 11; + } + .ant-col-sm-10 { + display: block; + box-sizing: border-box; + width: 41.66666667%; + } + .ant-col-sm-push-10 { + left: 41.66666667%; + } + .ant-col-sm-pull-10 { + right: 41.66666667%; + } + .ant-col-sm-offset-10 { + margin-left: 41.66666667%; + } + .ant-col-sm-order-10 { + order: 10; + } + .ant-col-sm-9 { + display: block; + box-sizing: border-box; + width: 37.5%; + } + .ant-col-sm-push-9 { + left: 37.5%; + } + .ant-col-sm-pull-9 { + right: 37.5%; + } + .ant-col-sm-offset-9 { + margin-left: 37.5%; + } + .ant-col-sm-order-9 { + order: 9; + } + .ant-col-sm-8 { + display: block; + box-sizing: border-box; + width: 33.33333333%; + } + .ant-col-sm-push-8 { + left: 33.33333333%; + } + .ant-col-sm-pull-8 { + right: 33.33333333%; + } + .ant-col-sm-offset-8 { + margin-left: 33.33333333%; + } + .ant-col-sm-order-8 { + order: 8; + } + .ant-col-sm-7 { + display: block; + box-sizing: border-box; + width: 29.16666667%; + } + .ant-col-sm-push-7 { + left: 29.16666667%; + } + .ant-col-sm-pull-7 { + right: 29.16666667%; + } + .ant-col-sm-offset-7 { + margin-left: 29.16666667%; + } + .ant-col-sm-order-7 { + order: 7; + } + .ant-col-sm-6 { + display: block; + box-sizing: border-box; + width: 25%; + } + .ant-col-sm-push-6 { + left: 25%; + } + .ant-col-sm-pull-6 { + right: 25%; + } + .ant-col-sm-offset-6 { + margin-left: 25%; + } + .ant-col-sm-order-6 { + order: 6; + } + .ant-col-sm-5 { + display: block; + box-sizing: border-box; + width: 20.83333333%; + } + .ant-col-sm-push-5 { + left: 20.83333333%; + } + .ant-col-sm-pull-5 { + right: 20.83333333%; + } + .ant-col-sm-offset-5 { + margin-left: 20.83333333%; + } + .ant-col-sm-order-5 { + order: 5; + } + .ant-col-sm-4 { + display: block; + box-sizing: border-box; + width: 16.66666667%; + } + .ant-col-sm-push-4 { + left: 16.66666667%; + } + .ant-col-sm-pull-4 { + right: 16.66666667%; + } + .ant-col-sm-offset-4 { + margin-left: 16.66666667%; + } + .ant-col-sm-order-4 { + order: 4; + } + .ant-col-sm-3 { + display: block; + box-sizing: border-box; + width: 12.5%; + } + .ant-col-sm-push-3 { + left: 12.5%; + } + .ant-col-sm-pull-3 { + right: 12.5%; + } + .ant-col-sm-offset-3 { + margin-left: 12.5%; + } + .ant-col-sm-order-3 { + order: 3; + } + .ant-col-sm-2 { + display: block; + box-sizing: border-box; + width: 8.33333333%; + } + .ant-col-sm-push-2 { + left: 8.33333333%; + } + .ant-col-sm-pull-2 { + right: 8.33333333%; + } + .ant-col-sm-offset-2 { + margin-left: 8.33333333%; + } + .ant-col-sm-order-2 { + order: 2; + } + .ant-col-sm-1 { + display: block; + box-sizing: border-box; + width: 4.16666667%; + } + .ant-col-sm-push-1 { + left: 4.16666667%; + } + .ant-col-sm-pull-1 { + right: 4.16666667%; + } + .ant-col-sm-offset-1 { + margin-left: 4.16666667%; + } + .ant-col-sm-order-1 { + order: 1; + } + .ant-col-sm-0 { + display: none; + } + .ant-col-push-0 { + left: auto; + } + .ant-col-pull-0 { + right: auto; + } + .ant-col-sm-push-0 { + left: auto; + } + .ant-col-sm-pull-0 { + right: auto; + } + .ant-col-sm-offset-0 { + margin-left: 0; + } + .ant-col-sm-order-0 { + order: 0; + } +} +@media (min-width: 768px) { + .ant-col-md-1, + .ant-col-md-2, + .ant-col-md-3, + .ant-col-md-4, + .ant-col-md-5, + .ant-col-md-6, + .ant-col-md-7, + .ant-col-md-8, + .ant-col-md-9, + .ant-col-md-10, + .ant-col-md-11, + .ant-col-md-12, + .ant-col-md-13, + .ant-col-md-14, + .ant-col-md-15, + .ant-col-md-16, + .ant-col-md-17, + .ant-col-md-18, + .ant-col-md-19, + .ant-col-md-20, + .ant-col-md-21, + .ant-col-md-22, + .ant-col-md-23, + .ant-col-md-24 { + flex: 0 0 auto; + float: left; + } + .ant-col-md-24 { + display: block; + box-sizing: border-box; + width: 100%; + } + .ant-col-md-push-24 { + left: 100%; + } + .ant-col-md-pull-24 { + right: 100%; + } + .ant-col-md-offset-24 { + margin-left: 100%; + } + .ant-col-md-order-24 { + order: 24; + } + .ant-col-md-23 { + display: block; + box-sizing: border-box; + width: 95.83333333%; + } + .ant-col-md-push-23 { + left: 95.83333333%; + } + .ant-col-md-pull-23 { + right: 95.83333333%; + } + .ant-col-md-offset-23 { + margin-left: 95.83333333%; + } + .ant-col-md-order-23 { + order: 23; + } + .ant-col-md-22 { + display: block; + box-sizing: border-box; + width: 91.66666667%; + } + .ant-col-md-push-22 { + left: 91.66666667%; + } + .ant-col-md-pull-22 { + right: 91.66666667%; + } + .ant-col-md-offset-22 { + margin-left: 91.66666667%; + } + .ant-col-md-order-22 { + order: 22; + } + .ant-col-md-21 { + display: block; + box-sizing: border-box; + width: 87.5%; + } + .ant-col-md-push-21 { + left: 87.5%; + } + .ant-col-md-pull-21 { + right: 87.5%; + } + .ant-col-md-offset-21 { + margin-left: 87.5%; + } + .ant-col-md-order-21 { + order: 21; + } + .ant-col-md-20 { + display: block; + box-sizing: border-box; + width: 83.33333333%; + } + .ant-col-md-push-20 { + left: 83.33333333%; + } + .ant-col-md-pull-20 { + right: 83.33333333%; + } + .ant-col-md-offset-20 { + margin-left: 83.33333333%; + } + .ant-col-md-order-20 { + order: 20; + } + .ant-col-md-19 { + display: block; + box-sizing: border-box; + width: 79.16666667%; + } + .ant-col-md-push-19 { + left: 79.16666667%; + } + .ant-col-md-pull-19 { + right: 79.16666667%; + } + .ant-col-md-offset-19 { + margin-left: 79.16666667%; + } + .ant-col-md-order-19 { + order: 19; + } + .ant-col-md-18 { + display: block; + box-sizing: border-box; + width: 75%; + } + .ant-col-md-push-18 { + left: 75%; + } + .ant-col-md-pull-18 { + right: 75%; + } + .ant-col-md-offset-18 { + margin-left: 75%; + } + .ant-col-md-order-18 { + order: 18; + } + .ant-col-md-17 { + display: block; + box-sizing: border-box; + width: 70.83333333%; + } + .ant-col-md-push-17 { + left: 70.83333333%; + } + .ant-col-md-pull-17 { + right: 70.83333333%; + } + .ant-col-md-offset-17 { + margin-left: 70.83333333%; + } + .ant-col-md-order-17 { + order: 17; + } + .ant-col-md-16 { + display: block; + box-sizing: border-box; + width: 66.66666667%; + } + .ant-col-md-push-16 { + left: 66.66666667%; + } + .ant-col-md-pull-16 { + right: 66.66666667%; + } + .ant-col-md-offset-16 { + margin-left: 66.66666667%; + } + .ant-col-md-order-16 { + order: 16; + } + .ant-col-md-15 { + display: block; + box-sizing: border-box; + width: 62.5%; + } + .ant-col-md-push-15 { + left: 62.5%; + } + .ant-col-md-pull-15 { + right: 62.5%; + } + .ant-col-md-offset-15 { + margin-left: 62.5%; + } + .ant-col-md-order-15 { + order: 15; + } + .ant-col-md-14 { + display: block; + box-sizing: border-box; + width: 58.33333333%; + } + .ant-col-md-push-14 { + left: 58.33333333%; + } + .ant-col-md-pull-14 { + right: 58.33333333%; + } + .ant-col-md-offset-14 { + margin-left: 58.33333333%; + } + .ant-col-md-order-14 { + order: 14; + } + .ant-col-md-13 { + display: block; + box-sizing: border-box; + width: 54.16666667%; + } + .ant-col-md-push-13 { + left: 54.16666667%; + } + .ant-col-md-pull-13 { + right: 54.16666667%; + } + .ant-col-md-offset-13 { + margin-left: 54.16666667%; + } + .ant-col-md-order-13 { + order: 13; + } + .ant-col-md-12 { + display: block; + box-sizing: border-box; + width: 50%; + } + .ant-col-md-push-12 { + left: 50%; + } + .ant-col-md-pull-12 { + right: 50%; + } + .ant-col-md-offset-12 { + margin-left: 50%; + } + .ant-col-md-order-12 { + order: 12; + } + .ant-col-md-11 { + display: block; + box-sizing: border-box; + width: 45.83333333%; + } + .ant-col-md-push-11 { + left: 45.83333333%; + } + .ant-col-md-pull-11 { + right: 45.83333333%; + } + .ant-col-md-offset-11 { + margin-left: 45.83333333%; + } + .ant-col-md-order-11 { + order: 11; + } + .ant-col-md-10 { + display: block; + box-sizing: border-box; + width: 41.66666667%; + } + .ant-col-md-push-10 { + left: 41.66666667%; + } + .ant-col-md-pull-10 { + right: 41.66666667%; + } + .ant-col-md-offset-10 { + margin-left: 41.66666667%; + } + .ant-col-md-order-10 { + order: 10; + } + .ant-col-md-9 { + display: block; + box-sizing: border-box; + width: 37.5%; + } + .ant-col-md-push-9 { + left: 37.5%; + } + .ant-col-md-pull-9 { + right: 37.5%; + } + .ant-col-md-offset-9 { + margin-left: 37.5%; + } + .ant-col-md-order-9 { + order: 9; + } + .ant-col-md-8 { + display: block; + box-sizing: border-box; + width: 33.33333333%; + } + .ant-col-md-push-8 { + left: 33.33333333%; + } + .ant-col-md-pull-8 { + right: 33.33333333%; + } + .ant-col-md-offset-8 { + margin-left: 33.33333333%; + } + .ant-col-md-order-8 { + order: 8; + } + .ant-col-md-7 { + display: block; + box-sizing: border-box; + width: 29.16666667%; + } + .ant-col-md-push-7 { + left: 29.16666667%; + } + .ant-col-md-pull-7 { + right: 29.16666667%; + } + .ant-col-md-offset-7 { + margin-left: 29.16666667%; + } + .ant-col-md-order-7 { + order: 7; + } + .ant-col-md-6 { + display: block; + box-sizing: border-box; + width: 25%; + } + .ant-col-md-push-6 { + left: 25%; + } + .ant-col-md-pull-6 { + right: 25%; + } + .ant-col-md-offset-6 { + margin-left: 25%; + } + .ant-col-md-order-6 { + order: 6; + } + .ant-col-md-5 { + display: block; + box-sizing: border-box; + width: 20.83333333%; + } + .ant-col-md-push-5 { + left: 20.83333333%; + } + .ant-col-md-pull-5 { + right: 20.83333333%; + } + .ant-col-md-offset-5 { + margin-left: 20.83333333%; + } + .ant-col-md-order-5 { + order: 5; + } + .ant-col-md-4 { + display: block; + box-sizing: border-box; + width: 16.66666667%; + } + .ant-col-md-push-4 { + left: 16.66666667%; + } + .ant-col-md-pull-4 { + right: 16.66666667%; + } + .ant-col-md-offset-4 { + margin-left: 16.66666667%; + } + .ant-col-md-order-4 { + order: 4; + } + .ant-col-md-3 { + display: block; + box-sizing: border-box; + width: 12.5%; + } + .ant-col-md-push-3 { + left: 12.5%; + } + .ant-col-md-pull-3 { + right: 12.5%; + } + .ant-col-md-offset-3 { + margin-left: 12.5%; + } + .ant-col-md-order-3 { + order: 3; + } + .ant-col-md-2 { + display: block; + box-sizing: border-box; + width: 8.33333333%; + } + .ant-col-md-push-2 { + left: 8.33333333%; + } + .ant-col-md-pull-2 { + right: 8.33333333%; + } + .ant-col-md-offset-2 { + margin-left: 8.33333333%; + } + .ant-col-md-order-2 { + order: 2; + } + .ant-col-md-1 { + display: block; + box-sizing: border-box; + width: 4.16666667%; + } + .ant-col-md-push-1 { + left: 4.16666667%; + } + .ant-col-md-pull-1 { + right: 4.16666667%; + } + .ant-col-md-offset-1 { + margin-left: 4.16666667%; + } + .ant-col-md-order-1 { + order: 1; + } + .ant-col-md-0 { + display: none; + } + .ant-col-push-0 { + left: auto; + } + .ant-col-pull-0 { + right: auto; + } + .ant-col-md-push-0 { + left: auto; + } + .ant-col-md-pull-0 { + right: auto; + } + .ant-col-md-offset-0 { + margin-left: 0; + } + .ant-col-md-order-0 { + order: 0; + } +} +@media (min-width: 992px) { + .ant-col-lg-1, + .ant-col-lg-2, + .ant-col-lg-3, + .ant-col-lg-4, + .ant-col-lg-5, + .ant-col-lg-6, + .ant-col-lg-7, + .ant-col-lg-8, + .ant-col-lg-9, + .ant-col-lg-10, + .ant-col-lg-11, + .ant-col-lg-12, + .ant-col-lg-13, + .ant-col-lg-14, + .ant-col-lg-15, + .ant-col-lg-16, + .ant-col-lg-17, + .ant-col-lg-18, + .ant-col-lg-19, + .ant-col-lg-20, + .ant-col-lg-21, + .ant-col-lg-22, + .ant-col-lg-23, + .ant-col-lg-24 { + flex: 0 0 auto; + float: left; + } + .ant-col-lg-24 { + display: block; + box-sizing: border-box; + width: 100%; + } + .ant-col-lg-push-24 { + left: 100%; + } + .ant-col-lg-pull-24 { + right: 100%; + } + .ant-col-lg-offset-24 { + margin-left: 100%; + } + .ant-col-lg-order-24 { + order: 24; + } + .ant-col-lg-23 { + display: block; + box-sizing: border-box; + width: 95.83333333%; + } + .ant-col-lg-push-23 { + left: 95.83333333%; + } + .ant-col-lg-pull-23 { + right: 95.83333333%; + } + .ant-col-lg-offset-23 { + margin-left: 95.83333333%; + } + .ant-col-lg-order-23 { + order: 23; + } + .ant-col-lg-22 { + display: block; + box-sizing: border-box; + width: 91.66666667%; + } + .ant-col-lg-push-22 { + left: 91.66666667%; + } + .ant-col-lg-pull-22 { + right: 91.66666667%; + } + .ant-col-lg-offset-22 { + margin-left: 91.66666667%; + } + .ant-col-lg-order-22 { + order: 22; + } + .ant-col-lg-21 { + display: block; + box-sizing: border-box; + width: 87.5%; + } + .ant-col-lg-push-21 { + left: 87.5%; + } + .ant-col-lg-pull-21 { + right: 87.5%; + } + .ant-col-lg-offset-21 { + margin-left: 87.5%; + } + .ant-col-lg-order-21 { + order: 21; + } + .ant-col-lg-20 { + display: block; + box-sizing: border-box; + width: 83.33333333%; + } + .ant-col-lg-push-20 { + left: 83.33333333%; + } + .ant-col-lg-pull-20 { + right: 83.33333333%; + } + .ant-col-lg-offset-20 { + margin-left: 83.33333333%; + } + .ant-col-lg-order-20 { + order: 20; + } + .ant-col-lg-19 { + display: block; + box-sizing: border-box; + width: 79.16666667%; + } + .ant-col-lg-push-19 { + left: 79.16666667%; + } + .ant-col-lg-pull-19 { + right: 79.16666667%; + } + .ant-col-lg-offset-19 { + margin-left: 79.16666667%; + } + .ant-col-lg-order-19 { + order: 19; + } + .ant-col-lg-18 { + display: block; + box-sizing: border-box; + width: 75%; + } + .ant-col-lg-push-18 { + left: 75%; + } + .ant-col-lg-pull-18 { + right: 75%; + } + .ant-col-lg-offset-18 { + margin-left: 75%; + } + .ant-col-lg-order-18 { + order: 18; + } + .ant-col-lg-17 { + display: block; + box-sizing: border-box; + width: 70.83333333%; + } + .ant-col-lg-push-17 { + left: 70.83333333%; + } + .ant-col-lg-pull-17 { + right: 70.83333333%; + } + .ant-col-lg-offset-17 { + margin-left: 70.83333333%; + } + .ant-col-lg-order-17 { + order: 17; + } + .ant-col-lg-16 { + display: block; + box-sizing: border-box; + width: 66.66666667%; + } + .ant-col-lg-push-16 { + left: 66.66666667%; + } + .ant-col-lg-pull-16 { + right: 66.66666667%; + } + .ant-col-lg-offset-16 { + margin-left: 66.66666667%; + } + .ant-col-lg-order-16 { + order: 16; + } + .ant-col-lg-15 { + display: block; + box-sizing: border-box; + width: 62.5%; + } + .ant-col-lg-push-15 { + left: 62.5%; + } + .ant-col-lg-pull-15 { + right: 62.5%; + } + .ant-col-lg-offset-15 { + margin-left: 62.5%; + } + .ant-col-lg-order-15 { + order: 15; + } + .ant-col-lg-14 { + display: block; + box-sizing: border-box; + width: 58.33333333%; + } + .ant-col-lg-push-14 { + left: 58.33333333%; + } + .ant-col-lg-pull-14 { + right: 58.33333333%; + } + .ant-col-lg-offset-14 { + margin-left: 58.33333333%; + } + .ant-col-lg-order-14 { + order: 14; + } + .ant-col-lg-13 { + display: block; + box-sizing: border-box; + width: 54.16666667%; + } + .ant-col-lg-push-13 { + left: 54.16666667%; + } + .ant-col-lg-pull-13 { + right: 54.16666667%; + } + .ant-col-lg-offset-13 { + margin-left: 54.16666667%; + } + .ant-col-lg-order-13 { + order: 13; + } + .ant-col-lg-12 { + display: block; + box-sizing: border-box; + width: 50%; + } + .ant-col-lg-push-12 { + left: 50%; + } + .ant-col-lg-pull-12 { + right: 50%; + } + .ant-col-lg-offset-12 { + margin-left: 50%; + } + .ant-col-lg-order-12 { + order: 12; + } + .ant-col-lg-11 { + display: block; + box-sizing: border-box; + width: 45.83333333%; + } + .ant-col-lg-push-11 { + left: 45.83333333%; + } + .ant-col-lg-pull-11 { + right: 45.83333333%; + } + .ant-col-lg-offset-11 { + margin-left: 45.83333333%; + } + .ant-col-lg-order-11 { + order: 11; + } + .ant-col-lg-10 { + display: block; + box-sizing: border-box; + width: 41.66666667%; + } + .ant-col-lg-push-10 { + left: 41.66666667%; + } + .ant-col-lg-pull-10 { + right: 41.66666667%; + } + .ant-col-lg-offset-10 { + margin-left: 41.66666667%; + } + .ant-col-lg-order-10 { + order: 10; + } + .ant-col-lg-9 { + display: block; + box-sizing: border-box; + width: 37.5%; + } + .ant-col-lg-push-9 { + left: 37.5%; + } + .ant-col-lg-pull-9 { + right: 37.5%; + } + .ant-col-lg-offset-9 { + margin-left: 37.5%; + } + .ant-col-lg-order-9 { + order: 9; + } + .ant-col-lg-8 { + display: block; + box-sizing: border-box; + width: 33.33333333%; + } + .ant-col-lg-push-8 { + left: 33.33333333%; + } + .ant-col-lg-pull-8 { + right: 33.33333333%; + } + .ant-col-lg-offset-8 { + margin-left: 33.33333333%; + } + .ant-col-lg-order-8 { + order: 8; + } + .ant-col-lg-7 { + display: block; + box-sizing: border-box; + width: 29.16666667%; + } + .ant-col-lg-push-7 { + left: 29.16666667%; + } + .ant-col-lg-pull-7 { + right: 29.16666667%; + } + .ant-col-lg-offset-7 { + margin-left: 29.16666667%; + } + .ant-col-lg-order-7 { + order: 7; + } + .ant-col-lg-6 { + display: block; + box-sizing: border-box; + width: 25%; + } + .ant-col-lg-push-6 { + left: 25%; + } + .ant-col-lg-pull-6 { + right: 25%; + } + .ant-col-lg-offset-6 { + margin-left: 25%; + } + .ant-col-lg-order-6 { + order: 6; + } + .ant-col-lg-5 { + display: block; + box-sizing: border-box; + width: 20.83333333%; + } + .ant-col-lg-push-5 { + left: 20.83333333%; + } + .ant-col-lg-pull-5 { + right: 20.83333333%; + } + .ant-col-lg-offset-5 { + margin-left: 20.83333333%; + } + .ant-col-lg-order-5 { + order: 5; + } + .ant-col-lg-4 { + display: block; + box-sizing: border-box; + width: 16.66666667%; + } + .ant-col-lg-push-4 { + left: 16.66666667%; + } + .ant-col-lg-pull-4 { + right: 16.66666667%; + } + .ant-col-lg-offset-4 { + margin-left: 16.66666667%; + } + .ant-col-lg-order-4 { + order: 4; + } + .ant-col-lg-3 { + display: block; + box-sizing: border-box; + width: 12.5%; + } + .ant-col-lg-push-3 { + left: 12.5%; + } + .ant-col-lg-pull-3 { + right: 12.5%; + } + .ant-col-lg-offset-3 { + margin-left: 12.5%; + } + .ant-col-lg-order-3 { + order: 3; + } + .ant-col-lg-2 { + display: block; + box-sizing: border-box; + width: 8.33333333%; + } + .ant-col-lg-push-2 { + left: 8.33333333%; + } + .ant-col-lg-pull-2 { + right: 8.33333333%; + } + .ant-col-lg-offset-2 { + margin-left: 8.33333333%; + } + .ant-col-lg-order-2 { + order: 2; + } + .ant-col-lg-1 { + display: block; + box-sizing: border-box; + width: 4.16666667%; + } + .ant-col-lg-push-1 { + left: 4.16666667%; + } + .ant-col-lg-pull-1 { + right: 4.16666667%; + } + .ant-col-lg-offset-1 { + margin-left: 4.16666667%; + } + .ant-col-lg-order-1 { + order: 1; + } + .ant-col-lg-0 { + display: none; + } + .ant-col-push-0 { + left: auto; + } + .ant-col-pull-0 { + right: auto; + } + .ant-col-lg-push-0 { + left: auto; + } + .ant-col-lg-pull-0 { + right: auto; + } + .ant-col-lg-offset-0 { + margin-left: 0; + } + .ant-col-lg-order-0 { + order: 0; + } +} +@media (min-width: 1200px) { + .ant-col-xl-1, + .ant-col-xl-2, + .ant-col-xl-3, + .ant-col-xl-4, + .ant-col-xl-5, + .ant-col-xl-6, + .ant-col-xl-7, + .ant-col-xl-8, + .ant-col-xl-9, + .ant-col-xl-10, + .ant-col-xl-11, + .ant-col-xl-12, + .ant-col-xl-13, + .ant-col-xl-14, + .ant-col-xl-15, + .ant-col-xl-16, + .ant-col-xl-17, + .ant-col-xl-18, + .ant-col-xl-19, + .ant-col-xl-20, + .ant-col-xl-21, + .ant-col-xl-22, + .ant-col-xl-23, + .ant-col-xl-24 { + flex: 0 0 auto; + float: left; + } + .ant-col-xl-24 { + display: block; + box-sizing: border-box; + width: 100%; + } + .ant-col-xl-push-24 { + left: 100%; + } + .ant-col-xl-pull-24 { + right: 100%; + } + .ant-col-xl-offset-24 { + margin-left: 100%; + } + .ant-col-xl-order-24 { + order: 24; + } + .ant-col-xl-23 { + display: block; + box-sizing: border-box; + width: 95.83333333%; + } + .ant-col-xl-push-23 { + left: 95.83333333%; + } + .ant-col-xl-pull-23 { + right: 95.83333333%; + } + .ant-col-xl-offset-23 { + margin-left: 95.83333333%; + } + .ant-col-xl-order-23 { + order: 23; + } + .ant-col-xl-22 { + display: block; + box-sizing: border-box; + width: 91.66666667%; + } + .ant-col-xl-push-22 { + left: 91.66666667%; + } + .ant-col-xl-pull-22 { + right: 91.66666667%; + } + .ant-col-xl-offset-22 { + margin-left: 91.66666667%; + } + .ant-col-xl-order-22 { + order: 22; + } + .ant-col-xl-21 { + display: block; + box-sizing: border-box; + width: 87.5%; + } + .ant-col-xl-push-21 { + left: 87.5%; + } + .ant-col-xl-pull-21 { + right: 87.5%; + } + .ant-col-xl-offset-21 { + margin-left: 87.5%; + } + .ant-col-xl-order-21 { + order: 21; + } + .ant-col-xl-20 { + display: block; + box-sizing: border-box; + width: 83.33333333%; + } + .ant-col-xl-push-20 { + left: 83.33333333%; + } + .ant-col-xl-pull-20 { + right: 83.33333333%; + } + .ant-col-xl-offset-20 { + margin-left: 83.33333333%; + } + .ant-col-xl-order-20 { + order: 20; + } + .ant-col-xl-19 { + display: block; + box-sizing: border-box; + width: 79.16666667%; + } + .ant-col-xl-push-19 { + left: 79.16666667%; + } + .ant-col-xl-pull-19 { + right: 79.16666667%; + } + .ant-col-xl-offset-19 { + margin-left: 79.16666667%; + } + .ant-col-xl-order-19 { + order: 19; + } + .ant-col-xl-18 { + display: block; + box-sizing: border-box; + width: 75%; + } + .ant-col-xl-push-18 { + left: 75%; + } + .ant-col-xl-pull-18 { + right: 75%; + } + .ant-col-xl-offset-18 { + margin-left: 75%; + } + .ant-col-xl-order-18 { + order: 18; + } + .ant-col-xl-17 { + display: block; + box-sizing: border-box; + width: 70.83333333%; + } + .ant-col-xl-push-17 { + left: 70.83333333%; + } + .ant-col-xl-pull-17 { + right: 70.83333333%; + } + .ant-col-xl-offset-17 { + margin-left: 70.83333333%; + } + .ant-col-xl-order-17 { + order: 17; + } + .ant-col-xl-16 { + display: block; + box-sizing: border-box; + width: 66.66666667%; + } + .ant-col-xl-push-16 { + left: 66.66666667%; + } + .ant-col-xl-pull-16 { + right: 66.66666667%; + } + .ant-col-xl-offset-16 { + margin-left: 66.66666667%; + } + .ant-col-xl-order-16 { + order: 16; + } + .ant-col-xl-15 { + display: block; + box-sizing: border-box; + width: 62.5%; + } + .ant-col-xl-push-15 { + left: 62.5%; + } + .ant-col-xl-pull-15 { + right: 62.5%; + } + .ant-col-xl-offset-15 { + margin-left: 62.5%; + } + .ant-col-xl-order-15 { + order: 15; + } + .ant-col-xl-14 { + display: block; + box-sizing: border-box; + width: 58.33333333%; + } + .ant-col-xl-push-14 { + left: 58.33333333%; + } + .ant-col-xl-pull-14 { + right: 58.33333333%; + } + .ant-col-xl-offset-14 { + margin-left: 58.33333333%; + } + .ant-col-xl-order-14 { + order: 14; + } + .ant-col-xl-13 { + display: block; + box-sizing: border-box; + width: 54.16666667%; + } + .ant-col-xl-push-13 { + left: 54.16666667%; + } + .ant-col-xl-pull-13 { + right: 54.16666667%; + } + .ant-col-xl-offset-13 { + margin-left: 54.16666667%; + } + .ant-col-xl-order-13 { + order: 13; + } + .ant-col-xl-12 { + display: block; + box-sizing: border-box; + width: 50%; + } + .ant-col-xl-push-12 { + left: 50%; + } + .ant-col-xl-pull-12 { + right: 50%; + } + .ant-col-xl-offset-12 { + margin-left: 50%; + } + .ant-col-xl-order-12 { + order: 12; + } + .ant-col-xl-11 { + display: block; + box-sizing: border-box; + width: 45.83333333%; + } + .ant-col-xl-push-11 { + left: 45.83333333%; + } + .ant-col-xl-pull-11 { + right: 45.83333333%; + } + .ant-col-xl-offset-11 { + margin-left: 45.83333333%; + } + .ant-col-xl-order-11 { + order: 11; + } + .ant-col-xl-10 { + display: block; + box-sizing: border-box; + width: 41.66666667%; + } + .ant-col-xl-push-10 { + left: 41.66666667%; + } + .ant-col-xl-pull-10 { + right: 41.66666667%; + } + .ant-col-xl-offset-10 { + margin-left: 41.66666667%; + } + .ant-col-xl-order-10 { + order: 10; + } + .ant-col-xl-9 { + display: block; + box-sizing: border-box; + width: 37.5%; + } + .ant-col-xl-push-9 { + left: 37.5%; + } + .ant-col-xl-pull-9 { + right: 37.5%; + } + .ant-col-xl-offset-9 { + margin-left: 37.5%; + } + .ant-col-xl-order-9 { + order: 9; + } + .ant-col-xl-8 { + display: block; + box-sizing: border-box; + width: 33.33333333%; + } + .ant-col-xl-push-8 { + left: 33.33333333%; + } + .ant-col-xl-pull-8 { + right: 33.33333333%; + } + .ant-col-xl-offset-8 { + margin-left: 33.33333333%; + } + .ant-col-xl-order-8 { + order: 8; + } + .ant-col-xl-7 { + display: block; + box-sizing: border-box; + width: 29.16666667%; + } + .ant-col-xl-push-7 { + left: 29.16666667%; + } + .ant-col-xl-pull-7 { + right: 29.16666667%; + } + .ant-col-xl-offset-7 { + margin-left: 29.16666667%; + } + .ant-col-xl-order-7 { + order: 7; + } + .ant-col-xl-6 { + display: block; + box-sizing: border-box; + width: 25%; + } + .ant-col-xl-push-6 { + left: 25%; + } + .ant-col-xl-pull-6 { + right: 25%; + } + .ant-col-xl-offset-6 { + margin-left: 25%; + } + .ant-col-xl-order-6 { + order: 6; + } + .ant-col-xl-5 { + display: block; + box-sizing: border-box; + width: 20.83333333%; + } + .ant-col-xl-push-5 { + left: 20.83333333%; + } + .ant-col-xl-pull-5 { + right: 20.83333333%; + } + .ant-col-xl-offset-5 { + margin-left: 20.83333333%; + } + .ant-col-xl-order-5 { + order: 5; + } + .ant-col-xl-4 { + display: block; + box-sizing: border-box; + width: 16.66666667%; + } + .ant-col-xl-push-4 { + left: 16.66666667%; + } + .ant-col-xl-pull-4 { + right: 16.66666667%; + } + .ant-col-xl-offset-4 { + margin-left: 16.66666667%; + } + .ant-col-xl-order-4 { + order: 4; + } + .ant-col-xl-3 { + display: block; + box-sizing: border-box; + width: 12.5%; + } + .ant-col-xl-push-3 { + left: 12.5%; + } + .ant-col-xl-pull-3 { + right: 12.5%; + } + .ant-col-xl-offset-3 { + margin-left: 12.5%; + } + .ant-col-xl-order-3 { + order: 3; + } + .ant-col-xl-2 { + display: block; + box-sizing: border-box; + width: 8.33333333%; + } + .ant-col-xl-push-2 { + left: 8.33333333%; + } + .ant-col-xl-pull-2 { + right: 8.33333333%; + } + .ant-col-xl-offset-2 { + margin-left: 8.33333333%; + } + .ant-col-xl-order-2 { + order: 2; + } + .ant-col-xl-1 { + display: block; + box-sizing: border-box; + width: 4.16666667%; + } + .ant-col-xl-push-1 { + left: 4.16666667%; + } + .ant-col-xl-pull-1 { + right: 4.16666667%; + } + .ant-col-xl-offset-1 { + margin-left: 4.16666667%; + } + .ant-col-xl-order-1 { + order: 1; + } + .ant-col-xl-0 { + display: none; + } + .ant-col-push-0 { + left: auto; + } + .ant-col-pull-0 { + right: auto; + } + .ant-col-xl-push-0 { + left: auto; + } + .ant-col-xl-pull-0 { + right: auto; + } + .ant-col-xl-offset-0 { + margin-left: 0; + } + .ant-col-xl-order-0 { + order: 0; + } +} +@media (min-width: 1600px) { + .ant-col-xxl-1, + .ant-col-xxl-2, + .ant-col-xxl-3, + .ant-col-xxl-4, + .ant-col-xxl-5, + .ant-col-xxl-6, + .ant-col-xxl-7, + .ant-col-xxl-8, + .ant-col-xxl-9, + .ant-col-xxl-10, + .ant-col-xxl-11, + .ant-col-xxl-12, + .ant-col-xxl-13, + .ant-col-xxl-14, + .ant-col-xxl-15, + .ant-col-xxl-16, + .ant-col-xxl-17, + .ant-col-xxl-18, + .ant-col-xxl-19, + .ant-col-xxl-20, + .ant-col-xxl-21, + .ant-col-xxl-22, + .ant-col-xxl-23, + .ant-col-xxl-24 { + flex: 0 0 auto; + float: left; + } + .ant-col-xxl-24 { + display: block; + box-sizing: border-box; + width: 100%; + } + .ant-col-xxl-push-24 { + left: 100%; + } + .ant-col-xxl-pull-24 { + right: 100%; + } + .ant-col-xxl-offset-24 { + margin-left: 100%; + } + .ant-col-xxl-order-24 { + order: 24; + } + .ant-col-xxl-23 { + display: block; + box-sizing: border-box; + width: 95.83333333%; + } + .ant-col-xxl-push-23 { + left: 95.83333333%; + } + .ant-col-xxl-pull-23 { + right: 95.83333333%; + } + .ant-col-xxl-offset-23 { + margin-left: 95.83333333%; + } + .ant-col-xxl-order-23 { + order: 23; + } + .ant-col-xxl-22 { + display: block; + box-sizing: border-box; + width: 91.66666667%; + } + .ant-col-xxl-push-22 { + left: 91.66666667%; + } + .ant-col-xxl-pull-22 { + right: 91.66666667%; + } + .ant-col-xxl-offset-22 { + margin-left: 91.66666667%; + } + .ant-col-xxl-order-22 { + order: 22; + } + .ant-col-xxl-21 { + display: block; + box-sizing: border-box; + width: 87.5%; + } + .ant-col-xxl-push-21 { + left: 87.5%; + } + .ant-col-xxl-pull-21 { + right: 87.5%; + } + .ant-col-xxl-offset-21 { + margin-left: 87.5%; + } + .ant-col-xxl-order-21 { + order: 21; + } + .ant-col-xxl-20 { + display: block; + box-sizing: border-box; + width: 83.33333333%; + } + .ant-col-xxl-push-20 { + left: 83.33333333%; + } + .ant-col-xxl-pull-20 { + right: 83.33333333%; + } + .ant-col-xxl-offset-20 { + margin-left: 83.33333333%; + } + .ant-col-xxl-order-20 { + order: 20; + } + .ant-col-xxl-19 { + display: block; + box-sizing: border-box; + width: 79.16666667%; + } + .ant-col-xxl-push-19 { + left: 79.16666667%; + } + .ant-col-xxl-pull-19 { + right: 79.16666667%; + } + .ant-col-xxl-offset-19 { + margin-left: 79.16666667%; + } + .ant-col-xxl-order-19 { + order: 19; + } + .ant-col-xxl-18 { + display: block; + box-sizing: border-box; + width: 75%; + } + .ant-col-xxl-push-18 { + left: 75%; + } + .ant-col-xxl-pull-18 { + right: 75%; + } + .ant-col-xxl-offset-18 { + margin-left: 75%; + } + .ant-col-xxl-order-18 { + order: 18; + } + .ant-col-xxl-17 { + display: block; + box-sizing: border-box; + width: 70.83333333%; + } + .ant-col-xxl-push-17 { + left: 70.83333333%; + } + .ant-col-xxl-pull-17 { + right: 70.83333333%; + } + .ant-col-xxl-offset-17 { + margin-left: 70.83333333%; + } + .ant-col-xxl-order-17 { + order: 17; + } + .ant-col-xxl-16 { + display: block; + box-sizing: border-box; + width: 66.66666667%; + } + .ant-col-xxl-push-16 { + left: 66.66666667%; + } + .ant-col-xxl-pull-16 { + right: 66.66666667%; + } + .ant-col-xxl-offset-16 { + margin-left: 66.66666667%; + } + .ant-col-xxl-order-16 { + order: 16; + } + .ant-col-xxl-15 { + display: block; + box-sizing: border-box; + width: 62.5%; + } + .ant-col-xxl-push-15 { + left: 62.5%; + } + .ant-col-xxl-pull-15 { + right: 62.5%; + } + .ant-col-xxl-offset-15 { + margin-left: 62.5%; + } + .ant-col-xxl-order-15 { + order: 15; + } + .ant-col-xxl-14 { + display: block; + box-sizing: border-box; + width: 58.33333333%; + } + .ant-col-xxl-push-14 { + left: 58.33333333%; + } + .ant-col-xxl-pull-14 { + right: 58.33333333%; + } + .ant-col-xxl-offset-14 { + margin-left: 58.33333333%; + } + .ant-col-xxl-order-14 { + order: 14; + } + .ant-col-xxl-13 { + display: block; + box-sizing: border-box; + width: 54.16666667%; + } + .ant-col-xxl-push-13 { + left: 54.16666667%; + } + .ant-col-xxl-pull-13 { + right: 54.16666667%; + } + .ant-col-xxl-offset-13 { + margin-left: 54.16666667%; + } + .ant-col-xxl-order-13 { + order: 13; + } + .ant-col-xxl-12 { + display: block; + box-sizing: border-box; + width: 50%; + } + .ant-col-xxl-push-12 { + left: 50%; + } + .ant-col-xxl-pull-12 { + right: 50%; + } + .ant-col-xxl-offset-12 { + margin-left: 50%; + } + .ant-col-xxl-order-12 { + order: 12; + } + .ant-col-xxl-11 { + display: block; + box-sizing: border-box; + width: 45.83333333%; + } + .ant-col-xxl-push-11 { + left: 45.83333333%; + } + .ant-col-xxl-pull-11 { + right: 45.83333333%; + } + .ant-col-xxl-offset-11 { + margin-left: 45.83333333%; + } + .ant-col-xxl-order-11 { + order: 11; + } + .ant-col-xxl-10 { + display: block; + box-sizing: border-box; + width: 41.66666667%; + } + .ant-col-xxl-push-10 { + left: 41.66666667%; + } + .ant-col-xxl-pull-10 { + right: 41.66666667%; + } + .ant-col-xxl-offset-10 { + margin-left: 41.66666667%; + } + .ant-col-xxl-order-10 { + order: 10; + } + .ant-col-xxl-9 { + display: block; + box-sizing: border-box; + width: 37.5%; + } + .ant-col-xxl-push-9 { + left: 37.5%; + } + .ant-col-xxl-pull-9 { + right: 37.5%; + } + .ant-col-xxl-offset-9 { + margin-left: 37.5%; + } + .ant-col-xxl-order-9 { + order: 9; + } + .ant-col-xxl-8 { + display: block; + box-sizing: border-box; + width: 33.33333333%; + } + .ant-col-xxl-push-8 { + left: 33.33333333%; + } + .ant-col-xxl-pull-8 { + right: 33.33333333%; + } + .ant-col-xxl-offset-8 { + margin-left: 33.33333333%; + } + .ant-col-xxl-order-8 { + order: 8; + } + .ant-col-xxl-7 { + display: block; + box-sizing: border-box; + width: 29.16666667%; + } + .ant-col-xxl-push-7 { + left: 29.16666667%; + } + .ant-col-xxl-pull-7 { + right: 29.16666667%; + } + .ant-col-xxl-offset-7 { + margin-left: 29.16666667%; + } + .ant-col-xxl-order-7 { + order: 7; + } + .ant-col-xxl-6 { + display: block; + box-sizing: border-box; + width: 25%; + } + .ant-col-xxl-push-6 { + left: 25%; + } + .ant-col-xxl-pull-6 { + right: 25%; + } + .ant-col-xxl-offset-6 { + margin-left: 25%; + } + .ant-col-xxl-order-6 { + order: 6; + } + .ant-col-xxl-5 { + display: block; + box-sizing: border-box; + width: 20.83333333%; + } + .ant-col-xxl-push-5 { + left: 20.83333333%; + } + .ant-col-xxl-pull-5 { + right: 20.83333333%; + } + .ant-col-xxl-offset-5 { + margin-left: 20.83333333%; + } + .ant-col-xxl-order-5 { + order: 5; + } + .ant-col-xxl-4 { + display: block; + box-sizing: border-box; + width: 16.66666667%; + } + .ant-col-xxl-push-4 { + left: 16.66666667%; + } + .ant-col-xxl-pull-4 { + right: 16.66666667%; + } + .ant-col-xxl-offset-4 { + margin-left: 16.66666667%; + } + .ant-col-xxl-order-4 { + order: 4; + } + .ant-col-xxl-3 { + display: block; + box-sizing: border-box; + width: 12.5%; + } + .ant-col-xxl-push-3 { + left: 12.5%; + } + .ant-col-xxl-pull-3 { + right: 12.5%; + } + .ant-col-xxl-offset-3 { + margin-left: 12.5%; + } + .ant-col-xxl-order-3 { + order: 3; + } + .ant-col-xxl-2 { + display: block; + box-sizing: border-box; + width: 8.33333333%; + } + .ant-col-xxl-push-2 { + left: 8.33333333%; + } + .ant-col-xxl-pull-2 { + right: 8.33333333%; + } + .ant-col-xxl-offset-2 { + margin-left: 8.33333333%; + } + .ant-col-xxl-order-2 { + order: 2; + } + .ant-col-xxl-1 { + display: block; + box-sizing: border-box; + width: 4.16666667%; + } + .ant-col-xxl-push-1 { + left: 4.16666667%; + } + .ant-col-xxl-pull-1 { + right: 4.16666667%; + } + .ant-col-xxl-offset-1 { + margin-left: 4.16666667%; + } + .ant-col-xxl-order-1 { + order: 1; + } + .ant-col-xxl-0 { + display: none; + } + .ant-col-push-0 { + left: auto; + } + .ant-col-pull-0 { + right: auto; + } + .ant-col-xxl-push-0 { + left: auto; + } + .ant-col-xxl-pull-0 { + right: auto; + } + .ant-col-xxl-offset-0 { + margin-left: 0; + } + .ant-col-xxl-order-0 { + order: 0; + } +} +.ant-input { + box-sizing: border-box; + margin: 0; + padding: 0; + font-variant: tabular-nums; + list-style: none; + font-feature-settings: 'tnum'; + position: relative; + display: inline-block; + width: 100%; + height: 32px; + padding: 4px 11px; + color: rgba(0, 0, 0, 0.65); + font-size: 15px; + line-height: 1.5; + background-color: #fff; + background-image: none; + border: 1px solid #d9d9d9; + border-radius: 4px; + transition: all 0.3s; +} +.ant-input::-moz-placeholder { + color: #bfbfbf; + opacity: 1; +} +.ant-input:-ms-input-placeholder { + color: #bfbfbf; +} +.ant-input::-webkit-input-placeholder { + color: #bfbfbf; +} +.ant-input:-moz-placeholder-shown { + text-overflow: ellipsis; +} +.ant-input:-ms-input-placeholder { + text-overflow: ellipsis; +} +.ant-input:placeholder-shown { + text-overflow: ellipsis; +} +.ant-input:hover { + border-color: #195e9e; + border-right-width: 1px !important; +} +.ant-input:focus { + border-color: #195e9e; + border-right-width: 1px !important; + outline: 0; + box-shadow: 0 0 0 2px rgba(0, 70, 145, 0.2); +} +.ant-input-disabled { + color: rgba(0, 0, 0, 0.25); + background-color: #f5f5f5; + cursor: not-allowed; + opacity: 1; +} +.ant-input-disabled:hover { + border-color: #d9d9d9; + border-right-width: 1px !important; +} +.ant-input[disabled] { + color: rgba(0, 0, 0, 0.25); + background-color: #f5f5f5; + cursor: not-allowed; + opacity: 1; +} +.ant-input[disabled]:hover { + border-color: #d9d9d9; + border-right-width: 1px !important; +} +textarea.ant-input { + max-width: 100%; + height: auto; + min-height: 32px; + line-height: 1.5; + vertical-align: bottom; + transition: all 0.3s, height 0s; +} +.ant-input-lg { + height: 40px; + padding: 6px 11px; + font-size: 17px; +} +.ant-input-sm { + height: 24px; + padding: 1px 7px; +} +.ant-input-group { + box-sizing: border-box; + margin: 0; + padding: 0; + color: rgba(0, 0, 0, 0.65); + font-size: 15px; + font-variant: tabular-nums; + line-height: 1.5; + list-style: none; + font-feature-settings: 'tnum'; + position: relative; + display: table; + width: 100%; + border-collapse: separate; + border-spacing: 0; +} +.ant-input-group[class*='col-'] { + float: none; + padding-right: 0; + padding-left: 0; +} +.ant-input-group > [class*='col-'] { + padding-right: 8px; +} +.ant-input-group > [class*='col-']:last-child { + padding-right: 0; +} +.ant-input-group-addon, +.ant-input-group-wrap, +.ant-input-group > .ant-input { + display: table-cell; +} +.ant-input-group-addon:not(:first-child):not(:last-child), +.ant-input-group-wrap:not(:first-child):not(:last-child), +.ant-input-group > .ant-input:not(:first-child):not(:last-child) { + border-radius: 0; +} +.ant-input-group-addon, +.ant-input-group-wrap { + width: 1px; + white-space: nowrap; + vertical-align: middle; +} +.ant-input-group-wrap > * { + display: block !important; +} +.ant-input-group .ant-input { + float: left; + width: 100%; + margin-bottom: 0; + text-align: inherit; +} +.ant-input-group .ant-input:focus { + z-index: 1; + border-right-width: 1px; +} +.ant-input-group .ant-input:hover { + z-index: 1; + border-right-width: 1px; +} +.ant-input-group-addon { + position: relative; + padding: 0 11px; + color: rgba(0, 0, 0, 0.65); + font-weight: normal; + font-size: 15px; + text-align: center; + background-color: #fafafa; + border: 1px solid #d9d9d9; + border-radius: 4px; + transition: all 0.3s; +} +.ant-input-group-addon .ant-select { + margin: -5px -11px; +} +.ant-input-group-addon .ant-select .ant-select-selection { + margin: -1px; + background-color: inherit; + border: 1px solid transparent; + box-shadow: none; +} +.ant-input-group-addon .ant-select-open .ant-select-selection, +.ant-input-group-addon .ant-select-focused .ant-select-selection { + color: #004691; +} +.ant-input-group-addon > i:only-child::after { + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + content: ''; +} +.ant-input-group > .ant-input:first-child, +.ant-input-group-addon:first-child { + border-top-right-radius: 0; + border-bottom-right-radius: 0; +} +.ant-input-group > .ant-input:first-child .ant-select .ant-select-selection, +.ant-input-group-addon:first-child .ant-select .ant-select-selection { + border-top-right-radius: 0; + border-bottom-right-radius: 0; +} +.ant-input-group > .ant-input-affix-wrapper:not(:first-child) .ant-input { + border-top-left-radius: 0; + border-bottom-left-radius: 0; +} +.ant-input-group > .ant-input-affix-wrapper:not(:last-child) .ant-input { + border-top-right-radius: 0; + border-bottom-right-radius: 0; +} +.ant-input-group-addon:first-child { + border-right: 0; +} +.ant-input-group-addon:last-child { + border-left: 0; +} +.ant-input-group > .ant-input:last-child, +.ant-input-group-addon:last-child { + border-top-left-radius: 0; + border-bottom-left-radius: 0; +} +.ant-input-group > .ant-input:last-child .ant-select .ant-select-selection, +.ant-input-group-addon:last-child .ant-select .ant-select-selection { + border-top-left-radius: 0; + border-bottom-left-radius: 0; +} +.ant-input-group-lg .ant-input, +.ant-input-group-lg > .ant-input-group-addon { + height: 40px; + padding: 6px 11px; + font-size: 17px; +} +.ant-input-group-sm .ant-input, +.ant-input-group-sm > .ant-input-group-addon { + height: 24px; + padding: 1px 7px; +} +.ant-input-group-lg .ant-select-selection--single { + height: 40px; +} +.ant-input-group-sm .ant-select-selection--single { + height: 24px; +} +.ant-input-group .ant-input-affix-wrapper { + display: table-cell; + float: left; + width: 100%; +} +.ant-input-group.ant-input-group-compact { + display: block; + zoom: 1; +} +.ant-input-group.ant-input-group-compact::before, +.ant-input-group.ant-input-group-compact::after { + display: table; + content: ''; +} +.ant-input-group.ant-input-group-compact::after { + clear: both; +} +.ant-input-group.ant-input-group-compact::before, +.ant-input-group.ant-input-group-compact::after { + display: table; + content: ''; +} +.ant-input-group.ant-input-group-compact::after { + clear: both; +} +.ant-input-group.ant-input-group-compact-addon:not(:first-child):not(:last-child), +.ant-input-group.ant-input-group-compact-wrap:not(:first-child):not(:last-child), +.ant-input-group.ant-input-group-compact > .ant-input:not(:first-child):not(:last-child) { + border-right-width: 1px; +} +.ant-input-group.ant-input-group-compact-addon:not(:first-child):not(:last-child):hover, +.ant-input-group.ant-input-group-compact-wrap:not(:first-child):not(:last-child):hover, +.ant-input-group.ant-input-group-compact > .ant-input:not(:first-child):not(:last-child):hover { + z-index: 1; +} +.ant-input-group.ant-input-group-compact-addon:not(:first-child):not(:last-child):focus, +.ant-input-group.ant-input-group-compact-wrap:not(:first-child):not(:last-child):focus, +.ant-input-group.ant-input-group-compact > .ant-input:not(:first-child):not(:last-child):focus { + z-index: 1; +} +.ant-input-group.ant-input-group-compact > * { + display: inline-block; + float: none; + vertical-align: top; + border-radius: 0; +} +.ant-input-group.ant-input-group-compact > *:not(:last-child) { + margin-right: -1px; + border-right-width: 1px; +} +.ant-input-group.ant-input-group-compact .ant-input { + float: none; +} +.ant-input-group.ant-input-group-compact > .ant-select > .ant-select-selection, +.ant-input-group.ant-input-group-compact > .ant-calendar-picker .ant-input, +.ant-input-group.ant-input-group-compact > .ant-select-auto-complete .ant-input, +.ant-input-group.ant-input-group-compact > .ant-cascader-picker .ant-input, +.ant-input-group.ant-input-group-compact > .ant-mention-wrapper .ant-mention-editor, +.ant-input-group.ant-input-group-compact > .ant-time-picker .ant-time-picker-input, +.ant-input-group.ant-input-group-compact > .ant-input-group-wrapper .ant-input { + border-right-width: 1px; + border-radius: 0; +} +.ant-input-group.ant-input-group-compact > .ant-select > .ant-select-selection:hover, +.ant-input-group.ant-input-group-compact > .ant-calendar-picker .ant-input:hover, +.ant-input-group.ant-input-group-compact > .ant-select-auto-complete .ant-input:hover, +.ant-input-group.ant-input-group-compact > .ant-cascader-picker .ant-input:hover, +.ant-input-group.ant-input-group-compact > .ant-mention-wrapper .ant-mention-editor:hover, +.ant-input-group.ant-input-group-compact > .ant-time-picker .ant-time-picker-input:hover, +.ant-input-group.ant-input-group-compact > .ant-input-group-wrapper .ant-input:hover { + z-index: 1; +} +.ant-input-group.ant-input-group-compact > .ant-select > .ant-select-selection:focus, +.ant-input-group.ant-input-group-compact > .ant-calendar-picker .ant-input:focus, +.ant-input-group.ant-input-group-compact > .ant-select-auto-complete .ant-input:focus, +.ant-input-group.ant-input-group-compact > .ant-cascader-picker .ant-input:focus, +.ant-input-group.ant-input-group-compact > .ant-mention-wrapper .ant-mention-editor:focus, +.ant-input-group.ant-input-group-compact > .ant-time-picker .ant-time-picker-input:focus, +.ant-input-group.ant-input-group-compact > .ant-input-group-wrapper .ant-input:focus { + z-index: 1; +} +.ant-input-group.ant-input-group-compact > .ant-select-focused { + z-index: 1; +} +.ant-input-group.ant-input-group-compact > *:first-child, +.ant-input-group.ant-input-group-compact > .ant-select:first-child > .ant-select-selection, +.ant-input-group.ant-input-group-compact > .ant-calendar-picker:first-child .ant-input, +.ant-input-group.ant-input-group-compact > .ant-select-auto-complete:first-child .ant-input, +.ant-input-group.ant-input-group-compact > .ant-cascader-picker:first-child .ant-input, +.ant-input-group.ant-input-group-compact > .ant-mention-wrapper:first-child .ant-mention-editor, +.ant-input-group.ant-input-group-compact > .ant-time-picker:first-child .ant-time-picker-input { + border-top-left-radius: 4px; + border-bottom-left-radius: 4px; +} +.ant-input-group.ant-input-group-compact > *:last-child, +.ant-input-group.ant-input-group-compact > .ant-select:last-child > .ant-select-selection, +.ant-input-group.ant-input-group-compact > .ant-calendar-picker:last-child .ant-input, +.ant-input-group.ant-input-group-compact > .ant-select-auto-complete:last-child .ant-input, +.ant-input-group.ant-input-group-compact > .ant-cascader-picker:last-child .ant-input, +.ant-input-group.ant-input-group-compact > .ant-cascader-picker-focused:last-child .ant-input, +.ant-input-group.ant-input-group-compact > .ant-mention-wrapper:last-child .ant-mention-editor, +.ant-input-group.ant-input-group-compact > .ant-time-picker:last-child .ant-time-picker-input { + border-right-width: 1px; + border-top-right-radius: 4px; + border-bottom-right-radius: 4px; +} +.ant-input-group.ant-input-group-compact > .ant-select-auto-complete .ant-input { + vertical-align: top; +} +.ant-input-group-wrapper { + display: inline-block; + width: 100%; + text-align: start; + vertical-align: top; +} +.ant-input-affix-wrapper { + box-sizing: border-box; + margin: 0; + padding: 0; + color: rgba(0, 0, 0, 0.65); + font-size: 15px; + font-variant: tabular-nums; + line-height: 1.5; + list-style: none; + font-feature-settings: 'tnum'; + position: relative; + display: inline-block; + width: 100%; + text-align: start; +} +.ant-input-affix-wrapper:hover .ant-input:not(.ant-input-disabled) { + border-color: #195e9e; + border-right-width: 1px !important; +} +.ant-input-affix-wrapper .ant-input { + position: relative; + text-align: inherit; +} +.ant-input-affix-wrapper .ant-input-prefix, +.ant-input-affix-wrapper .ant-input-suffix { + position: absolute; + top: 50%; + z-index: 2; + display: flex; + align-items: center; + color: rgba(0, 0, 0, 0.65); + line-height: 0; + transform: translateY(-50%); +} +.ant-input-affix-wrapper .ant-input-prefix :not(.anticon), +.ant-input-affix-wrapper .ant-input-suffix :not(.anticon) { + line-height: 1.5; +} +.ant-input-affix-wrapper .ant-input-disabled ~ .ant-input-suffix .anticon { + color: rgba(0, 0, 0, 0.25); + cursor: not-allowed; +} +.ant-input-affix-wrapper .ant-input-prefix { + left: 12px; +} +.ant-input-affix-wrapper .ant-input-suffix { + right: 12px; +} +.ant-input-affix-wrapper .ant-input:not(:first-child) { + padding-left: 30px; +} +.ant-input-affix-wrapper .ant-input:not(:last-child) { + padding-right: 30px; +} +.ant-input-affix-wrapper.ant-input-affix-wrapper-input-with-clear-btn .ant-input:not(:last-child) { + padding-right: 49px; +} +.ant-input-affix-wrapper.ant-input-affix-wrapper-textarea-with-clear-btn .ant-input { + padding-right: 22px; +} +.ant-input-password-icon { + color: rgba(0, 0, 0, 0.45); + cursor: pointer; + transition: all 0.3s; +} +.ant-input-password-icon:hover { + color: #333; +} +.ant-input-clear-icon { + color: rgba(0, 0, 0, 0.25); + font-size: 12px; + cursor: pointer; + transition: color 0.3s; + vertical-align: 0; +} +.ant-input-clear-icon:hover { + color: rgba(0, 0, 0, 0.45); +} +.ant-input-clear-icon:active { + color: rgba(0, 0, 0, 0.65); +} +.ant-input-clear-icon + i { + margin-left: 6px; +} +.ant-input-textarea-clear-icon { + color: rgba(0, 0, 0, 0.25); + font-size: 12px; + cursor: pointer; + transition: color 0.3s; + position: absolute; + top: 0; + right: 0; + margin: 8px 8px 0 0; +} +.ant-input-textarea-clear-icon:hover { + color: rgba(0, 0, 0, 0.45); +} +.ant-input-textarea-clear-icon:active { + color: rgba(0, 0, 0, 0.65); +} +.ant-input-textarea-clear-icon + i { + margin-left: 6px; +} +.ant-input-search-icon { + color: rgba(0, 0, 0, 0.45); + cursor: pointer; + transition: all 0.3s; +} +.ant-input-search-icon:hover { + color: rgba(0, 0, 0, 0.8); +} +.ant-input-search-enter-button input { + border-right: 0; +} +.ant-input-search-enter-button + .ant-input-group-addon, +.ant-input-search-enter-button input + .ant-input-group-addon { + padding: 0; + border: 0; +} +.ant-input-search-enter-button + .ant-input-group-addon .ant-input-search-button, +.ant-input-search-enter-button input + .ant-input-group-addon .ant-input-search-button { + border-top-left-radius: 0; + border-bottom-left-radius: 0; +} +.ant-input-number { + box-sizing: border-box; + font-variant: tabular-nums; + list-style: none; + font-feature-settings: 'tnum'; + position: relative; + width: 100%; + height: 32px; + padding: 4px 11px; + color: rgba(0, 0, 0, 0.65); + font-size: 15px; + line-height: 1.5; + background-color: #fff; + background-image: none; + transition: all 0.3s; + display: inline-block; + width: 90px; + margin: 0; + padding: 0; + border: 1px solid #d9d9d9; + border-radius: 4px; +} +.ant-input-number::-moz-placeholder { + color: #bfbfbf; + opacity: 1; +} +.ant-input-number:-ms-input-placeholder { + color: #bfbfbf; +} +.ant-input-number::-webkit-input-placeholder { + color: #bfbfbf; +} +.ant-input-number:-moz-placeholder-shown { + text-overflow: ellipsis; +} +.ant-input-number:-ms-input-placeholder { + text-overflow: ellipsis; +} +.ant-input-number:placeholder-shown { + text-overflow: ellipsis; +} +.ant-input-number:hover { + border-color: #195e9e; + border-right-width: 1px !important; +} +.ant-input-number:focus { + border-color: #195e9e; + border-right-width: 1px !important; + outline: 0; + box-shadow: 0 0 0 2px rgba(0, 70, 145, 0.2); +} +.ant-input-number-disabled { + color: rgba(0, 0, 0, 0.25); + background-color: #f5f5f5; + cursor: not-allowed; + opacity: 1; +} +.ant-input-number-disabled:hover { + border-color: #d9d9d9; + border-right-width: 1px !important; +} +.ant-input-number[disabled] { + color: rgba(0, 0, 0, 0.25); + background-color: #f5f5f5; + cursor: not-allowed; + opacity: 1; +} +.ant-input-number[disabled]:hover { + border-color: #d9d9d9; + border-right-width: 1px !important; +} +textarea.ant-input-number { + max-width: 100%; + height: auto; + min-height: 32px; + line-height: 1.5; + vertical-align: bottom; + transition: all 0.3s, height 0s; +} +.ant-input-number-lg { + height: 40px; + padding: 6px 11px; + font-size: 17px; +} +.ant-input-number-sm { + height: 24px; + padding: 1px 7px; +} +.ant-input-number-handler { + position: relative; + display: block; + width: 100%; + height: 50%; + overflow: hidden; + color: rgba(0, 0, 0, 0.45); + font-weight: bold; + line-height: 0; + text-align: center; + transition: all 0.1s linear; +} +.ant-input-number-handler:active { + background: #f4f4f4; +} +.ant-input-number-handler:hover .ant-input-number-handler-up-inner, +.ant-input-number-handler:hover .ant-input-number-handler-down-inner { + color: #195e9e; +} +.ant-input-number-handler-up-inner, +.ant-input-number-handler-down-inner { + display: inline-block; + color: inherit; + font-style: normal; + line-height: 0; + text-align: center; + text-transform: none; + vertical-align: -0.125em; + text-rendering: optimizeLegibility; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + position: absolute; + right: 4px; + width: 12px; + height: 12px; + color: rgba(0, 0, 0, 0.45); + line-height: 12px; + transition: all 0.1s linear; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} +.ant-input-number-handler-up-inner > *, +.ant-input-number-handler-down-inner > * { + line-height: 1; +} +.ant-input-number-handler-up-inner svg, +.ant-input-number-handler-down-inner svg { + display: inline-block; +} +.ant-input-number-handler-up-inner::before, +.ant-input-number-handler-down-inner::before { + display: none; +} +.ant-input-number-handler-up-inner .ant-input-number-handler-up-inner-icon, +.ant-input-number-handler-up-inner .ant-input-number-handler-down-inner-icon, +.ant-input-number-handler-down-inner .ant-input-number-handler-up-inner-icon, +.ant-input-number-handler-down-inner .ant-input-number-handler-down-inner-icon { + display: block; +} +.ant-input-number:hover { + border-color: #195e9e; + border-right-width: 1px !important; +} +.ant-input-number-focused { + border-color: #195e9e; + border-right-width: 1px !important; + outline: 0; + box-shadow: 0 0 0 2px rgba(0, 70, 145, 0.2); +} +.ant-input-number-disabled { + color: rgba(0, 0, 0, 0.25); + background-color: #f5f5f5; + cursor: not-allowed; + opacity: 1; +} +.ant-input-number-disabled:hover { + border-color: #d9d9d9; + border-right-width: 1px !important; +} +.ant-input-number-disabled .ant-input-number-input { + cursor: not-allowed; +} +.ant-input-number-disabled .ant-input-number-handler-wrap { + display: none; +} +.ant-input-number-input { + width: 100%; + height: 30px; + padding: 0 11px; + text-align: left; + background-color: transparent; + border: 0; + border-radius: 4px; + outline: 0; + transition: all 0.3s linear; + -moz-appearance: textfield !important; +} +.ant-input-number-input::-moz-placeholder { + color: #bfbfbf; + opacity: 1; +} +.ant-input-number-input:-ms-input-placeholder { + color: #bfbfbf; +} +.ant-input-number-input::-webkit-input-placeholder { + color: #bfbfbf; +} +.ant-input-number-input:-moz-placeholder-shown { + text-overflow: ellipsis; +} +.ant-input-number-input:-ms-input-placeholder { + text-overflow: ellipsis; +} +.ant-input-number-input:placeholder-shown { + text-overflow: ellipsis; +} +.ant-input-number-input[type='number']::-webkit-inner-spin-button, +.ant-input-number-input[type='number']::-webkit-outer-spin-button { + margin: 0; + -webkit-appearance: none; +} +.ant-input-number-lg { + padding: 0; + font-size: 17px; +} +.ant-input-number-lg input { + height: 38px; +} +.ant-input-number-sm { + padding: 0; +} +.ant-input-number-sm input { + height: 22px; + padding: 0 7px; +} +.ant-input-number-handler-wrap { + position: absolute; + top: 0; + right: 0; + width: 22px; + height: 100%; + background: #fff; + border-left: 1px solid #d9d9d9; + border-radius: 0 4px 4px 0; + opacity: 0; + transition: opacity 0.24s linear 0.1s; +} +.ant-input-number-handler-wrap .ant-input-number-handler .ant-input-number-handler-up-inner, +.ant-input-number-handler-wrap .ant-input-number-handler .ant-input-number-handler-down-inner { + display: inline-block; + font-size: 12px; + font-size: 7px \9; + transform: scale(0.58333333) rotate(0deg); + min-width: auto; + margin-right: 0; +} +:root .ant-input-number-handler-wrap .ant-input-number-handler .ant-input-number-handler-up-inner, +:root .ant-input-number-handler-wrap .ant-input-number-handler .ant-input-number-handler-down-inner { + font-size: 12px; +} +.ant-input-number-handler-wrap:hover .ant-input-number-handler { + height: 40%; +} +.ant-input-number:hover .ant-input-number-handler-wrap { + opacity: 1; +} +.ant-input-number-handler-up { + border-top-right-radius: 4px; + cursor: pointer; +} +.ant-input-number-handler-up-inner { + top: 50%; + margin-top: -5px; + text-align: center; +} +.ant-input-number-handler-up:hover { + height: 60% !important; +} +.ant-input-number-handler-down { + top: 0; + border-top: 1px solid #d9d9d9; + border-bottom-right-radius: 4px; + cursor: pointer; +} +.ant-input-number-handler-down-inner { + top: 50%; + margin-top: -6px; + text-align: center; +} +.ant-input-number-handler-down:hover { + height: 60% !important; +} +.ant-input-number-handler-up-disabled, +.ant-input-number-handler-down-disabled { + cursor: not-allowed; +} +.ant-input-number-handler-up-disabled:hover .ant-input-number-handler-up-inner, +.ant-input-number-handler-down-disabled:hover .ant-input-number-handler-down-inner { + color: rgba(0, 0, 0, 0.25); +} +.ant-layout { + display: flex; + flex: auto; + flex-direction: column; + /* fix firefox can't set height smaller than content on flex item */ + min-height: 0; + background: #f0f2f5; +} +.ant-layout, +.ant-layout * { + box-sizing: border-box; +} +.ant-layout.ant-layout-has-sider { + flex-direction: row; +} +.ant-layout.ant-layout-has-sider > .ant-layout, +.ant-layout.ant-layout-has-sider > .ant-layout-content { + overflow-x: hidden; +} +.ant-layout-header, +.ant-layout-footer { + flex: 0 0 auto; +} +.ant-layout-header { + height: 64px; + padding: 0 50px; + line-height: 64px; + background: #001529; +} +.ant-layout-footer { + padding: 24px 50px; + color: rgba(0, 0, 0, 0.65); + font-size: 15px; + background: #f0f2f5; +} +.ant-layout-content { + flex: auto; + /* fix firefox can't set height smaller than content on flex item */ + min-height: 0; +} +.ant-layout-sider { + position: relative; + /* fix firefox can't set width smaller than content on flex item */ + min-width: 0; + background: #001529; + transition: all 0.2s; +} +.ant-layout-sider-children { + height: 100%; + margin-top: -0.1px; + padding-top: 0.1px; +} +.ant-layout-sider-has-trigger { + padding-bottom: 48px; +} +.ant-layout-sider-right { + order: 1; +} +.ant-layout-sider-trigger { + position: fixed; + bottom: 0; + z-index: 1; + height: 48px; + color: #fff; + line-height: 48px; + text-align: center; + background: #002140; + cursor: pointer; + transition: all 0.2s; +} +.ant-layout-sider-zero-width > * { + overflow: hidden; +} +.ant-layout-sider-zero-width-trigger { + position: absolute; + top: 64px; + right: -36px; + z-index: 1; + width: 36px; + height: 42px; + color: #fff; + font-size: 18px; + line-height: 42px; + text-align: center; + background: #001529; + border-radius: 0 4px 4px 0; + cursor: pointer; + transition: background 0.3s ease; +} +.ant-layout-sider-zero-width-trigger:hover { + background: #192c3e; +} +.ant-layout-sider-zero-width-trigger-right { + left: -36px; + border-radius: 4px 0 0 4px; +} +.ant-layout-sider-light { + background: #fff; +} +.ant-layout-sider-light .ant-layout-sider-trigger { + color: rgba(0, 0, 0, 0.65); + background: #fff; +} +.ant-layout-sider-light .ant-layout-sider-zero-width-trigger { + color: rgba(0, 0, 0, 0.65); + background: #fff; +} +.ant-list { + box-sizing: border-box; + margin: 0; + padding: 0; + color: rgba(0, 0, 0, 0.65); + font-size: 15px; + font-variant: tabular-nums; + line-height: 1.5; + list-style: none; + font-feature-settings: 'tnum'; + position: relative; +} +.ant-list * { + outline: none; +} +.ant-list-pagination { + margin-top: 24px; + text-align: right; +} +.ant-list-pagination .ant-pagination-options { + text-align: left; +} +.ant-list-more { + margin-top: 12px; + text-align: center; +} +.ant-list-more button { + padding-right: 32px; + padding-left: 32px; +} +.ant-list-spin { + min-height: 40px; + text-align: center; +} +.ant-list-empty-text { + padding: 16px; + color: rgba(0, 0, 0, 0.25); + font-size: 15px; + text-align: center; +} +.ant-list-items { + margin: 0; + padding: 0; + list-style: none; +} +.ant-list-item { + display: flex; + align-items: center; + justify-content: space-between; + padding: 12px 0; +} +.ant-list-item-content { + color: rgba(0, 0, 0, 0.65); +} +.ant-list-item-meta { + display: flex; + flex: 1; + align-items: flex-start; + font-size: 0; +} +.ant-list-item-meta-avatar { + margin-right: 16px; +} +.ant-list-item-meta-content { + flex: 1 0; +} +.ant-list-item-meta-title { + margin-bottom: 4px; + color: rgba(0, 0, 0, 0.65); + font-size: 15px; + line-height: 22px; +} +.ant-list-item-meta-title > a { + color: rgba(0, 0, 0, 0.65); + transition: all 0.3s; +} +.ant-list-item-meta-title > a:hover { + color: #004691; +} +.ant-list-item-meta-description { + color: rgba(0, 0, 0, 0.45); + font-size: 15px; + line-height: 22px; +} +.ant-list-item-action { + flex: 0 0 auto; + margin-left: 48px; + padding: 0; + font-size: 0; + list-style: none; +} +.ant-list-item-action > li { + position: relative; + display: inline-block; + padding: 0 8px; + color: rgba(0, 0, 0, 0.45); + font-size: 15px; + line-height: 22px; + text-align: center; + cursor: pointer; +} +.ant-list-item-action > li:first-child { + padding-left: 0; +} +.ant-list-item-action-split { + position: absolute; + top: 50%; + right: 0; + width: 1px; + height: 14px; + margin-top: -7px; + background-color: #e8e8e8; +} +.ant-list-header { + background: transparent; +} +.ant-list-footer { + background: transparent; +} +.ant-list-header, +.ant-list-footer { + padding-top: 12px; + padding-bottom: 12px; +} +.ant-list-empty { + padding: 16px 0; + color: rgba(0, 0, 0, 0.45); + font-size: 12px; + text-align: center; +} +.ant-list-split .ant-list-item { + border-bottom: 1px solid #e8e8e8; +} +.ant-list-split .ant-list-item:last-child { + border-bottom: none; +} +.ant-list-split .ant-list-header { + border-bottom: 1px solid #e8e8e8; +} +.ant-list-loading .ant-list-spin-nested-loading { + min-height: 32px; +} +.ant-list-something-after-last-item .ant-spin-container > .ant-list-items > .ant-list-item:last-child { + border-bottom: 1px solid #e8e8e8; +} +.ant-list-lg .ant-list-item { + padding-top: 16px; + padding-bottom: 16px; +} +.ant-list-sm .ant-list-item { + padding-top: 8px; + padding-bottom: 8px; +} +.ant-list-vertical .ant-list-item { + align-items: initial; +} +.ant-list-vertical .ant-list-item-main { + display: block; + flex: 1; +} +.ant-list-vertical .ant-list-item-extra { + margin-left: 40px; +} +.ant-list-vertical .ant-list-item-meta { + margin-bottom: 16px; +} +.ant-list-vertical .ant-list-item-meta-title { + margin-bottom: 12px; + color: rgba(0, 0, 0, 0.85); + font-size: 17px; + line-height: 24px; +} +.ant-list-vertical .ant-list-item-action { + margin-top: 16px; + margin-left: auto; +} +.ant-list-vertical .ant-list-item-action > li { + padding: 0 16px; +} +.ant-list-vertical .ant-list-item-action > li:first-child { + padding-left: 0; +} +.ant-list-grid .ant-col > .ant-list-item { + display: block; + max-width: 100%; + margin-bottom: 16px; + padding-top: 0; + padding-bottom: 0; + border-bottom: none; +} +.ant-list-item-no-flex { + display: block; +} +.ant-list:not(.ant-list-vertical) .ant-list-item-no-flex .ant-list-item-action { + float: right; +} +.ant-list-bordered { + border: 1px solid #d9d9d9; + border-radius: 4px; +} +.ant-list-bordered .ant-list-header { + padding-right: 24px; + padding-left: 24px; +} +.ant-list-bordered .ant-list-footer { + padding-right: 24px; + padding-left: 24px; +} +.ant-list-bordered .ant-list-item { + padding-right: 24px; + padding-left: 24px; + border-bottom: 1px solid #e8e8e8; +} +.ant-list-bordered .ant-list-pagination { + margin: 16px 24px; +} +.ant-list-bordered.ant-list-sm .ant-list-item { + padding-right: 16px; + padding-left: 16px; +} +.ant-list-bordered.ant-list-sm .ant-list-header, +.ant-list-bordered.ant-list-sm .ant-list-footer { + padding: 8px 16px; +} +.ant-list-bordered.ant-list-lg .ant-list-header, +.ant-list-bordered.ant-list-lg .ant-list-footer { + padding: 16px 24px; +} +@media screen and (max-width: 768px) { + .ant-list-item-action { + margin-left: 24px; + } + .ant-list-vertical .ant-list-item-extra { + margin-left: 24px; + } +} +@media screen and (max-width: 576px) { + .ant-list-item { + flex-wrap: wrap; + } + .ant-list-item-action { + margin-left: 12px; + } + .ant-list-vertical .ant-list-item { + flex-wrap: wrap-reverse; + } + .ant-list-vertical .ant-list-item-main { + min-width: 220px; + } + .ant-list-vertical .ant-list-item-extra { + margin: auto auto 16px; + } +} +.ant-mentions { + box-sizing: border-box; + margin: 0; + font-variant: tabular-nums; + list-style: none; + font-feature-settings: 'tnum'; + width: 100%; + height: 32px; + padding: 4px 11px; + color: rgba(0, 0, 0, 0.65); + font-size: 15px; + background-color: #fff; + background-image: none; + border: 1px solid #d9d9d9; + border-radius: 4px; + transition: all 0.3s; + position: relative; + display: inline-block; + height: auto; + padding: 0; + overflow: hidden; + line-height: 1.5; + white-space: pre-wrap; + vertical-align: bottom; +} +.ant-mentions::-moz-placeholder { + color: #bfbfbf; + opacity: 1; +} +.ant-mentions:-ms-input-placeholder { + color: #bfbfbf; +} +.ant-mentions::-webkit-input-placeholder { + color: #bfbfbf; +} +.ant-mentions:-moz-placeholder-shown { + text-overflow: ellipsis; +} +.ant-mentions:-ms-input-placeholder { + text-overflow: ellipsis; +} +.ant-mentions:placeholder-shown { + text-overflow: ellipsis; +} +.ant-mentions:hover { + border-color: #195e9e; + border-right-width: 1px !important; +} +.ant-mentions:focus { + border-color: #195e9e; + border-right-width: 1px !important; + outline: 0; + box-shadow: 0 0 0 2px rgba(0, 70, 145, 0.2); +} +.ant-mentions-disabled { + color: rgba(0, 0, 0, 0.25); + background-color: #f5f5f5; + cursor: not-allowed; + opacity: 1; +} +.ant-mentions-disabled:hover { + border-color: #d9d9d9; + border-right-width: 1px !important; +} +.ant-mentions[disabled] { + color: rgba(0, 0, 0, 0.25); + background-color: #f5f5f5; + cursor: not-allowed; + opacity: 1; +} +.ant-mentions[disabled]:hover { + border-color: #d9d9d9; + border-right-width: 1px !important; +} +textarea.ant-mentions { + max-width: 100%; + height: auto; + min-height: 32px; + line-height: 1.5; + vertical-align: bottom; + transition: all 0.3s, height 0s; +} +.ant-mentions-lg { + height: 40px; + padding: 6px 11px; + font-size: 17px; +} +.ant-mentions-sm { + height: 24px; + padding: 1px 7px; +} +.ant-mentions-disabled > textarea { + color: rgba(0, 0, 0, 0.25); + background-color: #f5f5f5; + cursor: not-allowed; + opacity: 1; +} +.ant-mentions-disabled > textarea:hover { + border-color: #d9d9d9; + border-right-width: 1px !important; +} +.ant-mentions-focused { + border-color: #195e9e; + border-right-width: 1px !important; + outline: 0; + box-shadow: 0 0 0 2px rgba(0, 70, 145, 0.2); +} +.ant-mentions > textarea, +.ant-mentions-measure { + min-height: 30px; + margin: 0; + padding: 4px 11px; + overflow: inherit; + overflow-x: hidden; + overflow-y: auto; + font-weight: inherit; + font-size: inherit; + font-family: inherit; + font-style: inherit; + font-variant: inherit; + font-size-adjust: inherit; + font-stretch: inherit; + line-height: inherit; + direction: inherit; + letter-spacing: inherit; + white-space: inherit; + text-align: inherit; + vertical-align: top; + word-wrap: break-word; + word-break: inherit; + -moz-tab-size: inherit; + -o-tab-size: inherit; + tab-size: inherit; +} +.ant-mentions > textarea { + width: 100%; + border: none; + outline: none; + resize: none; +} +.ant-mentions > textarea::-moz-placeholder { + color: #bfbfbf; + opacity: 1; +} +.ant-mentions > textarea:-ms-input-placeholder { + color: #bfbfbf; +} +.ant-mentions > textarea::-webkit-input-placeholder { + color: #bfbfbf; +} +.ant-mentions > textarea:-moz-placeholder-shown { + text-overflow: ellipsis; +} +.ant-mentions > textarea:-ms-input-placeholder { + text-overflow: ellipsis; +} +.ant-mentions > textarea:placeholder-shown { + text-overflow: ellipsis; +} +.ant-mentions > textarea:-moz-read-only { + cursor: default; +} +.ant-mentions > textarea:read-only { + cursor: default; +} +.ant-mentions-measure { + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + z-index: -1; + color: transparent; + pointer-events: none; +} +.ant-mentions-measure > span { + display: inline-block; + min-height: 1em; +} +.ant-mentions-dropdown { + margin: 0; + padding: 0; + color: rgba(0, 0, 0, 0.65); + font-variant: tabular-nums; + line-height: 1.5; + list-style: none; + font-feature-settings: 'tnum'; + position: absolute; + top: -9999px; + left: -9999px; + z-index: 1050; + box-sizing: border-box; + font-size: 15px; + font-variant: initial; + background-color: #fff; + border-radius: 4px; + outline: none; + box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15); +} +.ant-mentions-dropdown-hidden { + display: none; +} +.ant-mentions-dropdown-menu { + max-height: 250px; + margin-bottom: 0; + padding-left: 0; + overflow: auto; + list-style: none; + outline: none; +} +.ant-mentions-dropdown-menu-item { + position: relative; + display: block; + min-width: 100px; + padding: 5px 12px; + overflow: hidden; + color: rgba(0, 0, 0, 0.65); + font-weight: normal; + line-height: 22px; + white-space: nowrap; + text-overflow: ellipsis; + cursor: pointer; + transition: background 0.3s ease; +} +.ant-mentions-dropdown-menu-item:hover { + background-color: #bccad1; +} +.ant-mentions-dropdown-menu-item:first-child { + border-radius: 4px 4px 0 0; +} +.ant-mentions-dropdown-menu-item:last-child { + border-radius: 0 0 4px 4px; +} +.ant-mentions-dropdown-menu-item-disabled { + color: rgba(0, 0, 0, 0.25); + cursor: not-allowed; +} +.ant-mentions-dropdown-menu-item-disabled:hover { + color: rgba(0, 0, 0, 0.25); + background-color: #fff; + cursor: not-allowed; +} +.ant-mentions-dropdown-menu-item-selected { + color: rgba(0, 0, 0, 0.65); + font-weight: 600; + background-color: #fafafa; +} +.ant-mentions-dropdown-menu-item-active { + background-color: #bccad1; +} +.ant-menu { + box-sizing: border-box; + margin: 0; + padding: 0; + font-size: 15px; + font-variant: tabular-nums; + line-height: 1.5; + font-feature-settings: 'tnum'; + margin-bottom: 0; + padding-left: 0; + color: rgba(0, 0, 0, 0.65); + line-height: 0; + list-style: none; + background: #fff; + outline: none; + box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15); + transition: background 0.3s, width 0.3s cubic-bezier(0.2, 0, 0, 1) 0s; + zoom: 1; +} +.ant-menu::before, +.ant-menu::after { + display: table; + content: ''; +} +.ant-menu::after { + clear: both; +} +.ant-menu::before, +.ant-menu::after { + display: table; + content: ''; +} +.ant-menu::after { + clear: both; +} +.ant-menu ul, +.ant-menu ol { + margin: 0; + padding: 0; + list-style: none; +} +.ant-menu-hidden { + display: none; +} +.ant-menu-item-group-title { + padding: 8px 16px; + color: rgba(0, 0, 0, 0.45); + font-size: 15px; + line-height: 1.5; + transition: all 0.3s; +} +.ant-menu-submenu, +.ant-menu-submenu-inline { + transition: border-color 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), background 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), padding 0.15s cubic-bezier(0.645, 0.045, 0.355, 1); +} +.ant-menu-submenu-selected { + color: #004691; +} +.ant-menu-item:active, +.ant-menu-submenu-title:active { + background: #bccad1; +} +.ant-menu-submenu .ant-menu-sub { + cursor: initial; + transition: background 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), padding 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); +} +.ant-menu-item > a { + display: block; + color: rgba(0, 0, 0, 0.65); +} +.ant-menu-item > a:hover { + color: #004691; +} +.ant-menu-item > a::before { + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + background-color: transparent; + content: ''; +} +.ant-menu-item > .ant-badge > a { + color: rgba(0, 0, 0, 0.65); +} +.ant-menu-item > .ant-badge > a:hover { + color: #004691; +} +.ant-menu-item-divider { + height: 1px; + overflow: hidden; + line-height: 0; + background-color: #e8e8e8; +} +.ant-menu-item:hover, +.ant-menu-item-active, +.ant-menu:not(.ant-menu-inline) .ant-menu-submenu-open, +.ant-menu-submenu-active, +.ant-menu-submenu-title:hover { + color: #004691; +} +.ant-menu-horizontal .ant-menu-item, +.ant-menu-horizontal .ant-menu-submenu { + margin-top: -1px; +} +.ant-menu-horizontal > .ant-menu-item:hover, +.ant-menu-horizontal > .ant-menu-item-active, +.ant-menu-horizontal > .ant-menu-submenu .ant-menu-submenu-title:hover { + background-color: transparent; +} +.ant-menu-item-selected { + color: #004691; +} +.ant-menu-item-selected > a, +.ant-menu-item-selected > a:hover { + color: #004691; +} +.ant-menu:not(.ant-menu-horizontal) .ant-menu-item-selected { + background-color: #bccad1; +} +.ant-menu-inline, +.ant-menu-vertical, +.ant-menu-vertical-left { + border-right: 1px solid #e8e8e8; +} +.ant-menu-vertical-right { + border-left: 1px solid #e8e8e8; +} +.ant-menu-vertical.ant-menu-sub, +.ant-menu-vertical-left.ant-menu-sub, +.ant-menu-vertical-right.ant-menu-sub { + min-width: 160px; + padding: 0; + border-right: 0; + transform-origin: 0 0; +} +.ant-menu-vertical.ant-menu-sub .ant-menu-item, +.ant-menu-vertical-left.ant-menu-sub .ant-menu-item, +.ant-menu-vertical-right.ant-menu-sub .ant-menu-item { + left: 0; + margin-left: 0; + border-right: 0; +} +.ant-menu-vertical.ant-menu-sub .ant-menu-item::after, +.ant-menu-vertical-left.ant-menu-sub .ant-menu-item::after, +.ant-menu-vertical-right.ant-menu-sub .ant-menu-item::after { + border-right: 0; +} +.ant-menu-vertical.ant-menu-sub > .ant-menu-item, +.ant-menu-vertical-left.ant-menu-sub > .ant-menu-item, +.ant-menu-vertical-right.ant-menu-sub > .ant-menu-item, +.ant-menu-vertical.ant-menu-sub > .ant-menu-submenu, +.ant-menu-vertical-left.ant-menu-sub > .ant-menu-submenu, +.ant-menu-vertical-right.ant-menu-sub > .ant-menu-submenu { + transform-origin: 0 0; +} +.ant-menu-horizontal.ant-menu-sub { + min-width: 114px; +} +.ant-menu-item, +.ant-menu-submenu-title { + position: relative; + display: block; + margin: 0; + padding: 0 20px; + white-space: nowrap; + cursor: pointer; + transition: color 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), border-color 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), background 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), padding 0.15s cubic-bezier(0.645, 0.045, 0.355, 1); +} +.ant-menu-item .anticon, +.ant-menu-submenu-title .anticon { + min-width: 14px; + margin-right: 10px; + font-size: 15px; + transition: font-size 0.15s cubic-bezier(0.215, 0.61, 0.355, 1), margin 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); +} +.ant-menu-item .anticon + span, +.ant-menu-submenu-title .anticon + span { + opacity: 1; + transition: opacity 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), width 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); +} +.ant-menu > .ant-menu-item-divider { + height: 1px; + margin: 1px 0; + padding: 0; + overflow: hidden; + line-height: 0; + background-color: #e8e8e8; +} +.ant-menu-submenu-popup { + position: absolute; + z-index: 1050; + border-radius: 4px; +} +.ant-menu-submenu-popup .submenu-title-wrapper { + padding-right: 20px; +} +.ant-menu-submenu-popup::before { + position: absolute; + top: -7px; + right: 0; + bottom: 0; + left: 0; + opacity: 0.0001; + content: ' '; +} +.ant-menu-submenu > .ant-menu { + background-color: #fff; + border-radius: 4px; +} +.ant-menu-submenu > .ant-menu-submenu-title::after { + transition: transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); +} +.ant-menu-submenu-vertical > .ant-menu-submenu-title .ant-menu-submenu-arrow, +.ant-menu-submenu-vertical-left > .ant-menu-submenu-title .ant-menu-submenu-arrow, +.ant-menu-submenu-vertical-right > .ant-menu-submenu-title .ant-menu-submenu-arrow, +.ant-menu-submenu-inline > .ant-menu-submenu-title .ant-menu-submenu-arrow { + position: absolute; + top: 50%; + right: 16px; + width: 10px; + transition: transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); +} +.ant-menu-submenu-vertical > .ant-menu-submenu-title .ant-menu-submenu-arrow::before, +.ant-menu-submenu-vertical-left > .ant-menu-submenu-title .ant-menu-submenu-arrow::before, +.ant-menu-submenu-vertical-right > .ant-menu-submenu-title .ant-menu-submenu-arrow::before, +.ant-menu-submenu-inline > .ant-menu-submenu-title .ant-menu-submenu-arrow::before, +.ant-menu-submenu-vertical > .ant-menu-submenu-title .ant-menu-submenu-arrow::after, +.ant-menu-submenu-vertical-left > .ant-menu-submenu-title .ant-menu-submenu-arrow::after, +.ant-menu-submenu-vertical-right > .ant-menu-submenu-title .ant-menu-submenu-arrow::after, +.ant-menu-submenu-inline > .ant-menu-submenu-title .ant-menu-submenu-arrow::after { + position: absolute; + width: 6px; + height: 1.5px; + background: #fff; + background: rgba(0, 0, 0, 0.65) \9; + background-image: linear-gradient(to right, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)); + background-image: none \9; + border-radius: 2px; + transition: background 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), top 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); + content: ''; +} +.ant-menu-submenu-vertical > .ant-menu-submenu-title .ant-menu-submenu-arrow::before, +.ant-menu-submenu-vertical-left > .ant-menu-submenu-title .ant-menu-submenu-arrow::before, +.ant-menu-submenu-vertical-right > .ant-menu-submenu-title .ant-menu-submenu-arrow::before, +.ant-menu-submenu-inline > .ant-menu-submenu-title .ant-menu-submenu-arrow::before { + transform: rotate(45deg) translateY(-2px); +} +.ant-menu-submenu-vertical > .ant-menu-submenu-title .ant-menu-submenu-arrow::after, +.ant-menu-submenu-vertical-left > .ant-menu-submenu-title .ant-menu-submenu-arrow::after, +.ant-menu-submenu-vertical-right > .ant-menu-submenu-title .ant-menu-submenu-arrow::after, +.ant-menu-submenu-inline > .ant-menu-submenu-title .ant-menu-submenu-arrow::after { + transform: rotate(-45deg) translateY(2px); +} +.ant-menu-submenu-vertical > .ant-menu-submenu-title:hover .ant-menu-submenu-arrow::after, +.ant-menu-submenu-vertical-left > .ant-menu-submenu-title:hover .ant-menu-submenu-arrow::after, +.ant-menu-submenu-vertical-right > .ant-menu-submenu-title:hover .ant-menu-submenu-arrow::after, +.ant-menu-submenu-inline > .ant-menu-submenu-title:hover .ant-menu-submenu-arrow::after, +.ant-menu-submenu-vertical > .ant-menu-submenu-title:hover .ant-menu-submenu-arrow::before, +.ant-menu-submenu-vertical-left > .ant-menu-submenu-title:hover .ant-menu-submenu-arrow::before, +.ant-menu-submenu-vertical-right > .ant-menu-submenu-title:hover .ant-menu-submenu-arrow::before, +.ant-menu-submenu-inline > .ant-menu-submenu-title:hover .ant-menu-submenu-arrow::before { + background: linear-gradient(to right, #004691, #004691); +} +.ant-menu-submenu-inline > .ant-menu-submenu-title .ant-menu-submenu-arrow::before { + transform: rotate(-45deg) translateX(2px); +} +.ant-menu-submenu-inline > .ant-menu-submenu-title .ant-menu-submenu-arrow::after { + transform: rotate(45deg) translateX(-2px); +} +.ant-menu-submenu-open.ant-menu-submenu-inline > .ant-menu-submenu-title .ant-menu-submenu-arrow { + transform: translateY(-2px); +} +.ant-menu-submenu-open.ant-menu-submenu-inline > .ant-menu-submenu-title .ant-menu-submenu-arrow::after { + transform: rotate(-45deg) translateX(-2px); +} +.ant-menu-submenu-open.ant-menu-submenu-inline > .ant-menu-submenu-title .ant-menu-submenu-arrow::before { + transform: rotate(45deg) translateX(2px); +} +.ant-menu-vertical .ant-menu-submenu-selected, +.ant-menu-vertical-left .ant-menu-submenu-selected, +.ant-menu-vertical-right .ant-menu-submenu-selected { + color: #004691; +} +.ant-menu-vertical .ant-menu-submenu-selected > a, +.ant-menu-vertical-left .ant-menu-submenu-selected > a, +.ant-menu-vertical-right .ant-menu-submenu-selected > a { + color: #004691; +} +.ant-menu-horizontal { + line-height: 46px; + white-space: nowrap; + border: 0; + border-bottom: 1px solid #e8e8e8; + box-shadow: none; +} +.ant-menu-horizontal > .ant-menu-item, +.ant-menu-horizontal > .ant-menu-submenu { + position: relative; + top: 1px; + display: inline-block; + vertical-align: bottom; + border-bottom: 2px solid transparent; +} +.ant-menu-horizontal > .ant-menu-item:hover, +.ant-menu-horizontal > .ant-menu-submenu:hover, +.ant-menu-horizontal > .ant-menu-item-active, +.ant-menu-horizontal > .ant-menu-submenu-active, +.ant-menu-horizontal > .ant-menu-item-open, +.ant-menu-horizontal > .ant-menu-submenu-open, +.ant-menu-horizontal > .ant-menu-item-selected, +.ant-menu-horizontal > .ant-menu-submenu-selected { + color: #004691; + border-bottom: 2px solid #004691; +} +.ant-menu-horizontal > .ant-menu-item > a { + display: block; + color: rgba(0, 0, 0, 0.65); +} +.ant-menu-horizontal > .ant-menu-item > a:hover { + color: #004691; +} +.ant-menu-horizontal > .ant-menu-item > a::before { + bottom: -2px; +} +.ant-menu-horizontal > .ant-menu-item-selected > a { + color: #004691; +} +.ant-menu-horizontal::after { + display: block; + clear: both; + height: 0; + content: '\20'; +} +.ant-menu-vertical .ant-menu-item, +.ant-menu-vertical-left .ant-menu-item, +.ant-menu-vertical-right .ant-menu-item, +.ant-menu-inline .ant-menu-item { + position: relative; +} +.ant-menu-vertical .ant-menu-item::after, +.ant-menu-vertical-left .ant-menu-item::after, +.ant-menu-vertical-right .ant-menu-item::after, +.ant-menu-inline .ant-menu-item::after { + position: absolute; + top: 0; + right: 0; + bottom: 0; + border-right: 3px solid #004691; + transform: scaleY(0.0001); + opacity: 0; + transition: transform 0.15s cubic-bezier(0.215, 0.61, 0.355, 1), opacity 0.15s cubic-bezier(0.215, 0.61, 0.355, 1); + content: ''; +} +.ant-menu-vertical .ant-menu-item, +.ant-menu-vertical-left .ant-menu-item, +.ant-menu-vertical-right .ant-menu-item, +.ant-menu-inline .ant-menu-item, +.ant-menu-vertical .ant-menu-submenu-title, +.ant-menu-vertical-left .ant-menu-submenu-title, +.ant-menu-vertical-right .ant-menu-submenu-title, +.ant-menu-inline .ant-menu-submenu-title { + height: 40px; + margin-top: 4px; + margin-bottom: 4px; + padding: 0 16px; + overflow: hidden; + font-size: 15px; + line-height: 40px; + text-overflow: ellipsis; +} +.ant-menu-vertical .ant-menu-submenu, +.ant-menu-vertical-left .ant-menu-submenu, +.ant-menu-vertical-right .ant-menu-submenu, +.ant-menu-inline .ant-menu-submenu { + padding-bottom: 0.02px; +} +.ant-menu-vertical .ant-menu-item:not(:last-child), +.ant-menu-vertical-left .ant-menu-item:not(:last-child), +.ant-menu-vertical-right .ant-menu-item:not(:last-child), +.ant-menu-inline .ant-menu-item:not(:last-child) { + margin-bottom: 8px; +} +.ant-menu-vertical > .ant-menu-item, +.ant-menu-vertical-left > .ant-menu-item, +.ant-menu-vertical-right > .ant-menu-item, +.ant-menu-inline > .ant-menu-item, +.ant-menu-vertical > .ant-menu-submenu > .ant-menu-submenu-title, +.ant-menu-vertical-left > .ant-menu-submenu > .ant-menu-submenu-title, +.ant-menu-vertical-right > .ant-menu-submenu > .ant-menu-submenu-title, +.ant-menu-inline > .ant-menu-submenu > .ant-menu-submenu-title { + height: 40px; + line-height: 40px; +} +.ant-menu-inline { + width: 100%; +} +.ant-menu-inline .ant-menu-selected::after, +.ant-menu-inline .ant-menu-item-selected::after { + transform: scaleY(1); + opacity: 1; + transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), opacity 0.15s cubic-bezier(0.645, 0.045, 0.355, 1); +} +.ant-menu-inline .ant-menu-item, +.ant-menu-inline .ant-menu-submenu-title { + width: calc(100% + 1px); +} +.ant-menu-inline .ant-menu-submenu-title { + padding-right: 34px; +} +.ant-menu-inline-collapsed { + width: 80px; +} +.ant-menu-inline-collapsed > .ant-menu-item, +.ant-menu-inline-collapsed > .ant-menu-item-group > .ant-menu-item-group-list > .ant-menu-item, +.ant-menu-inline-collapsed > .ant-menu-item-group > .ant-menu-item-group-list > .ant-menu-submenu > .ant-menu-submenu-title, +.ant-menu-inline-collapsed > .ant-menu-submenu > .ant-menu-submenu-title { + left: 0; + padding: 0 31.5px !important; + text-overflow: clip; +} +.ant-menu-inline-collapsed > .ant-menu-item .ant-menu-submenu-arrow, +.ant-menu-inline-collapsed > .ant-menu-item-group > .ant-menu-item-group-list > .ant-menu-item .ant-menu-submenu-arrow, +.ant-menu-inline-collapsed > .ant-menu-item-group > .ant-menu-item-group-list > .ant-menu-submenu > .ant-menu-submenu-title .ant-menu-submenu-arrow, +.ant-menu-inline-collapsed > .ant-menu-submenu > .ant-menu-submenu-title .ant-menu-submenu-arrow { + display: none; +} +.ant-menu-inline-collapsed > .ant-menu-item .anticon, +.ant-menu-inline-collapsed > .ant-menu-item-group > .ant-menu-item-group-list > .ant-menu-item .anticon, +.ant-menu-inline-collapsed > .ant-menu-item-group > .ant-menu-item-group-list > .ant-menu-submenu > .ant-menu-submenu-title .anticon, +.ant-menu-inline-collapsed > .ant-menu-submenu > .ant-menu-submenu-title .anticon { + margin: 0; + font-size: 17px; + line-height: 40px; +} +.ant-menu-inline-collapsed > .ant-menu-item .anticon + span, +.ant-menu-inline-collapsed > .ant-menu-item-group > .ant-menu-item-group-list > .ant-menu-item .anticon + span, +.ant-menu-inline-collapsed > .ant-menu-item-group > .ant-menu-item-group-list > .ant-menu-submenu > .ant-menu-submenu-title .anticon + span, +.ant-menu-inline-collapsed > .ant-menu-submenu > .ant-menu-submenu-title .anticon + span { + display: inline-block; + max-width: 0; + opacity: 0; +} +.ant-menu-inline-collapsed-tooltip { + pointer-events: none; +} +.ant-menu-inline-collapsed-tooltip .anticon { + display: none; +} +.ant-menu-inline-collapsed-tooltip a { + color: rgba(255, 255, 255, 0.85); +} +.ant-menu-inline-collapsed .ant-menu-item-group-title { + padding-right: 4px; + padding-left: 4px; + overflow: hidden; + white-space: nowrap; + text-overflow: ellipsis; +} +.ant-menu-item-group-list { + margin: 0; + padding: 0; +} +.ant-menu-item-group-list .ant-menu-item, +.ant-menu-item-group-list .ant-menu-submenu-title { + padding: 0 16px 0 28px; +} +.ant-menu-root.ant-menu-vertical, +.ant-menu-root.ant-menu-vertical-left, +.ant-menu-root.ant-menu-vertical-right, +.ant-menu-root.ant-menu-inline { + box-shadow: none; +} +.ant-menu-sub.ant-menu-inline { + padding: 0; + border: 0; + border-radius: 0; + box-shadow: none; +} +.ant-menu-sub.ant-menu-inline > .ant-menu-item, +.ant-menu-sub.ant-menu-inline > .ant-menu-submenu > .ant-menu-submenu-title { + height: 40px; + line-height: 40px; + list-style-position: inside; + list-style-type: disc; +} +.ant-menu-sub.ant-menu-inline .ant-menu-item-group-title { + padding-left: 32px; +} +.ant-menu-item-disabled, +.ant-menu-submenu-disabled { + color: rgba(0, 0, 0, 0.25) !important; + background: none; + border-color: transparent !important; + cursor: not-allowed; +} +.ant-menu-item-disabled > a, +.ant-menu-submenu-disabled > a { + color: rgba(0, 0, 0, 0.25) !important; + pointer-events: none; +} +.ant-menu-item-disabled > .ant-menu-submenu-title, +.ant-menu-submenu-disabled > .ant-menu-submenu-title { + color: rgba(0, 0, 0, 0.25) !important; + cursor: not-allowed; +} +.ant-menu-item-disabled > .ant-menu-submenu-title > .ant-menu-submenu-arrow::before, +.ant-menu-submenu-disabled > .ant-menu-submenu-title > .ant-menu-submenu-arrow::before, +.ant-menu-item-disabled > .ant-menu-submenu-title > .ant-menu-submenu-arrow::after, +.ant-menu-submenu-disabled > .ant-menu-submenu-title > .ant-menu-submenu-arrow::after { + background: rgba(0, 0, 0, 0.25) !important; +} +.ant-menu-dark, +.ant-menu-dark .ant-menu-sub { + color: rgba(255, 255, 255, 0.65); + background: #001529; +} +.ant-menu-dark .ant-menu-submenu-title .ant-menu-submenu-arrow, +.ant-menu-dark .ant-menu-sub .ant-menu-submenu-title .ant-menu-submenu-arrow { + opacity: 0.45; + transition: all 0.3s; +} +.ant-menu-dark .ant-menu-submenu-title .ant-menu-submenu-arrow::after, +.ant-menu-dark .ant-menu-sub .ant-menu-submenu-title .ant-menu-submenu-arrow::after, +.ant-menu-dark .ant-menu-submenu-title .ant-menu-submenu-arrow::before, +.ant-menu-dark .ant-menu-sub .ant-menu-submenu-title .ant-menu-submenu-arrow::before { + background: #fff; +} +.ant-menu-dark.ant-menu-submenu-popup { + background: transparent; +} +.ant-menu-dark .ant-menu-inline.ant-menu-sub { + background: #000c17; + box-shadow: 0 2px 8px rgba(0, 0, 0, 0.45) inset; +} +.ant-menu-dark.ant-menu-horizontal { + border-bottom: 0; +} +.ant-menu-dark.ant-menu-horizontal > .ant-menu-item, +.ant-menu-dark.ant-menu-horizontal > .ant-menu-submenu { + top: 0; + margin-top: 0; + border-color: #001529; + border-bottom: 0; +} +.ant-menu-dark.ant-menu-horizontal > .ant-menu-item > a::before { + bottom: 0; +} +.ant-menu-dark .ant-menu-item, +.ant-menu-dark .ant-menu-item-group-title, +.ant-menu-dark .ant-menu-item > a { + color: rgba(255, 255, 255, 0.65); +} +.ant-menu-dark.ant-menu-inline, +.ant-menu-dark.ant-menu-vertical, +.ant-menu-dark.ant-menu-vertical-left, +.ant-menu-dark.ant-menu-vertical-right { + border-right: 0; +} +.ant-menu-dark.ant-menu-inline .ant-menu-item, +.ant-menu-dark.ant-menu-vertical .ant-menu-item, +.ant-menu-dark.ant-menu-vertical-left .ant-menu-item, +.ant-menu-dark.ant-menu-vertical-right .ant-menu-item { + left: 0; + margin-left: 0; + border-right: 0; +} +.ant-menu-dark.ant-menu-inline .ant-menu-item::after, +.ant-menu-dark.ant-menu-vertical .ant-menu-item::after, +.ant-menu-dark.ant-menu-vertical-left .ant-menu-item::after, +.ant-menu-dark.ant-menu-vertical-right .ant-menu-item::after { + border-right: 0; +} +.ant-menu-dark.ant-menu-inline .ant-menu-item, +.ant-menu-dark.ant-menu-inline .ant-menu-submenu-title { + width: 100%; +} +.ant-menu-dark .ant-menu-item:hover, +.ant-menu-dark .ant-menu-item-active, +.ant-menu-dark .ant-menu-submenu-active, +.ant-menu-dark .ant-menu-submenu-open, +.ant-menu-dark .ant-menu-submenu-selected, +.ant-menu-dark .ant-menu-submenu-title:hover { + color: #fff; + background-color: transparent; +} +.ant-menu-dark .ant-menu-item:hover > a, +.ant-menu-dark .ant-menu-item-active > a, +.ant-menu-dark .ant-menu-submenu-active > a, +.ant-menu-dark .ant-menu-submenu-open > a, +.ant-menu-dark .ant-menu-submenu-selected > a, +.ant-menu-dark .ant-menu-submenu-title:hover > a { + color: #fff; +} +.ant-menu-dark .ant-menu-item:hover > .ant-menu-submenu-title > .ant-menu-submenu-arrow, +.ant-menu-dark .ant-menu-item-active > .ant-menu-submenu-title > .ant-menu-submenu-arrow, +.ant-menu-dark .ant-menu-submenu-active > .ant-menu-submenu-title > .ant-menu-submenu-arrow, +.ant-menu-dark .ant-menu-submenu-open > .ant-menu-submenu-title > .ant-menu-submenu-arrow, +.ant-menu-dark .ant-menu-submenu-selected > .ant-menu-submenu-title > .ant-menu-submenu-arrow, +.ant-menu-dark .ant-menu-submenu-title:hover > .ant-menu-submenu-title > .ant-menu-submenu-arrow, +.ant-menu-dark .ant-menu-item:hover > .ant-menu-submenu-title:hover > .ant-menu-submenu-arrow, +.ant-menu-dark .ant-menu-item-active > .ant-menu-submenu-title:hover > .ant-menu-submenu-arrow, +.ant-menu-dark .ant-menu-submenu-active > .ant-menu-submenu-title:hover > .ant-menu-submenu-arrow, +.ant-menu-dark .ant-menu-submenu-open > .ant-menu-submenu-title:hover > .ant-menu-submenu-arrow, +.ant-menu-dark .ant-menu-submenu-selected > .ant-menu-submenu-title:hover > .ant-menu-submenu-arrow, +.ant-menu-dark .ant-menu-submenu-title:hover > .ant-menu-submenu-title:hover > .ant-menu-submenu-arrow { + opacity: 1; +} +.ant-menu-dark .ant-menu-item:hover > .ant-menu-submenu-title > .ant-menu-submenu-arrow::after, +.ant-menu-dark .ant-menu-item-active > .ant-menu-submenu-title > .ant-menu-submenu-arrow::after, +.ant-menu-dark .ant-menu-submenu-active > .ant-menu-submenu-title > .ant-menu-submenu-arrow::after, +.ant-menu-dark .ant-menu-submenu-open > .ant-menu-submenu-title > .ant-menu-submenu-arrow::after, +.ant-menu-dark .ant-menu-submenu-selected > .ant-menu-submenu-title > .ant-menu-submenu-arrow::after, +.ant-menu-dark .ant-menu-submenu-title:hover > .ant-menu-submenu-title > .ant-menu-submenu-arrow::after, +.ant-menu-dark .ant-menu-item:hover > .ant-menu-submenu-title:hover > .ant-menu-submenu-arrow::after, +.ant-menu-dark .ant-menu-item-active > .ant-menu-submenu-title:hover > .ant-menu-submenu-arrow::after, +.ant-menu-dark .ant-menu-submenu-active > .ant-menu-submenu-title:hover > .ant-menu-submenu-arrow::after, +.ant-menu-dark .ant-menu-submenu-open > .ant-menu-submenu-title:hover > .ant-menu-submenu-arrow::after, +.ant-menu-dark .ant-menu-submenu-selected > .ant-menu-submenu-title:hover > .ant-menu-submenu-arrow::after, +.ant-menu-dark .ant-menu-submenu-title:hover > .ant-menu-submenu-title:hover > .ant-menu-submenu-arrow::after, +.ant-menu-dark .ant-menu-item:hover > .ant-menu-submenu-title > .ant-menu-submenu-arrow::before, +.ant-menu-dark .ant-menu-item-active > .ant-menu-submenu-title > .ant-menu-submenu-arrow::before, +.ant-menu-dark .ant-menu-submenu-active > .ant-menu-submenu-title > .ant-menu-submenu-arrow::before, +.ant-menu-dark .ant-menu-submenu-open > .ant-menu-submenu-title > .ant-menu-submenu-arrow::before, +.ant-menu-dark .ant-menu-submenu-selected > .ant-menu-submenu-title > .ant-menu-submenu-arrow::before, +.ant-menu-dark .ant-menu-submenu-title:hover > .ant-menu-submenu-title > .ant-menu-submenu-arrow::before, +.ant-menu-dark .ant-menu-item:hover > .ant-menu-submenu-title:hover > .ant-menu-submenu-arrow::before, +.ant-menu-dark .ant-menu-item-active > .ant-menu-submenu-title:hover > .ant-menu-submenu-arrow::before, +.ant-menu-dark .ant-menu-submenu-active > .ant-menu-submenu-title:hover > .ant-menu-submenu-arrow::before, +.ant-menu-dark .ant-menu-submenu-open > .ant-menu-submenu-title:hover > .ant-menu-submenu-arrow::before, +.ant-menu-dark .ant-menu-submenu-selected > .ant-menu-submenu-title:hover > .ant-menu-submenu-arrow::before, +.ant-menu-dark .ant-menu-submenu-title:hover > .ant-menu-submenu-title:hover > .ant-menu-submenu-arrow::before { + background: #fff; +} +.ant-menu-dark .ant-menu-item:hover { + background-color: transparent; +} +.ant-menu-dark .ant-menu-item-selected { + color: #fff; + border-right: 0; +} +.ant-menu-dark .ant-menu-item-selected::after { + border-right: 0; +} +.ant-menu-dark .ant-menu-item-selected > a, +.ant-menu-dark .ant-menu-item-selected > a:hover { + color: #fff; +} +.ant-menu-dark .ant-menu-item-selected .anticon { + color: #fff; +} +.ant-menu-dark .ant-menu-item-selected .anticon + span { + color: #fff; +} +.ant-menu.ant-menu-dark .ant-menu-item-selected, +.ant-menu-submenu-popup.ant-menu-dark .ant-menu-item-selected { + background-color: #004691; +} +.ant-menu-dark .ant-menu-item-disabled, +.ant-menu-dark .ant-menu-submenu-disabled, +.ant-menu-dark .ant-menu-item-disabled > a, +.ant-menu-dark .ant-menu-submenu-disabled > a { + color: rgba(255, 255, 255, 0.35) !important; + opacity: 0.8; +} +.ant-menu-dark .ant-menu-item-disabled > .ant-menu-submenu-title, +.ant-menu-dark .ant-menu-submenu-disabled > .ant-menu-submenu-title { + color: rgba(255, 255, 255, 0.35) !important; +} +.ant-menu-dark .ant-menu-item-disabled > .ant-menu-submenu-title > .ant-menu-submenu-arrow::before, +.ant-menu-dark .ant-menu-submenu-disabled > .ant-menu-submenu-title > .ant-menu-submenu-arrow::before, +.ant-menu-dark .ant-menu-item-disabled > .ant-menu-submenu-title > .ant-menu-submenu-arrow::after, +.ant-menu-dark .ant-menu-submenu-disabled > .ant-menu-submenu-title > .ant-menu-submenu-arrow::after { + background: rgba(255, 255, 255, 0.35) !important; +} +.ant-message { + box-sizing: border-box; + margin: 0; + padding: 0; + color: rgba(0, 0, 0, 0.65); + font-size: 15px; + font-variant: tabular-nums; + line-height: 1.5; + list-style: none; + font-feature-settings: 'tnum'; + position: fixed; + top: 16px; + left: 0; + z-index: 1010; + width: 100%; + pointer-events: none; +} +.ant-message-notice { + padding: 8px; + text-align: center; +} +.ant-message-notice:first-child { + margin-top: -8px; +} +.ant-message-notice-content { + display: inline-block; + padding: 10px 16px; + background: #fff; + border-radius: 4px; + box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); + pointer-events: all; +} +.ant-message-success .anticon { + color: #52c41a; +} +.ant-message-error .anticon { + color: #f5222d; +} +.ant-message-warning .anticon { + color: #faad14; +} +.ant-message-info .anticon, +.ant-message-loading .anticon { + color: #1890ff; +} +.ant-message .anticon { + position: relative; + top: 1px; + margin-right: 8px; + font-size: 17px; +} +.ant-message-notice.move-up-leave.move-up-leave-active { + overflow: hidden; + -webkit-animation-name: MessageMoveOut; + animation-name: MessageMoveOut; + -webkit-animation-duration: 0.3s; + animation-duration: 0.3s; +} +@-webkit-keyframes MessageMoveOut { + 0% { + max-height: 150px; + padding: 8px; + opacity: 1; + } + 100% { + max-height: 0; + padding: 0; + opacity: 0; + } +} +@keyframes MessageMoveOut { + 0% { + max-height: 150px; + padding: 8px; + opacity: 1; + } + 100% { + max-height: 0; + padding: 0; + opacity: 0; + } +} +.ant-modal { + box-sizing: border-box; + margin: 0; + padding: 0; + color: rgba(0, 0, 0, 0.65); + font-size: 15px; + font-variant: tabular-nums; + line-height: 1.5; + list-style: none; + font-feature-settings: 'tnum'; + position: relative; + top: 100px; + width: auto; + margin: 0 auto; + padding-bottom: 24px; + pointer-events: none; +} +.ant-modal-wrap { + position: fixed; + top: 0; + right: 0; + bottom: 0; + left: 0; + z-index: 1000; + overflow: auto; + outline: 0; + -webkit-overflow-scrolling: touch; +} +.ant-modal-title { + margin: 0; + color: rgba(0, 0, 0, 0.85); + font-weight: 500; + font-size: 17px; + line-height: 22px; + word-wrap: break-word; +} +.ant-modal-content { + position: relative; + background-color: #fff; + background-clip: padding-box; + border: 0; + border-radius: 4px; + box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); + pointer-events: auto; +} +.ant-modal-close { + position: absolute; + top: 0; + right: 0; + z-index: 10; + padding: 0; + color: rgba(0, 0, 0, 0.45); + font-weight: 700; + line-height: 1; + text-decoration: none; + background: transparent; + border: 0; + outline: 0; + cursor: pointer; + transition: color 0.3s; +} +.ant-modal-close-x { + display: block; + width: 56px; + height: 56px; + font-size: 17px; + font-style: normal; + line-height: 56px; + text-align: center; + text-transform: none; + text-rendering: auto; +} +.ant-modal-close:focus, +.ant-modal-close:hover { + color: rgba(0, 0, 0, 0.75); + text-decoration: none; +} +.ant-modal-header { + padding: 16px 24px; + color: rgba(0, 0, 0, 0.65); + background: #fff; + border-bottom: 1px solid #e8e8e8; + border-radius: 4px 4px 0 0; +} +.ant-modal-body { + padding: 24px; + font-size: 15px; + line-height: 1.5; + word-wrap: break-word; +} +.ant-modal-footer { + padding: 10px 16px; + text-align: right; + background: transparent; + border-top: 1px solid #e8e8e8; + border-radius: 0 0 4px 4px; +} +.ant-modal-footer button + button { + margin-bottom: 0; + margin-left: 8px; +} +.ant-modal.zoom-enter, +.ant-modal.zoom-appear { + transform: none; + opacity: 0; + -webkit-animation-duration: 0.3s; + animation-duration: 0.3s; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} +.ant-modal-mask { + position: fixed; + top: 0; + right: 0; + bottom: 0; + left: 0; + z-index: 1000; + height: 100%; + background-color: rgba(0, 0, 0, 0.45); + filter: alpha(opacity=50); +} +.ant-modal-mask-hidden { + display: none; +} +.ant-modal-open { + overflow: hidden; +} +.ant-modal-centered { + text-align: center; +} +.ant-modal-centered::before { + display: inline-block; + width: 0; + height: 100%; + vertical-align: middle; + content: ''; +} +.ant-modal-centered .ant-modal { + top: 0; + display: inline-block; + text-align: left; + vertical-align: middle; +} +@media (max-width: 767px) { + .ant-modal { + max-width: calc(100vw - 16px); + margin: 8px auto; + } + .ant-modal-centered .ant-modal { + flex: 1; + } +} +.ant-modal-confirm .ant-modal-header { + display: none; +} +.ant-modal-confirm .ant-modal-body { + padding: 32px 32px 24px; +} +.ant-modal-confirm-body-wrapper { + zoom: 1; +} +.ant-modal-confirm-body-wrapper::before, +.ant-modal-confirm-body-wrapper::after { + display: table; + content: ''; +} +.ant-modal-confirm-body-wrapper::after { + clear: both; +} +.ant-modal-confirm-body-wrapper::before, +.ant-modal-confirm-body-wrapper::after { + display: table; + content: ''; +} +.ant-modal-confirm-body-wrapper::after { + clear: both; +} +.ant-modal-confirm-body .ant-modal-confirm-title { + display: block; + overflow: hidden; + color: rgba(0, 0, 0, 0.85); + font-weight: 500; + font-size: 17px; + line-height: 1.4; +} +.ant-modal-confirm-body .ant-modal-confirm-content { + margin-top: 8px; + color: rgba(0, 0, 0, 0.65); + font-size: 15px; +} +.ant-modal-confirm-body > .anticon { + float: left; + margin-right: 16px; + font-size: 22px; +} +.ant-modal-confirm-body > .anticon + .ant-modal-confirm-title + .ant-modal-confirm-content { + margin-left: 38px; +} +.ant-modal-confirm .ant-modal-confirm-btns { + float: right; + margin-top: 24px; +} +.ant-modal-confirm .ant-modal-confirm-btns button + button { + margin-bottom: 0; + margin-left: 8px; +} +.ant-modal-confirm-error .ant-modal-confirm-body > .anticon { + color: #f5222d; +} +.ant-modal-confirm-warning .ant-modal-confirm-body > .anticon, +.ant-modal-confirm-confirm .ant-modal-confirm-body > .anticon { + color: #faad14; +} +.ant-modal-confirm-info .ant-modal-confirm-body > .anticon { + color: #1890ff; +} +.ant-modal-confirm-success .ant-modal-confirm-body > .anticon { + color: #52c41a; +} +.ant-notification { + box-sizing: border-box; + margin: 0; + padding: 0; + color: rgba(0, 0, 0, 0.65); + font-size: 15px; + font-variant: tabular-nums; + line-height: 1.5; + list-style: none; + font-feature-settings: 'tnum'; + position: fixed; + z-index: 1010; + width: 384px; + max-width: calc(100vw - 32px); + margin-right: 24px; +} +.ant-notification-topLeft, +.ant-notification-bottomLeft { + margin-right: 0; + margin-left: 24px; +} +.ant-notification-topLeft .ant-notification-fade-enter.ant-notification-fade-enter-active, +.ant-notification-bottomLeft .ant-notification-fade-enter.ant-notification-fade-enter-active, +.ant-notification-topLeft .ant-notification-fade-appear.ant-notification-fade-appear-active, +.ant-notification-bottomLeft .ant-notification-fade-appear.ant-notification-fade-appear-active { + -webkit-animation-name: NotificationLeftFadeIn; + animation-name: NotificationLeftFadeIn; +} +.ant-notification-close-icon { + font-size: 15px; + cursor: pointer; +} +.ant-notification-notice { + position: relative; + margin-bottom: 16px; + padding: 16px 24px; + overflow: hidden; + line-height: 1.5; + background: #fff; + border-radius: 4px; + box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); +} +.ant-notification-notice-message { + display: inline-block; + margin-bottom: 8px; + color: rgba(0, 0, 0, 0.85); + font-size: 17px; + line-height: 24px; +} +.ant-notification-notice-message-single-line-auto-margin { + display: block; + width: calc(384px - 24px * 2 - 24px - 48px - 100%); + max-width: 4px; + background-color: transparent; + pointer-events: none; +} +.ant-notification-notice-message-single-line-auto-margin::before { + display: block; + content: ''; +} +.ant-notification-notice-description { + font-size: 15px; +} +.ant-notification-notice-closable .ant-notification-notice-message { + padding-right: 24px; +} +.ant-notification-notice-with-icon .ant-notification-notice-message { + margin-bottom: 4px; + margin-left: 48px; + font-size: 17px; +} +.ant-notification-notice-with-icon .ant-notification-notice-description { + margin-left: 48px; + font-size: 15px; +} +.ant-notification-notice-icon { + position: absolute; + margin-left: 4px; + font-size: 24px; + line-height: 24px; +} +.anticon.ant-notification-notice-icon-success { + color: #52c41a; +} +.anticon.ant-notification-notice-icon-info { + color: #1890ff; +} +.anticon.ant-notification-notice-icon-warning { + color: #faad14; +} +.anticon.ant-notification-notice-icon-error { + color: #f5222d; +} +.ant-notification-notice-close { + position: absolute; + top: 16px; + right: 22px; + color: rgba(0, 0, 0, 0.45); + outline: none; +} +.ant-notification-notice-close:hover { + color: rgba(0, 0, 0, 0.67); +} +.ant-notification-notice-btn { + float: right; + margin-top: 16px; +} +.ant-notification .notification-fade-effect { + -webkit-animation-duration: 0.24s; + animation-duration: 0.24s; + -webkit-animation-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1); + animation-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1); + -webkit-animation-fill-mode: both; + animation-fill-mode: both; +} +.ant-notification-fade-enter, +.ant-notification-fade-appear { + opacity: 0; + -webkit-animation-duration: 0.24s; + animation-duration: 0.24s; + -webkit-animation-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1); + animation-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1); + -webkit-animation-fill-mode: both; + animation-fill-mode: both; + -webkit-animation-play-state: paused; + animation-play-state: paused; +} +.ant-notification-fade-leave { + -webkit-animation-duration: 0.24s; + animation-duration: 0.24s; + -webkit-animation-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1); + animation-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1); + -webkit-animation-fill-mode: both; + animation-fill-mode: both; + -webkit-animation-duration: 0.2s; + animation-duration: 0.2s; + -webkit-animation-play-state: paused; + animation-play-state: paused; +} +.ant-notification-fade-enter.ant-notification-fade-enter-active, +.ant-notification-fade-appear.ant-notification-fade-appear-active { + -webkit-animation-name: NotificationFadeIn; + animation-name: NotificationFadeIn; + -webkit-animation-play-state: running; + animation-play-state: running; +} +.ant-notification-fade-leave.ant-notification-fade-leave-active { + -webkit-animation-name: NotificationFadeOut; + animation-name: NotificationFadeOut; + -webkit-animation-play-state: running; + animation-play-state: running; +} +@-webkit-keyframes NotificationFadeIn { + 0% { + left: 384px; + opacity: 0; + } + 100% { + left: 0; + opacity: 1; + } +} +@keyframes NotificationFadeIn { + 0% { + left: 384px; + opacity: 0; + } + 100% { + left: 0; + opacity: 1; + } +} +@-webkit-keyframes NotificationLeftFadeIn { + 0% { + right: 384px; + opacity: 0; + } + 100% { + right: 0; + opacity: 1; + } +} +@keyframes NotificationLeftFadeIn { + 0% { + right: 384px; + opacity: 0; + } + 100% { + right: 0; + opacity: 1; + } +} +@-webkit-keyframes NotificationFadeOut { + 0% { + max-height: 150px; + margin-bottom: 16px; + padding-top: 16px 24px; + padding-bottom: 16px 24px; + opacity: 1; + } + 100% { + max-height: 0; + margin-bottom: 0; + padding-top: 0; + padding-bottom: 0; + opacity: 0; + } +} +@keyframes NotificationFadeOut { + 0% { + max-height: 150px; + margin-bottom: 16px; + padding-top: 16px 24px; + padding-bottom: 16px 24px; + opacity: 1; + } + 100% { + max-height: 0; + margin-bottom: 0; + padding-top: 0; + padding-bottom: 0; + opacity: 0; + } +} +.ant-page-header { + box-sizing: border-box; + margin: 0; + padding: 0; + color: rgba(0, 0, 0, 0.65); + font-size: 15px; + font-variant: tabular-nums; + line-height: 1.5; + list-style: none; + font-feature-settings: 'tnum'; + position: relative; + padding: 16px 24px; + background-color: #fff; +} +.ant-page-header-ghost { + background-color: inherit; +} +.ant-page-header.has-breadcrumb { + padding-top: 12px; +} +.ant-page-header.has-footer { + padding-bottom: 0; +} +.ant-page-header-back { + float: left; + margin: 8px 0; + margin-right: 16px; + font-size: 16px; + line-height: 1; +} +.ant-page-header-back-button { + color: #004691; + text-decoration: none; + outline: none; + transition: color 0.3s; + color: #000; + cursor: pointer; +} +.ant-page-header-back-button:focus, +.ant-page-header-back-button:hover { + color: #195e9e; +} +.ant-page-header-back-button:active { + color: #00306b; +} +.ant-page-header .ant-divider-vertical { + height: 14px; + margin: 0 12px; + vertical-align: middle; +} +.ant-breadcrumb + .ant-page-header-heading { + margin-top: 8px; +} +.ant-page-header-heading { + width: 100%; + overflow: hidden; +} +.ant-page-header-heading-title { + display: block; + float: left; + margin-bottom: 0; + padding-right: 12px; + color: rgba(0, 0, 0, 0.85); + font-weight: 600; + font-size: 22px; + line-height: 32px; +} +.ant-page-header-heading .ant-avatar { + float: left; + margin-right: 12px; +} +.ant-page-header-heading-sub-title { + float: left; + margin: 5px 0; + margin-right: 12px; + color: rgba(0, 0, 0, 0.45); + font-size: 14px; + line-height: 22px; +} +.ant-page-header-heading-tags { + float: left; + margin: 4px 0; +} +.ant-page-header-heading-extra { + float: right; +} +.ant-page-header-heading-extra > * { + margin-left: 8px; +} +.ant-page-header-heading-extra > *:first-child { + margin-left: 0; +} +.ant-page-header-content { + padding-top: 12px; + overflow: hidden; +} +.ant-page-header-footer { + margin-top: 16px; +} +.ant-page-header-footer .ant-tabs-bar { + margin-bottom: 1px; + border-bottom: 0; +} +.ant-page-header-footer .ant-tabs-bar .ant-tabs-nav .ant-tabs-tab { + padding: 8px; + font-size: 16px; +} +@media (max-width: 576px) { + .ant-page-header-heading-extra { + display: block; + float: unset; + width: 100%; + padding-top: 12px; + overflow: hidden; + } +} +.ant-pagination { + box-sizing: border-box; + margin: 0; + padding: 0; + color: rgba(0, 0, 0, 0.65); + font-size: 15px; + font-variant: tabular-nums; + line-height: 1.5; + list-style: none; + font-feature-settings: 'tnum'; +} +.ant-pagination ul, +.ant-pagination ol { + margin: 0; + padding: 0; + list-style: none; +} +.ant-pagination::after { + display: block; + clear: both; + height: 0; + overflow: hidden; + visibility: hidden; + content: ' '; +} +.ant-pagination-total-text { + display: inline-block; + height: 32px; + margin-right: 8px; + line-height: 30px; + vertical-align: middle; +} +.ant-pagination-item { + display: inline-block; + min-width: 32px; + height: 32px; + margin-right: 8px; + font-family: Arial; + line-height: 30px; + text-align: center; + vertical-align: middle; + list-style: none; + background-color: #fff; + border: 1px solid #d9d9d9; + border-radius: 4px; + outline: 0; + cursor: pointer; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} +.ant-pagination-item a { + display: block; + padding: 0 6px; + color: rgba(0, 0, 0, 0.65); + transition: none; +} +.ant-pagination-item a:hover { + text-decoration: none; +} +.ant-pagination-item:focus, +.ant-pagination-item:hover { + border-color: #004691; + transition: all 0.3s; +} +.ant-pagination-item:focus a, +.ant-pagination-item:hover a { + color: #004691; +} +.ant-pagination-item-active { + font-weight: 500; + background: #fff; + border-color: #004691; +} +.ant-pagination-item-active a { + color: #004691; +} +.ant-pagination-item-active:focus, +.ant-pagination-item-active:hover { + border-color: #195e9e; +} +.ant-pagination-item-active:focus a, +.ant-pagination-item-active:hover a { + color: #195e9e; +} +.ant-pagination-jump-prev, +.ant-pagination-jump-next { + outline: 0; +} +.ant-pagination-jump-prev .ant-pagination-item-container, +.ant-pagination-jump-next .ant-pagination-item-container { + position: relative; +} +.ant-pagination-jump-prev .ant-pagination-item-container .ant-pagination-item-link-icon, +.ant-pagination-jump-next .ant-pagination-item-container .ant-pagination-item-link-icon { + display: inline-block; + font-size: 12px; + font-size: 12px \9; + transform: scale(1) rotate(0deg); + color: #004691; + letter-spacing: -1px; + opacity: 0; + transition: all 0.2s; +} +:root .ant-pagination-jump-prev .ant-pagination-item-container .ant-pagination-item-link-icon, +:root .ant-pagination-jump-next .ant-pagination-item-container .ant-pagination-item-link-icon { + font-size: 12px; +} +.ant-pagination-jump-prev .ant-pagination-item-container .ant-pagination-item-link-icon-svg, +.ant-pagination-jump-next .ant-pagination-item-container .ant-pagination-item-link-icon-svg { + top: 0; + right: 0; + bottom: 0; + left: 0; + margin: auto; +} +.ant-pagination-jump-prev .ant-pagination-item-container .ant-pagination-item-ellipsis, +.ant-pagination-jump-next .ant-pagination-item-container .ant-pagination-item-ellipsis { + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + display: block; + margin: auto; + color: rgba(0, 0, 0, 0.25); + letter-spacing: 2px; + text-align: center; + text-indent: 0.13em; + opacity: 1; + transition: all 0.2s; +} +.ant-pagination-jump-prev:focus .ant-pagination-item-link-icon, +.ant-pagination-jump-next:focus .ant-pagination-item-link-icon, +.ant-pagination-jump-prev:hover .ant-pagination-item-link-icon, +.ant-pagination-jump-next:hover .ant-pagination-item-link-icon { + opacity: 1; +} +.ant-pagination-jump-prev:focus .ant-pagination-item-ellipsis, +.ant-pagination-jump-next:focus .ant-pagination-item-ellipsis, +.ant-pagination-jump-prev:hover .ant-pagination-item-ellipsis, +.ant-pagination-jump-next:hover .ant-pagination-item-ellipsis { + opacity: 0; +} +.ant-pagination-prev, +.ant-pagination-jump-prev, +.ant-pagination-jump-next { + margin-right: 8px; +} +.ant-pagination-prev, +.ant-pagination-next, +.ant-pagination-jump-prev, +.ant-pagination-jump-next { + display: inline-block; + min-width: 32px; + height: 32px; + color: rgba(0, 0, 0, 0.65); + font-family: Arial; + line-height: 32px; + text-align: center; + vertical-align: middle; + list-style: none; + border-radius: 4px; + cursor: pointer; + transition: all 0.3s; +} +.ant-pagination-prev, +.ant-pagination-next { + outline: 0; +} +.ant-pagination-prev a, +.ant-pagination-next a { + color: rgba(0, 0, 0, 0.65); + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} +.ant-pagination-prev:hover a, +.ant-pagination-next:hover a { + border-color: #195e9e; +} +.ant-pagination-prev .ant-pagination-item-link, +.ant-pagination-next .ant-pagination-item-link { + display: block; + height: 100%; + font-size: 12px; + text-align: center; + background-color: #fff; + border: 1px solid #d9d9d9; + border-radius: 4px; + outline: none; + transition: all 0.3s; +} +.ant-pagination-prev:focus .ant-pagination-item-link, +.ant-pagination-next:focus .ant-pagination-item-link, +.ant-pagination-prev:hover .ant-pagination-item-link, +.ant-pagination-next:hover .ant-pagination-item-link { + color: #004691; + border-color: #004691; +} +.ant-pagination-disabled, +.ant-pagination-disabled:hover, +.ant-pagination-disabled:focus { + cursor: not-allowed; +} +.ant-pagination-disabled a, +.ant-pagination-disabled:hover a, +.ant-pagination-disabled:focus a, +.ant-pagination-disabled .ant-pagination-item-link, +.ant-pagination-disabled:hover .ant-pagination-item-link, +.ant-pagination-disabled:focus .ant-pagination-item-link { + color: rgba(0, 0, 0, 0.25); + border-color: #d9d9d9; + cursor: not-allowed; +} +.ant-pagination-slash { + margin: 0 10px 0 5px; +} +.ant-pagination-options { + display: inline-block; + margin-left: 16px; + vertical-align: middle; +} +.ant-pagination-options-size-changer.ant-select { + display: inline-block; + width: auto; + margin-right: 8px; +} +.ant-pagination-options-quick-jumper { + display: inline-block; + height: 32px; + line-height: 32px; + vertical-align: top; +} +.ant-pagination-options-quick-jumper input { + position: relative; + display: inline-block; + width: 100%; + height: 32px; + padding: 4px 11px; + color: rgba(0, 0, 0, 0.65); + font-size: 15px; + line-height: 1.5; + background-color: #fff; + background-image: none; + border: 1px solid #d9d9d9; + border-radius: 4px; + transition: all 0.3s; + width: 50px; + margin: 0 8px; +} +.ant-pagination-options-quick-jumper input::-moz-placeholder { + color: #bfbfbf; + opacity: 1; +} +.ant-pagination-options-quick-jumper input:-ms-input-placeholder { + color: #bfbfbf; +} +.ant-pagination-options-quick-jumper input::-webkit-input-placeholder { + color: #bfbfbf; +} +.ant-pagination-options-quick-jumper input:-moz-placeholder-shown { + text-overflow: ellipsis; +} +.ant-pagination-options-quick-jumper input:-ms-input-placeholder { + text-overflow: ellipsis; +} +.ant-pagination-options-quick-jumper input:placeholder-shown { + text-overflow: ellipsis; +} +.ant-pagination-options-quick-jumper input:hover { + border-color: #195e9e; + border-right-width: 1px !important; +} +.ant-pagination-options-quick-jumper input:focus { + border-color: #195e9e; + border-right-width: 1px !important; + outline: 0; + box-shadow: 0 0 0 2px rgba(0, 70, 145, 0.2); +} +.ant-pagination-options-quick-jumper input-disabled { + color: rgba(0, 0, 0, 0.25); + background-color: #f5f5f5; + cursor: not-allowed; + opacity: 1; +} +.ant-pagination-options-quick-jumper input-disabled:hover { + border-color: #d9d9d9; + border-right-width: 1px !important; +} +.ant-pagination-options-quick-jumper input[disabled] { + color: rgba(0, 0, 0, 0.25); + background-color: #f5f5f5; + cursor: not-allowed; + opacity: 1; +} +.ant-pagination-options-quick-jumper input[disabled]:hover { + border-color: #d9d9d9; + border-right-width: 1px !important; +} +textarea.ant-pagination-options-quick-jumper input { + max-width: 100%; + height: auto; + min-height: 32px; + line-height: 1.5; + vertical-align: bottom; + transition: all 0.3s, height 0s; +} +.ant-pagination-options-quick-jumper input-lg { + height: 40px; + padding: 6px 11px; + font-size: 17px; +} +.ant-pagination-options-quick-jumper input-sm { + height: 24px; + padding: 1px 7px; +} +.ant-pagination-simple .ant-pagination-prev, +.ant-pagination-simple .ant-pagination-next { + height: 24px; + line-height: 24px; + vertical-align: top; +} +.ant-pagination-simple .ant-pagination-prev .ant-pagination-item-link, +.ant-pagination-simple .ant-pagination-next .ant-pagination-item-link { + height: 24px; + border: 0; +} +.ant-pagination-simple .ant-pagination-prev .ant-pagination-item-link::after, +.ant-pagination-simple .ant-pagination-next .ant-pagination-item-link::after { + height: 24px; + line-height: 24px; +} +.ant-pagination-simple .ant-pagination-simple-pager { + display: inline-block; + height: 24px; + margin-right: 8px; +} +.ant-pagination-simple .ant-pagination-simple-pager input { + box-sizing: border-box; + height: 100%; + margin-right: 8px; + padding: 0 6px; + text-align: center; + background-color: #fff; + border: 1px solid #d9d9d9; + border-radius: 4px; + outline: none; + transition: border-color 0.3s; +} +.ant-pagination-simple .ant-pagination-simple-pager input:hover { + border-color: #004691; +} +.ant-pagination.mini .ant-pagination-total-text, +.ant-pagination.mini .ant-pagination-simple-pager { + height: 24px; + line-height: 24px; +} +.ant-pagination.mini .ant-pagination-item { + min-width: 24px; + height: 24px; + margin: 0; + line-height: 22px; +} +.ant-pagination.mini .ant-pagination-item:not(.ant-pagination-item-active) { + background: transparent; + border-color: transparent; +} +.ant-pagination.mini .ant-pagination-prev, +.ant-pagination.mini .ant-pagination-next { + min-width: 24px; + height: 24px; + margin: 0; + line-height: 24px; +} +.ant-pagination.mini .ant-pagination-prev .ant-pagination-item-link, +.ant-pagination.mini .ant-pagination-next .ant-pagination-item-link { + background: transparent; + border-color: transparent; +} +.ant-pagination.mini .ant-pagination-prev .ant-pagination-item-link::after, +.ant-pagination.mini .ant-pagination-next .ant-pagination-item-link::after { + height: 24px; + line-height: 24px; +} +.ant-pagination.mini .ant-pagination-jump-prev, +.ant-pagination.mini .ant-pagination-jump-next { + height: 24px; + margin-right: 0; + line-height: 24px; +} +.ant-pagination.mini .ant-pagination-options { + margin-left: 2px; +} +.ant-pagination.mini .ant-pagination-options-quick-jumper { + height: 24px; + line-height: 24px; +} +.ant-pagination.mini .ant-pagination-options-quick-jumper input { + height: 24px; + padding: 1px 7px; + width: 44px; +} +.ant-pagination.ant-pagination-disabled { + cursor: not-allowed; +} +.ant-pagination.ant-pagination-disabled .ant-pagination-item { + background: #f5f5f5; + border-color: #d9d9d9; + cursor: not-allowed; +} +.ant-pagination.ant-pagination-disabled .ant-pagination-item a { + color: rgba(0, 0, 0, 0.25); + background: transparent; + border: none; + cursor: not-allowed; +} +.ant-pagination.ant-pagination-disabled .ant-pagination-item-active { + background: #dbdbdb; + border-color: transparent; +} +.ant-pagination.ant-pagination-disabled .ant-pagination-item-active a { + color: #fff; +} +.ant-pagination.ant-pagination-disabled .ant-pagination-item-link, +.ant-pagination.ant-pagination-disabled .ant-pagination-item-link:hover, +.ant-pagination.ant-pagination-disabled .ant-pagination-item-link:focus { + color: rgba(0, 0, 0, 0.45); + background: #f5f5f5; + border-color: #d9d9d9; + cursor: not-allowed; +} +.ant-pagination.ant-pagination-disabled .ant-pagination-jump-prev:focus .ant-pagination-item-link-icon, +.ant-pagination.ant-pagination-disabled .ant-pagination-jump-next:focus .ant-pagination-item-link-icon, +.ant-pagination.ant-pagination-disabled .ant-pagination-jump-prev:hover .ant-pagination-item-link-icon, +.ant-pagination.ant-pagination-disabled .ant-pagination-jump-next:hover .ant-pagination-item-link-icon { + opacity: 0; +} +.ant-pagination.ant-pagination-disabled .ant-pagination-jump-prev:focus .ant-pagination-item-ellipsis, +.ant-pagination.ant-pagination-disabled .ant-pagination-jump-next:focus .ant-pagination-item-ellipsis, +.ant-pagination.ant-pagination-disabled .ant-pagination-jump-prev:hover .ant-pagination-item-ellipsis, +.ant-pagination.ant-pagination-disabled .ant-pagination-jump-next:hover .ant-pagination-item-ellipsis { + opacity: 1; +} +@media only screen and (max-width: 992px) { + .ant-pagination-item-after-jump-prev, + .ant-pagination-item-before-jump-next { + display: none; + } +} +@media only screen and (max-width: 576px) { + .ant-pagination-options { + display: none; + } +} +.ant-popover { + box-sizing: border-box; + margin: 0; + padding: 0; + color: rgba(0, 0, 0, 0.65); + font-size: 15px; + font-variant: tabular-nums; + line-height: 1.5; + list-style: none; + font-feature-settings: 'tnum'; + position: absolute; + top: 0; + left: 0; + z-index: 1030; + font-weight: normal; + white-space: normal; + text-align: left; + cursor: auto; + -webkit-user-select: text; + -moz-user-select: text; + -ms-user-select: text; + user-select: text; +} +.ant-popover::after { + position: absolute; + background: rgba(255, 255, 255, 0.01); + content: ''; +} +.ant-popover-hidden { + display: none; +} +.ant-popover-placement-top, +.ant-popover-placement-topLeft, +.ant-popover-placement-topRight { + padding-bottom: 10px; +} +.ant-popover-placement-right, +.ant-popover-placement-rightTop, +.ant-popover-placement-rightBottom { + padding-left: 10px; +} +.ant-popover-placement-bottom, +.ant-popover-placement-bottomLeft, +.ant-popover-placement-bottomRight { + padding-top: 10px; +} +.ant-popover-placement-left, +.ant-popover-placement-leftTop, +.ant-popover-placement-leftBottom { + padding-right: 10px; +} +.ant-popover-inner { + background-color: #fff; + background-clip: padding-box; + border-radius: 4px; + box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15); + box-shadow: 0 0 8px rgba(0, 0, 0, 0.15) \9; +} +@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) { + .ant-popover { + /* IE10+ */ + } + .ant-popover-inner { + box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15); + } +} +.ant-popover-title { + min-width: 177px; + min-height: 32px; + margin: 0; + padding: 5px 16px 4px; + color: rgba(0, 0, 0, 0.85); + font-weight: 500; + border-bottom: 1px solid #e8e8e8; +} +.ant-popover-inner-content { + padding: 12px 16px; + color: rgba(0, 0, 0, 0.65); +} +.ant-popover-message { + position: relative; + padding: 4px 0 12px; + color: rgba(0, 0, 0, 0.65); + font-size: 15px; +} +.ant-popover-message > .anticon { + position: absolute; + top: 8px; + color: #faad14; + font-size: 15px; +} +.ant-popover-message-title { + padding-left: 23px; +} +.ant-popover-buttons { + margin-bottom: 4px; + text-align: right; +} +.ant-popover-buttons button { + margin-left: 8px; +} +.ant-popover-arrow { + position: absolute; + display: block; + width: 8.48528137px; + height: 8.48528137px; + background: transparent; + border-style: solid; + border-width: 4.24264069px; + transform: rotate(45deg); +} +.ant-popover-placement-top > .ant-popover-content > .ant-popover-arrow, +.ant-popover-placement-topLeft > .ant-popover-content > .ant-popover-arrow, +.ant-popover-placement-topRight > .ant-popover-content > .ant-popover-arrow { + bottom: 6.2px; + border-top-color: transparent; + border-right-color: #fff; + border-bottom-color: #fff; + border-left-color: transparent; + box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.07); +} +.ant-popover-placement-top > .ant-popover-content > .ant-popover-arrow { + left: 50%; + transform: translateX(-50%) rotate(45deg); +} +.ant-popover-placement-topLeft > .ant-popover-content > .ant-popover-arrow { + left: 16px; +} +.ant-popover-placement-topRight > .ant-popover-content > .ant-popover-arrow { + right: 16px; +} +.ant-popover-placement-right > .ant-popover-content > .ant-popover-arrow, +.ant-popover-placement-rightTop > .ant-popover-content > .ant-popover-arrow, +.ant-popover-placement-rightBottom > .ant-popover-content > .ant-popover-arrow { + left: 6px; + border-top-color: transparent; + border-right-color: transparent; + border-bottom-color: #fff; + border-left-color: #fff; + box-shadow: -3px 3px 7px rgba(0, 0, 0, 0.07); +} +.ant-popover-placement-right > .ant-popover-content > .ant-popover-arrow { + top: 50%; + transform: translateY(-50%) rotate(45deg); +} +.ant-popover-placement-rightTop > .ant-popover-content > .ant-popover-arrow { + top: 12px; +} +.ant-popover-placement-rightBottom > .ant-popover-content > .ant-popover-arrow { + bottom: 12px; +} +.ant-popover-placement-bottom > .ant-popover-content > .ant-popover-arrow, +.ant-popover-placement-bottomLeft > .ant-popover-content > .ant-popover-arrow, +.ant-popover-placement-bottomRight > .ant-popover-content > .ant-popover-arrow { + top: 6px; + border-top-color: #fff; + border-right-color: transparent; + border-bottom-color: transparent; + border-left-color: #fff; + box-shadow: -2px -2px 5px rgba(0, 0, 0, 0.06); +} +.ant-popover-placement-bottom > .ant-popover-content > .ant-popover-arrow { + left: 50%; + transform: translateX(-50%) rotate(45deg); +} +.ant-popover-placement-bottomLeft > .ant-popover-content > .ant-popover-arrow { + left: 16px; +} +.ant-popover-placement-bottomRight > .ant-popover-content > .ant-popover-arrow { + right: 16px; +} +.ant-popover-placement-left > .ant-popover-content > .ant-popover-arrow, +.ant-popover-placement-leftTop > .ant-popover-content > .ant-popover-arrow, +.ant-popover-placement-leftBottom > .ant-popover-content > .ant-popover-arrow { + right: 6px; + border-top-color: #fff; + border-right-color: #fff; + border-bottom-color: transparent; + border-left-color: transparent; + box-shadow: 3px -3px 7px rgba(0, 0, 0, 0.07); +} +.ant-popover-placement-left > .ant-popover-content > .ant-popover-arrow { + top: 50%; + transform: translateY(-50%) rotate(45deg); +} +.ant-popover-placement-leftTop > .ant-popover-content > .ant-popover-arrow { + top: 12px; +} +.ant-popover-placement-leftBottom > .ant-popover-content > .ant-popover-arrow { + bottom: 12px; +} +.ant-progress { + box-sizing: border-box; + margin: 0; + padding: 0; + color: rgba(0, 0, 0, 0.65); + font-size: 15px; + font-variant: tabular-nums; + line-height: 1.5; + list-style: none; + font-feature-settings: 'tnum'; + display: inline-block; +} +.ant-progress-line { + position: relative; + width: 100%; + font-size: 15px; +} +.ant-progress-small.ant-progress-line, +.ant-progress-small.ant-progress-line .ant-progress-text .anticon { + font-size: 12px; +} +.ant-progress-outer { + display: inline-block; + width: 100%; + margin-right: 0; + padding-right: 0; +} +.ant-progress-show-info .ant-progress-outer { + margin-right: calc(-2em - 8px); + padding-right: calc(2em + 8px); +} +.ant-progress-inner { + position: relative; + display: inline-block; + width: 100%; + overflow: hidden; + vertical-align: middle; + background-color: #f5f5f5; + border-radius: 100px; +} +.ant-progress-circle-trail { + stroke: #f5f5f5; +} +.ant-progress-circle-path { + -webkit-animation: ant-progress-appear 0.3s; + animation: ant-progress-appear 0.3s; +} +.ant-progress-inner:not(.ant-progress-circle-gradient) .ant-progress-circle-path { + stroke: #1890ff; +} +.ant-progress-success-bg, +.ant-progress-bg { + position: relative; + background-color: #1890ff; + border-radius: 100px; + transition: all 0.4s cubic-bezier(0.08, 0.82, 0.17, 1) 0s; +} +.ant-progress-success-bg { + position: absolute; + top: 0; + left: 0; + background-color: #52c41a; +} +.ant-progress-text { + display: inline-block; + width: 2em; + margin-left: 8px; + color: rgba(0, 0, 0, 0.45); + font-size: 1em; + line-height: 1; + white-space: nowrap; + text-align: left; + vertical-align: middle; + word-break: normal; +} +.ant-progress-text .anticon { + font-size: 15px; +} +.ant-progress-status-active .ant-progress-bg::before { + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + background: #fff; + border-radius: 10px; + opacity: 0; + -webkit-animation: ant-progress-active 2.4s cubic-bezier(0.23, 1, 0.32, 1) infinite; + animation: ant-progress-active 2.4s cubic-bezier(0.23, 1, 0.32, 1) infinite; + content: ''; +} +.ant-progress-status-exception .ant-progress-bg { + background-color: #f5222d; +} +.ant-progress-status-exception .ant-progress-text { + color: #f5222d; +} +.ant-progress-status-exception .ant-progress-inner:not(.ant-progress-circle-gradient) .ant-progress-circle-path { + stroke: #f5222d; +} +.ant-progress-status-success .ant-progress-bg { + background-color: #52c41a; +} +.ant-progress-status-success .ant-progress-text { + color: #52c41a; +} +.ant-progress-status-success .ant-progress-inner:not(.ant-progress-circle-gradient) .ant-progress-circle-path { + stroke: #52c41a; +} +.ant-progress-circle .ant-progress-inner { + position: relative; + line-height: 1; + background-color: transparent; +} +.ant-progress-circle .ant-progress-text { + position: absolute; + top: 50%; + left: 50%; + width: 100%; + margin: 0; + padding: 0; + color: rgba(0, 0, 0, 0.65); + line-height: 1; + white-space: normal; + text-align: center; + transform: translate(-50%, -50%); +} +.ant-progress-circle .ant-progress-text .anticon { + font-size: 1.16666667em; +} +.ant-progress-circle.ant-progress-status-exception .ant-progress-text { + color: #f5222d; +} +.ant-progress-circle.ant-progress-status-success .ant-progress-text { + color: #52c41a; +} +@-webkit-keyframes ant-progress-active { + 0% { + width: 0; + opacity: 0.1; + } + 20% { + width: 0; + opacity: 0.5; + } + 100% { + width: 100%; + opacity: 0; + } +} +@keyframes ant-progress-active { + 0% { + width: 0; + opacity: 0.1; + } + 20% { + width: 0; + opacity: 0.5; + } + 100% { + width: 100%; + opacity: 0; + } +} +.ant-radio-group { + box-sizing: border-box; + margin: 0; + padding: 0; + color: rgba(0, 0, 0, 0.65); + font-size: 15px; + font-variant: tabular-nums; + line-height: 1.5; + list-style: none; + font-feature-settings: 'tnum'; + display: inline-block; +} +.ant-radio-wrapper { + box-sizing: border-box; + margin: 0; + padding: 0; + color: rgba(0, 0, 0, 0.65); + font-size: 15px; + font-variant: tabular-nums; + line-height: 1.5; + list-style: none; + font-feature-settings: 'tnum'; + position: relative; + display: inline-block; + margin-right: 8px; + white-space: nowrap; + cursor: pointer; +} +.ant-radio { + box-sizing: border-box; + margin: 0; + padding: 0; + color: rgba(0, 0, 0, 0.65); + font-size: 15px; + font-variant: tabular-nums; + line-height: 1.5; + list-style: none; + font-feature-settings: 'tnum'; + position: relative; + display: inline-block; + line-height: 1; + white-space: nowrap; + vertical-align: sub; + outline: none; + cursor: pointer; +} +.ant-radio-wrapper:hover .ant-radio, +.ant-radio:hover .ant-radio-inner, +.ant-radio-input:focus + .ant-radio-inner { + border-color: #004691; +} +.ant-radio-input:focus + .ant-radio-inner { + box-shadow: 0 0 0 3px rgba(0, 70, 145, 0.08); +} +.ant-radio-checked::after { + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + border: 1px solid #004691; + border-radius: 50%; + visibility: hidden; + -webkit-animation: antRadioEffect 0.36s ease-in-out; + animation: antRadioEffect 0.36s ease-in-out; + -webkit-animation-fill-mode: both; + animation-fill-mode: both; + content: ''; +} +.ant-radio:hover::after, +.ant-radio-wrapper:hover .ant-radio::after { + visibility: visible; +} +.ant-radio-inner { + position: relative; + top: 0; + left: 0; + display: block; + width: 16px; + height: 16px; + background-color: #fff; + border-color: #d9d9d9; + border-style: solid; + border-width: 1px; + border-radius: 100px; + transition: all 0.3s; +} +.ant-radio-inner::after { + position: absolute; + top: 3px; + left: 3px; + display: table; + width: 8px; + height: 8px; + background-color: #004691; + border-top: 0; + border-left: 0; + border-radius: 8px; + transform: scale(0); + opacity: 0; + transition: all 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86); + content: ' '; +} +.ant-radio-input { + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + z-index: 1; + cursor: pointer; + opacity: 0; +} +.ant-radio-checked .ant-radio-inner { + border-color: #004691; +} +.ant-radio-checked .ant-radio-inner::after { + transform: scale(1); + opacity: 1; + transition: all 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86); +} +.ant-radio-disabled .ant-radio-inner { + background-color: #f5f5f5; + border-color: #d9d9d9 !important; + cursor: not-allowed; +} +.ant-radio-disabled .ant-radio-inner::after { + background-color: rgba(0, 0, 0, 0.2); +} +.ant-radio-disabled .ant-radio-input { + cursor: not-allowed; +} +.ant-radio-disabled + span { + color: rgba(0, 0, 0, 0.25); + cursor: not-allowed; +} +span.ant-radio + * { + padding-right: 8px; + padding-left: 8px; +} +.ant-radio-button-wrapper { + position: relative; + display: inline-block; + height: 32px; + margin: 0; + padding: 0 15px; + color: rgba(0, 0, 0, 0.65); + line-height: 30px; + background: #fff; + border: 1px solid #d9d9d9; + border-top-width: 1.02px; + border-left: 0; + cursor: pointer; + transition: color 0.3s, background 0.3s, border-color 0.3s, box-shadow 0.3s; +} +.ant-radio-button-wrapper a { + color: rgba(0, 0, 0, 0.65); +} +.ant-radio-button-wrapper > .ant-radio-button { + display: block; + width: 0; + height: 0; + margin-left: 0; +} +.ant-radio-group-large .ant-radio-button-wrapper { + height: 40px; + font-size: 17px; + line-height: 38px; +} +.ant-radio-group-small .ant-radio-button-wrapper { + height: 24px; + padding: 0 7px; + line-height: 22px; +} +.ant-radio-button-wrapper:not(:first-child)::before { + position: absolute; + top: -1px; + left: -1px; + display: block; + box-sizing: content-box; + width: 1px; + height: 100%; + padding: 1px 0; + background-color: #d9d9d9; + transition: background-color 0.3s; + content: ''; +} +.ant-radio-button-wrapper:first-child { + border-left: 1px solid #d9d9d9; + border-radius: 4px 0 0 4px; +} +.ant-radio-button-wrapper:last-child { + border-radius: 0 4px 4px 0; +} +.ant-radio-button-wrapper:first-child:last-child { + border-radius: 4px; +} +.ant-radio-button-wrapper:hover { + position: relative; + color: #004691; +} +.ant-radio-button-wrapper:focus-within { + box-shadow: 0 0 0 3px rgba(0, 70, 145, 0.08); +} +.ant-radio-button-wrapper .ant-radio-inner, +.ant-radio-button-wrapper input[type='checkbox'], +.ant-radio-button-wrapper input[type='radio'] { + width: 0; + height: 0; + opacity: 0; + pointer-events: none; +} +.ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled) { + z-index: 1; + color: #004691; + background: #fff; + border-color: #004691; +} +.ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled)::before { + background-color: #004691; +} +.ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):first-child { + border-color: #004691; +} +.ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):hover { + color: #195e9e; + border-color: #195e9e; +} +.ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):hover::before { + background-color: #195e9e; +} +.ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):active { + color: #00306b; + border-color: #00306b; +} +.ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):active::before { + background-color: #00306b; +} +.ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):focus-within { + box-shadow: 0 0 0 3px rgba(0, 70, 145, 0.08); +} +.ant-radio-group-solid .ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled) { + color: #fff; + background: #004691; + border-color: #004691; +} +.ant-radio-group-solid .ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):hover { + color: #fff; + background: #195e9e; + border-color: #195e9e; +} +.ant-radio-group-solid .ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):active { + color: #fff; + background: #00306b; + border-color: #00306b; +} +.ant-radio-group-solid .ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):focus-within { + box-shadow: 0 0 0 3px rgba(0, 70, 145, 0.08); +} +.ant-radio-button-wrapper-disabled { + color: rgba(0, 0, 0, 0.25); + background-color: #f5f5f5; + border-color: #d9d9d9; + cursor: not-allowed; +} +.ant-radio-button-wrapper-disabled:first-child, +.ant-radio-button-wrapper-disabled:hover { + color: rgba(0, 0, 0, 0.25); + background-color: #f5f5f5; + border-color: #d9d9d9; +} +.ant-radio-button-wrapper-disabled:first-child { + border-left-color: #d9d9d9; +} +.ant-radio-button-wrapper-disabled.ant-radio-button-wrapper-checked { + color: #fff; + background-color: #e6e6e6; + border-color: #d9d9d9; + box-shadow: none; +} +@-webkit-keyframes antRadioEffect { + 0% { + transform: scale(1); + opacity: 0.5; + } + 100% { + transform: scale(1.6); + opacity: 0; + } +} +@keyframes antRadioEffect { + 0% { + transform: scale(1); + opacity: 0.5; + } + 100% { + transform: scale(1.6); + opacity: 0; + } +} +@supports (-moz-appearance: meterbar) and (background-blend-mode: difference, normal) { + .ant-radio { + vertical-align: text-bottom; + } +} +.ant-rate { + box-sizing: border-box; + color: rgba(0, 0, 0, 0.65); + font-size: 15px; + font-variant: tabular-nums; + line-height: 1.5; + font-feature-settings: 'tnum'; + display: inline-block; + margin: 0; + padding: 0; + color: #fadb14; + font-size: 20px; + line-height: unset; + list-style: none; + outline: none; +} +.ant-rate-disabled .ant-rate-star { + cursor: default; +} +.ant-rate-disabled .ant-rate-star:hover { + transform: scale(1); +} +.ant-rate-star { + position: relative; + display: inline-block; + margin: 0; + padding: 0; + color: inherit; + cursor: pointer; + transition: all 0.3s; +} +.ant-rate-star:not(:last-child) { + margin-right: 8px; +} +.ant-rate-star > div:focus { + outline: 0; +} +.ant-rate-star > div:hover, +.ant-rate-star > div:focus { + transform: scale(1.1); +} +.ant-rate-star-first, +.ant-rate-star-second { + color: #e8e8e8; + transition: all 0.3s; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} +.ant-rate-star-first .anticon, +.ant-rate-star-second .anticon { + vertical-align: middle; +} +.ant-rate-star-first { + position: absolute; + top: 0; + left: 0; + width: 50%; + height: 100%; + overflow: hidden; + opacity: 0; +} +.ant-rate-star-half .ant-rate-star-first, +.ant-rate-star-half .ant-rate-star-second { + opacity: 1; +} +.ant-rate-star-half .ant-rate-star-first, +.ant-rate-star-full .ant-rate-star-second { + color: inherit; +} +.ant-rate-text { + display: inline-block; + margin-left: 8px; + font-size: 15px; +} +.ant-result { + padding: 48px 32px; +} +.ant-result-success .ant-result-icon > .anticon { + color: #52c41a; +} +.ant-result-error .ant-result-icon > .anticon { + color: #f5222d; +} +.ant-result-info .ant-result-icon > .anticon { + color: #1890ff; +} +.ant-result-warning .ant-result-icon > .anticon { + color: #faad14; +} +.ant-result-image { + width: 250px; + height: 295px; + margin: auto; +} +.ant-result-icon { + margin-bottom: 24px; + text-align: center; +} +.ant-result-icon > .anticon { + font-size: 72px; +} +.ant-result-title { + color: rgba(0, 0, 0, 0.85); + font-size: 24px; + line-height: 1.8; + text-align: center; +} +.ant-result-subtitle { + color: rgba(0, 0, 0, 0.45); + font-size: 14px; + line-height: 1.6; + text-align: center; +} +.ant-result-extra { + margin-top: 32px; + text-align: center; +} +.ant-result-extra > * { + margin-right: 8px; +} +.ant-result-extra > *:last-child { + margin-right: 0; +} +.ant-result-content { + margin-top: 24px; + padding: 24px 40px; + background-color: #fafafa; +} +.ant-select { + box-sizing: border-box; + margin: 0; + padding: 0; + color: rgba(0, 0, 0, 0.65); + font-size: 15px; + font-variant: tabular-nums; + line-height: 1.5; + list-style: none; + font-feature-settings: 'tnum'; + position: relative; + display: inline-block; + outline: 0; +} +.ant-select ul, +.ant-select ol { + margin: 0; + padding: 0; + list-style: none; +} +.ant-select > ul > li > a { + padding: 0; + background-color: #fff; +} +.ant-select-arrow { + display: inline-block; + color: inherit; + font-style: normal; + line-height: 0; + text-align: center; + text-transform: none; + vertical-align: -0.125em; + text-rendering: optimizeLegibility; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + position: absolute; + top: 50%; + right: 11px; + margin-top: -6px; + color: rgba(0, 0, 0, 0.25); + font-size: 12px; + line-height: 1; + transform-origin: 50% 50%; +} +.ant-select-arrow > * { + line-height: 1; +} +.ant-select-arrow svg { + display: inline-block; +} +.ant-select-arrow::before { + display: none; +} +.ant-select-arrow .ant-select-arrow-icon { + display: block; +} +.ant-select-arrow .ant-select-arrow-icon svg { + transition: transform 0.3s; +} +.ant-select-selection { + display: block; + box-sizing: border-box; + background-color: #fff; + border: 1px solid #d9d9d9; + border-top-width: 1.02px; + border-radius: 4px; + outline: none; + transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} +.ant-select-selection:hover { + border-color: #195e9e; + border-right-width: 1px !important; +} +.ant-select-focused .ant-select-selection, +.ant-select-selection:focus, +.ant-select-selection:active { + border-color: #195e9e; + border-right-width: 1px !important; + outline: 0; + box-shadow: 0 0 0 2px rgba(0, 70, 145, 0.2); +} +.ant-select-selection__clear { + position: absolute; + top: 50%; + right: 11px; + z-index: 1; + display: inline-block; + width: 12px; + height: 12px; + margin-top: -6px; + color: rgba(0, 0, 0, 0.25); + font-size: 12px; + font-style: normal; + line-height: 12px; + text-align: center; + text-transform: none; + background: #fff; + cursor: pointer; + opacity: 0; + transition: color 0.3s ease, opacity 0.15s ease; + text-rendering: auto; +} +.ant-select-selection__clear::before { + display: block; +} +.ant-select-selection__clear:hover { + color: rgba(0, 0, 0, 0.45); +} +.ant-select-selection:hover .ant-select-selection__clear { + opacity: 1; +} +.ant-select-selection-selected-value { + float: left; + max-width: 100%; + overflow: hidden; + white-space: nowrap; + text-overflow: ellipsis; +} +.ant-select-no-arrow .ant-select-selection-selected-value { + padding-right: 0; +} +.ant-select-disabled { + color: rgba(0, 0, 0, 0.25); +} +.ant-select-disabled .ant-select-selection { + background: #f5f5f5; + cursor: not-allowed; +} +.ant-select-disabled .ant-select-selection:hover, +.ant-select-disabled .ant-select-selection:focus, +.ant-select-disabled .ant-select-selection:active { + border-color: #d9d9d9; + box-shadow: none; +} +.ant-select-disabled .ant-select-selection__clear { + display: none; + visibility: hidden; + pointer-events: none; +} +.ant-select-disabled .ant-select-selection--multiple .ant-select-selection__choice { + padding-right: 10px; + color: rgba(0, 0, 0, 0.33); + background: #f5f5f5; +} +.ant-select-disabled .ant-select-selection--multiple .ant-select-selection__choice__remove { + display: none; +} +.ant-select-selection--single { + position: relative; + height: 32px; + cursor: pointer; +} +.ant-select-selection--single .ant-select-selection__rendered { + margin-right: 24px; +} +.ant-select-no-arrow .ant-select-selection__rendered { + margin-right: 11px; +} +.ant-select-selection__rendered { + position: relative; + display: block; + margin-right: 11px; + margin-left: 11px; + line-height: 30px; +} +.ant-select-selection__rendered::after { + display: inline-block; + width: 0; + visibility: hidden; + content: '.'; + pointer-events: none; +} +.ant-select-lg { + font-size: 17px; +} +.ant-select-lg .ant-select-selection--single { + height: 40px; +} +.ant-select-lg .ant-select-selection__rendered { + line-height: 38px; +} +.ant-select-lg .ant-select-selection--multiple { + min-height: 40px; +} +.ant-select-lg .ant-select-selection--multiple .ant-select-selection__rendered li { + height: 32px; + line-height: 32px; +} +.ant-select-lg .ant-select-selection--multiple .ant-select-selection__clear, +.ant-select-lg .ant-select-selection--multiple .ant-select-arrow { + top: 20px; +} +.ant-select-sm .ant-select-selection--single { + height: 24px; +} +.ant-select-sm .ant-select-selection__rendered { + margin-left: 7px; + line-height: 22px; +} +.ant-select-sm .ant-select-selection--multiple { + min-height: 24px; +} +.ant-select-sm .ant-select-selection--multiple .ant-select-selection__rendered li { + height: 16px; + line-height: 14px; +} +.ant-select-sm .ant-select-selection--multiple .ant-select-selection__clear, +.ant-select-sm .ant-select-selection--multiple .ant-select-arrow { + top: 12px; +} +.ant-select-sm .ant-select-selection__clear, +.ant-select-sm .ant-select-arrow { + right: 8px; +} +.ant-select-disabled .ant-select-selection__choice__remove { + color: rgba(0, 0, 0, 0.25); + cursor: default; +} +.ant-select-disabled .ant-select-selection__choice__remove:hover { + color: rgba(0, 0, 0, 0.25); +} +.ant-select-search__field__wrap { + position: relative; + display: inline-block; +} +.ant-select-selection__placeholder, +.ant-select-search__field__placeholder { + position: absolute; + top: 50%; + right: 9px; + left: 0; + max-width: 100%; + height: 20px; + margin-top: -10px; + overflow: hidden; + color: #bfbfbf; + line-height: 20px; + white-space: nowrap; + text-align: left; + text-overflow: ellipsis; +} +.ant-select-search__field__placeholder { + left: 12px; +} +.ant-select-search__field__mirror { + position: absolute; + top: 0; + left: 0; + white-space: pre; + opacity: 0; + pointer-events: none; +} +.ant-select-search--inline { + position: absolute; + width: 100%; + height: 100%; +} +.ant-select-search--inline .ant-select-search__field__wrap { + width: 100%; + height: 100%; +} +.ant-select-search--inline .ant-select-search__field { + width: 100%; + height: 100%; + font-size: 100%; + line-height: 1; + background: transparent; + border-width: 0; + border-radius: 4px; + outline: 0; +} +.ant-select-search--inline > i { + float: right; +} +.ant-select-selection--multiple { + min-height: 32px; + padding-bottom: 3px; + cursor: text; + zoom: 1; +} +.ant-select-selection--multiple::before, +.ant-select-selection--multiple::after { + display: table; + content: ''; +} +.ant-select-selection--multiple::after { + clear: both; +} +.ant-select-selection--multiple::before, +.ant-select-selection--multiple::after { + display: table; + content: ''; +} +.ant-select-selection--multiple::after { + clear: both; +} +.ant-select-selection--multiple .ant-select-search--inline { + position: static; + float: left; + width: auto; + max-width: 100%; + padding: 0; +} +.ant-select-selection--multiple .ant-select-search--inline .ant-select-search__field { + width: 0.75em; + max-width: 100%; + padding: 1px; +} +.ant-select-selection--multiple .ant-select-selection__rendered { + height: auto; + margin-bottom: -3px; + margin-left: 5px; +} +.ant-select-selection--multiple .ant-select-selection__placeholder { + margin-left: 6px; +} +.ant-select-selection--multiple > ul > li, +.ant-select-selection--multiple .ant-select-selection__rendered > ul > li { + height: 24px; + margin-top: 3px; + line-height: 22px; +} +.ant-select-selection--multiple .ant-select-selection__choice { + position: relative; + float: left; + max-width: 99%; + margin-right: 4px; + padding: 0 20px 0 10px; + overflow: hidden; + color: rgba(0, 0, 0, 0.65); + background-color: #fafafa; + border: 1px solid #e8e8e8; + border-radius: 2px; + cursor: default; + transition: padding 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); +} +.ant-select-selection--multiple .ant-select-selection__choice__disabled { + padding: 0 10px; +} +.ant-select-selection--multiple .ant-select-selection__choice__content { + display: inline-block; + max-width: 100%; + overflow: hidden; + white-space: nowrap; + text-overflow: ellipsis; + transition: margin 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); +} +.ant-select-selection--multiple .ant-select-selection__choice__remove { + color: inherit; + font-style: normal; + line-height: 0; + text-align: center; + text-transform: none; + vertical-align: -0.125em; + text-rendering: optimizeLegibility; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + position: absolute; + right: 4px; + color: rgba(0, 0, 0, 0.45); + font-weight: bold; + line-height: inherit; + cursor: pointer; + transition: all 0.3s; + display: inline-block; + font-size: 12px; + font-size: 10px \9; + transform: scale(0.83333333) rotate(0deg); +} +.ant-select-selection--multiple .ant-select-selection__choice__remove > * { + line-height: 1; +} +.ant-select-selection--multiple .ant-select-selection__choice__remove svg { + display: inline-block; +} +.ant-select-selection--multiple .ant-select-selection__choice__remove::before { + display: none; +} +.ant-select-selection--multiple .ant-select-selection__choice__remove .ant-select-selection--multiple .ant-select-selection__choice__remove-icon { + display: block; +} +:root .ant-select-selection--multiple .ant-select-selection__choice__remove { + font-size: 12px; +} +.ant-select-selection--multiple .ant-select-selection__choice__remove:hover { + color: rgba(0, 0, 0, 0.75); +} +.ant-select-selection--multiple .ant-select-selection__clear, +.ant-select-selection--multiple .ant-select-arrow { + top: 16px; +} +.ant-select-allow-clear .ant-select-selection--multiple .ant-select-selection__rendered, +.ant-select-show-arrow .ant-select-selection--multiple .ant-select-selection__rendered { + margin-right: 20px; +} +.ant-select-open .ant-select-arrow-icon svg { + transform: rotate(180deg); +} +.ant-select-open .ant-select-selection { + border-color: #195e9e; + border-right-width: 1px !important; + outline: 0; + box-shadow: 0 0 0 2px rgba(0, 70, 145, 0.2); +} +.ant-select-combobox .ant-select-arrow { + display: none; +} +.ant-select-combobox .ant-select-search--inline { + float: none; + width: 100%; + height: 100%; +} +.ant-select-combobox .ant-select-search__field__wrap { + width: 100%; + height: 100%; +} +.ant-select-combobox .ant-select-search__field { + position: relative; + z-index: 1; + width: 100%; + height: 100%; + box-shadow: none; + transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), height 0s; +} +.ant-select-combobox.ant-select-allow-clear .ant-select-selection:hover .ant-select-selection__rendered, +.ant-select-combobox.ant-select-show-arrow .ant-select-selection:hover .ant-select-selection__rendered { + margin-right: 20px; +} +.ant-select-dropdown { + margin: 0; + padding: 0; + color: rgba(0, 0, 0, 0.65); + font-variant: tabular-nums; + line-height: 1.5; + list-style: none; + font-feature-settings: 'tnum'; + position: absolute; + top: -9999px; + left: -9999px; + z-index: 1050; + box-sizing: border-box; + font-size: 15px; + font-variant: initial; + background-color: #fff; + border-radius: 4px; + outline: none; + box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15); +} +.ant-select-dropdown.slide-up-enter.slide-up-enter-active.ant-select-dropdown-placement-bottomLeft, +.ant-select-dropdown.slide-up-appear.slide-up-appear-active.ant-select-dropdown-placement-bottomLeft { + -webkit-animation-name: antSlideUpIn; + animation-name: antSlideUpIn; +} +.ant-select-dropdown.slide-up-enter.slide-up-enter-active.ant-select-dropdown-placement-topLeft, +.ant-select-dropdown.slide-up-appear.slide-up-appear-active.ant-select-dropdown-placement-topLeft { + -webkit-animation-name: antSlideDownIn; + animation-name: antSlideDownIn; +} +.ant-select-dropdown.slide-up-leave.slide-up-leave-active.ant-select-dropdown-placement-bottomLeft { + -webkit-animation-name: antSlideUpOut; + animation-name: antSlideUpOut; +} +.ant-select-dropdown.slide-up-leave.slide-up-leave-active.ant-select-dropdown-placement-topLeft { + -webkit-animation-name: antSlideDownOut; + animation-name: antSlideDownOut; +} +.ant-select-dropdown-hidden { + display: none; +} +.ant-select-dropdown-menu { + max-height: 250px; + margin-bottom: 0; + padding: 4px 0; + padding-left: 0; + overflow: auto; + list-style: none; + outline: none; +} +.ant-select-dropdown-menu-item-group-list { + margin: 0; + padding: 0; +} +.ant-select-dropdown-menu-item-group-list > .ant-select-dropdown-menu-item { + padding-left: 20px; +} +.ant-select-dropdown-menu-item-group-title { + height: 32px; + padding: 0 12px; + color: rgba(0, 0, 0, 0.45); + font-size: 12px; + line-height: 32px; +} +.ant-select-dropdown-menu-item-group-list .ant-select-dropdown-menu-item:first-child:not(:last-child), +.ant-select-dropdown-menu-item-group:not(:last-child) .ant-select-dropdown-menu-item-group-list .ant-select-dropdown-menu-item:last-child { + border-radius: 0; +} +.ant-select-dropdown-menu-item { + position: relative; + display: block; + padding: 5px 12px; + overflow: hidden; + color: rgba(0, 0, 0, 0.65); + font-weight: normal; + font-size: 15px; + line-height: 22px; + white-space: nowrap; + text-overflow: ellipsis; + cursor: pointer; + transition: background 0.3s ease; +} +.ant-select-dropdown-menu-item:hover:not(.ant-select-dropdown-menu-item-disabled) { + background-color: #bccad1; +} +.ant-select-dropdown-menu-item-selected { + color: rgba(0, 0, 0, 0.65); + font-weight: 600; + background-color: #fafafa; +} +.ant-select-dropdown-menu-item-disabled { + color: rgba(0, 0, 0, 0.25); + cursor: not-allowed; +} +.ant-select-dropdown-menu-item-disabled:hover { + color: rgba(0, 0, 0, 0.25); + cursor: not-allowed; +} +.ant-select-dropdown-menu-item-active:not(.ant-select-dropdown-menu-item-disabled) { + background-color: #bccad1; +} +.ant-select-dropdown-menu-item-divider { + height: 1px; + margin: 1px 0; + overflow: hidden; + line-height: 0; + background-color: #e8e8e8; +} +.ant-select-dropdown.ant-select-dropdown--multiple .ant-select-dropdown-menu-item { + padding-right: 32px; +} +.ant-select-dropdown.ant-select-dropdown--multiple .ant-select-dropdown-menu-item .ant-select-selected-icon { + position: absolute; + top: 50%; + right: 12px; + color: transparent; + font-weight: bold; + font-size: 12px; + text-shadow: 0 0.1px 0, 0.1px 0 0, 0 -0.1px 0, -0.1px 0; + transform: translateY(-50%); + transition: all 0.2s; +} +.ant-select-dropdown.ant-select-dropdown--multiple .ant-select-dropdown-menu-item:hover .ant-select-selected-icon { + color: rgba(0, 0, 0, 0.87); +} +.ant-select-dropdown.ant-select-dropdown--multiple .ant-select-dropdown-menu-item-disabled .ant-select-selected-icon { + display: none; +} +.ant-select-dropdown.ant-select-dropdown--multiple .ant-select-dropdown-menu-item-selected .ant-select-selected-icon, +.ant-select-dropdown.ant-select-dropdown--multiple .ant-select-dropdown-menu-item-selected:hover .ant-select-selected-icon { + display: inline-block; + color: #004691; +} +.ant-select-dropdown--empty.ant-select-dropdown--multiple .ant-select-dropdown-menu-item { + padding-right: 12px; +} +.ant-select-dropdown-container-open .ant-select-dropdown, +.ant-select-dropdown-open .ant-select-dropdown { + display: block; +} +.ant-skeleton { + display: table; + width: 100%; +} +.ant-skeleton-header { + display: table-cell; + padding-right: 16px; + vertical-align: top; +} +.ant-skeleton-header .ant-skeleton-avatar { + display: inline-block; + vertical-align: top; + background: #f2f2f2; + width: 32px; + height: 32px; + line-height: 32px; +} +.ant-skeleton-header .ant-skeleton-avatar.ant-skeleton-avatar-circle { + border-radius: 50%; +} +.ant-skeleton-header .ant-skeleton-avatar-lg { + width: 40px; + height: 40px; + line-height: 40px; +} +.ant-skeleton-header .ant-skeleton-avatar-lg.ant-skeleton-avatar-circle { + border-radius: 50%; +} +.ant-skeleton-header .ant-skeleton-avatar-sm { + width: 24px; + height: 24px; + line-height: 24px; +} +.ant-skeleton-header .ant-skeleton-avatar-sm.ant-skeleton-avatar-circle { + border-radius: 50%; +} +.ant-skeleton-content { + display: table-cell; + width: 100%; + vertical-align: top; +} +.ant-skeleton-content .ant-skeleton-title { + width: 100%; + height: 16px; + margin-top: 16px; + background: #f2f2f2; +} +.ant-skeleton-content .ant-skeleton-title + .ant-skeleton-paragraph { + margin-top: 24px; +} +.ant-skeleton-content .ant-skeleton-paragraph { + padding: 0; +} +.ant-skeleton-content .ant-skeleton-paragraph > li { + width: 100%; + height: 16px; + list-style: none; + background: #f2f2f2; +} +.ant-skeleton-content .ant-skeleton-paragraph > li:last-child:not(:first-child):not(:nth-child(2)) { + width: 61%; +} +.ant-skeleton-content .ant-skeleton-paragraph > li + li { + margin-top: 16px; +} +.ant-skeleton-with-avatar .ant-skeleton-content .ant-skeleton-title { + margin-top: 12px; +} +.ant-skeleton-with-avatar .ant-skeleton-content .ant-skeleton-title + .ant-skeleton-paragraph { + margin-top: 28px; +} +.ant-skeleton.ant-skeleton-active .ant-skeleton-content .ant-skeleton-title, +.ant-skeleton.ant-skeleton-active .ant-skeleton-content .ant-skeleton-paragraph > li { + background: linear-gradient(90deg, #f2f2f2 25%, #e6e6e6 37%, #f2f2f2 63%); + background-size: 400% 100%; + -webkit-animation: ant-skeleton-loading 1.4s ease infinite; + animation: ant-skeleton-loading 1.4s ease infinite; +} +.ant-skeleton.ant-skeleton-active .ant-skeleton-avatar { + background: linear-gradient(90deg, #f2f2f2 25%, #e6e6e6 37%, #f2f2f2 63%); + background-size: 400% 100%; + -webkit-animation: ant-skeleton-loading 1.4s ease infinite; + animation: ant-skeleton-loading 1.4s ease infinite; +} +@-webkit-keyframes ant-skeleton-loading { + 0% { + background-position: 100% 50%; + } + 100% { + background-position: 0 50%; + } +} +@keyframes ant-skeleton-loading { + 0% { + background-position: 100% 50%; + } + 100% { + background-position: 0 50%; + } +} +.ant-slider { + box-sizing: border-box; + margin: 0; + padding: 0; + color: rgba(0, 0, 0, 0.65); + font-size: 15px; + font-variant: tabular-nums; + line-height: 1.5; + list-style: none; + font-feature-settings: 'tnum'; + position: relative; + height: 12px; + margin: 14px 6px 10px; + padding: 4px 0; + cursor: pointer; + touch-action: none; +} +.ant-slider-vertical { + width: 12px; + height: 100%; + margin: 6px 10px; + padding: 0 4px; +} +.ant-slider-vertical .ant-slider-rail { + width: 4px; + height: 100%; +} +.ant-slider-vertical .ant-slider-track { + width: 4px; +} +.ant-slider-vertical .ant-slider-handle { + margin-top: -6px; + margin-left: -5px; +} +.ant-slider-vertical .ant-slider-mark { + top: 0; + left: 12px; + width: 18px; + height: 100%; +} +.ant-slider-vertical .ant-slider-mark-text { + left: 4px; + white-space: nowrap; +} +.ant-slider-vertical .ant-slider-step { + width: 4px; + height: 100%; +} +.ant-slider-vertical .ant-slider-dot { + top: auto; + left: 2px; + margin-bottom: -4px; +} +.ant-slider-tooltip .ant-tooltip-inner { + min-width: unset; +} +.ant-slider-with-marks { + margin-bottom: 28px; +} +.ant-slider-rail { + position: absolute; + width: 100%; + height: 4px; + background-color: #f5f5f5; + border-radius: 2px; + transition: background-color 0.3s; +} +.ant-slider-track { + position: absolute; + height: 4px; + background-color: #5890b8; + border-radius: 4px; + transition: background-color 0.3s; +} +.ant-slider-handle { + position: absolute; + width: 14px; + height: 14px; + margin-top: -5px; + background-color: #fff; + border: solid 2px #5890b8; + border-radius: 50%; + box-shadow: 0; + cursor: pointer; + transition: border-color 0.3s, box-shadow 0.6s, transform 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28); +} +.ant-slider-handle:focus { + border-color: #336ba7; + outline: none; + box-shadow: 0 0 0 5px rgba(0, 70, 145, 0.2); +} +.ant-slider-handle.ant-tooltip-open { + border-color: #004691; +} +.ant-slider:hover .ant-slider-rail { + background-color: #e1e1e1; +} +.ant-slider:hover .ant-slider-track { + background-color: #3777ab; +} +.ant-slider:hover .ant-slider-handle:not(.ant-tooltip-open) { + border-color: #3777ab; +} +.ant-slider-mark { + position: absolute; + top: 14px; + left: 0; + width: 100%; + font-size: 15px; +} +.ant-slider-mark-text { + position: absolute; + display: inline-block; + color: rgba(0, 0, 0, 0.45); + text-align: center; + word-break: keep-all; + cursor: pointer; +} +.ant-slider-mark-text-active { + color: rgba(0, 0, 0, 0.65); +} +.ant-slider-step { + position: absolute; + width: 100%; + height: 4px; + background: transparent; +} +.ant-slider-dot { + position: absolute; + top: -2px; + width: 8px; + height: 8px; + margin-left: -4px; + background-color: #fff; + border: 2px solid #e8e8e8; + border-radius: 50%; + cursor: pointer; +} +.ant-slider-dot:first-child { + margin-left: -4px; +} +.ant-slider-dot:last-child { + margin-left: -4px; +} +.ant-slider-dot-active { + border-color: #80a3c8; +} +.ant-slider-disabled { + cursor: not-allowed; +} +.ant-slider-disabled .ant-slider-track { + background-color: rgba(0, 0, 0, 0.25) !important; +} +.ant-slider-disabled .ant-slider-handle, +.ant-slider-disabled .ant-slider-dot { + background-color: #fff; + border-color: rgba(0, 0, 0, 0.25) !important; + box-shadow: none; + cursor: not-allowed; +} +.ant-slider-disabled .ant-slider-mark-text, +.ant-slider-disabled .ant-slider-dot { + cursor: not-allowed !important; +} +.ant-space { + display: inline-flex; +} +.ant-space-vertical { + flex-direction: column; +} +.ant-space-align-center { + align-items: center; +} +.ant-space-align-start { + align-items: flex-start; +} +.ant-space-align-end { + align-items: flex-end; +} +.ant-space-align-baseline { + align-items: baseline; +} +.ant-spin { + box-sizing: border-box; + margin: 0; + padding: 0; + color: rgba(0, 0, 0, 0.65); + font-size: 15px; + font-variant: tabular-nums; + line-height: 1.5; + list-style: none; + font-feature-settings: 'tnum'; + position: absolute; + display: none; + color: #004691; + text-align: center; + vertical-align: middle; + opacity: 0; + transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86); +} +.ant-spin-spinning { + position: static; + display: inline-block; + opacity: 1; +} +.ant-spin-nested-loading { + position: relative; +} +.ant-spin-nested-loading > div > .ant-spin { + position: absolute; + top: 0; + left: 0; + z-index: 4; + display: block; + width: 100%; + height: 100%; + max-height: 400px; +} +.ant-spin-nested-loading > div > .ant-spin .ant-spin-dot { + position: absolute; + top: 50%; + left: 50%; + margin: -10px; +} +.ant-spin-nested-loading > div > .ant-spin .ant-spin-text { + position: absolute; + top: 50%; + width: 100%; + padding-top: 4.5px; + text-shadow: 0 1px 2px #fff; +} +.ant-spin-nested-loading > div > .ant-spin.ant-spin-show-text .ant-spin-dot { + margin-top: -20px; +} +.ant-spin-nested-loading > div > .ant-spin-sm .ant-spin-dot { + margin: -7px; +} +.ant-spin-nested-loading > div > .ant-spin-sm .ant-spin-text { + padding-top: 1.5px; +} +.ant-spin-nested-loading > div > .ant-spin-sm.ant-spin-show-text .ant-spin-dot { + margin-top: -17px; +} +.ant-spin-nested-loading > div > .ant-spin-lg .ant-spin-dot { + margin: -16px; +} +.ant-spin-nested-loading > div > .ant-spin-lg .ant-spin-text { + padding-top: 10.5px; +} +.ant-spin-nested-loading > div > .ant-spin-lg.ant-spin-show-text .ant-spin-dot { + margin-top: -26px; +} +.ant-spin-container { + position: relative; + transition: opacity 0.3s; +} +.ant-spin-container::after { + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + z-index: 10; + display: none \9; + width: 100%; + height: 100%; + background: #fff; + opacity: 0; + transition: all 0.3s; + content: ''; + pointer-events: none; +} +.ant-spin-blur { + clear: both; + overflow: hidden; + opacity: 0.5; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + pointer-events: none; +} +.ant-spin-blur::after { + opacity: 0.4; + pointer-events: auto; +} +.ant-spin-tip { + color: rgba(0, 0, 0, 0.45); +} +.ant-spin-dot { + position: relative; + display: inline-block; + font-size: 20px; + width: 1em; + height: 1em; +} +.ant-spin-dot-item { + position: absolute; + display: block; + width: 9px; + height: 9px; + background-color: #004691; + border-radius: 100%; + transform: scale(0.75); + transform-origin: 50% 50%; + opacity: 0.3; + -webkit-animation: antSpinMove 1s infinite linear alternate; + animation: antSpinMove 1s infinite linear alternate; +} +.ant-spin-dot-item:nth-child(1) { + top: 0; + left: 0; +} +.ant-spin-dot-item:nth-child(2) { + top: 0; + right: 0; + -webkit-animation-delay: 0.4s; + animation-delay: 0.4s; +} +.ant-spin-dot-item:nth-child(3) { + right: 0; + bottom: 0; + -webkit-animation-delay: 0.8s; + animation-delay: 0.8s; +} +.ant-spin-dot-item:nth-child(4) { + bottom: 0; + left: 0; + -webkit-animation-delay: 1.2s; + animation-delay: 1.2s; +} +.ant-spin-dot-spin { + transform: rotate(45deg); + -webkit-animation: antRotate 1.2s infinite linear; + animation: antRotate 1.2s infinite linear; +} +.ant-spin-sm .ant-spin-dot { + font-size: 14px; +} +.ant-spin-sm .ant-spin-dot i { + width: 6px; + height: 6px; +} +.ant-spin-lg .ant-spin-dot { + font-size: 32px; +} +.ant-spin-lg .ant-spin-dot i { + width: 14px; + height: 14px; +} +.ant-spin.ant-spin-show-text .ant-spin-text { + display: block; +} +@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) { + /* IE10+ */ + .ant-spin-blur { + background: #fff; + opacity: 0.5; + } +} +@-webkit-keyframes antSpinMove { + to { + opacity: 1; + } +} +@keyframes antSpinMove { + to { + opacity: 1; + } +} +@-webkit-keyframes antRotate { + to { + transform: rotate(405deg); + } +} +@keyframes antRotate { + to { + transform: rotate(405deg); + } +} +.ant-statistic { + box-sizing: border-box; + margin: 0; + padding: 0; + color: rgba(0, 0, 0, 0.65); + font-size: 15px; + font-variant: tabular-nums; + line-height: 1.5; + list-style: none; + font-feature-settings: 'tnum'; +} +.ant-statistic-title { + margin-bottom: 4px; + color: rgba(0, 0, 0, 0.45); + font-size: 15px; +} +.ant-statistic-content { + color: rgba(0, 0, 0, 0.85); + font-size: 24px; + font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', 'Helvetica Neue', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol'; +} +.ant-statistic-content-value-decimal { + font-size: 16px; +} +.ant-statistic-content-prefix, +.ant-statistic-content-suffix { + display: inline-block; +} +.ant-statistic-content-prefix { + margin-right: 4px; +} +.ant-statistic-content-suffix { + margin-left: 4px; + font-size: 16px; +} +.ant-steps { + box-sizing: border-box; + margin: 0; + padding: 0; + color: rgba(0, 0, 0, 0.65); + font-size: 15px; + font-variant: tabular-nums; + line-height: 1.5; + list-style: none; + font-feature-settings: 'tnum'; + display: flex; + width: 100%; + font-size: 0; +} +.ant-steps-item { + position: relative; + display: inline-block; + flex: 1; + overflow: hidden; + vertical-align: top; +} +.ant-steps-item-container { + outline: none; +} +.ant-steps-item:last-child { + flex: none; +} +.ant-steps-item:last-child > .ant-steps-item-container > .ant-steps-item-tail, +.ant-steps-item:last-child > .ant-steps-item-container > .ant-steps-item-content > .ant-steps-item-title::after { + display: none; +} +.ant-steps-item-icon, +.ant-steps-item-content { + display: inline-block; + vertical-align: top; +} +.ant-steps-item-icon { + width: 32px; + height: 32px; + margin-right: 8px; + font-size: 17px; + font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', 'Helvetica Neue', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol'; + line-height: 32px; + text-align: center; + border: 1px solid rgba(0, 0, 0, 0.25); + border-radius: 32px; + transition: background-color 0.3s, border-color 0.3s; +} +.ant-steps-item-icon > .ant-steps-icon { + position: relative; + top: -1px; + color: #004691; + line-height: 1; +} +.ant-steps-item-tail { + position: absolute; + top: 12px; + left: 0; + width: 100%; + padding: 0 10px; +} +.ant-steps-item-tail::after { + display: inline-block; + width: 100%; + height: 1px; + background: #e8e8e8; + border-radius: 1px; + transition: background 0.3s; + content: ''; +} +.ant-steps-item-title { + position: relative; + display: inline-block; + padding-right: 16px; + color: rgba(0, 0, 0, 0.65); + font-size: 17px; + line-height: 32px; +} +.ant-steps-item-title::after { + position: absolute; + top: 16px; + left: 100%; + display: block; + width: 9999px; + height: 1px; + background: #e8e8e8; + content: ''; +} +.ant-steps-item-subtitle { + display: inline; + margin-left: 8px; + color: rgba(0, 0, 0, 0.45); + font-weight: normal; + font-size: 15px; +} +.ant-steps-item-description { + color: rgba(0, 0, 0, 0.45); + font-size: 15px; +} +.ant-steps-item-wait .ant-steps-item-icon { + background-color: #fff; + border-color: rgba(0, 0, 0, 0.25); +} +.ant-steps-item-wait .ant-steps-item-icon > .ant-steps-icon { + color: rgba(0, 0, 0, 0.25); +} +.ant-steps-item-wait .ant-steps-item-icon > .ant-steps-icon .ant-steps-icon-dot { + background: rgba(0, 0, 0, 0.25); +} +.ant-steps-item-wait > .ant-steps-item-container > .ant-steps-item-content > .ant-steps-item-title { + color: rgba(0, 0, 0, 0.45); +} +.ant-steps-item-wait > .ant-steps-item-container > .ant-steps-item-content > .ant-steps-item-title::after { + background-color: #e8e8e8; +} +.ant-steps-item-wait > .ant-steps-item-container > .ant-steps-item-content > .ant-steps-item-description { + color: rgba(0, 0, 0, 0.45); +} +.ant-steps-item-wait > .ant-steps-item-container > .ant-steps-item-tail::after { + background-color: #e8e8e8; +} +.ant-steps-item-process .ant-steps-item-icon { + background-color: #fff; + border-color: #004691; +} +.ant-steps-item-process .ant-steps-item-icon > .ant-steps-icon { + color: #004691; +} +.ant-steps-item-process .ant-steps-item-icon > .ant-steps-icon .ant-steps-icon-dot { + background: #004691; +} +.ant-steps-item-process > .ant-steps-item-container > .ant-steps-item-content > .ant-steps-item-title { + color: rgba(0, 0, 0, 0.85); +} +.ant-steps-item-process > .ant-steps-item-container > .ant-steps-item-content > .ant-steps-item-title::after { + background-color: #e8e8e8; +} +.ant-steps-item-process > .ant-steps-item-container > .ant-steps-item-content > .ant-steps-item-description { + color: rgba(0, 0, 0, 0.65); +} +.ant-steps-item-process > .ant-steps-item-container > .ant-steps-item-tail::after { + background-color: #e8e8e8; +} +.ant-steps-item-process .ant-steps-item-icon { + background: #004691; +} +.ant-steps-item-process .ant-steps-item-icon > .ant-steps-icon { + color: #fff; +} +.ant-steps-item-process .ant-steps-item-title { + font-weight: 500; +} +.ant-steps-item-finish .ant-steps-item-icon { + background-color: #fff; + border-color: #004691; +} +.ant-steps-item-finish .ant-steps-item-icon > .ant-steps-icon { + color: #004691; +} +.ant-steps-item-finish .ant-steps-item-icon > .ant-steps-icon .ant-steps-icon-dot { + background: #004691; +} +.ant-steps-item-finish > .ant-steps-item-container > .ant-steps-item-content > .ant-steps-item-title { + color: rgba(0, 0, 0, 0.65); +} +.ant-steps-item-finish > .ant-steps-item-container > .ant-steps-item-content > .ant-steps-item-title::after { + background-color: #004691; +} +.ant-steps-item-finish > .ant-steps-item-container > .ant-steps-item-content > .ant-steps-item-description { + color: rgba(0, 0, 0, 0.45); +} +.ant-steps-item-finish > .ant-steps-item-container > .ant-steps-item-tail::after { + background-color: #004691; +} +.ant-steps-item-error .ant-steps-item-icon { + background-color: #fff; + border-color: #f5222d; +} +.ant-steps-item-error .ant-steps-item-icon > .ant-steps-icon { + color: #f5222d; +} +.ant-steps-item-error .ant-steps-item-icon > .ant-steps-icon .ant-steps-icon-dot { + background: #f5222d; +} +.ant-steps-item-error > .ant-steps-item-container > .ant-steps-item-content > .ant-steps-item-title { + color: #f5222d; +} +.ant-steps-item-error > .ant-steps-item-container > .ant-steps-item-content > .ant-steps-item-title::after { + background-color: #e8e8e8; +} +.ant-steps-item-error > .ant-steps-item-container > .ant-steps-item-content > .ant-steps-item-description { + color: #f5222d; +} +.ant-steps-item-error > .ant-steps-item-container > .ant-steps-item-tail::after { + background-color: #e8e8e8; +} +.ant-steps-item.ant-steps-next-error .ant-steps-item-title::after { + background: #f5222d; +} +.ant-steps .ant-steps-item:not(.ant-steps-item-active) > .ant-steps-item-container[role='button'] { + cursor: pointer; +} +.ant-steps .ant-steps-item:not(.ant-steps-item-active) > .ant-steps-item-container[role='button'] .ant-steps-item-title, +.ant-steps .ant-steps-item:not(.ant-steps-item-active) > .ant-steps-item-container[role='button'] .ant-steps-item-description, +.ant-steps .ant-steps-item:not(.ant-steps-item-active) > .ant-steps-item-container[role='button'] .ant-steps-item-icon .ant-steps-icon { + transition: color 0.3s; +} +.ant-steps .ant-steps-item:not(.ant-steps-item-active) > .ant-steps-item-container[role='button']:hover .ant-steps-item-title, +.ant-steps .ant-steps-item:not(.ant-steps-item-active) > .ant-steps-item-container[role='button']:hover .ant-steps-item-subtitle, +.ant-steps .ant-steps-item:not(.ant-steps-item-active) > .ant-steps-item-container[role='button']:hover .ant-steps-item-description { + color: #004691; +} +.ant-steps .ant-steps-item:not(.ant-steps-item-active):not(.ant-steps-item-process) > .ant-steps-item-container[role='button']:hover .ant-steps-item-icon { + border-color: #004691; +} +.ant-steps .ant-steps-item:not(.ant-steps-item-active):not(.ant-steps-item-process) > .ant-steps-item-container[role='button']:hover .ant-steps-item-icon .ant-steps-icon { + color: #004691; +} +.ant-steps-horizontal:not(.ant-steps-label-vertical) .ant-steps-item { + margin-right: 16px; + white-space: nowrap; +} +.ant-steps-horizontal:not(.ant-steps-label-vertical) .ant-steps-item:last-child { + margin-right: 0; +} +.ant-steps-horizontal:not(.ant-steps-label-vertical) .ant-steps-item:last-child .ant-steps-item-title { + padding-right: 0; +} +.ant-steps-horizontal:not(.ant-steps-label-vertical) .ant-steps-item-tail { + display: none; +} +.ant-steps-horizontal:not(.ant-steps-label-vertical) .ant-steps-item-description { + max-width: 140px; + white-space: normal; +} +.ant-steps-item-custom .ant-steps-item-icon { + height: auto; + background: none; + border: 0; +} +.ant-steps-item-custom .ant-steps-item-icon > .ant-steps-icon { + top: 0; + left: 0.5px; + width: 32px; + height: 32px; + font-size: 24px; + line-height: 32px; +} +.ant-steps-item-custom.ant-steps-item-process .ant-steps-item-icon > .ant-steps-icon { + color: #004691; +} +.ant-steps:not(.ant-steps-vertical) .ant-steps-item-custom .ant-steps-item-icon { + width: auto; +} +.ant-steps-small.ant-steps-horizontal:not(.ant-steps-label-vertical) .ant-steps-item { + margin-right: 12px; +} +.ant-steps-small.ant-steps-horizontal:not(.ant-steps-label-vertical) .ant-steps-item:last-child { + margin-right: 0; +} +.ant-steps-small .ant-steps-item-icon { + width: 24px; + height: 24px; + font-size: 12px; + line-height: 24px; + text-align: center; + border-radius: 24px; +} +.ant-steps-small .ant-steps-item-title { + padding-right: 12px; + font-size: 15px; + line-height: 24px; +} +.ant-steps-small .ant-steps-item-title::after { + top: 12px; +} +.ant-steps-small .ant-steps-item-description { + color: rgba(0, 0, 0, 0.45); + font-size: 15px; +} +.ant-steps-small .ant-steps-item-tail { + top: 8px; +} +.ant-steps-small .ant-steps-item-custom .ant-steps-item-icon { + width: inherit; + height: inherit; + line-height: inherit; + background: none; + border: 0; + border-radius: 0; +} +.ant-steps-small .ant-steps-item-custom .ant-steps-item-icon > .ant-steps-icon { + font-size: 24px; + line-height: 24px; + transform: none; +} +.ant-steps-vertical { + display: block; +} +.ant-steps-vertical .ant-steps-item { + display: block; + overflow: visible; +} +.ant-steps-vertical .ant-steps-item-icon { + float: left; + margin-right: 16px; +} +.ant-steps-vertical .ant-steps-item-content { + display: block; + min-height: 48px; + overflow: hidden; +} +.ant-steps-vertical .ant-steps-item-title { + line-height: 32px; +} +.ant-steps-vertical .ant-steps-item-description { + padding-bottom: 12px; +} +.ant-steps-vertical > .ant-steps-item > .ant-steps-item-container > .ant-steps-item-tail { + position: absolute; + top: 0; + left: 16px; + width: 1px; + height: 100%; + padding: 38px 0 6px; +} +.ant-steps-vertical > .ant-steps-item > .ant-steps-item-container > .ant-steps-item-tail::after { + width: 1px; + height: 100%; +} +.ant-steps-vertical > .ant-steps-item:not(:last-child) > .ant-steps-item-container > .ant-steps-item-tail { + display: block; +} +.ant-steps-vertical > .ant-steps-item > .ant-steps-item-container > .ant-steps-item-content > .ant-steps-item-title::after { + display: none; +} +.ant-steps-vertical.ant-steps-small .ant-steps-item-container .ant-steps-item-tail { + position: absolute; + top: 0; + left: 12px; + padding: 30px 0 6px; +} +.ant-steps-vertical.ant-steps-small .ant-steps-item-container .ant-steps-item-title { + line-height: 24px; +} +@media (max-width: 480px) { + .ant-steps-horizontal.ant-steps-label-horizontal { + display: block; + } + .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item { + display: block; + overflow: visible; + } + .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-icon { + float: left; + margin-right: 16px; + } + .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-content { + display: block; + min-height: 48px; + overflow: hidden; + } + .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-title { + line-height: 32px; + } + .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-description { + padding-bottom: 12px; + } + .ant-steps-horizontal.ant-steps-label-horizontal > .ant-steps-item > .ant-steps-item-container > .ant-steps-item-tail { + position: absolute; + top: 0; + left: 16px; + width: 1px; + height: 100%; + padding: 38px 0 6px; + } + .ant-steps-horizontal.ant-steps-label-horizontal > .ant-steps-item > .ant-steps-item-container > .ant-steps-item-tail::after { + width: 1px; + height: 100%; + } + .ant-steps-horizontal.ant-steps-label-horizontal > .ant-steps-item:not(:last-child) > .ant-steps-item-container > .ant-steps-item-tail { + display: block; + } + .ant-steps-horizontal.ant-steps-label-horizontal > .ant-steps-item > .ant-steps-item-container > .ant-steps-item-content > .ant-steps-item-title::after { + display: none; + } + .ant-steps-horizontal.ant-steps-label-horizontal.ant-steps-small .ant-steps-item-container .ant-steps-item-tail { + position: absolute; + top: 0; + left: 12px; + padding: 30px 0 6px; + } + .ant-steps-horizontal.ant-steps-label-horizontal.ant-steps-small .ant-steps-item-container .ant-steps-item-title { + line-height: 24px; + } +} +.ant-steps-label-vertical .ant-steps-item { + overflow: visible; +} +.ant-steps-label-vertical .ant-steps-item-tail { + margin-left: 58px; + padding: 3.5px 24px; +} +.ant-steps-label-vertical .ant-steps-item-content { + display: block; + width: 116px; + margin-top: 8px; + text-align: center; +} +.ant-steps-label-vertical .ant-steps-item-icon { + display: inline-block; + margin-left: 42px; +} +.ant-steps-label-vertical .ant-steps-item-title { + padding-right: 0; +} +.ant-steps-label-vertical .ant-steps-item-title::after { + display: none; +} +.ant-steps-label-vertical .ant-steps-item-subtitle { + display: block; + margin-bottom: 4px; + margin-left: 0; + line-height: 1.5; +} +.ant-steps-label-vertical.ant-steps-small:not(.ant-steps-dot) .ant-steps-item-icon { + margin-left: 46px; +} +.ant-steps-dot .ant-steps-item-title, +.ant-steps-dot.ant-steps-small .ant-steps-item-title { + line-height: 1.5; +} +.ant-steps-dot .ant-steps-item-tail, +.ant-steps-dot.ant-steps-small .ant-steps-item-tail { + top: 2px; + width: 100%; + margin: 0 0 0 70px; + padding: 0; +} +.ant-steps-dot .ant-steps-item-tail::after, +.ant-steps-dot.ant-steps-small .ant-steps-item-tail::after { + width: calc(100% - 20px); + height: 3px; + margin-left: 12px; +} +.ant-steps-dot .ant-steps-item:first-child .ant-steps-icon-dot, +.ant-steps-dot.ant-steps-small .ant-steps-item:first-child .ant-steps-icon-dot { + left: 2px; +} +.ant-steps-dot .ant-steps-item-icon, +.ant-steps-dot.ant-steps-small .ant-steps-item-icon { + width: 8px; + height: 8px; + margin-left: 67px; + padding-right: 0; + line-height: 8px; + background: transparent; + border: 0; +} +.ant-steps-dot .ant-steps-item-icon .ant-steps-icon-dot, +.ant-steps-dot.ant-steps-small .ant-steps-item-icon .ant-steps-icon-dot { + position: relative; + float: left; + width: 100%; + height: 100%; + border-radius: 100px; + transition: all 0.3s; + /* expand hover area */ +} +.ant-steps-dot .ant-steps-item-icon .ant-steps-icon-dot::after, +.ant-steps-dot.ant-steps-small .ant-steps-item-icon .ant-steps-icon-dot::after { + position: absolute; + top: -12px; + left: -26px; + width: 60px; + height: 32px; + background: rgba(0, 0, 0, 0.001); + content: ''; +} +.ant-steps-dot .ant-steps-item-content, +.ant-steps-dot.ant-steps-small .ant-steps-item-content { + width: 140px; +} +.ant-steps-dot .ant-steps-item-process .ant-steps-item-icon, +.ant-steps-dot.ant-steps-small .ant-steps-item-process .ant-steps-item-icon { + width: 10px; + height: 10px; + line-height: 10px; +} +.ant-steps-dot .ant-steps-item-process .ant-steps-item-icon .ant-steps-icon-dot, +.ant-steps-dot.ant-steps-small .ant-steps-item-process .ant-steps-item-icon .ant-steps-icon-dot { + top: -1px; +} +.ant-steps-vertical.ant-steps-dot .ant-steps-item-icon { + margin-top: 8px; + margin-left: 0; +} +.ant-steps-vertical.ant-steps-dot .ant-steps-item > .ant-steps-item-container > .ant-steps-item-tail { + top: 2px; + left: -9px; + margin: 0; + padding: 22px 0 4px; +} +.ant-steps-vertical.ant-steps-dot .ant-steps-item:first-child .ant-steps-icon-dot { + left: 0; +} +.ant-steps-vertical.ant-steps-dot .ant-steps-item-process .ant-steps-icon-dot { + left: -2px; +} +.ant-steps-navigation { + padding-top: 12px; +} +.ant-steps-navigation.ant-steps-small .ant-steps-item-container { + margin-left: -12px; +} +.ant-steps-navigation .ant-steps-item { + overflow: visible; + text-align: center; +} +.ant-steps-navigation .ant-steps-item-container { + display: inline-block; + height: 100%; + margin-left: -16px; + padding-bottom: 12px; + text-align: left; + transition: opacity 0.3s; +} +.ant-steps-navigation .ant-steps-item-container .ant-steps-item-content { + max-width: auto; +} +.ant-steps-navigation .ant-steps-item-container .ant-steps-item-title { + max-width: 100%; + padding-right: 0; + overflow: hidden; + white-space: nowrap; + text-overflow: ellipsis; +} +.ant-steps-navigation .ant-steps-item-container .ant-steps-item-title::after { + display: none; +} +.ant-steps-navigation .ant-steps-item:not(.ant-steps-item-active) .ant-steps-item-container[role='button'] { + cursor: pointer; +} +.ant-steps-navigation .ant-steps-item:not(.ant-steps-item-active) .ant-steps-item-container[role='button']:hover { + opacity: 0.85; +} +.ant-steps-navigation .ant-steps-item:last-child { + flex: 1; +} +.ant-steps-navigation .ant-steps-item:last-child::after { + display: none; +} +.ant-steps-navigation .ant-steps-item::after { + position: absolute; + top: 50%; + left: 100%; + display: inline-block; + width: 12px; + height: 12px; + margin-top: -14px; + margin-left: -2px; + border: 1px solid rgba(0, 0, 0, 0.25); + border-bottom: none; + border-left: none; + transform: rotate(45deg); + content: ''; +} +.ant-steps-navigation .ant-steps-item::before { + position: absolute; + bottom: 0; + left: 50%; + display: inline-block; + width: 0; + height: 3px; + background-color: #004691; + transition: width 0.3s, left 0.3s; + transition-timing-function: ease-out; + content: ''; +} +.ant-steps-navigation .ant-steps-item.ant-steps-item-active::before { + left: 0; + width: 100%; +} +@media (max-width: 480px) { + .ant-steps-navigation > .ant-steps-item { + margin-right: 0 !important; + } + .ant-steps-navigation > .ant-steps-item::before { + display: none; + } + .ant-steps-navigation > .ant-steps-item.ant-steps-item-active::before { + top: 0; + right: 0; + left: unset; + display: block; + width: 3px; + height: calc(100% - 24px); + } + .ant-steps-navigation > .ant-steps-item::after { + position: relative; + top: -2px; + left: 50%; + display: block; + width: 8px; + height: 8px; + margin-bottom: 8px; + text-align: center; + transform: rotate(135deg); + } + .ant-steps-navigation > .ant-steps-item > .ant-steps-item-container > .ant-steps-item-tail { + visibility: hidden; + } +} +.ant-steps-flex-not-supported.ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item { + margin-left: -16px; + padding-left: 16px; + background: #fff; +} +.ant-steps-flex-not-supported.ant-steps-horizontal.ant-steps-label-horizontal.ant-steps-small .ant-steps-item { + margin-left: -12px; + padding-left: 12px; +} +.ant-steps-flex-not-supported.ant-steps-dot .ant-steps-item:last-child { + overflow: hidden; +} +.ant-steps-flex-not-supported.ant-steps-dot .ant-steps-item:last-child .ant-steps-icon-dot::after { + right: -200px; + width: 200px; +} +.ant-steps-flex-not-supported.ant-steps-dot .ant-steps-item .ant-steps-icon-dot::before, +.ant-steps-flex-not-supported.ant-steps-dot .ant-steps-item .ant-steps-icon-dot::after { + position: absolute; + top: 0; + left: -10px; + width: 10px; + height: 8px; + background: #fff; + content: ''; +} +.ant-steps-flex-not-supported.ant-steps-dot .ant-steps-item .ant-steps-icon-dot::after { + right: -10px; + left: auto; +} +.ant-steps-flex-not-supported.ant-steps-dot .ant-steps-item-wait .ant-steps-item-icon > .ant-steps-icon .ant-steps-icon-dot { + background: #ccc; +} +.ant-switch { + margin: 0; + padding: 0; + color: rgba(0, 0, 0, 0.65); + font-size: 15px; + font-variant: tabular-nums; + line-height: 1.5; + list-style: none; + font-feature-settings: 'tnum'; + position: relative; + display: inline-block; + box-sizing: border-box; + min-width: 44px; + height: 22px; + line-height: 20px; + vertical-align: middle; + background-color: rgba(0, 0, 0, 0.25); + border: 1px solid transparent; + border-radius: 100px; + cursor: pointer; + transition: all 0.36s; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} +.ant-switch-inner { + display: block; + margin-right: 6px; + margin-left: 24px; + color: #fff; + font-size: 12px; +} +.ant-switch-loading-icon, +.ant-switch::after { + position: absolute; + top: 1px; + left: 1px; + width: 18px; + height: 18px; + background-color: #fff; + border-radius: 18px; + cursor: pointer; + transition: all 0.36s cubic-bezier(0.78, 0.14, 0.15, 0.86); + content: ' '; +} +.ant-switch::after { + box-shadow: 0 2px 4px 0 rgba(0, 35, 11, 0.2); +} +.ant-switch:not(.ant-switch-disabled):active::before, +.ant-switch:not(.ant-switch-disabled):active::after { + width: 24px; +} +.ant-switch-loading-icon { + z-index: 1; + display: none; + font-size: 12px; + background: transparent; +} +.ant-switch-loading-icon svg { + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + margin: auto; +} +.ant-switch-loading .ant-switch-loading-icon { + display: inline-block; + color: rgba(0, 0, 0, 0.65); +} +.ant-switch-checked.ant-switch-loading .ant-switch-loading-icon { + color: #004691; +} +.ant-switch:focus { + outline: 0; + box-shadow: 0 0 0 2px rgba(0, 70, 145, 0.2); +} +.ant-switch:focus:hover { + box-shadow: none; +} +.ant-switch-small { + min-width: 28px; + height: 16px; + line-height: 14px; +} +.ant-switch-small .ant-switch-inner { + margin-right: 3px; + margin-left: 18px; + font-size: 12px; +} +.ant-switch-small::after { + width: 12px; + height: 12px; +} +.ant-switch-small:active::before, +.ant-switch-small:active::after { + width: 16px; +} +.ant-switch-small .ant-switch-loading-icon { + width: 12px; + height: 12px; +} +.ant-switch-small.ant-switch-checked .ant-switch-inner { + margin-right: 18px; + margin-left: 3px; +} +.ant-switch-small.ant-switch-checked .ant-switch-loading-icon { + left: 100%; + margin-left: -13px; +} +.ant-switch-small.ant-switch-loading .ant-switch-loading-icon { + font-weight: bold; + transform: scale(0.66667); +} +.ant-switch-checked { + background-color: #004691; +} +.ant-switch-checked .ant-switch-inner { + margin-right: 24px; + margin-left: 6px; +} +.ant-switch-checked::after { + left: 100%; + margin-left: -1px; + transform: translateX(-100%); +} +.ant-switch-checked .ant-switch-loading-icon { + left: 100%; + margin-left: -19px; +} +.ant-switch-loading, +.ant-switch-disabled { + cursor: not-allowed; + opacity: 0.4; +} +.ant-switch-loading *, +.ant-switch-disabled * { + cursor: not-allowed; +} +.ant-switch-loading::before, +.ant-switch-disabled::before, +.ant-switch-loading::after, +.ant-switch-disabled::after { + cursor: not-allowed; +} +@-webkit-keyframes AntSwitchSmallLoadingCircle { + 0% { + transform: rotate(0deg) scale(0.66667); + transform-origin: 50% 50%; + } + 100% { + transform: rotate(360deg) scale(0.66667); + transform-origin: 50% 50%; + } +} +@keyframes AntSwitchSmallLoadingCircle { + 0% { + transform: rotate(0deg) scale(0.66667); + transform-origin: 50% 50%; + } + 100% { + transform: rotate(360deg) scale(0.66667); + transform-origin: 50% 50%; + } +} +.ant-table-wrapper { + zoom: 1; +} +.ant-table-wrapper::before, +.ant-table-wrapper::after { + display: table; + content: ''; +} +.ant-table-wrapper::after { + clear: both; +} +.ant-table-wrapper::before, +.ant-table-wrapper::after { + display: table; + content: ''; +} +.ant-table-wrapper::after { + clear: both; +} +.ant-table { + box-sizing: border-box; + margin: 0; + padding: 0; + color: rgba(0, 0, 0, 0.65); + font-size: 15px; + font-variant: tabular-nums; + line-height: 1.5; + list-style: none; + font-feature-settings: 'tnum'; + position: relative; + clear: both; +} +.ant-table-body { + transition: opacity 0.3s; +} +.ant-table-empty .ant-table-body { + overflow-x: auto !important; + overflow-y: hidden !important; +} +.ant-table table { + width: 100%; + text-align: left; + border-radius: 4px 4px 0 0; + border-collapse: separate; + border-spacing: 0; +} +.ant-table-layout-fixed table { + table-layout: fixed; +} +.ant-table-thead > tr > th { + color: rgba(0, 0, 0, 0.85); + font-weight: 500; + text-align: left; + background: #fafafa; + border-bottom: 1px solid #e8e8e8; + transition: background 0.3s ease; +} +.ant-table-thead > tr > th[colspan]:not([colspan='1']) { + text-align: center; +} +.ant-table-thead > tr > th .anticon-filter, +.ant-table-thead > tr > th .ant-table-filter-icon { + position: absolute; + top: 0; + right: 0; + width: 28px; + height: 100%; + color: #bfbfbf; + font-size: 12px; + text-align: center; + cursor: pointer; + transition: all 0.3s; +} +.ant-table-thead > tr > th .anticon-filter > svg, +.ant-table-thead > tr > th .ant-table-filter-icon > svg { + position: absolute; + top: 50%; + left: 50%; + margin-top: -5px; + margin-left: -6px; +} +.ant-table-thead > tr > th .ant-table-filter-selected.anticon { + color: #004691; +} +.ant-table-thead > tr > th .ant-table-column-sorter { + display: table-cell; + vertical-align: middle; +} +.ant-table-thead > tr > th .ant-table-column-sorter .ant-table-column-sorter-inner { + height: 1em; + margin-top: 0.35em; + margin-left: 0.57142857em; + color: #bfbfbf; + line-height: 1em; + text-align: center; + transition: all 0.3s; +} +.ant-table-thead > tr > th .ant-table-column-sorter .ant-table-column-sorter-inner .ant-table-column-sorter-up, +.ant-table-thead > tr > th .ant-table-column-sorter .ant-table-column-sorter-inner .ant-table-column-sorter-down { + display: inline-block; + font-size: 12px; + font-size: 11px \9; + transform: scale(0.91666667) rotate(0deg); + display: block; + height: 1em; + line-height: 1em; + transition: all 0.3s; +} +:root .ant-table-thead > tr > th .ant-table-column-sorter .ant-table-column-sorter-inner .ant-table-column-sorter-up, +:root .ant-table-thead > tr > th .ant-table-column-sorter .ant-table-column-sorter-inner .ant-table-column-sorter-down { + font-size: 12px; +} +.ant-table-thead > tr > th .ant-table-column-sorter .ant-table-column-sorter-inner .ant-table-column-sorter-up.on, +.ant-table-thead > tr > th .ant-table-column-sorter .ant-table-column-sorter-inner .ant-table-column-sorter-down.on { + color: #004691; +} +.ant-table-thead > tr > th .ant-table-column-sorter .ant-table-column-sorter-inner-full { + margin-top: -0.15em; +} +.ant-table-thead > tr > th .ant-table-column-sorter .ant-table-column-sorter-inner-full .ant-table-column-sorter-up, +.ant-table-thead > tr > th .ant-table-column-sorter .ant-table-column-sorter-inner-full .ant-table-column-sorter-down { + height: 0.5em; + line-height: 0.5em; +} +.ant-table-thead > tr > th .ant-table-column-sorter .ant-table-column-sorter-inner-full .ant-table-column-sorter-down { + margin-top: 0.125em; +} +.ant-table-thead > tr > th.ant-table-column-has-actions { + position: relative; + background-clip: padding-box; + /* stylelint-disable-next-line */ + -webkit-background-clip: border-box; +} +.ant-table-thead > tr > th.ant-table-column-has-actions.ant-table-column-has-filters { + padding-right: 30px !important; +} +.ant-table-thead > tr > th.ant-table-column-has-actions.ant-table-column-has-filters .anticon-filter.ant-table-filter-open, +.ant-table-thead > tr > th.ant-table-column-has-actions.ant-table-column-has-filters .ant-table-filter-icon.ant-table-filter-open { + color: rgba(0, 0, 0, 0.45); + background: #e5e5e5; +} +.ant-table-thead > tr > th.ant-table-column-has-actions.ant-table-column-has-filters:hover .anticon-filter:hover, +.ant-table-thead > tr > th.ant-table-column-has-actions.ant-table-column-has-filters:hover .ant-table-filter-icon:hover { + color: rgba(0, 0, 0, 0.45); + background: #e5e5e5; +} +.ant-table-thead > tr > th.ant-table-column-has-actions.ant-table-column-has-filters:hover .anticon-filter:active, +.ant-table-thead > tr > th.ant-table-column-has-actions.ant-table-column-has-filters:hover .ant-table-filter-icon:active { + color: rgba(0, 0, 0, 0.65); +} +.ant-table-thead > tr > th.ant-table-column-has-actions.ant-table-column-has-sorters { + cursor: pointer; +} +.ant-table-thead > tr > th.ant-table-column-has-actions.ant-table-column-has-sorters:hover { + background: #f2f2f2; +} +.ant-table-thead > tr > th.ant-table-column-has-actions.ant-table-column-has-sorters:hover .anticon-filter, +.ant-table-thead > tr > th.ant-table-column-has-actions.ant-table-column-has-sorters:hover .ant-table-filter-icon { + background: #f2f2f2; +} +.ant-table-thead > tr > th.ant-table-column-has-actions.ant-table-column-has-sorters:active .ant-table-column-sorter-up:not(.on), +.ant-table-thead > tr > th.ant-table-column-has-actions.ant-table-column-has-sorters:active .ant-table-column-sorter-down:not(.on) { + color: rgba(0, 0, 0, 0.45); +} +.ant-table-thead > tr > th .ant-table-header-column { + display: inline-block; + max-width: 100%; + vertical-align: top; +} +.ant-table-thead > tr > th .ant-table-header-column .ant-table-column-sorters { + display: table; +} +.ant-table-thead > tr > th .ant-table-header-column .ant-table-column-sorters > .ant-table-column-title { + display: table-cell; + vertical-align: middle; +} +.ant-table-thead > tr > th .ant-table-header-column .ant-table-column-sorters > *:not(.ant-table-column-sorter) { + position: relative; +} +.ant-table-thead > tr > th .ant-table-header-column .ant-table-column-sorters::before { + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + background: transparent; + transition: all 0.3s; + content: ''; +} +.ant-table-thead > tr > th .ant-table-header-column .ant-table-column-sorters:hover::before { + background: rgba(0, 0, 0, 0.04); +} +.ant-table-thead > tr > th.ant-table-column-has-sorters { + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} +.ant-table-thead > tr:first-child > th:first-child { + border-top-left-radius: 4px; +} +.ant-table-thead > tr:first-child > th:last-child { + border-top-right-radius: 4px; +} +.ant-table-thead > tr:not(:last-child) > th[colspan] { + border-bottom: 0; +} +.ant-table-tbody > tr > td { + border-bottom: 1px solid #e8e8e8; + transition: background 0.3s; +} +.ant-table-thead > tr.ant-table-row-hover:not(.ant-table-expanded-row):not(.ant-table-row-selected) > td, +.ant-table-tbody > tr.ant-table-row-hover:not(.ant-table-expanded-row):not(.ant-table-row-selected) > td, +.ant-table-thead > tr:hover:not(.ant-table-expanded-row):not(.ant-table-row-selected) > td, +.ant-table-tbody > tr:hover:not(.ant-table-expanded-row):not(.ant-table-row-selected) > td { + background: #bccad1; +} +.ant-table-thead > tr.ant-table-row-selected > td.ant-table-column-sort, +.ant-table-tbody > tr.ant-table-row-selected > td.ant-table-column-sort { + background: #fafafa; +} +.ant-table-thead > tr:hover.ant-table-row-selected > td, +.ant-table-tbody > tr:hover.ant-table-row-selected > td { + background: #fafafa; +} +.ant-table-thead > tr:hover.ant-table-row-selected > td.ant-table-column-sort, +.ant-table-tbody > tr:hover.ant-table-row-selected > td.ant-table-column-sort { + background: #fafafa; +} +.ant-table-thead > tr:hover { + background: none; +} +.ant-table-footer { + position: relative; + padding: 16px 16px; + color: rgba(0, 0, 0, 0.85); + background: #fafafa; + border-top: 1px solid #e8e8e8; + border-radius: 0 0 4px 4px; +} +.ant-table-footer::before { + position: absolute; + top: -1px; + left: 0; + width: 100%; + height: 1px; + background: #fafafa; + content: ''; +} +.ant-table.ant-table-bordered .ant-table-footer { + border: 1px solid #e8e8e8; +} +.ant-table-title { + position: relative; + top: 1px; + padding: 16px 0; + border-radius: 4px 4px 0 0; +} +.ant-table.ant-table-bordered .ant-table-title { + padding-right: 16px; + padding-left: 16px; + border: 1px solid #e8e8e8; +} +.ant-table-title + .ant-table-content { + position: relative; + border-radius: 4px 4px 0 0; +} +.ant-table-bordered .ant-table-title + .ant-table-content, +.ant-table-bordered .ant-table-title + .ant-table-content table, +.ant-table-bordered .ant-table-title + .ant-table-content .ant-table-thead > tr:first-child > th { + border-radius: 0; +} +.ant-table-without-column-header .ant-table-title + .ant-table-content, +.ant-table-without-column-header table { + border-radius: 0; +} +.ant-table-without-column-header.ant-table-bordered.ant-table-empty .ant-table-placeholder { + border-top: 1px solid #e8e8e8; + border-radius: 4px; +} +.ant-table-tbody > tr.ant-table-row-selected td { + color: inherit; + background: #fafafa; +} +.ant-table-thead > tr > th.ant-table-column-sort { + background: #f5f5f5; +} +.ant-table-tbody > tr > td.ant-table-column-sort { + background: rgba(0, 0, 0, 0.01); +} +.ant-table-thead > tr > th, +.ant-table-tbody > tr > td { + padding: 16px 16px; + overflow-wrap: break-word; +} +.ant-table-expand-icon-th, +.ant-table-row-expand-icon-cell { + width: 50px; + min-width: 50px; + text-align: center; +} +.ant-table-header { + overflow: hidden; + background: #fafafa; +} +.ant-table-header table { + border-radius: 4px 4px 0 0; +} +.ant-table-loading { + position: relative; +} +.ant-table-loading .ant-table-body { + background: #fff; + opacity: 0.5; +} +.ant-table-loading .ant-table-spin-holder { + position: absolute; + top: 50%; + left: 50%; + height: 20px; + margin-left: -30px; + line-height: 20px; +} +.ant-table-loading .ant-table-with-pagination { + margin-top: -20px; +} +.ant-table-loading .ant-table-without-pagination { + margin-top: 10px; +} +.ant-table-bordered .ant-table-header > table, +.ant-table-bordered .ant-table-body > table, +.ant-table-bordered .ant-table-fixed-left table, +.ant-table-bordered .ant-table-fixed-right table { + border: 1px solid #e8e8e8; + border-right: 0; + border-bottom: 0; +} +.ant-table-bordered.ant-table-empty .ant-table-placeholder { + border-right: 1px solid #e8e8e8; + border-left: 1px solid #e8e8e8; +} +.ant-table-bordered.ant-table-fixed-header .ant-table-header > table { + border-bottom: 0; +} +.ant-table-bordered.ant-table-fixed-header .ant-table-body > table { + border-top-left-radius: 0; + border-top-right-radius: 0; +} +.ant-table-bordered.ant-table-fixed-header .ant-table-header + .ant-table-body > table, +.ant-table-bordered.ant-table-fixed-header .ant-table-body-inner > table { + border-top: 0; +} +.ant-table-bordered .ant-table-thead > tr:not(:last-child) > th { + border-bottom: 1px solid #e8e8e8; +} +.ant-table-bordered .ant-table-thead > tr > th, +.ant-table-bordered .ant-table-tbody > tr > td { + border-right: 1px solid #e8e8e8; +} +.ant-table-placeholder { + position: relative; + z-index: 1; + margin-top: -1px; + padding: 16px 16px; + color: rgba(0, 0, 0, 0.25); + font-size: 15px; + text-align: center; + background: #fff; + border-top: 1px solid #e8e8e8; + border-bottom: 1px solid #e8e8e8; + border-radius: 0 0 4px 4px; +} +.ant-table-pagination.ant-pagination { + float: right; + margin: 16px 0; +} +.ant-table-filter-dropdown { + position: relative; + min-width: 96px; + margin-left: -8px; + background: #fff; + border-radius: 4px; + box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15); +} +.ant-table-filter-dropdown .ant-dropdown-menu { + max-height: calc(100vh - 130px); + overflow-x: hidden; + border: 0; + border-radius: 4px 4px 0 0; + box-shadow: none; +} +.ant-table-filter-dropdown .ant-dropdown-menu-item > label + span { + padding-right: 0; +} +.ant-table-filter-dropdown .ant-dropdown-menu-sub { + border-radius: 4px; + box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15); +} +.ant-table-filter-dropdown .ant-dropdown-menu .ant-dropdown-submenu-contain-selected .ant-dropdown-menu-submenu-title::after { + color: #004691; + font-weight: bold; + text-shadow: 0 0 2px #7ea9c4; +} +.ant-table-filter-dropdown .ant-dropdown-menu-item { + overflow: hidden; +} +.ant-table-filter-dropdown > .ant-dropdown-menu > .ant-dropdown-menu-item:last-child, +.ant-table-filter-dropdown > .ant-dropdown-menu > .ant-dropdown-menu-submenu:last-child .ant-dropdown-menu-submenu-title { + border-radius: 0; +} +.ant-table-filter-dropdown-btns { + padding: 7px 8px; + overflow: hidden; + border-top: 1px solid #e8e8e8; +} +.ant-table-filter-dropdown-link { + color: #004691; +} +.ant-table-filter-dropdown-link:hover { + color: #195e9e; +} +.ant-table-filter-dropdown-link:active { + color: #00306b; +} +.ant-table-filter-dropdown-link.confirm { + float: left; +} +.ant-table-filter-dropdown-link.clear { + float: right; +} +.ant-table-selection { + white-space: nowrap; +} +.ant-table-selection-select-all-custom { + margin-right: 4px !important; +} +.ant-table-selection .anticon-down { + color: #bfbfbf; + transition: all 0.3s; +} +.ant-table-selection-menu { + min-width: 96px; + margin-top: 5px; + margin-left: -30px; + background: #fff; + border-radius: 4px; + box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15); +} +.ant-table-selection-menu .ant-action-down { + color: #bfbfbf; +} +.ant-table-selection-down { + display: inline-block; + padding: 0; + line-height: 1; + cursor: pointer; +} +.ant-table-selection-down:hover .anticon-down { + color: rgba(0, 0, 0, 0.6); +} +.ant-table-row-expand-icon { + color: #004691; + text-decoration: none; + cursor: pointer; + transition: color 0.3s; + display: inline-block; + width: 17px; + height: 17px; + color: inherit; + line-height: 13px; + text-align: center; + background: #fff; + border: 1px solid #e8e8e8; + border-radius: 2px; + outline: none; + transition: all 0.3s; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} +.ant-table-row-expand-icon:focus, +.ant-table-row-expand-icon:hover { + color: #195e9e; +} +.ant-table-row-expand-icon:active { + color: #00306b; +} +.ant-table-row-expand-icon:focus, +.ant-table-row-expand-icon:hover, +.ant-table-row-expand-icon:active { + border-color: currentColor; +} +.ant-table-row-expanded::after { + content: '-'; +} +.ant-table-row-collapsed::after { + content: '+'; +} +.ant-table-row-spaced { + visibility: hidden; +} +.ant-table-row-spaced::after { + content: '.'; +} +.ant-table-row-cell-ellipsis, +.ant-table-row-cell-ellipsis .ant-table-column-title { + overflow: hidden; + white-space: nowrap; + text-overflow: ellipsis; +} +.ant-table-row-cell-ellipsis .ant-table-column-title { + display: block; +} +.ant-table-row-cell-break-word { + word-wrap: break-word; + word-break: break-word; +} +tr.ant-table-expanded-row, +tr.ant-table-expanded-row:hover { + background: #fbfbfb; +} +tr.ant-table-expanded-row td > .ant-table-wrapper { + margin: -16px -16px -17px; +} +.ant-table .ant-table-row-indent + .ant-table-row-expand-icon { + margin-right: 8px; +} +.ant-table-scroll { + overflow: auto; + overflow-x: hidden; +} +.ant-table-scroll table { + min-width: 100%; +} +.ant-table-scroll table .ant-table-fixed-columns-in-body:not([colspan]) { + color: transparent; +} +.ant-table-scroll table .ant-table-fixed-columns-in-body:not([colspan]) > * { + visibility: hidden; +} +.ant-table-body-inner { + height: 100%; +} +.ant-table-fixed-header > .ant-table-content > .ant-table-scroll > .ant-table-body { + position: relative; + background: #fff; +} +.ant-table-fixed-header .ant-table-body-inner { + overflow: scroll; +} +.ant-table-fixed-header .ant-table-scroll .ant-table-header { + margin-bottom: -20px; + padding-bottom: 20px; + overflow: scroll; + opacity: 0.9999; +} +.ant-table-fixed-header .ant-table-scroll .ant-table-header::-webkit-scrollbar { + border: 1px solid #e8e8e8; + border-width: 0 0 1px 0; +} +.ant-table-hide-scrollbar { + scrollbar-color: transparent transparent; + min-width: unset; +} +.ant-table-hide-scrollbar::-webkit-scrollbar { + min-width: inherit; + background-color: transparent; +} +.ant-table-bordered.ant-table-fixed-header .ant-table-scroll .ant-table-header::-webkit-scrollbar { + border: 1px solid #e8e8e8; + border-width: 1px 1px 1px 0; +} +.ant-table-bordered.ant-table-fixed-header .ant-table-scroll .ant-table-header.ant-table-hide-scrollbar .ant-table-thead > tr:only-child > th:last-child { + border-right-color: transparent; +} +.ant-table-fixed-left, +.ant-table-fixed-right { + position: absolute; + top: 0; + z-index: 1; + overflow: hidden; + border-radius: 0; + transition: box-shadow 0.3s ease; +} +.ant-table-fixed-left table, +.ant-table-fixed-right table { + width: auto; + background: #fff; +} +.ant-table-fixed-header .ant-table-fixed-left .ant-table-body-outer .ant-table-fixed, +.ant-table-fixed-header .ant-table-fixed-right .ant-table-body-outer .ant-table-fixed { + border-radius: 0; +} +.ant-table-fixed-left { + left: 0; + box-shadow: 6px 0 6px -4px rgba(0, 0, 0, 0.15); +} +.ant-table-fixed-left .ant-table-header { + overflow-y: hidden; +} +.ant-table-fixed-left .ant-table-body-inner { + margin-right: -20px; + padding-right: 20px; +} +.ant-table-fixed-header .ant-table-fixed-left .ant-table-body-inner { + padding-right: 0; +} +.ant-table-fixed-left, +.ant-table-fixed-left table { + border-radius: 4px 0 0 0; +} +.ant-table-fixed-left .ant-table-thead > tr > th:last-child { + border-top-right-radius: 0; +} +.ant-table-fixed-right { + right: 0; + box-shadow: -6px 0 6px -4px rgba(0, 0, 0, 0.15); +} +.ant-table-fixed-right, +.ant-table-fixed-right table { + border-radius: 0 4px 0 0; +} +.ant-table-fixed-right .ant-table-expanded-row { + color: transparent; + pointer-events: none; +} +.ant-table-fixed-right .ant-table-thead > tr > th:first-child { + border-top-left-radius: 0; +} +.ant-table.ant-table-scroll-position-left .ant-table-fixed-left { + box-shadow: none; +} +.ant-table.ant-table-scroll-position-right .ant-table-fixed-right { + box-shadow: none; +} +.ant-table colgroup > col.ant-table-selection-col { + width: 60px; +} +.ant-table-thead > tr > th.ant-table-selection-column-custom .ant-table-selection { + margin-right: -15px; +} +.ant-table-thead > tr > th.ant-table-selection-column, +.ant-table-tbody > tr > td.ant-table-selection-column { + text-align: center; +} +.ant-table-thead > tr > th.ant-table-selection-column .ant-radio-wrapper, +.ant-table-tbody > tr > td.ant-table-selection-column .ant-radio-wrapper { + margin-right: 0; +} +.ant-table-row[class*='ant-table-row-level-0'] .ant-table-selection-column > span { + display: inline-block; +} +.ant-table-filter-dropdown .ant-checkbox-wrapper + span, +.ant-table-filter-dropdown-submenu .ant-checkbox-wrapper + span { + padding-left: 8px; +} +/** +* Another fix of Firefox: +*/ +@supports (-moz-appearance: meterbar) { + .ant-table-thead > tr > th.ant-table-column-has-actions { + background-clip: padding-box; + } +} +.ant-table-middle > .ant-table-title, +.ant-table-middle > .ant-table-content > .ant-table-footer { + padding: 12px 8px; +} +.ant-table-middle > .ant-table-content > .ant-table-header > table > .ant-table-thead > tr > th, +.ant-table-middle > .ant-table-content > .ant-table-body > table > .ant-table-thead > tr > th, +.ant-table-middle > .ant-table-content > .ant-table-scroll > .ant-table-header > table > .ant-table-thead > tr > th, +.ant-table-middle > .ant-table-content > .ant-table-scroll > .ant-table-body > table > .ant-table-thead > tr > th, +.ant-table-middle > .ant-table-content > .ant-table-fixed-left > .ant-table-header > table > .ant-table-thead > tr > th, +.ant-table-middle > .ant-table-content > .ant-table-fixed-right > .ant-table-header > table > .ant-table-thead > tr > th, +.ant-table-middle > .ant-table-content > .ant-table-fixed-left > .ant-table-body-outer > .ant-table-body-inner > table > .ant-table-thead > tr > th, +.ant-table-middle > .ant-table-content > .ant-table-fixed-right > .ant-table-body-outer > .ant-table-body-inner > table > .ant-table-thead > tr > th, +.ant-table-middle > .ant-table-content > .ant-table-header > table > .ant-table-tbody > tr > td, +.ant-table-middle > .ant-table-content > .ant-table-body > table > .ant-table-tbody > tr > td, +.ant-table-middle > .ant-table-content > .ant-table-scroll > .ant-table-header > table > .ant-table-tbody > tr > td, +.ant-table-middle > .ant-table-content > .ant-table-scroll > .ant-table-body > table > .ant-table-tbody > tr > td, +.ant-table-middle > .ant-table-content > .ant-table-fixed-left > .ant-table-header > table > .ant-table-tbody > tr > td, +.ant-table-middle > .ant-table-content > .ant-table-fixed-right > .ant-table-header > table > .ant-table-tbody > tr > td, +.ant-table-middle > .ant-table-content > .ant-table-fixed-left > .ant-table-body-outer > .ant-table-body-inner > table > .ant-table-tbody > tr > td, +.ant-table-middle > .ant-table-content > .ant-table-fixed-right > .ant-table-body-outer > .ant-table-body-inner > table > .ant-table-tbody > tr > td { + padding: 12px 8px; +} +.ant-table-middle tr.ant-table-expanded-row td > .ant-table-wrapper { + margin: -12px -8px -13px; +} +.ant-table-small { + border: 1px solid #e8e8e8; + border-radius: 4px; +} +.ant-table-small > .ant-table-title, +.ant-table-small > .ant-table-content > .ant-table-footer { + padding: 8px 8px; +} +.ant-table-small > .ant-table-title { + top: 0; + border-bottom: 1px solid #e8e8e8; +} +.ant-table-small > .ant-table-content > .ant-table-footer { + background-color: transparent; + border-top: 1px solid #e8e8e8; +} +.ant-table-small > .ant-table-content > .ant-table-footer::before { + background-color: transparent; +} +.ant-table-small > .ant-table-content > .ant-table-body { + margin: 0 8px; +} +.ant-table-small > .ant-table-content > .ant-table-header > table, +.ant-table-small > .ant-table-content > .ant-table-body > table, +.ant-table-small > .ant-table-content > .ant-table-scroll > .ant-table-header > table, +.ant-table-small > .ant-table-content > .ant-table-scroll > .ant-table-body > table, +.ant-table-small > .ant-table-content > .ant-table-fixed-left > .ant-table-header > table, +.ant-table-small > .ant-table-content > .ant-table-fixed-right > .ant-table-header > table, +.ant-table-small > .ant-table-content > .ant-table-fixed-left > .ant-table-body-outer > .ant-table-body-inner > table, +.ant-table-small > .ant-table-content > .ant-table-fixed-right > .ant-table-body-outer > .ant-table-body-inner > table { + border: 0; +} +.ant-table-small > .ant-table-content > .ant-table-header > table > .ant-table-thead > tr > th, +.ant-table-small > .ant-table-content > .ant-table-body > table > .ant-table-thead > tr > th, +.ant-table-small > .ant-table-content > .ant-table-scroll > .ant-table-header > table > .ant-table-thead > tr > th, +.ant-table-small > .ant-table-content > .ant-table-scroll > .ant-table-body > table > .ant-table-thead > tr > th, +.ant-table-small > .ant-table-content > .ant-table-fixed-left > .ant-table-header > table > .ant-table-thead > tr > th, +.ant-table-small > .ant-table-content > .ant-table-fixed-right > .ant-table-header > table > .ant-table-thead > tr > th, +.ant-table-small > .ant-table-content > .ant-table-fixed-left > .ant-table-body-outer > .ant-table-body-inner > table > .ant-table-thead > tr > th, +.ant-table-small > .ant-table-content > .ant-table-fixed-right > .ant-table-body-outer > .ant-table-body-inner > table > .ant-table-thead > tr > th, +.ant-table-small > .ant-table-content > .ant-table-header > table > .ant-table-tbody > tr > td, +.ant-table-small > .ant-table-content > .ant-table-body > table > .ant-table-tbody > tr > td, +.ant-table-small > .ant-table-content > .ant-table-scroll > .ant-table-header > table > .ant-table-tbody > tr > td, +.ant-table-small > .ant-table-content > .ant-table-scroll > .ant-table-body > table > .ant-table-tbody > tr > td, +.ant-table-small > .ant-table-content > .ant-table-fixed-left > .ant-table-header > table > .ant-table-tbody > tr > td, +.ant-table-small > .ant-table-content > .ant-table-fixed-right > .ant-table-header > table > .ant-table-tbody > tr > td, +.ant-table-small > .ant-table-content > .ant-table-fixed-left > .ant-table-body-outer > .ant-table-body-inner > table > .ant-table-tbody > tr > td, +.ant-table-small > .ant-table-content > .ant-table-fixed-right > .ant-table-body-outer > .ant-table-body-inner > table > .ant-table-tbody > tr > td { + padding: 8px 8px; +} +.ant-table-small > .ant-table-content > .ant-table-header > table > .ant-table-thead > tr > th, +.ant-table-small > .ant-table-content > .ant-table-body > table > .ant-table-thead > tr > th, +.ant-table-small > .ant-table-content > .ant-table-scroll > .ant-table-header > table > .ant-table-thead > tr > th, +.ant-table-small > .ant-table-content > .ant-table-scroll > .ant-table-body > table > .ant-table-thead > tr > th, +.ant-table-small > .ant-table-content > .ant-table-fixed-left > .ant-table-header > table > .ant-table-thead > tr > th, +.ant-table-small > .ant-table-content > .ant-table-fixed-right > .ant-table-header > table > .ant-table-thead > tr > th, +.ant-table-small > .ant-table-content > .ant-table-fixed-left > .ant-table-body-outer > .ant-table-body-inner > table > .ant-table-thead > tr > th, +.ant-table-small > .ant-table-content > .ant-table-fixed-right > .ant-table-body-outer > .ant-table-body-inner > table > .ant-table-thead > tr > th { + background-color: transparent; +} +.ant-table-small > .ant-table-content > .ant-table-header > table > .ant-table-thead > tr, +.ant-table-small > .ant-table-content > .ant-table-body > table > .ant-table-thead > tr, +.ant-table-small > .ant-table-content > .ant-table-scroll > .ant-table-header > table > .ant-table-thead > tr, +.ant-table-small > .ant-table-content > .ant-table-scroll > .ant-table-body > table > .ant-table-thead > tr, +.ant-table-small > .ant-table-content > .ant-table-fixed-left > .ant-table-header > table > .ant-table-thead > tr, +.ant-table-small > .ant-table-content > .ant-table-fixed-right > .ant-table-header > table > .ant-table-thead > tr, +.ant-table-small > .ant-table-content > .ant-table-fixed-left > .ant-table-body-outer > .ant-table-body-inner > table > .ant-table-thead > tr, +.ant-table-small > .ant-table-content > .ant-table-fixed-right > .ant-table-body-outer > .ant-table-body-inner > table > .ant-table-thead > tr { + border-bottom: 1px solid #e8e8e8; +} +.ant-table-small > .ant-table-content > .ant-table-header > table > .ant-table-thead > tr > th.ant-table-column-sort, +.ant-table-small > .ant-table-content > .ant-table-body > table > .ant-table-thead > tr > th.ant-table-column-sort, +.ant-table-small > .ant-table-content > .ant-table-scroll > .ant-table-header > table > .ant-table-thead > tr > th.ant-table-column-sort, +.ant-table-small > .ant-table-content > .ant-table-scroll > .ant-table-body > table > .ant-table-thead > tr > th.ant-table-column-sort, +.ant-table-small > .ant-table-content > .ant-table-fixed-left > .ant-table-header > table > .ant-table-thead > tr > th.ant-table-column-sort, +.ant-table-small > .ant-table-content > .ant-table-fixed-right > .ant-table-header > table > .ant-table-thead > tr > th.ant-table-column-sort, +.ant-table-small > .ant-table-content > .ant-table-fixed-left > .ant-table-body-outer > .ant-table-body-inner > table > .ant-table-thead > tr > th.ant-table-column-sort, +.ant-table-small > .ant-table-content > .ant-table-fixed-right > .ant-table-body-outer > .ant-table-body-inner > table > .ant-table-thead > tr > th.ant-table-column-sort { + background-color: rgba(0, 0, 0, 0.01); +} +.ant-table-small > .ant-table-content > .ant-table-scroll > .ant-table-header > table, +.ant-table-small > .ant-table-content > .ant-table-scroll > .ant-table-body > table, +.ant-table-small > .ant-table-content > .ant-table-fixed-left > .ant-table-header > table, +.ant-table-small > .ant-table-content > .ant-table-fixed-right > .ant-table-header > table, +.ant-table-small > .ant-table-content > .ant-table-fixed-left > .ant-table-body-outer > .ant-table-body-inner > table, +.ant-table-small > .ant-table-content > .ant-table-fixed-right > .ant-table-body-outer > .ant-table-body-inner > table { + padding: 0; +} +.ant-table-small > .ant-table-content .ant-table-header { + background-color: transparent; + border-radius: 4px 4px 0 0; +} +.ant-table-small > .ant-table-content .ant-table-placeholder, +.ant-table-small > .ant-table-content .ant-table-row:last-child td { + border-bottom: 0; +} +.ant-table-small.ant-table-bordered { + border-right: 0; +} +.ant-table-small.ant-table-bordered .ant-table-title { + border: 0; + border-right: 1px solid #e8e8e8; + border-bottom: 1px solid #e8e8e8; +} +.ant-table-small.ant-table-bordered .ant-table-content { + border-right: 1px solid #e8e8e8; +} +.ant-table-small.ant-table-bordered .ant-table-footer { + border: 0; + border-top: 1px solid #e8e8e8; +} +.ant-table-small.ant-table-bordered .ant-table-footer::before { + display: none; +} +.ant-table-small.ant-table-bordered .ant-table-placeholder { + border-right: 0; + border-bottom: 0; + border-left: 0; +} +.ant-table-small.ant-table-bordered .ant-table-thead > tr > th.ant-table-row-cell-last, +.ant-table-small.ant-table-bordered .ant-table-tbody > tr > td:last-child { + border-right: none; +} +.ant-table-small.ant-table-bordered .ant-table-fixed-left .ant-table-thead > tr > th:last-child, +.ant-table-small.ant-table-bordered .ant-table-fixed-left .ant-table-tbody > tr > td:last-child { + border-right: 1px solid #e8e8e8; +} +.ant-table-small.ant-table-bordered .ant-table-fixed-right { + border-right: 1px solid #e8e8e8; + border-left: 1px solid #e8e8e8; +} +.ant-table-small tr.ant-table-expanded-row td > .ant-table-wrapper { + margin: -8px -8px -9px; +} +.ant-table-small.ant-table-fixed-header > .ant-table-content > .ant-table-scroll > .ant-table-body { + border-radius: 0 0 4px 4px; +} +.ant-tabs.ant-tabs-card .ant-tabs-card-bar .ant-tabs-nav-container { + height: 40px; +} +.ant-tabs.ant-tabs-card .ant-tabs-card-bar .ant-tabs-ink-bar { + visibility: hidden; +} +.ant-tabs.ant-tabs-card .ant-tabs-card-bar .ant-tabs-tab { + height: 40px; + margin: 0; + margin-right: 2px; + padding: 0 16px; + line-height: 38px; + background: #fafafa; + border: 1px solid #e8e8e8; + border-radius: 4px 4px 0 0; + transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); +} +.ant-tabs.ant-tabs-card .ant-tabs-card-bar .ant-tabs-tab-active { + height: 40px; + color: #004691; + background: #fff; + border-color: #e8e8e8; + border-bottom: 1px solid #fff; +} +.ant-tabs.ant-tabs-card .ant-tabs-card-bar .ant-tabs-tab-active::before { + border-top: 2px solid transparent; +} +.ant-tabs.ant-tabs-card .ant-tabs-card-bar .ant-tabs-tab-disabled { + color: #004691; + color: rgba(0, 0, 0, 0.25); +} +.ant-tabs.ant-tabs-card .ant-tabs-card-bar .ant-tabs-tab-inactive { + padding: 0; +} +.ant-tabs.ant-tabs-card .ant-tabs-card-bar .ant-tabs-nav-wrap { + margin-bottom: 0; +} +.ant-tabs.ant-tabs-card .ant-tabs-card-bar .ant-tabs-tab .ant-tabs-close-x { + width: 16px; + height: 16px; + height: 15px; + margin-right: -5px; + margin-left: 3px; + overflow: hidden; + color: rgba(0, 0, 0, 0.45); + font-size: 12px; + vertical-align: middle; + transition: all 0.3s; +} +.ant-tabs.ant-tabs-card .ant-tabs-card-bar .ant-tabs-tab .ant-tabs-close-x:hover { + color: rgba(0, 0, 0, 0.85); +} +.ant-tabs.ant-tabs-card .ant-tabs-card-content > .ant-tabs-tabpane, +.ant-tabs.ant-tabs-editable-card .ant-tabs-card-content > .ant-tabs-tabpane { + transition: none !important; +} +.ant-tabs.ant-tabs-card .ant-tabs-card-content > .ant-tabs-tabpane-inactive, +.ant-tabs.ant-tabs-editable-card .ant-tabs-card-content > .ant-tabs-tabpane-inactive { + overflow: hidden; +} +.ant-tabs.ant-tabs-card .ant-tabs-card-bar .ant-tabs-tab:hover .anticon-close { + opacity: 1; +} +.ant-tabs-extra-content { + line-height: 46.5px; +} +.ant-tabs-extra-content .ant-tabs-new-tab { + position: relative; + width: 20px; + height: 20px; + color: rgba(0, 0, 0, 0.65); + font-size: 12px; + line-height: 20px; + text-align: center; + border: 1px solid #e8e8e8; + border-radius: 2px; + cursor: pointer; + transition: all 0.3s; +} +.ant-tabs-extra-content .ant-tabs-new-tab:hover { + color: #004691; + border-color: #004691; +} +.ant-tabs-extra-content .ant-tabs-new-tab svg { + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + margin: auto; +} +.ant-tabs.ant-tabs-large .ant-tabs-extra-content { + line-height: 57.5px; +} +.ant-tabs.ant-tabs-small .ant-tabs-extra-content { + line-height: 38.5px; +} +.ant-tabs.ant-tabs-card .ant-tabs-extra-content { + line-height: 40px; +} +.ant-tabs-vertical.ant-tabs-card .ant-tabs-card-bar.ant-tabs-left-bar .ant-tabs-nav-container, +.ant-tabs-vertical.ant-tabs-card .ant-tabs-card-bar.ant-tabs-right-bar .ant-tabs-nav-container { + height: 100%; +} +.ant-tabs-vertical.ant-tabs-card .ant-tabs-card-bar.ant-tabs-left-bar .ant-tabs-tab, +.ant-tabs-vertical.ant-tabs-card .ant-tabs-card-bar.ant-tabs-right-bar .ant-tabs-tab { + margin-bottom: 8px; + border-bottom: 1px solid #e8e8e8; +} +.ant-tabs-vertical.ant-tabs-card .ant-tabs-card-bar.ant-tabs-left-bar .ant-tabs-tab-active, +.ant-tabs-vertical.ant-tabs-card .ant-tabs-card-bar.ant-tabs-right-bar .ant-tabs-tab-active { + padding-bottom: 4px; +} +.ant-tabs-vertical.ant-tabs-card .ant-tabs-card-bar.ant-tabs-left-bar .ant-tabs-tab:last-child, +.ant-tabs-vertical.ant-tabs-card .ant-tabs-card-bar.ant-tabs-right-bar .ant-tabs-tab:last-child { + margin-bottom: 8px; +} +.ant-tabs-vertical.ant-tabs-card .ant-tabs-card-bar.ant-tabs-left-bar .ant-tabs-new-tab, +.ant-tabs-vertical.ant-tabs-card .ant-tabs-card-bar.ant-tabs-right-bar .ant-tabs-new-tab { + width: 90%; +} +.ant-tabs-vertical.ant-tabs-card.ant-tabs-left .ant-tabs-card-bar.ant-tabs-left-bar .ant-tabs-nav-wrap { + margin-right: 0; +} +.ant-tabs-vertical.ant-tabs-card.ant-tabs-left .ant-tabs-card-bar.ant-tabs-left-bar .ant-tabs-tab { + margin-right: 1px; + border-right: 0; + border-radius: 4px 0 0 4px; +} +.ant-tabs-vertical.ant-tabs-card.ant-tabs-left .ant-tabs-card-bar.ant-tabs-left-bar .ant-tabs-tab-active { + margin-right: -1px; + padding-right: 18px; +} +.ant-tabs-vertical.ant-tabs-card.ant-tabs-right .ant-tabs-card-bar.ant-tabs-right-bar .ant-tabs-nav-wrap { + margin-left: 0; +} +.ant-tabs-vertical.ant-tabs-card.ant-tabs-right .ant-tabs-card-bar.ant-tabs-right-bar .ant-tabs-tab { + margin-left: 1px; + border-left: 0; + border-radius: 0 4px 4px 0; +} +.ant-tabs-vertical.ant-tabs-card.ant-tabs-right .ant-tabs-card-bar.ant-tabs-right-bar .ant-tabs-tab-active { + margin-left: -1px; + padding-left: 18px; +} +.ant-tabs .ant-tabs-card-bar.ant-tabs-bottom-bar .ant-tabs-tab { + height: auto; + border-top: 0; + border-bottom: 1px solid #e8e8e8; + border-radius: 0 0 4px 4px; +} +.ant-tabs .ant-tabs-card-bar.ant-tabs-bottom-bar .ant-tabs-tab-active { + padding-top: 1px; + padding-bottom: 0; + color: #004691; +} +.ant-tabs { + box-sizing: border-box; + margin: 0; + padding: 0; + color: rgba(0, 0, 0, 0.65); + font-size: 15px; + font-variant: tabular-nums; + line-height: 1.5; + list-style: none; + font-feature-settings: 'tnum'; + position: relative; + overflow: hidden; + zoom: 1; +} +.ant-tabs::before, +.ant-tabs::after { + display: table; + content: ''; +} +.ant-tabs::after { + clear: both; +} +.ant-tabs::before, +.ant-tabs::after { + display: table; + content: ''; +} +.ant-tabs::after { + clear: both; +} +.ant-tabs-ink-bar { + position: absolute; + bottom: 1px; + left: 0; + z-index: 1; + box-sizing: border-box; + width: 0; + height: 2px; + background-color: #004691; + transform-origin: 0 0; +} +.ant-tabs-bar { + margin: 0 0 16px 0; + border-bottom: 1px solid #e8e8e8; + outline: none; + transition: padding 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); +} +.ant-tabs-nav-container { + position: relative; + box-sizing: border-box; + margin-bottom: -1px; + overflow: hidden; + font-size: 15px; + line-height: 1.5; + white-space: nowrap; + transition: padding 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); + zoom: 1; +} +.ant-tabs-nav-container::before, +.ant-tabs-nav-container::after { + display: table; + content: ''; +} +.ant-tabs-nav-container::after { + clear: both; +} +.ant-tabs-nav-container::before, +.ant-tabs-nav-container::after { + display: table; + content: ''; +} +.ant-tabs-nav-container::after { + clear: both; +} +.ant-tabs-nav-container-scrolling { + padding-right: 32px; + padding-left: 32px; +} +.ant-tabs-bottom .ant-tabs-bottom-bar { + margin-top: 16px; + margin-bottom: 0; + border-top: 1px solid #e8e8e8; + border-bottom: none; +} +.ant-tabs-bottom .ant-tabs-bottom-bar .ant-tabs-ink-bar { + top: 1px; + bottom: auto; +} +.ant-tabs-bottom .ant-tabs-bottom-bar .ant-tabs-nav-container { + margin-top: -1px; + margin-bottom: 0; +} +.ant-tabs-tab-prev, +.ant-tabs-tab-next { + position: absolute; + z-index: 2; + width: 0; + height: 100%; + color: rgba(0, 0, 0, 0.45); + text-align: center; + background-color: transparent; + border: 0; + cursor: pointer; + opacity: 0; + transition: width 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), opacity 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), color 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + pointer-events: none; +} +.ant-tabs-tab-prev.ant-tabs-tab-arrow-show, +.ant-tabs-tab-next.ant-tabs-tab-arrow-show { + width: 32px; + height: 100%; + opacity: 1; + pointer-events: auto; +} +.ant-tabs-tab-prev:hover, +.ant-tabs-tab-next:hover { + color: rgba(0, 0, 0, 0.65); +} +.ant-tabs-tab-prev-icon, +.ant-tabs-tab-next-icon { + position: absolute; + top: 50%; + left: 50%; + font-weight: bold; + font-style: normal; + font-variant: normal; + line-height: inherit; + text-align: center; + text-transform: none; + transform: translate(-50%, -50%); +} +.ant-tabs-tab-prev-icon-target, +.ant-tabs-tab-next-icon-target { + display: block; + display: inline-block; + font-size: 12px; + font-size: 10px \9; + transform: scale(0.83333333) rotate(0deg); +} +:root .ant-tabs-tab-prev-icon-target, +:root .ant-tabs-tab-next-icon-target { + font-size: 12px; +} +.ant-tabs-tab-btn-disabled { + cursor: not-allowed; +} +.ant-tabs-tab-btn-disabled, +.ant-tabs-tab-btn-disabled:hover { + color: rgba(0, 0, 0, 0.25); +} +.ant-tabs-tab-next { + right: 2px; +} +.ant-tabs-tab-prev { + left: 0; +} +:root .ant-tabs-tab-prev { + filter: none; +} +.ant-tabs-nav-wrap { + margin-bottom: -1px; + overflow: hidden; +} +.ant-tabs-nav-scroll { + overflow: hidden; + white-space: nowrap; +} +.ant-tabs-nav { + position: relative; + display: inline-block; + box-sizing: border-box; + margin: 0; + padding-left: 0; + list-style: none; + transition: transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); +} +.ant-tabs-nav::before, +.ant-tabs-nav::after { + display: table; + content: ' '; +} +.ant-tabs-nav::after { + clear: both; +} +.ant-tabs-nav .ant-tabs-tab { + position: relative; + display: inline-block; + box-sizing: border-box; + height: 100%; + margin: 0 32px 0 0; + padding: 12px 16px; + text-decoration: none; + cursor: pointer; + transition: color 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); +} +.ant-tabs-nav .ant-tabs-tab::before { + position: absolute; + top: -1px; + left: 0; + width: 100%; + border-top: 2px solid transparent; + border-radius: 4px 4px 0 0; + transition: all 0.3s; + content: ''; + pointer-events: none; +} +.ant-tabs-nav .ant-tabs-tab:last-child { + margin-right: 0; +} +.ant-tabs-nav .ant-tabs-tab:hover { + color: #195e9e; +} +.ant-tabs-nav .ant-tabs-tab:active { + color: #00306b; +} +.ant-tabs-nav .ant-tabs-tab .anticon { + margin-right: 8px; +} +.ant-tabs-nav .ant-tabs-tab-active { + color: #004691; + font-weight: 500; +} +.ant-tabs-nav .ant-tabs-tab-disabled, +.ant-tabs-nav .ant-tabs-tab-disabled:hover { + color: rgba(0, 0, 0, 0.25); + cursor: not-allowed; +} +.ant-tabs .ant-tabs-large-bar .ant-tabs-nav-container { + font-size: 17px; +} +.ant-tabs .ant-tabs-large-bar .ant-tabs-tab { + padding: 16px; +} +.ant-tabs .ant-tabs-small-bar .ant-tabs-nav-container { + font-size: 15px; +} +.ant-tabs .ant-tabs-small-bar .ant-tabs-tab { + padding: 8px 16px; +} +.ant-tabs-content::before { + display: block; + overflow: hidden; + content: ''; +} +.ant-tabs .ant-tabs-top-content, +.ant-tabs .ant-tabs-bottom-content { + width: 100%; +} +.ant-tabs .ant-tabs-top-content > .ant-tabs-tabpane, +.ant-tabs .ant-tabs-bottom-content > .ant-tabs-tabpane { + flex-shrink: 0; + width: 100%; + -webkit-backface-visibility: hidden; + opacity: 1; + transition: opacity 0.45s; +} +.ant-tabs .ant-tabs-top-content > .ant-tabs-tabpane-inactive, +.ant-tabs .ant-tabs-bottom-content > .ant-tabs-tabpane-inactive { + height: 0; + padding: 0 !important; + overflow: hidden; + opacity: 0; + pointer-events: none; +} +.ant-tabs .ant-tabs-top-content > .ant-tabs-tabpane-inactive input, +.ant-tabs .ant-tabs-bottom-content > .ant-tabs-tabpane-inactive input { + visibility: hidden; +} +.ant-tabs .ant-tabs-top-content.ant-tabs-content-animated, +.ant-tabs .ant-tabs-bottom-content.ant-tabs-content-animated { + display: flex; + flex-direction: row; + transition: margin-left 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); + will-change: margin-left; +} +.ant-tabs .ant-tabs-left-bar, +.ant-tabs .ant-tabs-right-bar { + height: 100%; + border-bottom: 0; +} +.ant-tabs .ant-tabs-left-bar .ant-tabs-tab-arrow-show, +.ant-tabs .ant-tabs-right-bar .ant-tabs-tab-arrow-show { + width: 100%; + height: 32px; +} +.ant-tabs .ant-tabs-left-bar .ant-tabs-tab, +.ant-tabs .ant-tabs-right-bar .ant-tabs-tab { + display: block; + float: none; + margin: 0 0 16px 0; + padding: 8px 24px; +} +.ant-tabs .ant-tabs-left-bar .ant-tabs-tab:last-child, +.ant-tabs .ant-tabs-right-bar .ant-tabs-tab:last-child { + margin-bottom: 0; +} +.ant-tabs .ant-tabs-left-bar .ant-tabs-extra-content, +.ant-tabs .ant-tabs-right-bar .ant-tabs-extra-content { + text-align: center; +} +.ant-tabs .ant-tabs-left-bar .ant-tabs-nav-scroll, +.ant-tabs .ant-tabs-right-bar .ant-tabs-nav-scroll { + width: auto; +} +.ant-tabs .ant-tabs-left-bar .ant-tabs-nav-container, +.ant-tabs .ant-tabs-right-bar .ant-tabs-nav-container, +.ant-tabs .ant-tabs-left-bar .ant-tabs-nav-wrap, +.ant-tabs .ant-tabs-right-bar .ant-tabs-nav-wrap { + height: 100%; +} +.ant-tabs .ant-tabs-left-bar .ant-tabs-nav-container, +.ant-tabs .ant-tabs-right-bar .ant-tabs-nav-container { + margin-bottom: 0; +} +.ant-tabs .ant-tabs-left-bar .ant-tabs-nav-container.ant-tabs-nav-container-scrolling, +.ant-tabs .ant-tabs-right-bar .ant-tabs-nav-container.ant-tabs-nav-container-scrolling { + padding: 32px 0; +} +.ant-tabs .ant-tabs-left-bar .ant-tabs-nav-wrap, +.ant-tabs .ant-tabs-right-bar .ant-tabs-nav-wrap { + margin-bottom: 0; +} +.ant-tabs .ant-tabs-left-bar .ant-tabs-nav, +.ant-tabs .ant-tabs-right-bar .ant-tabs-nav { + width: 100%; +} +.ant-tabs .ant-tabs-left-bar .ant-tabs-ink-bar, +.ant-tabs .ant-tabs-right-bar .ant-tabs-ink-bar { + top: 0; + bottom: auto; + left: auto; + width: 2px; + height: 0; +} +.ant-tabs .ant-tabs-left-bar .ant-tabs-tab-next, +.ant-tabs .ant-tabs-right-bar .ant-tabs-tab-next { + right: 0; + bottom: 0; + width: 100%; + height: 32px; +} +.ant-tabs .ant-tabs-left-bar .ant-tabs-tab-prev, +.ant-tabs .ant-tabs-right-bar .ant-tabs-tab-prev { + top: 0; + width: 100%; + height: 32px; +} +.ant-tabs .ant-tabs-left-content, +.ant-tabs .ant-tabs-right-content { + width: auto; + margin-top: 0 !important; + overflow: hidden; +} +.ant-tabs .ant-tabs-left-bar { + float: left; + margin-right: -1px; + margin-bottom: 0; + border-right: 1px solid #e8e8e8; +} +.ant-tabs .ant-tabs-left-bar .ant-tabs-tab { + text-align: right; +} +.ant-tabs .ant-tabs-left-bar .ant-tabs-nav-container { + margin-right: -1px; +} +.ant-tabs .ant-tabs-left-bar .ant-tabs-nav-wrap { + margin-right: -1px; +} +.ant-tabs .ant-tabs-left-bar .ant-tabs-ink-bar { + right: 1px; +} +.ant-tabs .ant-tabs-left-content { + padding-left: 24px; + border-left: 1px solid #e8e8e8; +} +.ant-tabs .ant-tabs-right-bar { + float: right; + margin-bottom: 0; + margin-left: -1px; + border-left: 1px solid #e8e8e8; +} +.ant-tabs .ant-tabs-right-bar .ant-tabs-nav-container { + margin-left: -1px; +} +.ant-tabs .ant-tabs-right-bar .ant-tabs-nav-wrap { + margin-left: -1px; +} +.ant-tabs .ant-tabs-right-bar .ant-tabs-ink-bar { + left: 1px; +} +.ant-tabs .ant-tabs-right-content { + padding-right: 24px; + border-right: 1px solid #e8e8e8; +} +.ant-tabs-top .ant-tabs-ink-bar-animated, +.ant-tabs-bottom .ant-tabs-ink-bar-animated { + transition: transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), width 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), left 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); +} +.ant-tabs-left .ant-tabs-ink-bar-animated, +.ant-tabs-right .ant-tabs-ink-bar-animated { + transition: transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), height 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), top 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); +} +.no-flex > .ant-tabs-content > .ant-tabs-content-animated, +.ant-tabs-no-animation > .ant-tabs-content > .ant-tabs-content-animated { + margin-left: 0 !important; + transform: none !important; +} +.no-flex > .ant-tabs-content > .ant-tabs-tabpane-inactive, +.ant-tabs-no-animation > .ant-tabs-content > .ant-tabs-tabpane-inactive { + height: 0; + padding: 0 !important; + overflow: hidden; + opacity: 0; + pointer-events: none; +} +.no-flex > .ant-tabs-content > .ant-tabs-tabpane-inactive input, +.ant-tabs-no-animation > .ant-tabs-content > .ant-tabs-tabpane-inactive input { + visibility: hidden; +} +.ant-tabs-left-content > .ant-tabs-content-animated, +.ant-tabs-right-content > .ant-tabs-content-animated { + margin-left: 0 !important; + transform: none !important; +} +.ant-tabs-left-content > .ant-tabs-tabpane-inactive, +.ant-tabs-right-content > .ant-tabs-tabpane-inactive { + height: 0; + padding: 0 !important; + overflow: hidden; + opacity: 0; + pointer-events: none; +} +.ant-tabs-left-content > .ant-tabs-tabpane-inactive input, +.ant-tabs-right-content > .ant-tabs-tabpane-inactive input { + visibility: hidden; +} +.ant-tag { + box-sizing: border-box; + margin: 0; + padding: 0; + color: rgba(0, 0, 0, 0.65); + font-size: 15px; + font-variant: tabular-nums; + line-height: 1.5; + list-style: none; + font-feature-settings: 'tnum'; + display: inline-block; + height: auto; + margin-right: 8px; + padding: 0 7px; + font-size: 12px; + line-height: 20px; + white-space: nowrap; + background: #fafafa; + border: 1px solid #d9d9d9; + border-radius: 4px; + cursor: default; + opacity: 1; + transition: all 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86); +} +.ant-tag:hover { + opacity: 0.85; +} +.ant-tag, +.ant-tag a, +.ant-tag a:hover { + color: rgba(0, 0, 0, 0.65); +} +.ant-tag > a:first-child:last-child { + display: inline-block; + margin: 0 -8px; + padding: 0 8px; +} +.ant-tag .anticon-close { + display: inline-block; + font-size: 12px; + font-size: 10px \9; + transform: scale(0.83333333) rotate(0deg); + margin-left: 3px; + color: rgba(0, 0, 0, 0.45); + font-weight: bold; + cursor: pointer; + transition: all 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86); +} +:root .ant-tag .anticon-close { + font-size: 12px; +} +.ant-tag .anticon-close:hover { + color: rgba(0, 0, 0, 0.85); +} +.ant-tag-has-color { + border-color: transparent; +} +.ant-tag-has-color, +.ant-tag-has-color a, +.ant-tag-has-color a:hover, +.ant-tag-has-color .anticon-close, +.ant-tag-has-color .anticon-close:hover { + color: #fff; +} +.ant-tag-checkable { + background-color: transparent; + border-color: transparent; +} +.ant-tag-checkable:not(.ant-tag-checkable-checked):hover { + color: #004691; +} +.ant-tag-checkable:active, +.ant-tag-checkable-checked { + color: #fff; +} +.ant-tag-checkable-checked { + background-color: #004691; +} +.ant-tag-checkable:active { + background-color: #00306b; +} +.ant-tag-hidden { + display: none; +} +.ant-tag-pink { + color: #eb2f96; + background: #fff0f6; + border-color: #ffadd2; +} +.ant-tag-pink-inverse { + color: #fff; + background: #eb2f96; + border-color: #eb2f96; +} +.ant-tag-magenta { + color: #eb2f96; + background: #fff0f6; + border-color: #ffadd2; +} +.ant-tag-magenta-inverse { + color: #fff; + background: #eb2f96; + border-color: #eb2f96; +} +.ant-tag-red { + color: #f5222d; + background: #fff1f0; + border-color: #ffa39e; +} +.ant-tag-red-inverse { + color: #fff; + background: #f5222d; + border-color: #f5222d; +} +.ant-tag-volcano { + color: #fa541c; + background: #fff2e8; + border-color: #ffbb96; +} +.ant-tag-volcano-inverse { + color: #fff; + background: #fa541c; + border-color: #fa541c; +} +.ant-tag-orange { + color: #fa8c16; + background: #fff7e6; + border-color: #ffd591; +} +.ant-tag-orange-inverse { + color: #fff; + background: #fa8c16; + border-color: #fa8c16; +} +.ant-tag-yellow { + color: #fadb14; + background: #feffe6; + border-color: #fffb8f; +} +.ant-tag-yellow-inverse { + color: #fff; + background: #fadb14; + border-color: #fadb14; +} +.ant-tag-gold { + color: #faad14; + background: #fffbe6; + border-color: #ffe58f; +} +.ant-tag-gold-inverse { + color: #fff; + background: #faad14; + border-color: #faad14; +} +.ant-tag-cyan { + color: #13c2c2; + background: #e6fffb; + border-color: #87e8de; +} +.ant-tag-cyan-inverse { + color: #fff; + background: #13c2c2; + border-color: #13c2c2; +} +.ant-tag-lime { + color: #a0d911; + background: #fcffe6; + border-color: #eaff8f; +} +.ant-tag-lime-inverse { + color: #fff; + background: #a0d911; + border-color: #a0d911; +} +.ant-tag-green { + color: #52c41a; + background: #f6ffed; + border-color: #b7eb8f; +} +.ant-tag-green-inverse { + color: #fff; + background: #52c41a; + border-color: #52c41a; +} +.ant-tag-blue { + color: #1890ff; + background: #e6f7ff; + border-color: #91d5ff; +} +.ant-tag-blue-inverse { + color: #fff; + background: #1890ff; + border-color: #1890ff; +} +.ant-tag-geekblue { + color: #2f54eb; + background: #f0f5ff; + border-color: #adc6ff; +} +.ant-tag-geekblue-inverse { + color: #fff; + background: #2f54eb; + border-color: #2f54eb; +} +.ant-tag-purple { + color: #722ed1; + background: #f9f0ff; + border-color: #d3adf7; +} +.ant-tag-purple-inverse { + color: #fff; + background: #722ed1; + border-color: #722ed1; +} +.ant-time-picker-panel { + box-sizing: border-box; + margin: 0; + padding: 0; + color: rgba(0, 0, 0, 0.65); + font-size: 15px; + font-variant: tabular-nums; + line-height: 1.5; + list-style: none; + font-feature-settings: 'tnum'; + position: absolute; + z-index: 1050; + font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', 'Helvetica Neue', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol'; +} +.ant-time-picker-panel-inner { + position: relative; + left: -2px; + font-size: 15px; + text-align: left; + list-style: none; + background-color: #fff; + background-clip: padding-box; + border-radius: 4px; + outline: none; + box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15); +} +.ant-time-picker-panel-input { + width: 100%; + max-width: 154px; + margin: 0; + padding: 0; + line-height: normal; + border: 0; + outline: 0; + cursor: auto; +} +.ant-time-picker-panel-input::-moz-placeholder { + color: #bfbfbf; + opacity: 1; +} +.ant-time-picker-panel-input:-ms-input-placeholder { + color: #bfbfbf; +} +.ant-time-picker-panel-input::-webkit-input-placeholder { + color: #bfbfbf; +} +.ant-time-picker-panel-input:-moz-placeholder-shown { + text-overflow: ellipsis; +} +.ant-time-picker-panel-input:-ms-input-placeholder { + text-overflow: ellipsis; +} +.ant-time-picker-panel-input:placeholder-shown { + text-overflow: ellipsis; +} +.ant-time-picker-panel-input-wrap { + position: relative; + padding: 7px 2px 7px 12px; + border-bottom: 1px solid #e8e8e8; +} +.ant-time-picker-panel-input-invalid { + border-color: #f5222d; +} +.ant-time-picker-panel-narrow .ant-time-picker-panel-input-wrap { + max-width: 112px; +} +.ant-time-picker-panel-select { + position: relative; + float: left; + width: 56px; + max-height: 192px; + overflow: hidden; + font-size: 15px; + border-left: 1px solid #e8e8e8; +} +.ant-time-picker-panel-select:hover { + overflow-y: auto; +} +.ant-time-picker-panel-select:first-child { + margin-left: 0; + border-left: 0; +} +.ant-time-picker-panel-select:last-child { + border-right: 0; +} +.ant-time-picker-panel-select:only-child { + width: 100%; +} +.ant-time-picker-panel-select ul { + width: 56px; + margin: 0; + padding: 0 0 160px; + list-style: none; +} +.ant-time-picker-panel-select li { + width: 100%; + height: 32px; + margin: 0; + padding: 0 0 0 12px; + line-height: 32px; + text-align: left; + list-style: none; + cursor: pointer; + transition: all 0.3s; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} +.ant-time-picker-panel-select li:focus { + color: #004691; + font-weight: 600; + outline: none; +} +.ant-time-picker-panel-select li:hover { + background: #bccad1; +} +li.ant-time-picker-panel-select-option-selected { + font-weight: 600; + background: #f5f5f5; +} +li.ant-time-picker-panel-select-option-selected:hover { + background: #f5f5f5; +} +li.ant-time-picker-panel-select-option-disabled { + color: rgba(0, 0, 0, 0.25); +} +li.ant-time-picker-panel-select-option-disabled:hover { + background: transparent; + cursor: not-allowed; +} +li.ant-time-picker-panel-select-option-disabled:focus { + color: rgba(0, 0, 0, 0.25); + font-weight: inherit; +} +.ant-time-picker-panel-combobox { + zoom: 1; +} +.ant-time-picker-panel-combobox::before, +.ant-time-picker-panel-combobox::after { + display: table; + content: ''; +} +.ant-time-picker-panel-combobox::after { + clear: both; +} +.ant-time-picker-panel-combobox::before, +.ant-time-picker-panel-combobox::after { + display: table; + content: ''; +} +.ant-time-picker-panel-combobox::after { + clear: both; +} +.ant-time-picker-panel-addon { + padding: 8px; + border-top: 1px solid #e8e8e8; +} +.ant-time-picker-panel.slide-up-enter.slide-up-enter-active.ant-time-picker-panel-placement-topLeft, +.ant-time-picker-panel.slide-up-enter.slide-up-enter-active.ant-time-picker-panel-placement-topRight, +.ant-time-picker-panel.slide-up-appear.slide-up-appear-active.ant-time-picker-panel-placement-topLeft, +.ant-time-picker-panel.slide-up-appear.slide-up-appear-active.ant-time-picker-panel-placement-topRight { + -webkit-animation-name: antSlideDownIn; + animation-name: antSlideDownIn; +} +.ant-time-picker-panel.slide-up-enter.slide-up-enter-active.ant-time-picker-panel-placement-bottomLeft, +.ant-time-picker-panel.slide-up-enter.slide-up-enter-active.ant-time-picker-panel-placement-bottomRight, +.ant-time-picker-panel.slide-up-appear.slide-up-appear-active.ant-time-picker-panel-placement-bottomLeft, +.ant-time-picker-panel.slide-up-appear.slide-up-appear-active.ant-time-picker-panel-placement-bottomRight { + -webkit-animation-name: antSlideUpIn; + animation-name: antSlideUpIn; +} +.ant-time-picker-panel.slide-up-leave.slide-up-leave-active.ant-time-picker-panel-placement-topLeft, +.ant-time-picker-panel.slide-up-leave.slide-up-leave-active.ant-time-picker-panel-placement-topRight { + -webkit-animation-name: antSlideDownOut; + animation-name: antSlideDownOut; +} +.ant-time-picker-panel.slide-up-leave.slide-up-leave-active.ant-time-picker-panel-placement-bottomLeft, +.ant-time-picker-panel.slide-up-leave.slide-up-leave-active.ant-time-picker-panel-placement-bottomRight { + -webkit-animation-name: antSlideUpOut; + animation-name: antSlideUpOut; +} +.ant-time-picker { + box-sizing: border-box; + margin: 0; + padding: 0; + color: rgba(0, 0, 0, 0.65); + font-size: 15px; + font-variant: tabular-nums; + line-height: 1.5; + list-style: none; + font-feature-settings: 'tnum'; + position: relative; + display: inline-block; + width: 128px; + outline: none; + cursor: text; + transition: opacity 0.3s; +} +.ant-time-picker-input { + position: relative; + display: inline-block; + width: 100%; + height: 32px; + padding: 4px 11px; + color: rgba(0, 0, 0, 0.65); + font-size: 15px; + line-height: 1.5; + background-color: #fff; + background-image: none; + border: 1px solid #d9d9d9; + border-radius: 4px; + transition: all 0.3s; +} +.ant-time-picker-input::-moz-placeholder { + color: #bfbfbf; + opacity: 1; +} +.ant-time-picker-input:-ms-input-placeholder { + color: #bfbfbf; +} +.ant-time-picker-input::-webkit-input-placeholder { + color: #bfbfbf; +} +.ant-time-picker-input:-moz-placeholder-shown { + text-overflow: ellipsis; +} +.ant-time-picker-input:-ms-input-placeholder { + text-overflow: ellipsis; +} +.ant-time-picker-input:placeholder-shown { + text-overflow: ellipsis; +} +.ant-time-picker-input:hover { + border-color: #195e9e; + border-right-width: 1px !important; +} +.ant-time-picker-input:focus { + border-color: #195e9e; + border-right-width: 1px !important; + outline: 0; + box-shadow: 0 0 0 2px rgba(0, 70, 145, 0.2); +} +.ant-time-picker-input-disabled { + color: rgba(0, 0, 0, 0.25); + background-color: #f5f5f5; + cursor: not-allowed; + opacity: 1; +} +.ant-time-picker-input-disabled:hover { + border-color: #d9d9d9; + border-right-width: 1px !important; +} +.ant-time-picker-input[disabled] { + color: rgba(0, 0, 0, 0.25); + background-color: #f5f5f5; + cursor: not-allowed; + opacity: 1; +} +.ant-time-picker-input[disabled]:hover { + border-color: #d9d9d9; + border-right-width: 1px !important; +} +textarea.ant-time-picker-input { + max-width: 100%; + height: auto; + min-height: 32px; + line-height: 1.5; + vertical-align: bottom; + transition: all 0.3s, height 0s; +} +.ant-time-picker-input-lg { + height: 40px; + padding: 6px 11px; + font-size: 17px; +} +.ant-time-picker-input-sm { + height: 24px; + padding: 1px 7px; +} +.ant-time-picker-input[disabled] { + color: rgba(0, 0, 0, 0.25); + background-color: #f5f5f5; + cursor: not-allowed; + opacity: 1; +} +.ant-time-picker-input[disabled]:hover { + border-color: #d9d9d9; + border-right-width: 1px !important; +} +.ant-time-picker-open { + opacity: 0; +} +.ant-time-picker-icon, +.ant-time-picker-clear { + position: absolute; + top: 50%; + right: 11px; + z-index: 1; + width: 14px; + height: 14px; + margin-top: -7px; + color: rgba(0, 0, 0, 0.25); + line-height: 14px; + transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} +.ant-time-picker-icon .ant-time-picker-clock-icon, +.ant-time-picker-clear .ant-time-picker-clock-icon { + display: block; + color: rgba(0, 0, 0, 0.25); + line-height: 1; +} +.ant-time-picker-clear { + z-index: 2; + background: #fff; + opacity: 0; + pointer-events: none; +} +.ant-time-picker-clear:hover { + color: rgba(0, 0, 0, 0.45); +} +.ant-time-picker:hover .ant-time-picker-clear { + opacity: 1; + pointer-events: auto; +} +.ant-time-picker-large .ant-time-picker-input { + height: 40px; + padding: 6px 11px; + font-size: 17px; +} +.ant-time-picker-small .ant-time-picker-input { + height: 24px; + padding: 1px 7px; +} +.ant-time-picker-small .ant-time-picker-icon, +.ant-time-picker-small .ant-time-picker-clear { + right: 7px; +} +@media not all and (-webkit-min-device-pixel-ratio: 0), not all and (min-resolution: 0.001dpcm) { + @supports (-webkit-appearance: none) and (stroke-color: transparent) { + .ant-input { + line-height: 1.5; + } + } +} +.ant-timeline { + box-sizing: border-box; + color: rgba(0, 0, 0, 0.65); + font-size: 15px; + font-variant: tabular-nums; + line-height: 1.5; + font-feature-settings: 'tnum'; + margin: 0; + padding: 0; + list-style: none; +} +.ant-timeline-item { + position: relative; + margin: 0; + padding: 0 0 20px; + font-size: 15px; + list-style: none; +} +.ant-timeline-item-tail { + position: absolute; + top: 10px; + left: 4px; + height: calc(100% - 10px); + border-left: 2px solid #e8e8e8; +} +.ant-timeline-item-pending .ant-timeline-item-head { + font-size: 12px; + background-color: transparent; +} +.ant-timeline-item-pending .ant-timeline-item-tail { + display: none; +} +.ant-timeline-item-head { + position: absolute; + width: 10px; + height: 10px; + background-color: #fff; + border: 2px solid transparent; + border-radius: 100px; +} +.ant-timeline-item-head-blue { + color: #004691; + border-color: #004691; +} +.ant-timeline-item-head-red { + color: #f5222d; + border-color: #f5222d; +} +.ant-timeline-item-head-green { + color: #52c41a; + border-color: #52c41a; +} +.ant-timeline-item-head-gray { + color: rgba(0, 0, 0, 0.25); + border-color: rgba(0, 0, 0, 0.25); +} +.ant-timeline-item-head-custom { + position: absolute; + top: 5.5px; + left: 5px; + width: auto; + height: auto; + margin-top: 0; + padding: 3px 1px; + line-height: 1; + text-align: center; + border: 0; + border-radius: 0; + transform: translate(-50%, -50%); +} +.ant-timeline-item-content { + position: relative; + top: -6.5px; + margin: 0 0 0 18px; + word-break: break-word; +} +.ant-timeline-item-last > .ant-timeline-item-tail { + display: none; +} +.ant-timeline-item-last > .ant-timeline-item-content { + min-height: 48px; +} +.ant-timeline.ant-timeline-alternate .ant-timeline-item-tail, +.ant-timeline.ant-timeline-right .ant-timeline-item-tail, +.ant-timeline.ant-timeline-alternate .ant-timeline-item-head, +.ant-timeline.ant-timeline-right .ant-timeline-item-head, +.ant-timeline.ant-timeline-alternate .ant-timeline-item-head-custom, +.ant-timeline.ant-timeline-right .ant-timeline-item-head-custom { + left: 50%; +} +.ant-timeline.ant-timeline-alternate .ant-timeline-item-head, +.ant-timeline.ant-timeline-right .ant-timeline-item-head { + margin-left: -4px; +} +.ant-timeline.ant-timeline-alternate .ant-timeline-item-head-custom, +.ant-timeline.ant-timeline-right .ant-timeline-item-head-custom { + margin-left: 1px; +} +.ant-timeline.ant-timeline-alternate .ant-timeline-item-left .ant-timeline-item-content, +.ant-timeline.ant-timeline-right .ant-timeline-item-left .ant-timeline-item-content { + left: calc(50% - 4px); + width: calc(50% - 14px); + text-align: left; +} +.ant-timeline.ant-timeline-alternate .ant-timeline-item-right .ant-timeline-item-content, +.ant-timeline.ant-timeline-right .ant-timeline-item-right .ant-timeline-item-content { + width: calc(50% - 12px); + margin: 0; + text-align: right; +} +.ant-timeline.ant-timeline-right .ant-timeline-item-right .ant-timeline-item-tail, +.ant-timeline.ant-timeline-right .ant-timeline-item-right .ant-timeline-item-head, +.ant-timeline.ant-timeline-right .ant-timeline-item-right .ant-timeline-item-head-custom { + left: calc(100% - 4px - 2px); +} +.ant-timeline.ant-timeline-right .ant-timeline-item-right .ant-timeline-item-content { + width: calc(100% - 18px); +} +.ant-timeline.ant-timeline-pending .ant-timeline-item-last .ant-timeline-item-tail { + display: block; + height: calc(100% - 14px); + border-left: 2px dotted #e8e8e8; +} +.ant-timeline.ant-timeline-reverse .ant-timeline-item-last .ant-timeline-item-tail { + display: none; +} +.ant-timeline.ant-timeline-reverse .ant-timeline-item-pending .ant-timeline-item-tail { + top: 15px; + display: block; + height: calc(100% - 15px); + border-left: 2px dotted #e8e8e8; +} +.ant-timeline.ant-timeline-reverse .ant-timeline-item-pending .ant-timeline-item-content { + min-height: 48px; +} +.ant-tooltip { + box-sizing: border-box; + margin: 0; + padding: 0; + color: rgba(0, 0, 0, 0.65); + font-size: 15px; + font-variant: tabular-nums; + line-height: 1.5; + list-style: none; + font-feature-settings: 'tnum'; + position: absolute; + z-index: 1060; + display: block; + max-width: 250px; + visibility: visible; +} +.ant-tooltip-hidden { + display: none; +} +.ant-tooltip-placement-top, +.ant-tooltip-placement-topLeft, +.ant-tooltip-placement-topRight { + padding-bottom: 8px; +} +.ant-tooltip-placement-right, +.ant-tooltip-placement-rightTop, +.ant-tooltip-placement-rightBottom { + padding-left: 8px; +} +.ant-tooltip-placement-bottom, +.ant-tooltip-placement-bottomLeft, +.ant-tooltip-placement-bottomRight { + padding-top: 8px; +} +.ant-tooltip-placement-left, +.ant-tooltip-placement-leftTop, +.ant-tooltip-placement-leftBottom { + padding-right: 8px; +} +.ant-tooltip-inner { + min-width: 30px; + min-height: 32px; + padding: 6px 8px; + color: #fff; + text-align: left; + text-decoration: none; + word-wrap: break-word; + background-color: rgba(0, 0, 0, 0.75); + border-radius: 4px; + box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15); +} +.ant-tooltip-arrow { + position: absolute; + display: block; + width: 13.07106781px; + height: 13.07106781px; + overflow: hidden; + background: transparent; + pointer-events: none; +} +.ant-tooltip-arrow::before { + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + display: block; + width: 5px; + height: 5px; + margin: auto; + background-color: rgba(0, 0, 0, 0.75); + content: ''; + pointer-events: auto; +} +.ant-tooltip-placement-top .ant-tooltip-arrow, +.ant-tooltip-placement-topLeft .ant-tooltip-arrow, +.ant-tooltip-placement-topRight .ant-tooltip-arrow { + bottom: -5.07106781px; +} +.ant-tooltip-placement-top .ant-tooltip-arrow::before, +.ant-tooltip-placement-topLeft .ant-tooltip-arrow::before, +.ant-tooltip-placement-topRight .ant-tooltip-arrow::before { + box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.07); + transform: translateY(-6.53553391px) rotate(45deg); +} +.ant-tooltip-placement-top .ant-tooltip-arrow { + left: 50%; + transform: translateX(-50%); +} +.ant-tooltip-placement-topLeft .ant-tooltip-arrow { + left: 13px; +} +.ant-tooltip-placement-topRight .ant-tooltip-arrow { + right: 13px; +} +.ant-tooltip-placement-right .ant-tooltip-arrow, +.ant-tooltip-placement-rightTop .ant-tooltip-arrow, +.ant-tooltip-placement-rightBottom .ant-tooltip-arrow { + left: -5.07106781px; +} +.ant-tooltip-placement-right .ant-tooltip-arrow::before, +.ant-tooltip-placement-rightTop .ant-tooltip-arrow::before, +.ant-tooltip-placement-rightBottom .ant-tooltip-arrow::before { + box-shadow: -3px 3px 7px rgba(0, 0, 0, 0.07); + transform: translateX(6.53553391px) rotate(45deg); +} +.ant-tooltip-placement-right .ant-tooltip-arrow { + top: 50%; + transform: translateY(-50%); +} +.ant-tooltip-placement-rightTop .ant-tooltip-arrow { + top: 5px; +} +.ant-tooltip-placement-rightBottom .ant-tooltip-arrow { + bottom: 5px; +} +.ant-tooltip-placement-left .ant-tooltip-arrow, +.ant-tooltip-placement-leftTop .ant-tooltip-arrow, +.ant-tooltip-placement-leftBottom .ant-tooltip-arrow { + right: -5.07106781px; +} +.ant-tooltip-placement-left .ant-tooltip-arrow::before, +.ant-tooltip-placement-leftTop .ant-tooltip-arrow::before, +.ant-tooltip-placement-leftBottom .ant-tooltip-arrow::before { + box-shadow: 3px -3px 7px rgba(0, 0, 0, 0.07); + transform: translateX(-6.53553391px) rotate(45deg); +} +.ant-tooltip-placement-left .ant-tooltip-arrow { + top: 50%; + transform: translateY(-50%); +} +.ant-tooltip-placement-leftTop .ant-tooltip-arrow { + top: 5px; +} +.ant-tooltip-placement-leftBottom .ant-tooltip-arrow { + bottom: 5px; +} +.ant-tooltip-placement-bottom .ant-tooltip-arrow, +.ant-tooltip-placement-bottomLeft .ant-tooltip-arrow, +.ant-tooltip-placement-bottomRight .ant-tooltip-arrow { + top: -5.07106781px; +} +.ant-tooltip-placement-bottom .ant-tooltip-arrow::before, +.ant-tooltip-placement-bottomLeft .ant-tooltip-arrow::before, +.ant-tooltip-placement-bottomRight .ant-tooltip-arrow::before { + box-shadow: -3px -3px 7px rgba(0, 0, 0, 0.07); + transform: translateY(6.53553391px) rotate(45deg); +} +.ant-tooltip-placement-bottom .ant-tooltip-arrow { + left: 50%; + transform: translateX(-50%); +} +.ant-tooltip-placement-bottomLeft .ant-tooltip-arrow { + left: 13px; +} +.ant-tooltip-placement-bottomRight .ant-tooltip-arrow { + right: 13px; +} +.ant-transfer-customize-list { + display: flex; +} +.ant-transfer-customize-list .ant-transfer-operation { + flex: none; + align-self: center; +} +.ant-transfer-customize-list .ant-transfer-list { + flex: auto; + width: auto; + height: auto; + min-height: 200px; +} +.ant-transfer-customize-list .ant-transfer-list-body-with-search { + padding-top: 0; +} +.ant-transfer-customize-list .ant-transfer-list-body-search-wrapper { + position: relative; + padding-bottom: 0; +} +.ant-transfer-customize-list .ant-transfer-list-body-customize-wrapper { + padding: 12px; +} +.ant-transfer-customize-list .ant-table-wrapper .ant-table-small { + border: 0; + border-radius: 0; +} +.ant-transfer-customize-list .ant-table-wrapper .ant-table-small > .ant-table-content > .ant-table-body > table > .ant-table-thead > tr > th { + background: #fafafa; +} +.ant-transfer-customize-list .ant-table-wrapper .ant-table-small > .ant-table-content .ant-table-row:last-child td { + border-bottom: 1px solid #e8e8e8; +} +.ant-transfer-customize-list .ant-table-wrapper .ant-table-small .ant-table-body { + margin: 0; +} +.ant-transfer-customize-list .ant-table-wrapper .ant-table-pagination.ant-pagination { + margin: 16px 0 4px; +} +.ant-transfer { + box-sizing: border-box; + margin: 0; + padding: 0; + color: rgba(0, 0, 0, 0.65); + font-size: 15px; + font-variant: tabular-nums; + line-height: 1.5; + list-style: none; + font-feature-settings: 'tnum'; + position: relative; +} +.ant-transfer-disabled .ant-transfer-list { + background: #f5f5f5; +} +.ant-transfer-list { + position: relative; + display: inline-block; + width: 180px; + height: 200px; + padding-top: 40px; + vertical-align: middle; + border: 1px solid #d9d9d9; + border-radius: 4px; +} +.ant-transfer-list-with-footer { + padding-bottom: 34px; +} +.ant-transfer-list-search { + padding: 0 24px 0 8px; +} +.ant-transfer-list-search-action { + position: absolute; + top: 12px; + right: 12px; + bottom: 12px; + width: 28px; + color: rgba(0, 0, 0, 0.25); + line-height: 32px; + text-align: center; +} +.ant-transfer-list-search-action .anticon { + color: rgba(0, 0, 0, 0.25); + transition: all 0.3s; +} +.ant-transfer-list-search-action .anticon:hover { + color: rgba(0, 0, 0, 0.45); +} +span.ant-transfer-list-search-action { + pointer-events: none; +} +.ant-transfer-list-header { + position: absolute; + top: 0; + left: 0; + width: 100%; + padding: 7.25px 12px 8.25px; + overflow: hidden; + color: rgba(0, 0, 0, 0.65); + background: #fff; + border-bottom: 1px solid #e8e8e8; + border-radius: 4px 4px 0 0; +} +.ant-transfer-list-header-title { + position: absolute; + right: 12px; +} +.ant-transfer-list-header .ant-checkbox-wrapper + span { + padding-left: 8px; +} +.ant-transfer-list-body { + position: relative; + height: 100%; + font-size: 15px; +} +.ant-transfer-list-body-search-wrapper { + position: absolute; + top: 0; + left: 0; + width: 100%; + padding: 12px; +} +.ant-transfer-list-body-with-search { + padding-top: 56px; +} +.ant-transfer-list-content { + height: 100%; + margin: 0; + padding: 0; + overflow: auto; + list-style: none; +} +.ant-transfer-list-content > .LazyLoad { + -webkit-animation: transferHighlightIn 1s; + animation: transferHighlightIn 1s; +} +.ant-transfer-list-content-item { + min-height: 32px; + padding: 6px 12px; + overflow: hidden; + white-space: nowrap; + text-overflow: ellipsis; + transition: all 0.3s; +} +.ant-transfer-list-content-item > span { + padding-right: 0; +} +.ant-transfer-list-content-item-text { + padding-left: 8px; +} +.ant-transfer-list-content-item:not(.ant-transfer-list-content-item-disabled):hover { + background-color: #bccad1; + cursor: pointer; +} +.ant-transfer-list-content-item-disabled { + color: rgba(0, 0, 0, 0.25); + cursor: not-allowed; +} +.ant-transfer-list-body-not-found { + position: absolute; + top: 50%; + width: 100%; + padding-top: 0; + color: rgba(0, 0, 0, 0.25); + text-align: center; + transform: translateY(-50%); +} +.ant-transfer-list-body-with-search .ant-transfer-list-body-not-found { + margin-top: 16px; +} +.ant-transfer-list-footer { + position: absolute; + bottom: 0; + left: 0; + width: 100%; + border-top: 1px solid #e8e8e8; + border-radius: 0 0 4px 4px; +} +.ant-transfer-operation { + display: inline-block; + margin: 0 8px; + overflow: hidden; + vertical-align: middle; +} +.ant-transfer-operation .ant-btn { + display: block; +} +.ant-transfer-operation .ant-btn:first-child { + margin-bottom: 4px; +} +.ant-transfer-operation .ant-btn .anticon { + font-size: 12px; +} +@-webkit-keyframes transferHighlightIn { + 0% { + background: #7ea9c4; + } + 100% { + background: transparent; + } +} +@keyframes transferHighlightIn { + 0% { + background: #7ea9c4; + } + 100% { + background: transparent; + } +} +.ant-tree.ant-tree-directory { + position: relative; +} +.ant-tree.ant-tree-directory > li span.ant-tree-switcher, +.ant-tree.ant-tree-directory .ant-tree-child-tree > li span.ant-tree-switcher { + position: relative; + z-index: 1; +} +.ant-tree.ant-tree-directory > li span.ant-tree-switcher.ant-tree-switcher-noop, +.ant-tree.ant-tree-directory .ant-tree-child-tree > li span.ant-tree-switcher.ant-tree-switcher-noop { + pointer-events: none; +} +.ant-tree.ant-tree-directory > li span.ant-tree-checkbox, +.ant-tree.ant-tree-directory .ant-tree-child-tree > li span.ant-tree-checkbox { + position: relative; + z-index: 1; +} +.ant-tree.ant-tree-directory > li span.ant-tree-node-content-wrapper, +.ant-tree.ant-tree-directory .ant-tree-child-tree > li span.ant-tree-node-content-wrapper { + border-radius: 0; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} +.ant-tree.ant-tree-directory > li span.ant-tree-node-content-wrapper:hover, +.ant-tree.ant-tree-directory .ant-tree-child-tree > li span.ant-tree-node-content-wrapper:hover { + background: transparent; +} +.ant-tree.ant-tree-directory > li span.ant-tree-node-content-wrapper:hover::before, +.ant-tree.ant-tree-directory .ant-tree-child-tree > li span.ant-tree-node-content-wrapper:hover::before { + background: #bccad1; +} +.ant-tree.ant-tree-directory > li span.ant-tree-node-content-wrapper.ant-tree-node-selected, +.ant-tree.ant-tree-directory .ant-tree-child-tree > li span.ant-tree-node-content-wrapper.ant-tree-node-selected { + color: #fff; + background: transparent; +} +.ant-tree.ant-tree-directory > li span.ant-tree-node-content-wrapper::before, +.ant-tree.ant-tree-directory .ant-tree-child-tree > li span.ant-tree-node-content-wrapper::before { + position: absolute; + right: 0; + left: 0; + height: 24px; + transition: all 0.3s; + content: ''; +} +.ant-tree.ant-tree-directory > li span.ant-tree-node-content-wrapper > span, +.ant-tree.ant-tree-directory .ant-tree-child-tree > li span.ant-tree-node-content-wrapper > span { + position: relative; + z-index: 1; +} +.ant-tree.ant-tree-directory > li.ant-tree-treenode-selected > span.ant-tree-switcher, +.ant-tree.ant-tree-directory .ant-tree-child-tree > li.ant-tree-treenode-selected > span.ant-tree-switcher { + color: #fff; +} +.ant-tree.ant-tree-directory > li.ant-tree-treenode-selected > span.ant-tree-checkbox .ant-tree-checkbox-inner, +.ant-tree.ant-tree-directory .ant-tree-child-tree > li.ant-tree-treenode-selected > span.ant-tree-checkbox .ant-tree-checkbox-inner { + border-color: #004691; +} +.ant-tree.ant-tree-directory > li.ant-tree-treenode-selected > span.ant-tree-checkbox.ant-tree-checkbox-checked::after, +.ant-tree.ant-tree-directory .ant-tree-child-tree > li.ant-tree-treenode-selected > span.ant-tree-checkbox.ant-tree-checkbox-checked::after { + border-color: #fff; +} +.ant-tree.ant-tree-directory > li.ant-tree-treenode-selected > span.ant-tree-checkbox.ant-tree-checkbox-checked .ant-tree-checkbox-inner, +.ant-tree.ant-tree-directory .ant-tree-child-tree > li.ant-tree-treenode-selected > span.ant-tree-checkbox.ant-tree-checkbox-checked .ant-tree-checkbox-inner { + background: #fff; +} +.ant-tree.ant-tree-directory > li.ant-tree-treenode-selected > span.ant-tree-checkbox.ant-tree-checkbox-checked .ant-tree-checkbox-inner::after, +.ant-tree.ant-tree-directory .ant-tree-child-tree > li.ant-tree-treenode-selected > span.ant-tree-checkbox.ant-tree-checkbox-checked .ant-tree-checkbox-inner::after { + border-color: #004691; +} +.ant-tree.ant-tree-directory > li.ant-tree-treenode-selected > span.ant-tree-node-content-wrapper::before, +.ant-tree.ant-tree-directory .ant-tree-child-tree > li.ant-tree-treenode-selected > span.ant-tree-node-content-wrapper::before { + background: #004691; +} +.ant-tree-checkbox { + box-sizing: border-box; + margin: 0; + padding: 0; + color: rgba(0, 0, 0, 0.65); + font-size: 15px; + font-variant: tabular-nums; + line-height: 1.5; + list-style: none; + font-feature-settings: 'tnum'; + position: relative; + top: -0.09em; + display: inline-block; + line-height: 1; + white-space: nowrap; + vertical-align: middle; + outline: none; + cursor: pointer; +} +.ant-tree-checkbox-wrapper:hover .ant-tree-checkbox-inner, +.ant-tree-checkbox:hover .ant-tree-checkbox-inner, +.ant-tree-checkbox-input:focus + .ant-tree-checkbox-inner { + border-color: #004691; +} +.ant-tree-checkbox-checked::after { + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + border: 1px solid #004691; + border-radius: 2px; + visibility: hidden; + -webkit-animation: antCheckboxEffect 0.36s ease-in-out; + animation: antCheckboxEffect 0.36s ease-in-out; + -webkit-animation-fill-mode: backwards; + animation-fill-mode: backwards; + content: ''; +} +.ant-tree-checkbox:hover::after, +.ant-tree-checkbox-wrapper:hover .ant-tree-checkbox::after { + visibility: visible; +} +.ant-tree-checkbox-inner { + position: relative; + top: 0; + left: 0; + display: block; + width: 16px; + height: 16px; + background-color: #fff; + border: 1px solid #d9d9d9; + border-radius: 2px; + border-collapse: separate; + transition: all 0.3s; +} +.ant-tree-checkbox-inner::after { + position: absolute; + top: 50%; + left: 22%; + display: table; + width: 5.71428571px; + height: 9.14285714px; + border: 2px solid #fff; + border-top: 0; + border-left: 0; + transform: rotate(45deg) scale(0) translate(-50%, -50%); + opacity: 0; + transition: all 0.1s cubic-bezier(0.71, -0.46, 0.88, 0.6), opacity 0.1s; + content: ' '; +} +.ant-tree-checkbox-input { + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + z-index: 1; + width: 100%; + height: 100%; + cursor: pointer; + opacity: 0; +} +.ant-tree-checkbox-checked .ant-tree-checkbox-inner::after { + position: absolute; + display: table; + border: 2px solid #fff; + border-top: 0; + border-left: 0; + transform: rotate(45deg) scale(1) translate(-50%, -50%); + opacity: 1; + transition: all 0.2s cubic-bezier(0.12, 0.4, 0.29, 1.46) 0.1s; + content: ' '; +} +.ant-tree-checkbox-checked .ant-tree-checkbox-inner { + background-color: #004691; + border-color: #004691; +} +.ant-tree-checkbox-disabled { + cursor: not-allowed; +} +.ant-tree-checkbox-disabled.ant-tree-checkbox-checked .ant-tree-checkbox-inner::after { + border-color: rgba(0, 0, 0, 0.25); + -webkit-animation-name: none; + animation-name: none; +} +.ant-tree-checkbox-disabled .ant-tree-checkbox-input { + cursor: not-allowed; +} +.ant-tree-checkbox-disabled .ant-tree-checkbox-inner { + background-color: #f5f5f5; + border-color: #d9d9d9 !important; +} +.ant-tree-checkbox-disabled .ant-tree-checkbox-inner::after { + border-color: #f5f5f5; + border-collapse: separate; + -webkit-animation-name: none; + animation-name: none; +} +.ant-tree-checkbox-disabled + span { + color: rgba(0, 0, 0, 0.25); + cursor: not-allowed; +} +.ant-tree-checkbox-disabled:hover::after, +.ant-tree-checkbox-wrapper:hover .ant-tree-checkbox-disabled::after { + visibility: hidden; +} +.ant-tree-checkbox-wrapper { + box-sizing: border-box; + margin: 0; + padding: 0; + color: rgba(0, 0, 0, 0.65); + font-size: 15px; + font-variant: tabular-nums; + line-height: 1.5; + list-style: none; + font-feature-settings: 'tnum'; + display: inline-block; + line-height: unset; + cursor: pointer; +} +.ant-tree-checkbox-wrapper.ant-tree-checkbox-wrapper-disabled { + cursor: not-allowed; +} +.ant-tree-checkbox-wrapper + .ant-tree-checkbox-wrapper { + margin-left: 8px; +} +.ant-tree-checkbox + span { + padding-right: 8px; + padding-left: 8px; +} +.ant-tree-checkbox-group { + box-sizing: border-box; + margin: 0; + padding: 0; + color: rgba(0, 0, 0, 0.65); + font-size: 15px; + font-variant: tabular-nums; + line-height: 1.5; + list-style: none; + font-feature-settings: 'tnum'; + display: inline-block; +} +.ant-tree-checkbox-group-item { + display: inline-block; + margin-right: 8px; +} +.ant-tree-checkbox-group-item:last-child { + margin-right: 0; +} +.ant-tree-checkbox-group-item + .ant-tree-checkbox-group-item { + margin-left: 0; +} +.ant-tree-checkbox-indeterminate .ant-tree-checkbox-inner { + background-color: #fff; + border-color: #d9d9d9; +} +.ant-tree-checkbox-indeterminate .ant-tree-checkbox-inner::after { + top: 50%; + left: 50%; + width: 8px; + height: 8px; + background-color: #004691; + border: 0; + transform: translate(-50%, -50%) scale(1); + opacity: 1; + content: ' '; +} +.ant-tree-checkbox-indeterminate.ant-tree-checkbox-disabled .ant-tree-checkbox-inner::after { + background-color: rgba(0, 0, 0, 0.25); + border-color: rgba(0, 0, 0, 0.25); +} +.ant-tree { + /* see https://github.com/ant-design/ant-design/issues/16259 */ + box-sizing: border-box; + color: rgba(0, 0, 0, 0.65); + font-size: 15px; + font-variant: tabular-nums; + line-height: 1.5; + list-style: none; + font-feature-settings: 'tnum'; + margin: 0; + padding: 0; +} +.ant-tree-checkbox-checked::after { + position: absolute; + top: 16.67%; + left: 0; + width: 100%; + height: 66.67%; +} +.ant-tree ol, +.ant-tree ul { + margin: 0; + padding: 0; + list-style: none; +} +.ant-tree li { + margin: 0; + padding: 4px 0; + white-space: nowrap; + list-style: none; + outline: 0; +} +.ant-tree li span[draggable], +.ant-tree li span[draggable='true'] { + line-height: 20px; + border-top: 2px transparent solid; + border-bottom: 2px transparent solid; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + /* Required to make elements draggable in old WebKit */ + -khtml-user-drag: element; + -webkit-user-drag: element; +} +.ant-tree li.drag-over > span[draggable] { + color: white; + background-color: #004691; + opacity: 0.8; +} +.ant-tree li.drag-over-gap-top > span[draggable] { + border-top-color: #004691; +} +.ant-tree li.drag-over-gap-bottom > span[draggable] { + border-bottom-color: #004691; +} +.ant-tree li.filter-node > span { + color: #f5222d !important; + font-weight: 500 !important; +} +.ant-tree li.ant-tree-treenode-loading span.ant-tree-switcher.ant-tree-switcher_open .ant-tree-switcher-loading-icon, +.ant-tree li.ant-tree-treenode-loading span.ant-tree-switcher.ant-tree-switcher_close .ant-tree-switcher-loading-icon { + position: absolute; + left: 0; + display: inline-block; + width: 24px; + height: 24px; + color: #004691; + font-size: 14px; + transform: none; +} +.ant-tree li.ant-tree-treenode-loading span.ant-tree-switcher.ant-tree-switcher_open .ant-tree-switcher-loading-icon svg, +.ant-tree li.ant-tree-treenode-loading span.ant-tree-switcher.ant-tree-switcher_close .ant-tree-switcher-loading-icon svg { + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + margin: auto; +} +:root .ant-tree li.ant-tree-treenode-loading span.ant-tree-switcher.ant-tree-switcher_open::after, +:root .ant-tree li.ant-tree-treenode-loading span.ant-tree-switcher.ant-tree-switcher_close::after { + opacity: 0; +} +.ant-tree li ul { + margin: 0; + padding: 0 0 0 18px; +} +.ant-tree li .ant-tree-node-content-wrapper { + display: inline-block; + height: 24px; + margin: 0; + padding: 0 5px; + color: rgba(0, 0, 0, 0.65); + line-height: 24px; + text-decoration: none; + vertical-align: top; + border-radius: 2px; + cursor: pointer; + transition: all 0.3s; +} +.ant-tree li .ant-tree-node-content-wrapper:hover { + background-color: #bccad1; +} +.ant-tree li .ant-tree-node-content-wrapper.ant-tree-node-selected { + background-color: #7ea9c4; +} +.ant-tree li span.ant-tree-checkbox { + top: initial; + height: 24px; + margin: 0 4px 0 2px; + padding: 4px 0; +} +.ant-tree li span.ant-tree-switcher, +.ant-tree li span.ant-tree-iconEle { + display: inline-block; + width: 24px; + height: 24px; + margin: 0; + line-height: 24px; + text-align: center; + vertical-align: top; + border: 0 none; + outline: none; + cursor: pointer; +} +.ant-tree li span.ant-tree-iconEle:empty { + display: none; +} +.ant-tree li span.ant-tree-switcher { + position: relative; +} +.ant-tree li span.ant-tree-switcher.ant-tree-switcher-noop { + cursor: default; +} +.ant-tree li span.ant-tree-switcher.ant-tree-switcher_open .ant-tree-switcher-icon, +.ant-tree li span.ant-tree-switcher.ant-tree-switcher_open .ant-select-switcher-icon { + font-size: 12px; + font-size: 10px \9; + transform: scale(0.83333333) rotate(0deg); + display: inline-block; + font-weight: bold; +} +:root .ant-tree li span.ant-tree-switcher.ant-tree-switcher_open .ant-tree-switcher-icon, +:root .ant-tree li span.ant-tree-switcher.ant-tree-switcher_open .ant-select-switcher-icon { + font-size: 12px; +} +.ant-tree li span.ant-tree-switcher.ant-tree-switcher_open .ant-tree-switcher-icon svg, +.ant-tree li span.ant-tree-switcher.ant-tree-switcher_open .ant-select-switcher-icon svg { + transition: transform 0.3s; +} +.ant-tree li span.ant-tree-switcher.ant-tree-switcher_close .ant-tree-switcher-icon, +.ant-tree li span.ant-tree-switcher.ant-tree-switcher_close .ant-select-switcher-icon { + font-size: 12px; + font-size: 10px \9; + transform: scale(0.83333333) rotate(0deg); + display: inline-block; + font-weight: bold; +} +:root .ant-tree li span.ant-tree-switcher.ant-tree-switcher_close .ant-tree-switcher-icon, +:root .ant-tree li span.ant-tree-switcher.ant-tree-switcher_close .ant-select-switcher-icon { + font-size: 12px; +} +.ant-tree li span.ant-tree-switcher.ant-tree-switcher_close .ant-tree-switcher-icon svg, +.ant-tree li span.ant-tree-switcher.ant-tree-switcher_close .ant-select-switcher-icon svg { + transition: transform 0.3s; +} +.ant-tree li span.ant-tree-switcher.ant-tree-switcher_close .ant-tree-switcher-icon svg { + transform: rotate(-90deg); +} +.ant-tree li:last-child > span.ant-tree-switcher::before, +.ant-tree li:last-child > span.ant-tree-iconEle::before { + display: none; +} +.ant-tree > li:first-child { + padding-top: 7px; +} +.ant-tree > li:last-child { + padding-bottom: 7px; +} +.ant-tree-child-tree > li:first-child { + padding-top: 8px; +} +.ant-tree-child-tree > li:last-child { + padding-bottom: 0; +} +li.ant-tree-treenode-disabled > span:not(.ant-tree-switcher), +li.ant-tree-treenode-disabled > .ant-tree-node-content-wrapper, +li.ant-tree-treenode-disabled > .ant-tree-node-content-wrapper span { + color: rgba(0, 0, 0, 0.25); + cursor: not-allowed; +} +li.ant-tree-treenode-disabled > .ant-tree-node-content-wrapper:hover { + background: transparent; +} +.ant-tree-icon__open { + margin-right: 2px; + vertical-align: top; +} +.ant-tree-icon__close { + margin-right: 2px; + vertical-align: top; +} +.ant-tree.ant-tree-show-line li { + position: relative; +} +.ant-tree.ant-tree-show-line li span.ant-tree-switcher { + color: rgba(0, 0, 0, 0.45); + background: #fff; +} +.ant-tree.ant-tree-show-line li span.ant-tree-switcher.ant-tree-switcher-noop .ant-tree-switcher-icon, +.ant-tree.ant-tree-show-line li span.ant-tree-switcher.ant-tree-switcher-noop .ant-select-switcher-icon { + display: inline-block; + font-weight: normal; + font-size: 12px; +} +.ant-tree.ant-tree-show-line li span.ant-tree-switcher.ant-tree-switcher-noop .ant-tree-switcher-icon svg, +.ant-tree.ant-tree-show-line li span.ant-tree-switcher.ant-tree-switcher-noop .ant-select-switcher-icon svg { + transition: transform 0.3s; +} +.ant-tree.ant-tree-show-line li span.ant-tree-switcher.ant-tree-switcher_open .ant-tree-switcher-icon, +.ant-tree.ant-tree-show-line li span.ant-tree-switcher.ant-tree-switcher_open .ant-select-switcher-icon { + display: inline-block; + font-weight: normal; + font-size: 12px; +} +.ant-tree.ant-tree-show-line li span.ant-tree-switcher.ant-tree-switcher_open .ant-tree-switcher-icon svg, +.ant-tree.ant-tree-show-line li span.ant-tree-switcher.ant-tree-switcher_open .ant-select-switcher-icon svg { + transition: transform 0.3s; +} +.ant-tree.ant-tree-show-line li span.ant-tree-switcher.ant-tree-switcher_close .ant-tree-switcher-icon, +.ant-tree.ant-tree-show-line li span.ant-tree-switcher.ant-tree-switcher_close .ant-select-switcher-icon { + display: inline-block; + font-weight: normal; + font-size: 12px; +} +.ant-tree.ant-tree-show-line li span.ant-tree-switcher.ant-tree-switcher_close .ant-tree-switcher-icon svg, +.ant-tree.ant-tree-show-line li span.ant-tree-switcher.ant-tree-switcher_close .ant-select-switcher-icon svg { + transition: transform 0.3s; +} +.ant-tree.ant-tree-show-line li:not(:last-child)::before { + position: absolute; + left: 12px; + width: 1px; + height: 100%; + height: calc(100% - 22px); + margin: 22px 0 0; + border-left: 1px solid #d9d9d9; + content: ' '; +} +.ant-tree.ant-tree-icon-hide .ant-tree-treenode-loading .ant-tree-iconEle { + display: none; +} +.ant-tree.ant-tree-block-node li .ant-tree-node-content-wrapper { + width: calc(100% - 24px); +} +.ant-tree.ant-tree-block-node li span.ant-tree-checkbox + .ant-tree-node-content-wrapper { + width: calc(100% - 46px); +} +.ant-select-tree-checkbox { + box-sizing: border-box; + margin: 0; + padding: 0; + color: rgba(0, 0, 0, 0.65); + font-size: 15px; + font-variant: tabular-nums; + line-height: 1.5; + list-style: none; + font-feature-settings: 'tnum'; + position: relative; + top: -0.09em; + display: inline-block; + line-height: 1; + white-space: nowrap; + vertical-align: middle; + outline: none; + cursor: pointer; +} +.ant-select-tree-checkbox-wrapper:hover .ant-select-tree-checkbox-inner, +.ant-select-tree-checkbox:hover .ant-select-tree-checkbox-inner, +.ant-select-tree-checkbox-input:focus + .ant-select-tree-checkbox-inner { + border-color: #004691; +} +.ant-select-tree-checkbox-checked::after { + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + border: 1px solid #004691; + border-radius: 2px; + visibility: hidden; + -webkit-animation: antCheckboxEffect 0.36s ease-in-out; + animation: antCheckboxEffect 0.36s ease-in-out; + -webkit-animation-fill-mode: backwards; + animation-fill-mode: backwards; + content: ''; +} +.ant-select-tree-checkbox:hover::after, +.ant-select-tree-checkbox-wrapper:hover .ant-select-tree-checkbox::after { + visibility: visible; +} +.ant-select-tree-checkbox-inner { + position: relative; + top: 0; + left: 0; + display: block; + width: 16px; + height: 16px; + background-color: #fff; + border: 1px solid #d9d9d9; + border-radius: 2px; + border-collapse: separate; + transition: all 0.3s; +} +.ant-select-tree-checkbox-inner::after { + position: absolute; + top: 50%; + left: 22%; + display: table; + width: 5.71428571px; + height: 9.14285714px; + border: 2px solid #fff; + border-top: 0; + border-left: 0; + transform: rotate(45deg) scale(0) translate(-50%, -50%); + opacity: 0; + transition: all 0.1s cubic-bezier(0.71, -0.46, 0.88, 0.6), opacity 0.1s; + content: ' '; +} +.ant-select-tree-checkbox-input { + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + z-index: 1; + width: 100%; + height: 100%; + cursor: pointer; + opacity: 0; +} +.ant-select-tree-checkbox-checked .ant-select-tree-checkbox-inner::after { + position: absolute; + display: table; + border: 2px solid #fff; + border-top: 0; + border-left: 0; + transform: rotate(45deg) scale(1) translate(-50%, -50%); + opacity: 1; + transition: all 0.2s cubic-bezier(0.12, 0.4, 0.29, 1.46) 0.1s; + content: ' '; +} +.ant-select-tree-checkbox-checked .ant-select-tree-checkbox-inner { + background-color: #004691; + border-color: #004691; +} +.ant-select-tree-checkbox-disabled { + cursor: not-allowed; +} +.ant-select-tree-checkbox-disabled.ant-select-tree-checkbox-checked .ant-select-tree-checkbox-inner::after { + border-color: rgba(0, 0, 0, 0.25); + -webkit-animation-name: none; + animation-name: none; +} +.ant-select-tree-checkbox-disabled .ant-select-tree-checkbox-input { + cursor: not-allowed; +} +.ant-select-tree-checkbox-disabled .ant-select-tree-checkbox-inner { + background-color: #f5f5f5; + border-color: #d9d9d9 !important; +} +.ant-select-tree-checkbox-disabled .ant-select-tree-checkbox-inner::after { + border-color: #f5f5f5; + border-collapse: separate; + -webkit-animation-name: none; + animation-name: none; +} +.ant-select-tree-checkbox-disabled + span { + color: rgba(0, 0, 0, 0.25); + cursor: not-allowed; +} +.ant-select-tree-checkbox-disabled:hover::after, +.ant-select-tree-checkbox-wrapper:hover .ant-select-tree-checkbox-disabled::after { + visibility: hidden; +} +.ant-select-tree-checkbox-wrapper { + box-sizing: border-box; + margin: 0; + padding: 0; + color: rgba(0, 0, 0, 0.65); + font-size: 15px; + font-variant: tabular-nums; + line-height: 1.5; + list-style: none; + font-feature-settings: 'tnum'; + display: inline-block; + line-height: unset; + cursor: pointer; +} +.ant-select-tree-checkbox-wrapper.ant-select-tree-checkbox-wrapper-disabled { + cursor: not-allowed; +} +.ant-select-tree-checkbox-wrapper + .ant-select-tree-checkbox-wrapper { + margin-left: 8px; +} +.ant-select-tree-checkbox + span { + padding-right: 8px; + padding-left: 8px; +} +.ant-select-tree-checkbox-group { + box-sizing: border-box; + margin: 0; + padding: 0; + color: rgba(0, 0, 0, 0.65); + font-size: 15px; + font-variant: tabular-nums; + line-height: 1.5; + list-style: none; + font-feature-settings: 'tnum'; + display: inline-block; +} +.ant-select-tree-checkbox-group-item { + display: inline-block; + margin-right: 8px; +} +.ant-select-tree-checkbox-group-item:last-child { + margin-right: 0; +} +.ant-select-tree-checkbox-group-item + .ant-select-tree-checkbox-group-item { + margin-left: 0; +} +.ant-select-tree-checkbox-indeterminate .ant-select-tree-checkbox-inner { + background-color: #fff; + border-color: #d9d9d9; +} +.ant-select-tree-checkbox-indeterminate .ant-select-tree-checkbox-inner::after { + top: 50%; + left: 50%; + width: 8px; + height: 8px; + background-color: #004691; + border: 0; + transform: translate(-50%, -50%) scale(1); + opacity: 1; + content: ' '; +} +.ant-select-tree-checkbox-indeterminate.ant-select-tree-checkbox-disabled .ant-select-tree-checkbox-inner::after { + background-color: rgba(0, 0, 0, 0.25); + border-color: rgba(0, 0, 0, 0.25); +} +.ant-select-tree { + box-sizing: border-box; + padding: 0; + color: rgba(0, 0, 0, 0.65); + font-size: 15px; + font-variant: tabular-nums; + line-height: 1.5; + list-style: none; + font-feature-settings: 'tnum'; + margin: 0; + margin-top: -4px; + padding: 0 4px; +} +.ant-select-tree li { + margin: 8px 0; + padding: 0; + white-space: nowrap; + list-style: none; + outline: 0; +} +.ant-select-tree li.filter-node > span { + font-weight: 500; +} +.ant-select-tree li ul { + margin: 0; + padding: 0 0 0 18px; +} +.ant-select-tree li .ant-select-tree-node-content-wrapper { + display: inline-block; + width: calc(100% - 24px); + margin: 0; + padding: 3px 5px; + color: rgba(0, 0, 0, 0.65); + text-decoration: none; + border-radius: 2px; + cursor: pointer; + transition: all 0.3s; +} +.ant-select-tree li .ant-select-tree-node-content-wrapper:hover { + background-color: #bccad1; +} +.ant-select-tree li .ant-select-tree-node-content-wrapper.ant-select-tree-node-selected { + background-color: #7ea9c4; +} +.ant-select-tree li span.ant-select-tree-checkbox { + margin: 0 4px 0 0; +} +.ant-select-tree li span.ant-select-tree-checkbox + .ant-select-tree-node-content-wrapper { + width: calc(100% - 46px); +} +.ant-select-tree li span.ant-select-tree-switcher, +.ant-select-tree li span.ant-select-tree-iconEle { + display: inline-block; + width: 24px; + height: 24px; + margin: 0; + line-height: 22px; + text-align: center; + vertical-align: middle; + border: 0 none; + outline: none; + cursor: pointer; +} +.ant-select-tree li span.ant-select-icon_loading .ant-select-switcher-loading-icon { + position: absolute; + left: 0; + display: inline-block; + color: #004691; + font-size: 14px; + transform: none; +} +.ant-select-tree li span.ant-select-icon_loading .ant-select-switcher-loading-icon svg { + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + margin: auto; +} +.ant-select-tree li span.ant-select-tree-switcher { + position: relative; +} +.ant-select-tree li span.ant-select-tree-switcher.ant-select-tree-switcher-noop { + cursor: auto; +} +.ant-select-tree li span.ant-select-tree-switcher.ant-select-tree-switcher_open .ant-tree-switcher-icon, +.ant-select-tree li span.ant-select-tree-switcher.ant-select-tree-switcher_open .ant-select-switcher-icon { + font-size: 12px; + font-size: 10px \9; + transform: scale(0.83333333) rotate(0deg); + display: inline-block; + font-weight: bold; +} +:root .ant-select-tree li span.ant-select-tree-switcher.ant-select-tree-switcher_open .ant-tree-switcher-icon, +:root .ant-select-tree li span.ant-select-tree-switcher.ant-select-tree-switcher_open .ant-select-switcher-icon { + font-size: 12px; +} +.ant-select-tree li span.ant-select-tree-switcher.ant-select-tree-switcher_open .ant-tree-switcher-icon svg, +.ant-select-tree li span.ant-select-tree-switcher.ant-select-tree-switcher_open .ant-select-switcher-icon svg { + transition: transform 0.3s; +} +.ant-select-tree li span.ant-select-tree-switcher.ant-select-tree-switcher_close .ant-tree-switcher-icon, +.ant-select-tree li span.ant-select-tree-switcher.ant-select-tree-switcher_close .ant-select-switcher-icon { + font-size: 12px; + font-size: 10px \9; + transform: scale(0.83333333) rotate(0deg); + display: inline-block; + font-weight: bold; +} +:root .ant-select-tree li span.ant-select-tree-switcher.ant-select-tree-switcher_close .ant-tree-switcher-icon, +:root .ant-select-tree li span.ant-select-tree-switcher.ant-select-tree-switcher_close .ant-select-switcher-icon { + font-size: 12px; +} +.ant-select-tree li span.ant-select-tree-switcher.ant-select-tree-switcher_close .ant-tree-switcher-icon svg, +.ant-select-tree li span.ant-select-tree-switcher.ant-select-tree-switcher_close .ant-select-switcher-icon svg { + transition: transform 0.3s; +} +.ant-select-tree li span.ant-select-tree-switcher.ant-select-tree-switcher_close .ant-select-switcher-icon svg { + transform: rotate(-90deg); +} +.ant-select-tree li span.ant-select-tree-switcher.ant-select-tree-switcher_open .ant-select-switcher-loading-icon, +.ant-select-tree li span.ant-select-tree-switcher.ant-select-tree-switcher_close .ant-select-switcher-loading-icon { + position: absolute; + left: 0; + display: inline-block; + width: 24px; + height: 24px; + color: #004691; + font-size: 14px; + transform: none; +} +.ant-select-tree li span.ant-select-tree-switcher.ant-select-tree-switcher_open .ant-select-switcher-loading-icon svg, +.ant-select-tree li span.ant-select-tree-switcher.ant-select-tree-switcher_close .ant-select-switcher-loading-icon svg { + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + margin: auto; +} +.ant-select-tree .ant-select-tree-treenode-loading .ant-select-tree-iconEle { + display: none; +} +.ant-select-tree-child-tree { + display: none; +} +.ant-select-tree-child-tree-open { + display: block; +} +li.ant-select-tree-treenode-disabled > span:not(.ant-select-tree-switcher), +li.ant-select-tree-treenode-disabled > .ant-select-tree-node-content-wrapper, +li.ant-select-tree-treenode-disabled > .ant-select-tree-node-content-wrapper span { + color: rgba(0, 0, 0, 0.25); + cursor: not-allowed; +} +li.ant-select-tree-treenode-disabled > .ant-select-tree-node-content-wrapper:hover { + background: transparent; +} +.ant-select-tree-icon__open { + margin-right: 2px; + vertical-align: top; +} +.ant-select-tree-icon__close { + margin-right: 2px; + vertical-align: top; +} +.ant-select-tree-dropdown { + box-sizing: border-box; + margin: 0; + padding: 0; + color: rgba(0, 0, 0, 0.65); + font-size: 15px; + font-variant: tabular-nums; + line-height: 1.5; + list-style: none; + font-feature-settings: 'tnum'; +} +.ant-select-tree-dropdown .ant-select-dropdown-search { + position: sticky; + top: 0; + z-index: 1; + display: block; + padding: 4px; + background: #fff; +} +.ant-select-tree-dropdown .ant-select-dropdown-search .ant-select-search__field__wrap { + width: 100%; +} +.ant-select-tree-dropdown .ant-select-dropdown-search .ant-select-search__field { + box-sizing: border-box; + width: 100%; + padding: 4px 7px; + border: 1px solid #d9d9d9; + border-radius: 4px; + outline: none; +} +.ant-select-tree-dropdown .ant-select-dropdown-search.ant-select-search--hide { + display: none; +} +.ant-select-tree-dropdown .ant-select-not-found { + display: block; + padding: 7px 16px; + color: rgba(0, 0, 0, 0.25); + cursor: not-allowed; +} +.ant-upload { + box-sizing: border-box; + margin: 0; + padding: 0; + color: rgba(0, 0, 0, 0.65); + font-size: 15px; + font-variant: tabular-nums; + line-height: 1.5; + list-style: none; + font-feature-settings: 'tnum'; + outline: 0; +} +.ant-upload p { + margin: 0; +} +.ant-upload-btn { + display: block; + width: 100%; + outline: none; +} +.ant-upload input[type='file'] { + cursor: pointer; +} +.ant-upload.ant-upload-select { + display: inline-block; +} +.ant-upload.ant-upload-disabled { + cursor: not-allowed; +} +.ant-upload.ant-upload-select-picture-card { + display: table; + float: left; + width: 104px; + height: 104px; + margin-right: 8px; + margin-bottom: 8px; + text-align: center; + vertical-align: top; + background-color: #fafafa; + border: 1px dashed #d9d9d9; + border-radius: 4px; + cursor: pointer; + transition: border-color 0.3s ease; +} +.ant-upload.ant-upload-select-picture-card > .ant-upload { + display: table-cell; + width: 100%; + height: 100%; + padding: 8px; + text-align: center; + vertical-align: middle; +} +.ant-upload.ant-upload-select-picture-card:hover { + border-color: #004691; +} +.ant-upload.ant-upload-drag { + position: relative; + width: 100%; + height: 100%; + text-align: center; + background: #fafafa; + border: 1px dashed #d9d9d9; + border-radius: 4px; + cursor: pointer; + transition: border-color 0.3s; +} +.ant-upload.ant-upload-drag .ant-upload { + padding: 16px 0; +} +.ant-upload.ant-upload-drag.ant-upload-drag-hover:not(.ant-upload-disabled) { + border-color: #00306b; +} +.ant-upload.ant-upload-drag.ant-upload-disabled { + cursor: not-allowed; +} +.ant-upload.ant-upload-drag .ant-upload-btn { + display: table; + height: 100%; +} +.ant-upload.ant-upload-drag .ant-upload-drag-container { + display: table-cell; + vertical-align: middle; +} +.ant-upload.ant-upload-drag:not(.ant-upload-disabled):hover { + border-color: #195e9e; +} +.ant-upload.ant-upload-drag p.ant-upload-drag-icon { + margin-bottom: 20px; +} +.ant-upload.ant-upload-drag p.ant-upload-drag-icon .anticon { + color: #195e9e; + font-size: 48px; +} +.ant-upload.ant-upload-drag p.ant-upload-text { + margin: 0 0 4px; + color: rgba(0, 0, 0, 0.85); + font-size: 17px; +} +.ant-upload.ant-upload-drag p.ant-upload-hint { + color: rgba(0, 0, 0, 0.45); + font-size: 15px; +} +.ant-upload.ant-upload-drag .anticon-plus { + color: rgba(0, 0, 0, 0.25); + font-size: 30px; + transition: all 0.3s; +} +.ant-upload.ant-upload-drag .anticon-plus:hover { + color: rgba(0, 0, 0, 0.45); +} +.ant-upload.ant-upload-drag:hover .anticon-plus { + color: rgba(0, 0, 0, 0.45); +} +.ant-upload-picture-card-wrapper { + zoom: 1; + display: inline-block; + width: 100%; +} +.ant-upload-picture-card-wrapper::before, +.ant-upload-picture-card-wrapper::after { + display: table; + content: ''; +} +.ant-upload-picture-card-wrapper::after { + clear: both; +} +.ant-upload-picture-card-wrapper::before, +.ant-upload-picture-card-wrapper::after { + display: table; + content: ''; +} +.ant-upload-picture-card-wrapper::after { + clear: both; +} +.ant-upload-list { + box-sizing: border-box; + margin: 0; + padding: 0; + color: rgba(0, 0, 0, 0.65); + font-size: 15px; + font-variant: tabular-nums; + line-height: 1.5; + list-style: none; + font-feature-settings: 'tnum'; + zoom: 1; +} +.ant-upload-list::before, +.ant-upload-list::after { + display: table; + content: ''; +} +.ant-upload-list::after { + clear: both; +} +.ant-upload-list::before, +.ant-upload-list::after { + display: table; + content: ''; +} +.ant-upload-list::after { + clear: both; +} +.ant-upload-list-item-list-type-text:hover .ant-upload-list-item-name-icon-count-1 { + padding-right: 14px; +} +.ant-upload-list-item-list-type-text:hover .ant-upload-list-item-name-icon-count-2 { + padding-right: 28px; +} +.ant-upload-list-item { + position: relative; + height: 22px; + margin-top: 8px; + font-size: 15px; +} +.ant-upload-list-item-name { + display: inline-block; + width: 100%; + padding-left: 23px; + overflow: hidden; + white-space: nowrap; + text-overflow: ellipsis; +} +.ant-upload-list-item-name-icon-count-1 { + padding-right: 14px; +} +.ant-upload-list-item-card-actions { + position: absolute; + right: 0; + opacity: 0; +} +.ant-upload-list-item-card-actions.picture { + top: 25px; + line-height: 1; + opacity: 1; +} +.ant-upload-list-item-card-actions .anticon { + padding-right: 6px; + color: rgba(0, 0, 0, 0.45); +} +.ant-upload-list-item-info { + height: 100%; + padding: 0 12px 0 4px; + transition: background-color 0.3s; +} +.ant-upload-list-item-info > span { + display: block; + width: 100%; + height: 100%; +} +.ant-upload-list-item-info .anticon-loading, +.ant-upload-list-item-info .anticon-paper-clip { + position: absolute; + top: 5.5px; + color: rgba(0, 0, 0, 0.45); + font-size: 15px; +} +.ant-upload-list-item .anticon-close { + display: inline-block; + font-size: 12px; + font-size: 10px \9; + transform: scale(0.83333333) rotate(0deg); + position: absolute; + top: 6px; + right: 4px; + color: rgba(0, 0, 0, 0.45); + line-height: 0; + cursor: pointer; + opacity: 0; + transition: all 0.3s; +} +:root .ant-upload-list-item .anticon-close { + font-size: 12px; +} +.ant-upload-list-item .anticon-close:hover { + color: rgba(0, 0, 0, 0.65); +} +.ant-upload-list-item:hover .ant-upload-list-item-info { + background-color: #bccad1; +} +.ant-upload-list-item:hover .anticon-close { + opacity: 1; +} +.ant-upload-list-item:hover .ant-upload-list-item-card-actions { + opacity: 1; +} +.ant-upload-list-item-error, +.ant-upload-list-item-error .anticon-paper-clip, +.ant-upload-list-item-error .ant-upload-list-item-name { + color: #f5222d; +} +.ant-upload-list-item-error .ant-upload-list-item-card-actions { + opacity: 1; +} +.ant-upload-list-item-error .ant-upload-list-item-card-actions .anticon { + color: #f5222d; +} +.ant-upload-list-item-progress { + position: absolute; + bottom: -12px; + width: 100%; + padding-left: 27px; + font-size: 15px; + line-height: 0; +} +.ant-upload-list-picture .ant-upload-list-item, +.ant-upload-list-picture-card .ant-upload-list-item { + position: relative; + height: 66px; + padding: 8px; + border: 1px solid #d9d9d9; + border-radius: 4px; +} +.ant-upload-list-picture .ant-upload-list-item:hover, +.ant-upload-list-picture-card .ant-upload-list-item:hover { + background: transparent; +} +.ant-upload-list-picture .ant-upload-list-item-error, +.ant-upload-list-picture-card .ant-upload-list-item-error { + border-color: #f5222d; +} +.ant-upload-list-picture .ant-upload-list-item-info, +.ant-upload-list-picture-card .ant-upload-list-item-info { + padding: 0; +} +.ant-upload-list-picture .ant-upload-list-item:hover .ant-upload-list-item-info, +.ant-upload-list-picture-card .ant-upload-list-item:hover .ant-upload-list-item-info { + background: transparent; +} +.ant-upload-list-picture .ant-upload-list-item-uploading, +.ant-upload-list-picture-card .ant-upload-list-item-uploading { + border-style: dashed; +} +.ant-upload-list-picture .ant-upload-list-item-thumbnail, +.ant-upload-list-picture-card .ant-upload-list-item-thumbnail { + position: absolute; + top: 8px; + left: 8px; + width: 48px; + height: 48px; + font-size: 26px; + line-height: 54px; + text-align: center; + opacity: 0.8; +} +.ant-upload-list-picture .ant-upload-list-item-icon, +.ant-upload-list-picture-card .ant-upload-list-item-icon { + position: absolute; + top: 50%; + left: 50%; + font-size: 26px; + transform: translate(-50%, -50%); +} +.ant-upload-list-picture .ant-upload-list-item-image, +.ant-upload-list-picture-card .ant-upload-list-item-image { + max-width: 100%; +} +.ant-upload-list-picture .ant-upload-list-item-thumbnail img, +.ant-upload-list-picture-card .ant-upload-list-item-thumbnail img { + display: block; + width: 48px; + height: 48px; + overflow: hidden; +} +.ant-upload-list-picture .ant-upload-list-item-name, +.ant-upload-list-picture-card .ant-upload-list-item-name { + display: inline-block; + box-sizing: border-box; + max-width: 100%; + margin: 0 0 0 8px; + padding-right: 8px; + padding-left: 48px; + overflow: hidden; + line-height: 44px; + white-space: nowrap; + text-overflow: ellipsis; + transition: all 0.3s; +} +.ant-upload-list-picture .ant-upload-list-item-name-icon-count-1, +.ant-upload-list-picture-card .ant-upload-list-item-name-icon-count-1 { + padding-right: 18px; +} +.ant-upload-list-picture .ant-upload-list-item-name-icon-count-2, +.ant-upload-list-picture-card .ant-upload-list-item-name-icon-count-2 { + padding-right: 36px; +} +.ant-upload-list-picture .ant-upload-list-item-uploading .ant-upload-list-item-name, +.ant-upload-list-picture-card .ant-upload-list-item-uploading .ant-upload-list-item-name { + line-height: 28px; +} +.ant-upload-list-picture .ant-upload-list-item-progress, +.ant-upload-list-picture-card .ant-upload-list-item-progress { + bottom: 14px; + width: calc(100% - 24px); + margin-top: 0; + padding-left: 56px; +} +.ant-upload-list-picture .anticon-close, +.ant-upload-list-picture-card .anticon-close { + position: absolute; + top: 8px; + right: 8px; + line-height: 1; + opacity: 1; +} +.ant-upload-list-picture-card.ant-upload-list::after { + display: none; +} +.ant-upload-list-picture-card-container { + float: left; + width: 104px; + height: 104px; + margin: 0 8px 8px 0; +} +.ant-upload-list-picture-card .ant-upload-list-item { + float: left; + width: 104px; + height: 104px; + margin: 0 8px 8px 0; +} +.ant-upload-list-picture-card .ant-upload-list-item-info { + position: relative; + height: 100%; + overflow: hidden; +} +.ant-upload-list-picture-card .ant-upload-list-item-info::before { + position: absolute; + z-index: 1; + width: 100%; + height: 100%; + background-color: rgba(0, 0, 0, 0.5); + opacity: 0; + transition: all 0.3s; + content: ' '; +} +.ant-upload-list-picture-card .ant-upload-list-item:hover .ant-upload-list-item-info::before { + opacity: 1; +} +.ant-upload-list-picture-card .ant-upload-list-item-actions { + position: absolute; + top: 50%; + left: 50%; + z-index: 10; + white-space: nowrap; + transform: translate(-50%, -50%); + opacity: 0; + transition: all 0.3s; +} +.ant-upload-list-picture-card .ant-upload-list-item-actions .anticon-eye-o, +.ant-upload-list-picture-card .ant-upload-list-item-actions .anticon-download, +.ant-upload-list-picture-card .ant-upload-list-item-actions .anticon-delete { + z-index: 10; + width: 16px; + margin: 0 4px; + color: rgba(255, 255, 255, 0.85); + font-size: 16px; + cursor: pointer; + transition: all 0.3s; +} +.ant-upload-list-picture-card .ant-upload-list-item-actions .anticon-eye-o:hover, +.ant-upload-list-picture-card .ant-upload-list-item-actions .anticon-download:hover, +.ant-upload-list-picture-card .ant-upload-list-item-actions .anticon-delete:hover { + color: #fff; +} +.ant-upload-list-picture-card .ant-upload-list-item-info:hover + .ant-upload-list-item-actions, +.ant-upload-list-picture-card .ant-upload-list-item-actions:hover { + opacity: 1; +} +.ant-upload-list-picture-card .ant-upload-list-item-thumbnail, +.ant-upload-list-picture-card .ant-upload-list-item-thumbnail img { + position: static; + display: block; + width: 100%; + height: 100%; + -o-object-fit: cover; + object-fit: cover; +} +.ant-upload-list-picture-card .ant-upload-list-item-name { + display: none; + margin: 8px 0 0; + padding: 0; + line-height: 1.5; + text-align: center; +} +.ant-upload-list-picture-card .anticon-picture + .ant-upload-list-item-name { + position: absolute; + bottom: 10px; + display: block; +} +.ant-upload-list-picture-card .ant-upload-list-item-uploading.ant-upload-list-item { + background-color: #fafafa; +} +.ant-upload-list-picture-card .ant-upload-list-item-uploading .ant-upload-list-item-info { + height: auto; +} +.ant-upload-list-picture-card .ant-upload-list-item-uploading .ant-upload-list-item-info::before, +.ant-upload-list-picture-card .ant-upload-list-item-uploading .ant-upload-list-item-info .anticon-eye-o, +.ant-upload-list-picture-card .ant-upload-list-item-uploading .ant-upload-list-item-info .anticon-delete { + display: none; +} +.ant-upload-list-picture-card .ant-upload-list-item-uploading-text { + margin-top: 18px; + color: rgba(0, 0, 0, 0.45); +} +.ant-upload-list-picture-card .ant-upload-list-item-progress { + bottom: 32px; + padding-left: 0; +} +.ant-upload-list .ant-upload-success-icon { + color: #52c41a; + font-weight: bold; +} +.ant-upload-list .ant-upload-animate-enter, +.ant-upload-list .ant-upload-animate-leave, +.ant-upload-list .ant-upload-animate-inline-enter, +.ant-upload-list .ant-upload-animate-inline-leave { + -webkit-animation-duration: 0.3s; + animation-duration: 0.3s; + -webkit-animation-fill-mode: cubic-bezier(0.78, 0.14, 0.15, 0.86); + animation-fill-mode: cubic-bezier(0.78, 0.14, 0.15, 0.86); +} +.ant-upload-list .ant-upload-animate-enter { + -webkit-animation-name: uploadAnimateIn; + animation-name: uploadAnimateIn; +} +.ant-upload-list .ant-upload-animate-leave { + -webkit-animation-name: uploadAnimateOut; + animation-name: uploadAnimateOut; +} +.ant-upload-list .ant-upload-animate-inline-enter { + -webkit-animation-name: uploadAnimateInlineIn; + animation-name: uploadAnimateInlineIn; +} +.ant-upload-list .ant-upload-animate-inline-leave { + -webkit-animation-name: uploadAnimateInlineOut; + animation-name: uploadAnimateInlineOut; +} +@-webkit-keyframes uploadAnimateIn { + from { + height: 0; + margin: 0; + padding: 0; + opacity: 0; + } +} +@keyframes uploadAnimateIn { + from { + height: 0; + margin: 0; + padding: 0; + opacity: 0; + } +} +@-webkit-keyframes uploadAnimateOut { + to { + height: 0; + margin: 0; + padding: 0; + opacity: 0; + } +} +@keyframes uploadAnimateOut { + to { + height: 0; + margin: 0; + padding: 0; + opacity: 0; + } +} +@-webkit-keyframes uploadAnimateInlineIn { + from { + width: 0; + height: 0; + margin: 0; + padding: 0; + opacity: 0; + } +} +@keyframes uploadAnimateInlineIn { + from { + width: 0; + height: 0; + margin: 0; + padding: 0; + opacity: 0; + } +} +@-webkit-keyframes uploadAnimateInlineOut { + to { + width: 0; + height: 0; + margin: 0; + padding: 0; + opacity: 0; + } +} +@keyframes uploadAnimateInlineOut { + to { + width: 0; + height: 0; + margin: 0; + padding: 0; + opacity: 0; + } +} +.ant-input, +.ant-select-selection, +.ant-checkbox-inner { + border-color: #004691; +} +.ant-input::-moz-placeholder { + color: rgba(0, 70, 145, 0.6); + font-weight: 500; +} +.ant-input:-ms-input-placeholder { + color: rgba(0, 70, 145, 0.6); + font-weight: 500; +} +.ant-input::placeholder, +.ant-select-selection__placeholder { + color: rgba(0, 70, 145, 0.6); + font-weight: 500; +} +.ant-select-arrow { + color: #004691; +} +.ant-form-item-no-colon::after { + display: none; +} + diff --git a/public/css/app.css b/public/css/app.css index d190291..e06bb69 100644 --- a/public/css/app.css +++ b/public/css/app.css @@ -1,3 +1,188827 @@ -/*! tailwindcss v2.1.2 | MIT License | https://tailwindcss.com*/ +/*! tailwindcss v2.1.2 | MIT License | https://tailwindcss.com */ + +/*! modern-normalize v1.1.0 | MIT License | https://github.com/sindresorhus/modern-normalize */ + +/* +Document +======== +*/ + +/** +Use a better box model (opinionated). +*/ + +*, +::before, +::after { + box-sizing: border-box; +} + +/** +Use a more readable tab size (opinionated). +*/ + +html { + -moz-tab-size: 4; + -o-tab-size: 4; + tab-size: 4; +} + +/** +1. Correct the line height in all browsers. +2. Prevent adjustments of font size after orientation changes in iOS. +*/ + +html { + line-height: 1.15; /* 1 */ + -webkit-text-size-adjust: 100%; /* 2 */ +} + +/* +Sections +======== +*/ + +/** +Remove the margin in all browsers. +*/ + +body { + margin: 0; +} + +/** +Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3) +*/ + +body { + font-family: + system-ui, + -apple-system, /* Firefox supports this but not yet `system-ui` */ + 'Segoe UI', + Roboto, + Helvetica, + Arial, + sans-serif, + 'Apple Color Emoji', + 'Segoe UI Emoji'; +} + +/* +Grouping content +================ +*/ + +/** +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) +*/ + +hr { + height: 0; /* 1 */ + color: inherit; /* 2 */ +} + +/* +Text-level semantics +==================== +*/ + +/** +Add the correct text decoration in Chrome, Edge, and Safari. +*/ + +abbr[title] { + -webkit-text-decoration: underline dotted; + text-decoration: underline dotted; +} + +/** +Add the correct font weight in Edge and Safari. +*/ + +b, +strong { + font-weight: bolder; +} + +/** +1. Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3) +2. Correct the odd 'em' font sizing in all browsers. +*/ + +code, +kbd, +samp, +pre { + font-family: + ui-monospace, + SFMono-Regular, + Consolas, + 'Liberation Mono', + Menlo, + 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; +} + +/* +Tabular data +============ +*/ + +/** +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) +*/ + +table { + text-indent: 0; /* 1 */ + border-color: inherit; /* 2 */ +} + +/* +Forms +===== +*/ + +/** +1. Change the font styles in all browsers. +2. Remove the margin in Firefox and Safari. +*/ + +button, +input, +optgroup, +select, +textarea { + font-family: inherit; /* 1 */ + font-size: 100%; /* 1 */ + line-height: 1.15; /* 1 */ + margin: 0; /* 2 */ +} + +/** +Remove the inheritance of text transform in Edge and Firefox. +1. Remove the inheritance of text transform in Firefox. +*/ + +button, +select { /* 1 */ + text-transform: none; +} + +/** +Correct the inability to style clickable types in iOS and Safari. +*/ + +button, +[type='button'], +[type='reset'], +[type='submit'] { + -webkit-appearance: button; +} + +/** +Remove the inner border and padding in Firefox. +*/ + +::-moz-focus-inner { + border-style: none; + padding: 0; +} + +/** +Restore the focus styles unset by the previous rule. +*/ + +:-moz-focusring { + outline: 1px dotted ButtonText; +} + +/** +Remove the additional ':invalid' styles in Firefox. +See: https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737 +*/ + +:-moz-ui-invalid { + box-shadow: none; +} + +/** +Remove the padding so developers are not caught out when they zero out 'fieldset' elements in all browsers. +*/ + +legend { + padding: 0; +} + +/** +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 */ +} + +/* +Interactive +=========== +*/ + +/* +Add the correct display in Chrome and Safari. +*/ + +summary { + display: list-item; +} + +/** + * Manually forked from SUIT CSS Base: https://github.com/suitcss/base + * A thin layer on top of normalize.css that provides a starting point more + * suitable for web applications. + */ + +/** + * Removes the default spacing and border for appropriate elements. + */ + +blockquote, +dl, +dd, +h1, +h2, +h3, +h4, +h5, +h6, +hr, +figure, +p, +pre { + margin: 0; +} + +button { + background-color: transparent; + background-image: none; +} + +/** + * Work around a Firefox/IE bug where the transparent `button` background + * results in a loss of the default `button` focus styles. + */ + +button:focus { + outline: 1px dotted; + outline: 5px auto -webkit-focus-ring-color; +} + +fieldset { + margin: 0; + padding: 0; +} + +ol, +ul { + list-style: none; + margin: 0; + padding: 0; +} + +/** + * Tailwind custom reset styles + */ + +/** + * 1. Use the user's configured `sans` font-family (with Tailwind's default + * sans-serif font stack as a fallback) as a sane default. + * 2. Use Tailwind's default "normal" line-height so the user isn't forced + * to override it to ensure consistency even when using the default theme. + */ + +html { + font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 1 */ + line-height: 1.5; /* 2 */ +} + +/** + * Inherit font-family and line-height from `html` so users can set them as + * a class directly on the `html` element. + */ + +body { + font-family: inherit; + line-height: inherit; +} + +/** + * 1. Prevent padding and border from affecting element width. + * + * We used to set this in the html element and inherit from + * the parent element for everything else. This caused issues + * in shadow-dom-enhanced elements like
where the content + * is wrapped by a div with box-sizing set to `content-box`. + * + * https://github.com/mozdevs/cssremedy/issues/4 + * + * + * 2. Allow adding a border to an element by just adding a border-width. + * + * By default, the way the browser specifies that an element should have no + * border is by setting it's border-style to `none` in the user-agent + * stylesheet. + * + * In order to easily add borders to elements by just setting the `border-width` + * property, we change the default border-style for all elements to `solid`, and + * use border-width to hide them instead. This way our `border` utilities only + * need to set the `border-width` property instead of the entire `border` + * shorthand, making our border utilities much more straightforward to compose. + * + * https://github.com/tailwindcss/tailwindcss/pull/116 + */ + +*, +::before, +::after { + box-sizing: border-box; /* 1 */ + border-width: 0; /* 2 */ + border-style: solid; /* 2 */ + border-color: #e5e7eb; /* 2 */ +} + +/* + * Ensure horizontal rules are visible by default + */ + +hr { + border-top-width: 1px; +} + +/** + * Undo the `border-style: none` reset that Normalize applies to images so that + * our `border-{width}` utilities have the expected effect. + * + * The Normalize reset is unnecessary for us since we default the border-width + * to 0 on all elements. + * + * https://github.com/tailwindcss/tailwindcss/issues/362 + */ + +img { + border-style: solid; +} + +textarea { + resize: vertical; +} + +input::-moz-placeholder, textarea::-moz-placeholder { + opacity: 1; + color: #9ca3af; +} + +input:-ms-input-placeholder, textarea:-ms-input-placeholder { + opacity: 1; + color: #9ca3af; +} + +input::placeholder, +textarea::placeholder { + opacity: 1; + color: #9ca3af; +} + +button, +[role="button"] { + cursor: pointer; +} + +table { + border-collapse: collapse; +} + +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; +} + +/** + * Reset form element properties that are easy to forget to + * style explicitly so you don't inadvertently introduce + * styles that deviate from your design system. These styles + * supplement a partial reset that is already applied by + * normalize.css. + */ + +button, +input, +optgroup, +select, +textarea { + padding: 0; + line-height: inherit; + color: inherit; +} + +/** + * Use the configured 'mono' font family for elements that + * are expected to be rendered with a monospace font, falling + * back to the system monospace stack if there is no configured + * 'mono' font family. + */ + +pre, +code, +kbd, +samp { + font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; +} + +/** + * Make replaced elements `display: block` by default as that's + * the behavior you want almost all of the time. Inspired by + * CSS Remedy, with `svg` added as well. + * + * https://github.com/mozdevs/cssremedy/issues/14 + */ + +img, +svg, +video, +canvas, +audio, +iframe, +embed, +object { + display: block; + vertical-align: middle; +} + +/** + * 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; +} + +.container { + width: 100%; +} + +@media (min-width: 640px) { + .container { + max-width: 640px; + } +} + +@media (min-width: 768px) { + .container { + max-width: 768px; + } +} + +@media (min-width: 1024px) { + .container { + max-width: 1024px; + } +} + +@media (min-width: 1280px) { + .container { + max-width: 1280px; + } +} + +@media (min-width: 1536px) { + .container { + max-width: 1536px; + } +} + +.space-y-0 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(0px * var(--tw-space-y-reverse)) !important; +} + +.space-x-0 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(0px * var(--tw-space-x-reverse)) !important; + margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))) !important; +} + +.space-y-1 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(0.25rem * var(--tw-space-y-reverse)) !important; +} + +.space-x-1 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(0.25rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(0.25rem * calc(1 - var(--tw-space-x-reverse))) !important; +} + +.space-y-2 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(0.5rem * var(--tw-space-y-reverse)) !important; +} + +.space-x-2 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(0.5rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse))) !important; +} + +.space-y-3 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(0.75rem * var(--tw-space-y-reverse)) !important; +} + +.space-x-3 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(0.75rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(0.75rem * calc(1 - var(--tw-space-x-reverse))) !important; +} + +.space-y-4 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(1rem * var(--tw-space-y-reverse)) !important; +} + +.space-x-4 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(1rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse))) !important; +} + +.space-y-5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(1.25rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(1.25rem * var(--tw-space-y-reverse)) !important; +} + +.space-x-5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(1.25rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(1.25rem * calc(1 - var(--tw-space-x-reverse))) !important; +} + +.space-y-6 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(1.5rem * var(--tw-space-y-reverse)) !important; +} + +.space-x-6 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(1.5rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(1.5rem * calc(1 - var(--tw-space-x-reverse))) !important; +} + +.space-y-7 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(1.75rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(1.75rem * var(--tw-space-y-reverse)) !important; +} + +.space-x-7 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(1.75rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(1.75rem * calc(1 - var(--tw-space-x-reverse))) !important; +} + +.space-y-8 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(2rem * var(--tw-space-y-reverse)) !important; +} + +.space-x-8 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(2rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(2rem * calc(1 - var(--tw-space-x-reverse))) !important; +} + +.space-y-9 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(2.25rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(2.25rem * var(--tw-space-y-reverse)) !important; +} + +.space-x-9 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(2.25rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(2.25rem * calc(1 - var(--tw-space-x-reverse))) !important; +} + +.space-y-10 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(2.5rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(2.5rem * var(--tw-space-y-reverse)) !important; +} + +.space-x-10 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(2.5rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(2.5rem * calc(1 - var(--tw-space-x-reverse))) !important; +} + +.space-y-11 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(2.75rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(2.75rem * var(--tw-space-y-reverse)) !important; +} + +.space-x-11 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(2.75rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(2.75rem * calc(1 - var(--tw-space-x-reverse))) !important; +} + +.space-y-12 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(3rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(3rem * var(--tw-space-y-reverse)) !important; +} + +.space-x-12 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(3rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(3rem * calc(1 - var(--tw-space-x-reverse))) !important; +} + +.space-y-14 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(3.5rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(3.5rem * var(--tw-space-y-reverse)) !important; +} + +.space-x-14 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(3.5rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(3.5rem * calc(1 - var(--tw-space-x-reverse))) !important; +} + +.space-y-16 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(4rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(4rem * var(--tw-space-y-reverse)) !important; +} + +.space-x-16 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(4rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(4rem * calc(1 - var(--tw-space-x-reverse))) !important; +} + +.space-y-20 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(5rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(5rem * var(--tw-space-y-reverse)) !important; +} + +.space-x-20 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(5rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(5rem * calc(1 - var(--tw-space-x-reverse))) !important; +} + +.space-y-24 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(6rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(6rem * var(--tw-space-y-reverse)) !important; +} + +.space-x-24 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(6rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(6rem * calc(1 - var(--tw-space-x-reverse))) !important; +} + +.space-y-28 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(7rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(7rem * var(--tw-space-y-reverse)) !important; +} + +.space-x-28 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(7rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(7rem * calc(1 - var(--tw-space-x-reverse))) !important; +} + +.space-y-32 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(8rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(8rem * var(--tw-space-y-reverse)) !important; +} + +.space-x-32 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(8rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(8rem * calc(1 - var(--tw-space-x-reverse))) !important; +} + +.space-y-36 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(9rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(9rem * var(--tw-space-y-reverse)) !important; +} + +.space-x-36 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(9rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(9rem * calc(1 - var(--tw-space-x-reverse))) !important; +} + +.space-y-40 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(10rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(10rem * var(--tw-space-y-reverse)) !important; +} + +.space-x-40 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(10rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(10rem * calc(1 - var(--tw-space-x-reverse))) !important; +} + +.space-y-44 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(11rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(11rem * var(--tw-space-y-reverse)) !important; +} + +.space-x-44 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(11rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(11rem * calc(1 - var(--tw-space-x-reverse))) !important; +} + +.space-y-48 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(12rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(12rem * var(--tw-space-y-reverse)) !important; +} + +.space-x-48 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(12rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(12rem * calc(1 - var(--tw-space-x-reverse))) !important; +} + +.space-y-52 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(13rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(13rem * var(--tw-space-y-reverse)) !important; +} + +.space-x-52 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(13rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(13rem * calc(1 - var(--tw-space-x-reverse))) !important; +} + +.space-y-56 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(14rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(14rem * var(--tw-space-y-reverse)) !important; +} + +.space-x-56 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(14rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(14rem * calc(1 - var(--tw-space-x-reverse))) !important; +} + +.space-y-60 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(15rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(15rem * var(--tw-space-y-reverse)) !important; +} + +.space-x-60 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(15rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(15rem * calc(1 - var(--tw-space-x-reverse))) !important; +} + +.space-y-64 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(16rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(16rem * var(--tw-space-y-reverse)) !important; +} + +.space-x-64 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(16rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(16rem * calc(1 - var(--tw-space-x-reverse))) !important; +} + +.space-y-72 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(18rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(18rem * var(--tw-space-y-reverse)) !important; +} + +.space-x-72 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(18rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(18rem * calc(1 - var(--tw-space-x-reverse))) !important; +} + +.space-y-80 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(20rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(20rem * var(--tw-space-y-reverse)) !important; +} + +.space-x-80 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(20rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(20rem * calc(1 - var(--tw-space-x-reverse))) !important; +} + +.space-y-96 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(24rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(24rem * var(--tw-space-y-reverse)) !important; +} + +.space-x-96 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(24rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(24rem * calc(1 - var(--tw-space-x-reverse))) !important; +} + +.space-y-px > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(1px * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(1px * var(--tw-space-y-reverse)) !important; +} + +.space-x-px > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(1px * var(--tw-space-x-reverse)) !important; + margin-left: calc(1px * calc(1 - var(--tw-space-x-reverse))) !important; +} + +.space-y-0\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(0.125rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(0.125rem * var(--tw-space-y-reverse)) !important; +} + +.space-x-0\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(0.125rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(0.125rem * calc(1 - var(--tw-space-x-reverse))) !important; +} + +.space-y-1\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(0.375rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(0.375rem * var(--tw-space-y-reverse)) !important; +} + +.space-x-1\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(0.375rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(0.375rem * calc(1 - var(--tw-space-x-reverse))) !important; +} + +.space-y-2\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(0.625rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(0.625rem * var(--tw-space-y-reverse)) !important; +} + +.space-x-2\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(0.625rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(0.625rem * calc(1 - var(--tw-space-x-reverse))) !important; +} + +.space-y-3\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(0.875rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(0.875rem * var(--tw-space-y-reverse)) !important; +} + +.space-x-3\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(0.875rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(0.875rem * calc(1 - var(--tw-space-x-reverse))) !important; +} + +.-space-y-0 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(0px * var(--tw-space-y-reverse)) !important; +} + +.-space-x-0 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(0px * var(--tw-space-x-reverse)) !important; + margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))) !important; +} + +.-space-y-1 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-0.25rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-0.25rem * var(--tw-space-y-reverse)) !important; +} + +.-space-x-1 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-0.25rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-0.25rem * calc(1 - var(--tw-space-x-reverse))) !important; +} + +.-space-y-2 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-0.5rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-0.5rem * var(--tw-space-y-reverse)) !important; +} + +.-space-x-2 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-0.5rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-0.5rem * calc(1 - var(--tw-space-x-reverse))) !important; +} + +.-space-y-3 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-0.75rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-0.75rem * var(--tw-space-y-reverse)) !important; +} + +.-space-x-3 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-0.75rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-0.75rem * calc(1 - var(--tw-space-x-reverse))) !important; +} + +.-space-y-4 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-1rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-1rem * var(--tw-space-y-reverse)) !important; +} + +.-space-x-4 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-1rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-1rem * calc(1 - var(--tw-space-x-reverse))) !important; +} + +.-space-y-5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-1.25rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-1.25rem * var(--tw-space-y-reverse)) !important; +} + +.-space-x-5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-1.25rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-1.25rem * calc(1 - var(--tw-space-x-reverse))) !important; +} + +.-space-y-6 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-1.5rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-1.5rem * var(--tw-space-y-reverse)) !important; +} + +.-space-x-6 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-1.5rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-1.5rem * calc(1 - var(--tw-space-x-reverse))) !important; +} + +.-space-y-7 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-1.75rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-1.75rem * var(--tw-space-y-reverse)) !important; +} + +.-space-x-7 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-1.75rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-1.75rem * calc(1 - var(--tw-space-x-reverse))) !important; +} + +.-space-y-8 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-2rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-2rem * var(--tw-space-y-reverse)) !important; +} + +.-space-x-8 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-2rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-2rem * calc(1 - var(--tw-space-x-reverse))) !important; +} + +.-space-y-9 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-2.25rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-2.25rem * var(--tw-space-y-reverse)) !important; +} + +.-space-x-9 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-2.25rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-2.25rem * calc(1 - var(--tw-space-x-reverse))) !important; +} + +.-space-y-10 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-2.5rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-2.5rem * var(--tw-space-y-reverse)) !important; +} + +.-space-x-10 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-2.5rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-2.5rem * calc(1 - var(--tw-space-x-reverse))) !important; +} + +.-space-y-11 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-2.75rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-2.75rem * var(--tw-space-y-reverse)) !important; +} + +.-space-x-11 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-2.75rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-2.75rem * calc(1 - var(--tw-space-x-reverse))) !important; +} + +.-space-y-12 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-3rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-3rem * var(--tw-space-y-reverse)) !important; +} + +.-space-x-12 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-3rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-3rem * calc(1 - var(--tw-space-x-reverse))) !important; +} + +.-space-y-14 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-3.5rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-3.5rem * var(--tw-space-y-reverse)) !important; +} + +.-space-x-14 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-3.5rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-3.5rem * calc(1 - var(--tw-space-x-reverse))) !important; +} + +.-space-y-16 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-4rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-4rem * var(--tw-space-y-reverse)) !important; +} + +.-space-x-16 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-4rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-4rem * calc(1 - var(--tw-space-x-reverse))) !important; +} + +.-space-y-20 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-5rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-5rem * var(--tw-space-y-reverse)) !important; +} + +.-space-x-20 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-5rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-5rem * calc(1 - var(--tw-space-x-reverse))) !important; +} + +.-space-y-24 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-6rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-6rem * var(--tw-space-y-reverse)) !important; +} + +.-space-x-24 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-6rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-6rem * calc(1 - var(--tw-space-x-reverse))) !important; +} + +.-space-y-28 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-7rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-7rem * var(--tw-space-y-reverse)) !important; +} + +.-space-x-28 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-7rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-7rem * calc(1 - var(--tw-space-x-reverse))) !important; +} + +.-space-y-32 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-8rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-8rem * var(--tw-space-y-reverse)) !important; +} + +.-space-x-32 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-8rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-8rem * calc(1 - var(--tw-space-x-reverse))) !important; +} + +.-space-y-36 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-9rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-9rem * var(--tw-space-y-reverse)) !important; +} + +.-space-x-36 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-9rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-9rem * calc(1 - var(--tw-space-x-reverse))) !important; +} + +.-space-y-40 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-10rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-10rem * var(--tw-space-y-reverse)) !important; +} + +.-space-x-40 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-10rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-10rem * calc(1 - var(--tw-space-x-reverse))) !important; +} + +.-space-y-44 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-11rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-11rem * var(--tw-space-y-reverse)) !important; +} + +.-space-x-44 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-11rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-11rem * calc(1 - var(--tw-space-x-reverse))) !important; +} + +.-space-y-48 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-12rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-12rem * var(--tw-space-y-reverse)) !important; +} + +.-space-x-48 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-12rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-12rem * calc(1 - var(--tw-space-x-reverse))) !important; +} + +.-space-y-52 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-13rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-13rem * var(--tw-space-y-reverse)) !important; +} + +.-space-x-52 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-13rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-13rem * calc(1 - var(--tw-space-x-reverse))) !important; +} + +.-space-y-56 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-14rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-14rem * var(--tw-space-y-reverse)) !important; +} + +.-space-x-56 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-14rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-14rem * calc(1 - var(--tw-space-x-reverse))) !important; +} + +.-space-y-60 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-15rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-15rem * var(--tw-space-y-reverse)) !important; +} + +.-space-x-60 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-15rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-15rem * calc(1 - var(--tw-space-x-reverse))) !important; +} + +.-space-y-64 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-16rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-16rem * var(--tw-space-y-reverse)) !important; +} + +.-space-x-64 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-16rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-16rem * calc(1 - var(--tw-space-x-reverse))) !important; +} + +.-space-y-72 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-18rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-18rem * var(--tw-space-y-reverse)) !important; +} + +.-space-x-72 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-18rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-18rem * calc(1 - var(--tw-space-x-reverse))) !important; +} + +.-space-y-80 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-20rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-20rem * var(--tw-space-y-reverse)) !important; +} + +.-space-x-80 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-20rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-20rem * calc(1 - var(--tw-space-x-reverse))) !important; +} + +.-space-y-96 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-24rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-24rem * var(--tw-space-y-reverse)) !important; +} + +.-space-x-96 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-24rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-24rem * calc(1 - var(--tw-space-x-reverse))) !important; +} + +.-space-y-px > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-1px * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-1px * var(--tw-space-y-reverse)) !important; +} + +.-space-x-px > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-1px * var(--tw-space-x-reverse)) !important; + margin-left: calc(-1px * calc(1 - var(--tw-space-x-reverse))) !important; +} + +.-space-y-0\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-0.125rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-0.125rem * var(--tw-space-y-reverse)) !important; +} + +.-space-x-0\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-0.125rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-0.125rem * calc(1 - var(--tw-space-x-reverse))) !important; +} + +.-space-y-1\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-0.375rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-0.375rem * var(--tw-space-y-reverse)) !important; +} + +.-space-x-1\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-0.375rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-0.375rem * calc(1 - var(--tw-space-x-reverse))) !important; +} + +.-space-y-2\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-0.625rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-0.625rem * var(--tw-space-y-reverse)) !important; +} + +.-space-x-2\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-0.625rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-0.625rem * calc(1 - var(--tw-space-x-reverse))) !important; +} + +.-space-y-3\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-0.875rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-0.875rem * var(--tw-space-y-reverse)) !important; +} + +.-space-x-3\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-0.875rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-0.875rem * calc(1 - var(--tw-space-x-reverse))) !important; +} + +.space-y-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 1 !important; +} + +.space-x-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 1 !important; +} + +.divide-y-0 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0 !important; + border-top-width: calc(0px * calc(1 - var(--tw-divide-y-reverse))) !important; + border-bottom-width: calc(0px * var(--tw-divide-y-reverse)) !important; +} + +.divide-x-0 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-x-reverse: 0 !important; + border-right-width: calc(0px * var(--tw-divide-x-reverse)) !important; + border-left-width: calc(0px * calc(1 - var(--tw-divide-x-reverse))) !important; +} + +.divide-y-2 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0 !important; + border-top-width: calc(2px * calc(1 - var(--tw-divide-y-reverse))) !important; + border-bottom-width: calc(2px * var(--tw-divide-y-reverse)) !important; +} + +.divide-x-2 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-x-reverse: 0 !important; + border-right-width: calc(2px * var(--tw-divide-x-reverse)) !important; + border-left-width: calc(2px * calc(1 - var(--tw-divide-x-reverse))) !important; +} + +.divide-y-4 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0 !important; + border-top-width: calc(4px * calc(1 - var(--tw-divide-y-reverse))) !important; + border-bottom-width: calc(4px * var(--tw-divide-y-reverse)) !important; +} + +.divide-x-4 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-x-reverse: 0 !important; + border-right-width: calc(4px * var(--tw-divide-x-reverse)) !important; + border-left-width: calc(4px * calc(1 - var(--tw-divide-x-reverse))) !important; +} + +.divide-y-8 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0 !important; + border-top-width: calc(8px * calc(1 - var(--tw-divide-y-reverse))) !important; + border-bottom-width: calc(8px * var(--tw-divide-y-reverse)) !important; +} + +.divide-x-8 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-x-reverse: 0 !important; + border-right-width: calc(8px * var(--tw-divide-x-reverse)) !important; + border-left-width: calc(8px * calc(1 - var(--tw-divide-x-reverse))) !important; +} + +.divide-y > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0 !important; + border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse))) !important; + border-bottom-width: calc(1px * var(--tw-divide-y-reverse)) !important; +} + +.divide-x > :not([hidden]) ~ :not([hidden]) { + --tw-divide-x-reverse: 0 !important; + border-right-width: calc(1px * var(--tw-divide-x-reverse)) !important; + border-left-width: calc(1px * calc(1 - var(--tw-divide-x-reverse))) !important; +} + +.divide-y-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 1 !important; +} + +.divide-x-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-divide-x-reverse: 1 !important; +} + +.divide-transparent > :not([hidden]) ~ :not([hidden]) { + border-color: transparent !important; +} + +.divide-current > :not([hidden]) ~ :not([hidden]) { + border-color: currentColor !important; +} + +.divide-black > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(0, 0, 0, var(--tw-divide-opacity)) !important; +} + +.divide-white > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(255, 255, 255, var(--tw-divide-opacity)) !important; +} + +.divide-gray-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(249, 250, 251, var(--tw-divide-opacity)) !important; +} + +.divide-gray-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(243, 244, 246, var(--tw-divide-opacity)) !important; +} + +.divide-gray-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(229, 231, 235, var(--tw-divide-opacity)) !important; +} + +.divide-gray-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(209, 213, 219, var(--tw-divide-opacity)) !important; +} + +.divide-gray-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(156, 163, 175, var(--tw-divide-opacity)) !important; +} + +.divide-gray-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(107, 114, 128, var(--tw-divide-opacity)) !important; +} + +.divide-gray-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(75, 85, 99, var(--tw-divide-opacity)) !important; +} + +.divide-gray-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(55, 65, 81, var(--tw-divide-opacity)) !important; +} + +.divide-gray-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(31, 41, 55, var(--tw-divide-opacity)) !important; +} + +.divide-gray-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(17, 24, 39, var(--tw-divide-opacity)) !important; +} + +.divide-red-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(254, 242, 242, var(--tw-divide-opacity)) !important; +} + +.divide-red-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(254, 226, 226, var(--tw-divide-opacity)) !important; +} + +.divide-red-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(254, 202, 202, var(--tw-divide-opacity)) !important; +} + +.divide-red-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(252, 165, 165, var(--tw-divide-opacity)) !important; +} + +.divide-red-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(248, 113, 113, var(--tw-divide-opacity)) !important; +} + +.divide-red-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(239, 68, 68, var(--tw-divide-opacity)) !important; +} + +.divide-red-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(220, 38, 38, var(--tw-divide-opacity)) !important; +} + +.divide-red-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(185, 28, 28, var(--tw-divide-opacity)) !important; +} + +.divide-red-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(153, 27, 27, var(--tw-divide-opacity)) !important; +} + +.divide-red-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(127, 29, 29, var(--tw-divide-opacity)) !important; +} + +.divide-yellow-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(255, 251, 235, var(--tw-divide-opacity)) !important; +} + +.divide-yellow-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(254, 243, 199, var(--tw-divide-opacity)) !important; +} + +.divide-yellow-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(253, 230, 138, var(--tw-divide-opacity)) !important; +} + +.divide-yellow-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(252, 211, 77, var(--tw-divide-opacity)) !important; +} + +.divide-yellow-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(251, 191, 36, var(--tw-divide-opacity)) !important; +} + +.divide-yellow-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(245, 158, 11, var(--tw-divide-opacity)) !important; +} + +.divide-yellow-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(217, 119, 6, var(--tw-divide-opacity)) !important; +} + +.divide-yellow-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(180, 83, 9, var(--tw-divide-opacity)) !important; +} + +.divide-yellow-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(146, 64, 14, var(--tw-divide-opacity)) !important; +} + +.divide-yellow-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(120, 53, 15, var(--tw-divide-opacity)) !important; +} + +.divide-green-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(236, 253, 245, var(--tw-divide-opacity)) !important; +} + +.divide-green-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(209, 250, 229, var(--tw-divide-opacity)) !important; +} + +.divide-green-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(167, 243, 208, var(--tw-divide-opacity)) !important; +} + +.divide-green-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(110, 231, 183, var(--tw-divide-opacity)) !important; +} + +.divide-green-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(52, 211, 153, var(--tw-divide-opacity)) !important; +} + +.divide-green-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(16, 185, 129, var(--tw-divide-opacity)) !important; +} + +.divide-green-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(5, 150, 105, var(--tw-divide-opacity)) !important; +} + +.divide-green-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(4, 120, 87, var(--tw-divide-opacity)) !important; +} + +.divide-green-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(6, 95, 70, var(--tw-divide-opacity)) !important; +} + +.divide-green-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(6, 78, 59, var(--tw-divide-opacity)) !important; +} + +.divide-blue-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(239, 246, 255, var(--tw-divide-opacity)) !important; +} + +.divide-blue-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(219, 234, 254, var(--tw-divide-opacity)) !important; +} + +.divide-blue-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(191, 219, 254, var(--tw-divide-opacity)) !important; +} + +.divide-blue-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(147, 197, 253, var(--tw-divide-opacity)) !important; +} + +.divide-blue-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(96, 165, 250, var(--tw-divide-opacity)) !important; +} + +.divide-blue-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(59, 130, 246, var(--tw-divide-opacity)) !important; +} + +.divide-blue-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(37, 99, 235, var(--tw-divide-opacity)) !important; +} + +.divide-blue-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(29, 78, 216, var(--tw-divide-opacity)) !important; +} + +.divide-blue-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(30, 64, 175, var(--tw-divide-opacity)) !important; +} + +.divide-blue-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(30, 58, 138, var(--tw-divide-opacity)) !important; +} + +.divide-indigo-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(238, 242, 255, var(--tw-divide-opacity)) !important; +} + +.divide-indigo-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(224, 231, 255, var(--tw-divide-opacity)) !important; +} + +.divide-indigo-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(199, 210, 254, var(--tw-divide-opacity)) !important; +} + +.divide-indigo-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(165, 180, 252, var(--tw-divide-opacity)) !important; +} + +.divide-indigo-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(129, 140, 248, var(--tw-divide-opacity)) !important; +} + +.divide-indigo-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(99, 102, 241, var(--tw-divide-opacity)) !important; +} + +.divide-indigo-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(79, 70, 229, var(--tw-divide-opacity)) !important; +} + +.divide-indigo-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(67, 56, 202, var(--tw-divide-opacity)) !important; +} + +.divide-indigo-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(55, 48, 163, var(--tw-divide-opacity)) !important; +} + +.divide-indigo-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(49, 46, 129, var(--tw-divide-opacity)) !important; +} + +.divide-purple-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(245, 243, 255, var(--tw-divide-opacity)) !important; +} + +.divide-purple-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(237, 233, 254, var(--tw-divide-opacity)) !important; +} + +.divide-purple-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(221, 214, 254, var(--tw-divide-opacity)) !important; +} + +.divide-purple-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(196, 181, 253, var(--tw-divide-opacity)) !important; +} + +.divide-purple-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(167, 139, 250, var(--tw-divide-opacity)) !important; +} + +.divide-purple-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(139, 92, 246, var(--tw-divide-opacity)) !important; +} + +.divide-purple-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(124, 58, 237, var(--tw-divide-opacity)) !important; +} + +.divide-purple-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(109, 40, 217, var(--tw-divide-opacity)) !important; +} + +.divide-purple-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(91, 33, 182, var(--tw-divide-opacity)) !important; +} + +.divide-purple-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(76, 29, 149, var(--tw-divide-opacity)) !important; +} + +.divide-pink-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(253, 242, 248, var(--tw-divide-opacity)) !important; +} + +.divide-pink-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(252, 231, 243, var(--tw-divide-opacity)) !important; +} + +.divide-pink-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(251, 207, 232, var(--tw-divide-opacity)) !important; +} + +.divide-pink-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(249, 168, 212, var(--tw-divide-opacity)) !important; +} + +.divide-pink-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(244, 114, 182, var(--tw-divide-opacity)) !important; +} + +.divide-pink-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(236, 72, 153, var(--tw-divide-opacity)) !important; +} + +.divide-pink-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(219, 39, 119, var(--tw-divide-opacity)) !important; +} + +.divide-pink-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(190, 24, 93, var(--tw-divide-opacity)) !important; +} + +.divide-pink-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(157, 23, 77, var(--tw-divide-opacity)) !important; +} + +.divide-pink-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(131, 24, 67, var(--tw-divide-opacity)) !important; +} + +.divide-primary > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(0, 49, 151, var(--tw-divide-opacity)) !important; +} + +.divide-solid > :not([hidden]) ~ :not([hidden]) { + border-style: solid !important; +} + +.divide-dashed > :not([hidden]) ~ :not([hidden]) { + border-style: dashed !important; +} + +.divide-dotted > :not([hidden]) ~ :not([hidden]) { + border-style: dotted !important; +} + +.divide-double > :not([hidden]) ~ :not([hidden]) { + border-style: double !important; +} + +.divide-none > :not([hidden]) ~ :not([hidden]) { + border-style: none !important; +} + +.divide-opacity-0 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0 !important; +} + +.divide-opacity-5 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.05 !important; +} + +.divide-opacity-10 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.1 !important; +} + +.divide-opacity-20 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.2 !important; +} + +.divide-opacity-25 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.25 !important; +} + +.divide-opacity-30 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.3 !important; +} + +.divide-opacity-40 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.4 !important; +} + +.divide-opacity-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.5 !important; +} + +.divide-opacity-60 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.6 !important; +} + +.divide-opacity-70 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.7 !important; +} + +.divide-opacity-75 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.75 !important; +} + +.divide-opacity-80 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.8 !important; +} + +.divide-opacity-90 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.9 !important; +} + +.divide-opacity-95 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.95 !important; +} + +.divide-opacity-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; +} + +.sr-only { + position: absolute !important; + width: 1px !important; + height: 1px !important; + padding: 0 !important; + margin: -1px !important; + overflow: hidden !important; + clip: rect(0, 0, 0, 0) !important; + white-space: nowrap !important; + border-width: 0 !important; +} + +.not-sr-only { + position: static !important; + width: auto !important; + height: auto !important; + padding: 0 !important; + margin: 0 !important; + overflow: visible !important; + clip: auto !important; + white-space: normal !important; +} + +.focus-within\:sr-only:focus-within { + position: absolute !important; + width: 1px !important; + height: 1px !important; + padding: 0 !important; + margin: -1px !important; + overflow: hidden !important; + clip: rect(0, 0, 0, 0) !important; + white-space: nowrap !important; + border-width: 0 !important; +} + +.focus-within\:not-sr-only:focus-within { + position: static !important; + width: auto !important; + height: auto !important; + padding: 0 !important; + margin: 0 !important; + overflow: visible !important; + clip: auto !important; + white-space: normal !important; +} + +.focus\:sr-only:focus { + position: absolute !important; + width: 1px !important; + height: 1px !important; + padding: 0 !important; + margin: -1px !important; + overflow: hidden !important; + clip: rect(0, 0, 0, 0) !important; + white-space: nowrap !important; + border-width: 0 !important; +} + +.focus\:not-sr-only:focus { + position: static !important; + width: auto !important; + height: auto !important; + padding: 0 !important; + margin: 0 !important; + overflow: visible !important; + clip: auto !important; + white-space: normal !important; +} + +.appearance-none { + -webkit-appearance: none !important; + -moz-appearance: none !important; + appearance: none !important; +} + +.bg-fixed { + background-attachment: fixed !important; +} + +.bg-local { + background-attachment: local !important; +} + +.bg-scroll { + background-attachment: scroll !important; +} + +.bg-clip-border { + background-clip: border-box !important; +} + +.bg-clip-padding { + background-clip: padding-box !important; +} + +.bg-clip-content { + background-clip: content-box !important; +} + +.bg-clip-text { + -webkit-background-clip: text !important; + background-clip: text !important; +} + +.bg-transparent { + background-color: transparent !important; +} + +.bg-current { + background-color: currentColor !important; +} + +.bg-black { + --tw-bg-opacity: 1 !important; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important; +} + +.bg-white { + --tw-bg-opacity: 1 !important; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important; +} + +.bg-gray-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)) !important; +} + +.bg-gray-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)) !important; +} + +.bg-gray-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)) !important; +} + +.bg-gray-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)) !important; +} + +.bg-gray-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)) !important; +} + +.bg-gray-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)) !important; +} + +.bg-gray-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)) !important; +} + +.bg-gray-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)) !important; +} + +.bg-gray-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)) !important; +} + +.bg-gray-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)) !important; +} + +.bg-red-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 242, 242, var(--tw-bg-opacity)) !important; +} + +.bg-red-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 226, 226, var(--tw-bg-opacity)) !important; +} + +.bg-red-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 202, 202, var(--tw-bg-opacity)) !important; +} + +.bg-red-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 165, 165, var(--tw-bg-opacity)) !important; +} + +.bg-red-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(248, 113, 113, var(--tw-bg-opacity)) !important; +} + +.bg-red-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(239, 68, 68, var(--tw-bg-opacity)) !important; +} + +.bg-red-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(220, 38, 38, var(--tw-bg-opacity)) !important; +} + +.bg-red-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(185, 28, 28, var(--tw-bg-opacity)) !important; +} + +.bg-red-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(153, 27, 27, var(--tw-bg-opacity)) !important; +} + +.bg-red-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(127, 29, 29, var(--tw-bg-opacity)) !important; +} + +.bg-yellow-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(255, 251, 235, var(--tw-bg-opacity)) !important; +} + +.bg-yellow-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 243, 199, var(--tw-bg-opacity)) !important; +} + +.bg-yellow-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(253, 230, 138, var(--tw-bg-opacity)) !important; +} + +.bg-yellow-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 211, 77, var(--tw-bg-opacity)) !important; +} + +.bg-yellow-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(251, 191, 36, var(--tw-bg-opacity)) !important; +} + +.bg-yellow-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)) !important; +} + +.bg-yellow-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(217, 119, 6, var(--tw-bg-opacity)) !important; +} + +.bg-yellow-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(180, 83, 9, var(--tw-bg-opacity)) !important; +} + +.bg-yellow-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(146, 64, 14, var(--tw-bg-opacity)) !important; +} + +.bg-yellow-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(120, 53, 15, var(--tw-bg-opacity)) !important; +} + +.bg-green-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(236, 253, 245, var(--tw-bg-opacity)) !important; +} + +.bg-green-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(209, 250, 229, var(--tw-bg-opacity)) !important; +} + +.bg-green-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(167, 243, 208, var(--tw-bg-opacity)) !important; +} + +.bg-green-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(110, 231, 183, var(--tw-bg-opacity)) !important; +} + +.bg-green-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(52, 211, 153, var(--tw-bg-opacity)) !important; +} + +.bg-green-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(16, 185, 129, var(--tw-bg-opacity)) !important; +} + +.bg-green-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(5, 150, 105, var(--tw-bg-opacity)) !important; +} + +.bg-green-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(4, 120, 87, var(--tw-bg-opacity)) !important; +} + +.bg-green-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(6, 95, 70, var(--tw-bg-opacity)) !important; +} + +.bg-green-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(6, 78, 59, var(--tw-bg-opacity)) !important; +} + +.bg-blue-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(239, 246, 255, var(--tw-bg-opacity)) !important; +} + +.bg-blue-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(219, 234, 254, var(--tw-bg-opacity)) !important; +} + +.bg-blue-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(191, 219, 254, var(--tw-bg-opacity)) !important; +} + +.bg-blue-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(147, 197, 253, var(--tw-bg-opacity)) !important; +} + +.bg-blue-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(96, 165, 250, var(--tw-bg-opacity)) !important; +} + +.bg-blue-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)) !important; +} + +.bg-blue-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(37, 99, 235, var(--tw-bg-opacity)) !important; +} + +.bg-blue-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(29, 78, 216, var(--tw-bg-opacity)) !important; +} + +.bg-blue-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(30, 64, 175, var(--tw-bg-opacity)) !important; +} + +.bg-blue-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(30, 58, 138, var(--tw-bg-opacity)) !important; +} + +.bg-indigo-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(238, 242, 255, var(--tw-bg-opacity)) !important; +} + +.bg-indigo-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(224, 231, 255, var(--tw-bg-opacity)) !important; +} + +.bg-indigo-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(199, 210, 254, var(--tw-bg-opacity)) !important; +} + +.bg-indigo-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(165, 180, 252, var(--tw-bg-opacity)) !important; +} + +.bg-indigo-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(129, 140, 248, var(--tw-bg-opacity)) !important; +} + +.bg-indigo-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(99, 102, 241, var(--tw-bg-opacity)) !important; +} + +.bg-indigo-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(79, 70, 229, var(--tw-bg-opacity)) !important; +} + +.bg-indigo-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(67, 56, 202, var(--tw-bg-opacity)) !important; +} + +.bg-indigo-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(55, 48, 163, var(--tw-bg-opacity)) !important; +} + +.bg-indigo-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(49, 46, 129, var(--tw-bg-opacity)) !important; +} + +.bg-purple-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(245, 243, 255, var(--tw-bg-opacity)) !important; +} + +.bg-purple-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(237, 233, 254, var(--tw-bg-opacity)) !important; +} + +.bg-purple-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(221, 214, 254, var(--tw-bg-opacity)) !important; +} + +.bg-purple-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(196, 181, 253, var(--tw-bg-opacity)) !important; +} + +.bg-purple-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(167, 139, 250, var(--tw-bg-opacity)) !important; +} + +.bg-purple-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(139, 92, 246, var(--tw-bg-opacity)) !important; +} + +.bg-purple-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(124, 58, 237, var(--tw-bg-opacity)) !important; +} + +.bg-purple-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(109, 40, 217, var(--tw-bg-opacity)) !important; +} + +.bg-purple-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(91, 33, 182, var(--tw-bg-opacity)) !important; +} + +.bg-purple-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(76, 29, 149, var(--tw-bg-opacity)) !important; +} + +.bg-pink-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(253, 242, 248, var(--tw-bg-opacity)) !important; +} + +.bg-pink-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 231, 243, var(--tw-bg-opacity)) !important; +} + +.bg-pink-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(251, 207, 232, var(--tw-bg-opacity)) !important; +} + +.bg-pink-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(249, 168, 212, var(--tw-bg-opacity)) !important; +} + +.bg-pink-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(244, 114, 182, var(--tw-bg-opacity)) !important; +} + +.bg-pink-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(236, 72, 153, var(--tw-bg-opacity)) !important; +} + +.bg-pink-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(219, 39, 119, var(--tw-bg-opacity)) !important; +} + +.bg-pink-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(190, 24, 93, var(--tw-bg-opacity)) !important; +} + +.bg-pink-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(157, 23, 77, var(--tw-bg-opacity)) !important; +} + +.bg-pink-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(131, 24, 67, var(--tw-bg-opacity)) !important; +} + +.bg-primary { + --tw-bg-opacity: 1 !important; + background-color: rgba(0, 49, 151, var(--tw-bg-opacity)) !important; +} + +.group:hover .group-hover\:bg-transparent { + background-color: transparent !important; +} + +.group:hover .group-hover\:bg-current { + background-color: currentColor !important; +} + +.group:hover .group-hover\:bg-black { + --tw-bg-opacity: 1 !important; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important; +} + +.group:hover .group-hover\:bg-white { + --tw-bg-opacity: 1 !important; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important; +} + +.group:hover .group-hover\:bg-gray-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)) !important; +} + +.group:hover .group-hover\:bg-gray-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)) !important; +} + +.group:hover .group-hover\:bg-gray-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)) !important; +} + +.group:hover .group-hover\:bg-gray-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)) !important; +} + +.group:hover .group-hover\:bg-gray-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)) !important; +} + +.group:hover .group-hover\:bg-gray-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)) !important; +} + +.group:hover .group-hover\:bg-gray-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)) !important; +} + +.group:hover .group-hover\:bg-gray-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)) !important; +} + +.group:hover .group-hover\:bg-gray-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)) !important; +} + +.group:hover .group-hover\:bg-gray-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)) !important; +} + +.group:hover .group-hover\:bg-red-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 242, 242, var(--tw-bg-opacity)) !important; +} + +.group:hover .group-hover\:bg-red-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 226, 226, var(--tw-bg-opacity)) !important; +} + +.group:hover .group-hover\:bg-red-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 202, 202, var(--tw-bg-opacity)) !important; +} + +.group:hover .group-hover\:bg-red-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 165, 165, var(--tw-bg-opacity)) !important; +} + +.group:hover .group-hover\:bg-red-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(248, 113, 113, var(--tw-bg-opacity)) !important; +} + +.group:hover .group-hover\:bg-red-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(239, 68, 68, var(--tw-bg-opacity)) !important; +} + +.group:hover .group-hover\:bg-red-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(220, 38, 38, var(--tw-bg-opacity)) !important; +} + +.group:hover .group-hover\:bg-red-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(185, 28, 28, var(--tw-bg-opacity)) !important; +} + +.group:hover .group-hover\:bg-red-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(153, 27, 27, var(--tw-bg-opacity)) !important; +} + +.group:hover .group-hover\:bg-red-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(127, 29, 29, var(--tw-bg-opacity)) !important; +} + +.group:hover .group-hover\:bg-yellow-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(255, 251, 235, var(--tw-bg-opacity)) !important; +} + +.group:hover .group-hover\:bg-yellow-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 243, 199, var(--tw-bg-opacity)) !important; +} + +.group:hover .group-hover\:bg-yellow-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(253, 230, 138, var(--tw-bg-opacity)) !important; +} + +.group:hover .group-hover\:bg-yellow-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 211, 77, var(--tw-bg-opacity)) !important; +} + +.group:hover .group-hover\:bg-yellow-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(251, 191, 36, var(--tw-bg-opacity)) !important; +} + +.group:hover .group-hover\:bg-yellow-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)) !important; +} + +.group:hover .group-hover\:bg-yellow-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(217, 119, 6, var(--tw-bg-opacity)) !important; +} + +.group:hover .group-hover\:bg-yellow-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(180, 83, 9, var(--tw-bg-opacity)) !important; +} + +.group:hover .group-hover\:bg-yellow-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(146, 64, 14, var(--tw-bg-opacity)) !important; +} + +.group:hover .group-hover\:bg-yellow-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(120, 53, 15, var(--tw-bg-opacity)) !important; +} + +.group:hover .group-hover\:bg-green-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(236, 253, 245, var(--tw-bg-opacity)) !important; +} + +.group:hover .group-hover\:bg-green-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(209, 250, 229, var(--tw-bg-opacity)) !important; +} + +.group:hover .group-hover\:bg-green-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(167, 243, 208, var(--tw-bg-opacity)) !important; +} + +.group:hover .group-hover\:bg-green-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(110, 231, 183, var(--tw-bg-opacity)) !important; +} + +.group:hover .group-hover\:bg-green-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(52, 211, 153, var(--tw-bg-opacity)) !important; +} + +.group:hover .group-hover\:bg-green-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(16, 185, 129, var(--tw-bg-opacity)) !important; +} + +.group:hover .group-hover\:bg-green-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(5, 150, 105, var(--tw-bg-opacity)) !important; +} + +.group:hover .group-hover\:bg-green-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(4, 120, 87, var(--tw-bg-opacity)) !important; +} + +.group:hover .group-hover\:bg-green-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(6, 95, 70, var(--tw-bg-opacity)) !important; +} + +.group:hover .group-hover\:bg-green-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(6, 78, 59, var(--tw-bg-opacity)) !important; +} + +.group:hover .group-hover\:bg-blue-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(239, 246, 255, var(--tw-bg-opacity)) !important; +} + +.group:hover .group-hover\:bg-blue-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(219, 234, 254, var(--tw-bg-opacity)) !important; +} + +.group:hover .group-hover\:bg-blue-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(191, 219, 254, var(--tw-bg-opacity)) !important; +} + +.group:hover .group-hover\:bg-blue-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(147, 197, 253, var(--tw-bg-opacity)) !important; +} + +.group:hover .group-hover\:bg-blue-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(96, 165, 250, var(--tw-bg-opacity)) !important; +} + +.group:hover .group-hover\:bg-blue-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)) !important; +} + +.group:hover .group-hover\:bg-blue-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(37, 99, 235, var(--tw-bg-opacity)) !important; +} + +.group:hover .group-hover\:bg-blue-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(29, 78, 216, var(--tw-bg-opacity)) !important; +} + +.group:hover .group-hover\:bg-blue-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(30, 64, 175, var(--tw-bg-opacity)) !important; +} + +.group:hover .group-hover\:bg-blue-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(30, 58, 138, var(--tw-bg-opacity)) !important; +} + +.group:hover .group-hover\:bg-indigo-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(238, 242, 255, var(--tw-bg-opacity)) !important; +} + +.group:hover .group-hover\:bg-indigo-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(224, 231, 255, var(--tw-bg-opacity)) !important; +} + +.group:hover .group-hover\:bg-indigo-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(199, 210, 254, var(--tw-bg-opacity)) !important; +} + +.group:hover .group-hover\:bg-indigo-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(165, 180, 252, var(--tw-bg-opacity)) !important; +} + +.group:hover .group-hover\:bg-indigo-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(129, 140, 248, var(--tw-bg-opacity)) !important; +} + +.group:hover .group-hover\:bg-indigo-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(99, 102, 241, var(--tw-bg-opacity)) !important; +} + +.group:hover .group-hover\:bg-indigo-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(79, 70, 229, var(--tw-bg-opacity)) !important; +} + +.group:hover .group-hover\:bg-indigo-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(67, 56, 202, var(--tw-bg-opacity)) !important; +} + +.group:hover .group-hover\:bg-indigo-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(55, 48, 163, var(--tw-bg-opacity)) !important; +} + +.group:hover .group-hover\:bg-indigo-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(49, 46, 129, var(--tw-bg-opacity)) !important; +} + +.group:hover .group-hover\:bg-purple-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(245, 243, 255, var(--tw-bg-opacity)) !important; +} + +.group:hover .group-hover\:bg-purple-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(237, 233, 254, var(--tw-bg-opacity)) !important; +} + +.group:hover .group-hover\:bg-purple-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(221, 214, 254, var(--tw-bg-opacity)) !important; +} + +.group:hover .group-hover\:bg-purple-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(196, 181, 253, var(--tw-bg-opacity)) !important; +} + +.group:hover .group-hover\:bg-purple-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(167, 139, 250, var(--tw-bg-opacity)) !important; +} + +.group:hover .group-hover\:bg-purple-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(139, 92, 246, var(--tw-bg-opacity)) !important; +} + +.group:hover .group-hover\:bg-purple-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(124, 58, 237, var(--tw-bg-opacity)) !important; +} + +.group:hover .group-hover\:bg-purple-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(109, 40, 217, var(--tw-bg-opacity)) !important; +} + +.group:hover .group-hover\:bg-purple-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(91, 33, 182, var(--tw-bg-opacity)) !important; +} + +.group:hover .group-hover\:bg-purple-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(76, 29, 149, var(--tw-bg-opacity)) !important; +} + +.group:hover .group-hover\:bg-pink-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(253, 242, 248, var(--tw-bg-opacity)) !important; +} + +.group:hover .group-hover\:bg-pink-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 231, 243, var(--tw-bg-opacity)) !important; +} + +.group:hover .group-hover\:bg-pink-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(251, 207, 232, var(--tw-bg-opacity)) !important; +} + +.group:hover .group-hover\:bg-pink-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(249, 168, 212, var(--tw-bg-opacity)) !important; +} + +.group:hover .group-hover\:bg-pink-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(244, 114, 182, var(--tw-bg-opacity)) !important; +} + +.group:hover .group-hover\:bg-pink-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(236, 72, 153, var(--tw-bg-opacity)) !important; +} + +.group:hover .group-hover\:bg-pink-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(219, 39, 119, var(--tw-bg-opacity)) !important; +} + +.group:hover .group-hover\:bg-pink-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(190, 24, 93, var(--tw-bg-opacity)) !important; +} + +.group:hover .group-hover\:bg-pink-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(157, 23, 77, var(--tw-bg-opacity)) !important; +} + +.group:hover .group-hover\:bg-pink-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(131, 24, 67, var(--tw-bg-opacity)) !important; +} + +.group:hover .group-hover\:bg-primary { + --tw-bg-opacity: 1 !important; + background-color: rgba(0, 49, 151, var(--tw-bg-opacity)) !important; +} + +.focus-within\:bg-transparent:focus-within { + background-color: transparent !important; +} + +.focus-within\:bg-current:focus-within { + background-color: currentColor !important; +} + +.focus-within\:bg-black:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important; +} + +.focus-within\:bg-white:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important; +} + +.focus-within\:bg-gray-50:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)) !important; +} + +.focus-within\:bg-gray-100:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)) !important; +} + +.focus-within\:bg-gray-200:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)) !important; +} + +.focus-within\:bg-gray-300:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)) !important; +} + +.focus-within\:bg-gray-400:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)) !important; +} + +.focus-within\:bg-gray-500:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)) !important; +} + +.focus-within\:bg-gray-600:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)) !important; +} + +.focus-within\:bg-gray-700:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)) !important; +} + +.focus-within\:bg-gray-800:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)) !important; +} + +.focus-within\:bg-gray-900:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)) !important; +} + +.focus-within\:bg-red-50:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 242, 242, var(--tw-bg-opacity)) !important; +} + +.focus-within\:bg-red-100:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 226, 226, var(--tw-bg-opacity)) !important; +} + +.focus-within\:bg-red-200:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 202, 202, var(--tw-bg-opacity)) !important; +} + +.focus-within\:bg-red-300:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 165, 165, var(--tw-bg-opacity)) !important; +} + +.focus-within\:bg-red-400:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(248, 113, 113, var(--tw-bg-opacity)) !important; +} + +.focus-within\:bg-red-500:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(239, 68, 68, var(--tw-bg-opacity)) !important; +} + +.focus-within\:bg-red-600:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(220, 38, 38, var(--tw-bg-opacity)) !important; +} + +.focus-within\:bg-red-700:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(185, 28, 28, var(--tw-bg-opacity)) !important; +} + +.focus-within\:bg-red-800:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(153, 27, 27, var(--tw-bg-opacity)) !important; +} + +.focus-within\:bg-red-900:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(127, 29, 29, var(--tw-bg-opacity)) !important; +} + +.focus-within\:bg-yellow-50:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(255, 251, 235, var(--tw-bg-opacity)) !important; +} + +.focus-within\:bg-yellow-100:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 243, 199, var(--tw-bg-opacity)) !important; +} + +.focus-within\:bg-yellow-200:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(253, 230, 138, var(--tw-bg-opacity)) !important; +} + +.focus-within\:bg-yellow-300:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 211, 77, var(--tw-bg-opacity)) !important; +} + +.focus-within\:bg-yellow-400:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(251, 191, 36, var(--tw-bg-opacity)) !important; +} + +.focus-within\:bg-yellow-500:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)) !important; +} + +.focus-within\:bg-yellow-600:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(217, 119, 6, var(--tw-bg-opacity)) !important; +} + +.focus-within\:bg-yellow-700:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(180, 83, 9, var(--tw-bg-opacity)) !important; +} + +.focus-within\:bg-yellow-800:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(146, 64, 14, var(--tw-bg-opacity)) !important; +} + +.focus-within\:bg-yellow-900:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(120, 53, 15, var(--tw-bg-opacity)) !important; +} + +.focus-within\:bg-green-50:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(236, 253, 245, var(--tw-bg-opacity)) !important; +} + +.focus-within\:bg-green-100:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(209, 250, 229, var(--tw-bg-opacity)) !important; +} + +.focus-within\:bg-green-200:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(167, 243, 208, var(--tw-bg-opacity)) !important; +} + +.focus-within\:bg-green-300:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(110, 231, 183, var(--tw-bg-opacity)) !important; +} + +.focus-within\:bg-green-400:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(52, 211, 153, var(--tw-bg-opacity)) !important; +} + +.focus-within\:bg-green-500:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(16, 185, 129, var(--tw-bg-opacity)) !important; +} + +.focus-within\:bg-green-600:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(5, 150, 105, var(--tw-bg-opacity)) !important; +} + +.focus-within\:bg-green-700:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(4, 120, 87, var(--tw-bg-opacity)) !important; +} + +.focus-within\:bg-green-800:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(6, 95, 70, var(--tw-bg-opacity)) !important; +} + +.focus-within\:bg-green-900:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(6, 78, 59, var(--tw-bg-opacity)) !important; +} + +.focus-within\:bg-blue-50:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(239, 246, 255, var(--tw-bg-opacity)) !important; +} + +.focus-within\:bg-blue-100:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(219, 234, 254, var(--tw-bg-opacity)) !important; +} + +.focus-within\:bg-blue-200:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(191, 219, 254, var(--tw-bg-opacity)) !important; +} + +.focus-within\:bg-blue-300:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(147, 197, 253, var(--tw-bg-opacity)) !important; +} + +.focus-within\:bg-blue-400:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(96, 165, 250, var(--tw-bg-opacity)) !important; +} + +.focus-within\:bg-blue-500:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)) !important; +} + +.focus-within\:bg-blue-600:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(37, 99, 235, var(--tw-bg-opacity)) !important; +} + +.focus-within\:bg-blue-700:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(29, 78, 216, var(--tw-bg-opacity)) !important; +} + +.focus-within\:bg-blue-800:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(30, 64, 175, var(--tw-bg-opacity)) !important; +} + +.focus-within\:bg-blue-900:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(30, 58, 138, var(--tw-bg-opacity)) !important; +} + +.focus-within\:bg-indigo-50:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(238, 242, 255, var(--tw-bg-opacity)) !important; +} + +.focus-within\:bg-indigo-100:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(224, 231, 255, var(--tw-bg-opacity)) !important; +} + +.focus-within\:bg-indigo-200:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(199, 210, 254, var(--tw-bg-opacity)) !important; +} + +.focus-within\:bg-indigo-300:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(165, 180, 252, var(--tw-bg-opacity)) !important; +} + +.focus-within\:bg-indigo-400:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(129, 140, 248, var(--tw-bg-opacity)) !important; +} + +.focus-within\:bg-indigo-500:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(99, 102, 241, var(--tw-bg-opacity)) !important; +} + +.focus-within\:bg-indigo-600:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(79, 70, 229, var(--tw-bg-opacity)) !important; +} + +.focus-within\:bg-indigo-700:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(67, 56, 202, var(--tw-bg-opacity)) !important; +} + +.focus-within\:bg-indigo-800:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(55, 48, 163, var(--tw-bg-opacity)) !important; +} + +.focus-within\:bg-indigo-900:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(49, 46, 129, var(--tw-bg-opacity)) !important; +} + +.focus-within\:bg-purple-50:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(245, 243, 255, var(--tw-bg-opacity)) !important; +} + +.focus-within\:bg-purple-100:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(237, 233, 254, var(--tw-bg-opacity)) !important; +} + +.focus-within\:bg-purple-200:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(221, 214, 254, var(--tw-bg-opacity)) !important; +} + +.focus-within\:bg-purple-300:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(196, 181, 253, var(--tw-bg-opacity)) !important; +} + +.focus-within\:bg-purple-400:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(167, 139, 250, var(--tw-bg-opacity)) !important; +} + +.focus-within\:bg-purple-500:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(139, 92, 246, var(--tw-bg-opacity)) !important; +} + +.focus-within\:bg-purple-600:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(124, 58, 237, var(--tw-bg-opacity)) !important; +} + +.focus-within\:bg-purple-700:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(109, 40, 217, var(--tw-bg-opacity)) !important; +} + +.focus-within\:bg-purple-800:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(91, 33, 182, var(--tw-bg-opacity)) !important; +} + +.focus-within\:bg-purple-900:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(76, 29, 149, var(--tw-bg-opacity)) !important; +} + +.focus-within\:bg-pink-50:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(253, 242, 248, var(--tw-bg-opacity)) !important; +} + +.focus-within\:bg-pink-100:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 231, 243, var(--tw-bg-opacity)) !important; +} + +.focus-within\:bg-pink-200:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(251, 207, 232, var(--tw-bg-opacity)) !important; +} + +.focus-within\:bg-pink-300:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(249, 168, 212, var(--tw-bg-opacity)) !important; +} + +.focus-within\:bg-pink-400:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(244, 114, 182, var(--tw-bg-opacity)) !important; +} + +.focus-within\:bg-pink-500:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(236, 72, 153, var(--tw-bg-opacity)) !important; +} + +.focus-within\:bg-pink-600:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(219, 39, 119, var(--tw-bg-opacity)) !important; +} + +.focus-within\:bg-pink-700:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(190, 24, 93, var(--tw-bg-opacity)) !important; +} + +.focus-within\:bg-pink-800:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(157, 23, 77, var(--tw-bg-opacity)) !important; +} + +.focus-within\:bg-pink-900:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(131, 24, 67, var(--tw-bg-opacity)) !important; +} + +.focus-within\:bg-primary:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(0, 49, 151, var(--tw-bg-opacity)) !important; +} + +.hover\:bg-transparent:hover { + background-color: transparent !important; +} + +.hover\:bg-current:hover { + background-color: currentColor !important; +} + +.hover\:bg-black:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important; +} + +.hover\:bg-white:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important; +} + +.hover\:bg-gray-50:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)) !important; +} + +.hover\:bg-gray-100:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)) !important; +} + +.hover\:bg-gray-200:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)) !important; +} + +.hover\:bg-gray-300:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)) !important; +} + +.hover\:bg-gray-400:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)) !important; +} + +.hover\:bg-gray-500:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)) !important; +} + +.hover\:bg-gray-600:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)) !important; +} + +.hover\:bg-gray-700:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)) !important; +} + +.hover\:bg-gray-800:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)) !important; +} + +.hover\:bg-gray-900:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)) !important; +} + +.hover\:bg-red-50:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 242, 242, var(--tw-bg-opacity)) !important; +} + +.hover\:bg-red-100:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 226, 226, var(--tw-bg-opacity)) !important; +} + +.hover\:bg-red-200:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 202, 202, var(--tw-bg-opacity)) !important; +} + +.hover\:bg-red-300:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 165, 165, var(--tw-bg-opacity)) !important; +} + +.hover\:bg-red-400:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(248, 113, 113, var(--tw-bg-opacity)) !important; +} + +.hover\:bg-red-500:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(239, 68, 68, var(--tw-bg-opacity)) !important; +} + +.hover\:bg-red-600:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(220, 38, 38, var(--tw-bg-opacity)) !important; +} + +.hover\:bg-red-700:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(185, 28, 28, var(--tw-bg-opacity)) !important; +} + +.hover\:bg-red-800:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(153, 27, 27, var(--tw-bg-opacity)) !important; +} + +.hover\:bg-red-900:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(127, 29, 29, var(--tw-bg-opacity)) !important; +} + +.hover\:bg-yellow-50:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(255, 251, 235, var(--tw-bg-opacity)) !important; +} + +.hover\:bg-yellow-100:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 243, 199, var(--tw-bg-opacity)) !important; +} + +.hover\:bg-yellow-200:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(253, 230, 138, var(--tw-bg-opacity)) !important; +} + +.hover\:bg-yellow-300:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 211, 77, var(--tw-bg-opacity)) !important; +} + +.hover\:bg-yellow-400:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(251, 191, 36, var(--tw-bg-opacity)) !important; +} + +.hover\:bg-yellow-500:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)) !important; +} + +.hover\:bg-yellow-600:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(217, 119, 6, var(--tw-bg-opacity)) !important; +} + +.hover\:bg-yellow-700:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(180, 83, 9, var(--tw-bg-opacity)) !important; +} + +.hover\:bg-yellow-800:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(146, 64, 14, var(--tw-bg-opacity)) !important; +} + +.hover\:bg-yellow-900:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(120, 53, 15, var(--tw-bg-opacity)) !important; +} + +.hover\:bg-green-50:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(236, 253, 245, var(--tw-bg-opacity)) !important; +} + +.hover\:bg-green-100:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(209, 250, 229, var(--tw-bg-opacity)) !important; +} + +.hover\:bg-green-200:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(167, 243, 208, var(--tw-bg-opacity)) !important; +} + +.hover\:bg-green-300:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(110, 231, 183, var(--tw-bg-opacity)) !important; +} + +.hover\:bg-green-400:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(52, 211, 153, var(--tw-bg-opacity)) !important; +} + +.hover\:bg-green-500:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(16, 185, 129, var(--tw-bg-opacity)) !important; +} + +.hover\:bg-green-600:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(5, 150, 105, var(--tw-bg-opacity)) !important; +} + +.hover\:bg-green-700:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(4, 120, 87, var(--tw-bg-opacity)) !important; +} + +.hover\:bg-green-800:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(6, 95, 70, var(--tw-bg-opacity)) !important; +} + +.hover\:bg-green-900:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(6, 78, 59, var(--tw-bg-opacity)) !important; +} + +.hover\:bg-blue-50:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(239, 246, 255, var(--tw-bg-opacity)) !important; +} + +.hover\:bg-blue-100:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(219, 234, 254, var(--tw-bg-opacity)) !important; +} + +.hover\:bg-blue-200:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(191, 219, 254, var(--tw-bg-opacity)) !important; +} + +.hover\:bg-blue-300:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(147, 197, 253, var(--tw-bg-opacity)) !important; +} + +.hover\:bg-blue-400:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(96, 165, 250, var(--tw-bg-opacity)) !important; +} + +.hover\:bg-blue-500:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)) !important; +} + +.hover\:bg-blue-600:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(37, 99, 235, var(--tw-bg-opacity)) !important; +} + +.hover\:bg-blue-700:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(29, 78, 216, var(--tw-bg-opacity)) !important; +} + +.hover\:bg-blue-800:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(30, 64, 175, var(--tw-bg-opacity)) !important; +} + +.hover\:bg-blue-900:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(30, 58, 138, var(--tw-bg-opacity)) !important; +} + +.hover\:bg-indigo-50:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(238, 242, 255, var(--tw-bg-opacity)) !important; +} + +.hover\:bg-indigo-100:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(224, 231, 255, var(--tw-bg-opacity)) !important; +} + +.hover\:bg-indigo-200:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(199, 210, 254, var(--tw-bg-opacity)) !important; +} + +.hover\:bg-indigo-300:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(165, 180, 252, var(--tw-bg-opacity)) !important; +} + +.hover\:bg-indigo-400:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(129, 140, 248, var(--tw-bg-opacity)) !important; +} + +.hover\:bg-indigo-500:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(99, 102, 241, var(--tw-bg-opacity)) !important; +} + +.hover\:bg-indigo-600:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(79, 70, 229, var(--tw-bg-opacity)) !important; +} + +.hover\:bg-indigo-700:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(67, 56, 202, var(--tw-bg-opacity)) !important; +} + +.hover\:bg-indigo-800:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(55, 48, 163, var(--tw-bg-opacity)) !important; +} + +.hover\:bg-indigo-900:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(49, 46, 129, var(--tw-bg-opacity)) !important; +} + +.hover\:bg-purple-50:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(245, 243, 255, var(--tw-bg-opacity)) !important; +} + +.hover\:bg-purple-100:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(237, 233, 254, var(--tw-bg-opacity)) !important; +} + +.hover\:bg-purple-200:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(221, 214, 254, var(--tw-bg-opacity)) !important; +} + +.hover\:bg-purple-300:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(196, 181, 253, var(--tw-bg-opacity)) !important; +} + +.hover\:bg-purple-400:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(167, 139, 250, var(--tw-bg-opacity)) !important; +} + +.hover\:bg-purple-500:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(139, 92, 246, var(--tw-bg-opacity)) !important; +} + +.hover\:bg-purple-600:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(124, 58, 237, var(--tw-bg-opacity)) !important; +} + +.hover\:bg-purple-700:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(109, 40, 217, var(--tw-bg-opacity)) !important; +} + +.hover\:bg-purple-800:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(91, 33, 182, var(--tw-bg-opacity)) !important; +} + +.hover\:bg-purple-900:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(76, 29, 149, var(--tw-bg-opacity)) !important; +} + +.hover\:bg-pink-50:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(253, 242, 248, var(--tw-bg-opacity)) !important; +} + +.hover\:bg-pink-100:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 231, 243, var(--tw-bg-opacity)) !important; +} + +.hover\:bg-pink-200:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(251, 207, 232, var(--tw-bg-opacity)) !important; +} + +.hover\:bg-pink-300:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(249, 168, 212, var(--tw-bg-opacity)) !important; +} + +.hover\:bg-pink-400:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(244, 114, 182, var(--tw-bg-opacity)) !important; +} + +.hover\:bg-pink-500:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(236, 72, 153, var(--tw-bg-opacity)) !important; +} + +.hover\:bg-pink-600:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(219, 39, 119, var(--tw-bg-opacity)) !important; +} + +.hover\:bg-pink-700:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(190, 24, 93, var(--tw-bg-opacity)) !important; +} + +.hover\:bg-pink-800:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(157, 23, 77, var(--tw-bg-opacity)) !important; +} + +.hover\:bg-pink-900:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(131, 24, 67, var(--tw-bg-opacity)) !important; +} + +.hover\:bg-primary:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(0, 49, 151, var(--tw-bg-opacity)) !important; +} + +.focus\:bg-transparent:focus { + background-color: transparent !important; +} + +.focus\:bg-current:focus { + background-color: currentColor !important; +} + +.focus\:bg-black:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important; +} + +.focus\:bg-white:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important; +} + +.focus\:bg-gray-50:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)) !important; +} + +.focus\:bg-gray-100:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)) !important; +} + +.focus\:bg-gray-200:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)) !important; +} + +.focus\:bg-gray-300:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)) !important; +} + +.focus\:bg-gray-400:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)) !important; +} + +.focus\:bg-gray-500:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)) !important; +} + +.focus\:bg-gray-600:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)) !important; +} + +.focus\:bg-gray-700:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)) !important; +} + +.focus\:bg-gray-800:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)) !important; +} + +.focus\:bg-gray-900:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)) !important; +} + +.focus\:bg-red-50:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 242, 242, var(--tw-bg-opacity)) !important; +} + +.focus\:bg-red-100:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 226, 226, var(--tw-bg-opacity)) !important; +} + +.focus\:bg-red-200:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 202, 202, var(--tw-bg-opacity)) !important; +} + +.focus\:bg-red-300:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 165, 165, var(--tw-bg-opacity)) !important; +} + +.focus\:bg-red-400:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(248, 113, 113, var(--tw-bg-opacity)) !important; +} + +.focus\:bg-red-500:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(239, 68, 68, var(--tw-bg-opacity)) !important; +} + +.focus\:bg-red-600:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(220, 38, 38, var(--tw-bg-opacity)) !important; +} + +.focus\:bg-red-700:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(185, 28, 28, var(--tw-bg-opacity)) !important; +} + +.focus\:bg-red-800:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(153, 27, 27, var(--tw-bg-opacity)) !important; +} + +.focus\:bg-red-900:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(127, 29, 29, var(--tw-bg-opacity)) !important; +} + +.focus\:bg-yellow-50:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(255, 251, 235, var(--tw-bg-opacity)) !important; +} + +.focus\:bg-yellow-100:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 243, 199, var(--tw-bg-opacity)) !important; +} + +.focus\:bg-yellow-200:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(253, 230, 138, var(--tw-bg-opacity)) !important; +} + +.focus\:bg-yellow-300:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 211, 77, var(--tw-bg-opacity)) !important; +} + +.focus\:bg-yellow-400:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(251, 191, 36, var(--tw-bg-opacity)) !important; +} + +.focus\:bg-yellow-500:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)) !important; +} + +.focus\:bg-yellow-600:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(217, 119, 6, var(--tw-bg-opacity)) !important; +} + +.focus\:bg-yellow-700:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(180, 83, 9, var(--tw-bg-opacity)) !important; +} + +.focus\:bg-yellow-800:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(146, 64, 14, var(--tw-bg-opacity)) !important; +} + +.focus\:bg-yellow-900:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(120, 53, 15, var(--tw-bg-opacity)) !important; +} + +.focus\:bg-green-50:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(236, 253, 245, var(--tw-bg-opacity)) !important; +} + +.focus\:bg-green-100:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(209, 250, 229, var(--tw-bg-opacity)) !important; +} + +.focus\:bg-green-200:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(167, 243, 208, var(--tw-bg-opacity)) !important; +} + +.focus\:bg-green-300:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(110, 231, 183, var(--tw-bg-opacity)) !important; +} + +.focus\:bg-green-400:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(52, 211, 153, var(--tw-bg-opacity)) !important; +} + +.focus\:bg-green-500:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(16, 185, 129, var(--tw-bg-opacity)) !important; +} + +.focus\:bg-green-600:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(5, 150, 105, var(--tw-bg-opacity)) !important; +} + +.focus\:bg-green-700:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(4, 120, 87, var(--tw-bg-opacity)) !important; +} + +.focus\:bg-green-800:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(6, 95, 70, var(--tw-bg-opacity)) !important; +} + +.focus\:bg-green-900:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(6, 78, 59, var(--tw-bg-opacity)) !important; +} + +.focus\:bg-blue-50:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(239, 246, 255, var(--tw-bg-opacity)) !important; +} + +.focus\:bg-blue-100:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(219, 234, 254, var(--tw-bg-opacity)) !important; +} + +.focus\:bg-blue-200:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(191, 219, 254, var(--tw-bg-opacity)) !important; +} + +.focus\:bg-blue-300:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(147, 197, 253, var(--tw-bg-opacity)) !important; +} + +.focus\:bg-blue-400:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(96, 165, 250, var(--tw-bg-opacity)) !important; +} + +.focus\:bg-blue-500:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)) !important; +} + +.focus\:bg-blue-600:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(37, 99, 235, var(--tw-bg-opacity)) !important; +} + +.focus\:bg-blue-700:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(29, 78, 216, var(--tw-bg-opacity)) !important; +} + +.focus\:bg-blue-800:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(30, 64, 175, var(--tw-bg-opacity)) !important; +} + +.focus\:bg-blue-900:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(30, 58, 138, var(--tw-bg-opacity)) !important; +} + +.focus\:bg-indigo-50:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(238, 242, 255, var(--tw-bg-opacity)) !important; +} + +.focus\:bg-indigo-100:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(224, 231, 255, var(--tw-bg-opacity)) !important; +} + +.focus\:bg-indigo-200:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(199, 210, 254, var(--tw-bg-opacity)) !important; +} + +.focus\:bg-indigo-300:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(165, 180, 252, var(--tw-bg-opacity)) !important; +} + +.focus\:bg-indigo-400:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(129, 140, 248, var(--tw-bg-opacity)) !important; +} + +.focus\:bg-indigo-500:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(99, 102, 241, var(--tw-bg-opacity)) !important; +} + +.focus\:bg-indigo-600:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(79, 70, 229, var(--tw-bg-opacity)) !important; +} + +.focus\:bg-indigo-700:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(67, 56, 202, var(--tw-bg-opacity)) !important; +} + +.focus\:bg-indigo-800:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(55, 48, 163, var(--tw-bg-opacity)) !important; +} + +.focus\:bg-indigo-900:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(49, 46, 129, var(--tw-bg-opacity)) !important; +} + +.focus\:bg-purple-50:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(245, 243, 255, var(--tw-bg-opacity)) !important; +} + +.focus\:bg-purple-100:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(237, 233, 254, var(--tw-bg-opacity)) !important; +} + +.focus\:bg-purple-200:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(221, 214, 254, var(--tw-bg-opacity)) !important; +} + +.focus\:bg-purple-300:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(196, 181, 253, var(--tw-bg-opacity)) !important; +} + +.focus\:bg-purple-400:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(167, 139, 250, var(--tw-bg-opacity)) !important; +} + +.focus\:bg-purple-500:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(139, 92, 246, var(--tw-bg-opacity)) !important; +} + +.focus\:bg-purple-600:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(124, 58, 237, var(--tw-bg-opacity)) !important; +} + +.focus\:bg-purple-700:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(109, 40, 217, var(--tw-bg-opacity)) !important; +} + +.focus\:bg-purple-800:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(91, 33, 182, var(--tw-bg-opacity)) !important; +} + +.focus\:bg-purple-900:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(76, 29, 149, var(--tw-bg-opacity)) !important; +} + +.focus\:bg-pink-50:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(253, 242, 248, var(--tw-bg-opacity)) !important; +} + +.focus\:bg-pink-100:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 231, 243, var(--tw-bg-opacity)) !important; +} + +.focus\:bg-pink-200:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(251, 207, 232, var(--tw-bg-opacity)) !important; +} + +.focus\:bg-pink-300:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(249, 168, 212, var(--tw-bg-opacity)) !important; +} + +.focus\:bg-pink-400:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(244, 114, 182, var(--tw-bg-opacity)) !important; +} + +.focus\:bg-pink-500:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(236, 72, 153, var(--tw-bg-opacity)) !important; +} + +.focus\:bg-pink-600:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(219, 39, 119, var(--tw-bg-opacity)) !important; +} + +.focus\:bg-pink-700:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(190, 24, 93, var(--tw-bg-opacity)) !important; +} + +.focus\:bg-pink-800:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(157, 23, 77, var(--tw-bg-opacity)) !important; +} + +.focus\:bg-pink-900:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(131, 24, 67, var(--tw-bg-opacity)) !important; +} + +.focus\:bg-primary:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(0, 49, 151, var(--tw-bg-opacity)) !important; +} + +.bg-none { + background-image: none !important; +} + +.bg-gradient-to-t { + background-image: linear-gradient(to top, var(--tw-gradient-stops)) !important; +} + +.bg-gradient-to-tr { + background-image: linear-gradient(to top right, var(--tw-gradient-stops)) !important; +} + +.bg-gradient-to-r { + background-image: linear-gradient(to right, var(--tw-gradient-stops)) !important; +} + +.bg-gradient-to-br { + background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)) !important; +} + +.bg-gradient-to-b { + background-image: linear-gradient(to bottom, var(--tw-gradient-stops)) !important; +} + +.bg-gradient-to-bl { + background-image: linear-gradient(to bottom left, var(--tw-gradient-stops)) !important; +} + +.bg-gradient-to-l { + background-image: linear-gradient(to left, var(--tw-gradient-stops)) !important; +} + +.bg-gradient-to-tl { + background-image: linear-gradient(to top left, var(--tw-gradient-stops)) !important; +} + +.from-transparent { + --tw-gradient-from: transparent !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; +} + +.from-current { + --tw-gradient-from: currentColor !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; +} + +.from-black { + --tw-gradient-from: #000 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; +} + +.from-white { + --tw-gradient-from: #fff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; +} + +.from-gray-50 { + --tw-gradient-from: #f9fafb !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)) !important; +} + +.from-gray-100 { + --tw-gradient-from: #f3f4f6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)) !important; +} + +.from-gray-200 { + --tw-gradient-from: #e5e7eb !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)) !important; +} + +.from-gray-300 { + --tw-gradient-from: #d1d5db !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)) !important; +} + +.from-gray-400 { + --tw-gradient-from: #9ca3af !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)) !important; +} + +.from-gray-500 { + --tw-gradient-from: #6b7280 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)) !important; +} + +.from-gray-600 { + --tw-gradient-from: #4b5563 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)) !important; +} + +.from-gray-700 { + --tw-gradient-from: #374151 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)) !important; +} + +.from-gray-800 { + --tw-gradient-from: #1f2937 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)) !important; +} + +.from-gray-900 { + --tw-gradient-from: #111827 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)) !important; +} + +.from-red-50 { + --tw-gradient-from: #fef2f2 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)) !important; +} + +.from-red-100 { + --tw-gradient-from: #fee2e2 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)) !important; +} + +.from-red-200 { + --tw-gradient-from: #fecaca !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)) !important; +} + +.from-red-300 { + --tw-gradient-from: #fca5a5 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)) !important; +} + +.from-red-400 { + --tw-gradient-from: #f87171 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)) !important; +} + +.from-red-500 { + --tw-gradient-from: #ef4444 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)) !important; +} + +.from-red-600 { + --tw-gradient-from: #dc2626 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)) !important; +} + +.from-red-700 { + --tw-gradient-from: #b91c1c !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)) !important; +} + +.from-red-800 { + --tw-gradient-from: #991b1b !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)) !important; +} + +.from-red-900 { + --tw-gradient-from: #7f1d1d !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important; +} + +.from-yellow-50 { + --tw-gradient-from: #fffbeb !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)) !important; +} + +.from-yellow-100 { + --tw-gradient-from: #fef3c7 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)) !important; +} + +.from-yellow-200 { + --tw-gradient-from: #fde68a !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)) !important; +} + +.from-yellow-300 { + --tw-gradient-from: #fcd34d !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)) !important; +} + +.from-yellow-400 { + --tw-gradient-from: #fbbf24 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)) !important; +} + +.from-yellow-500 { + --tw-gradient-from: #f59e0b !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)) !important; +} + +.from-yellow-600 { + --tw-gradient-from: #d97706 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)) !important; +} + +.from-yellow-700 { + --tw-gradient-from: #b45309 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)) !important; +} + +.from-yellow-800 { + --tw-gradient-from: #92400e !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)) !important; +} + +.from-yellow-900 { + --tw-gradient-from: #78350f !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)) !important; +} + +.from-green-50 { + --tw-gradient-from: #ecfdf5 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)) !important; +} + +.from-green-100 { + --tw-gradient-from: #d1fae5 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)) !important; +} + +.from-green-200 { + --tw-gradient-from: #a7f3d0 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)) !important; +} + +.from-green-300 { + --tw-gradient-from: #6ee7b7 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)) !important; +} + +.from-green-400 { + --tw-gradient-from: #34d399 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)) !important; +} + +.from-green-500 { + --tw-gradient-from: #10b981 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)) !important; +} + +.from-green-600 { + --tw-gradient-from: #059669 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)) !important; +} + +.from-green-700 { + --tw-gradient-from: #047857 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)) !important; +} + +.from-green-800 { + --tw-gradient-from: #065f46 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)) !important; +} + +.from-green-900 { + --tw-gradient-from: #064e3b !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)) !important; +} + +.from-blue-50 { + --tw-gradient-from: #eff6ff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)) !important; +} + +.from-blue-100 { + --tw-gradient-from: #dbeafe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)) !important; +} + +.from-blue-200 { + --tw-gradient-from: #bfdbfe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)) !important; +} + +.from-blue-300 { + --tw-gradient-from: #93c5fd !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)) !important; +} + +.from-blue-400 { + --tw-gradient-from: #60a5fa !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)) !important; +} + +.from-blue-500 { + --tw-gradient-from: #3b82f6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)) !important; +} + +.from-blue-600 { + --tw-gradient-from: #2563eb !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)) !important; +} + +.from-blue-700 { + --tw-gradient-from: #1d4ed8 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)) !important; +} + +.from-blue-800 { + --tw-gradient-from: #1e40af !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)) !important; +} + +.from-blue-900 { + --tw-gradient-from: #1e3a8a !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)) !important; +} + +.from-indigo-50 { + --tw-gradient-from: #eef2ff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)) !important; +} + +.from-indigo-100 { + --tw-gradient-from: #e0e7ff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)) !important; +} + +.from-indigo-200 { + --tw-gradient-from: #c7d2fe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)) !important; +} + +.from-indigo-300 { + --tw-gradient-from: #a5b4fc !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)) !important; +} + +.from-indigo-400 { + --tw-gradient-from: #818cf8 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)) !important; +} + +.from-indigo-500 { + --tw-gradient-from: #6366f1 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)) !important; +} + +.from-indigo-600 { + --tw-gradient-from: #4f46e5 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)) !important; +} + +.from-indigo-700 { + --tw-gradient-from: #4338ca !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)) !important; +} + +.from-indigo-800 { + --tw-gradient-from: #3730a3 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)) !important; +} + +.from-indigo-900 { + --tw-gradient-from: #312e81 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)) !important; +} + +.from-purple-50 { + --tw-gradient-from: #f5f3ff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)) !important; +} + +.from-purple-100 { + --tw-gradient-from: #ede9fe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)) !important; +} + +.from-purple-200 { + --tw-gradient-from: #ddd6fe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)) !important; +} + +.from-purple-300 { + --tw-gradient-from: #c4b5fd !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)) !important; +} + +.from-purple-400 { + --tw-gradient-from: #a78bfa !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)) !important; +} + +.from-purple-500 { + --tw-gradient-from: #8b5cf6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)) !important; +} + +.from-purple-600 { + --tw-gradient-from: #7c3aed !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)) !important; +} + +.from-purple-700 { + --tw-gradient-from: #6d28d9 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)) !important; +} + +.from-purple-800 { + --tw-gradient-from: #5b21b6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)) !important; +} + +.from-purple-900 { + --tw-gradient-from: #4c1d95 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)) !important; +} + +.from-pink-50 { + --tw-gradient-from: #fdf2f8 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)) !important; +} + +.from-pink-100 { + --tw-gradient-from: #fce7f3 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)) !important; +} + +.from-pink-200 { + --tw-gradient-from: #fbcfe8 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)) !important; +} + +.from-pink-300 { + --tw-gradient-from: #f9a8d4 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)) !important; +} + +.from-pink-400 { + --tw-gradient-from: #f472b6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)) !important; +} + +.from-pink-500 { + --tw-gradient-from: #ec4899 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)) !important; +} + +.from-pink-600 { + --tw-gradient-from: #db2777 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)) !important; +} + +.from-pink-700 { + --tw-gradient-from: #be185d !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)) !important; +} + +.from-pink-800 { + --tw-gradient-from: #9d174d !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)) !important; +} + +.from-pink-900 { + --tw-gradient-from: #831843 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)) !important; +} + +.from-primary { + --tw-gradient-from: #003197 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 49, 151, 0)) !important; +} + +.via-transparent { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; +} + +.via-current { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; +} + +.via-black { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; +} + +.via-white { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; +} + +.via-gray-50 { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)) !important; +} + +.via-gray-100 { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)) !important; +} + +.via-gray-200 { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)) !important; +} + +.via-gray-300 { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)) !important; +} + +.via-gray-400 { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)) !important; +} + +.via-gray-500 { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)) !important; +} + +.via-gray-600 { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)) !important; +} + +.via-gray-700 { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)) !important; +} + +.via-gray-800 { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)) !important; +} + +.via-gray-900 { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)) !important; +} + +.via-red-50 { + --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)) !important; +} + +.via-red-100 { + --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)) !important; +} + +.via-red-200 { + --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)) !important; +} + +.via-red-300 { + --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)) !important; +} + +.via-red-400 { + --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)) !important; +} + +.via-red-500 { + --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)) !important; +} + +.via-red-600 { + --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)) !important; +} + +.via-red-700 { + --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)) !important; +} + +.via-red-800 { + --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)) !important; +} + +.via-red-900 { + --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important; +} + +.via-yellow-50 { + --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)) !important; +} + +.via-yellow-100 { + --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)) !important; +} + +.via-yellow-200 { + --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)) !important; +} + +.via-yellow-300 { + --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)) !important; +} + +.via-yellow-400 { + --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)) !important; +} + +.via-yellow-500 { + --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)) !important; +} + +.via-yellow-600 { + --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)) !important; +} + +.via-yellow-700 { + --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)) !important; +} + +.via-yellow-800 { + --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)) !important; +} + +.via-yellow-900 { + --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)) !important; +} + +.via-green-50 { + --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)) !important; +} + +.via-green-100 { + --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)) !important; +} + +.via-green-200 { + --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)) !important; +} + +.via-green-300 { + --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)) !important; +} + +.via-green-400 { + --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)) !important; +} + +.via-green-500 { + --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)) !important; +} + +.via-green-600 { + --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)) !important; +} + +.via-green-700 { + --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)) !important; +} + +.via-green-800 { + --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)) !important; +} + +.via-green-900 { + --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)) !important; +} + +.via-blue-50 { + --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)) !important; +} + +.via-blue-100 { + --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)) !important; +} + +.via-blue-200 { + --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)) !important; +} + +.via-blue-300 { + --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)) !important; +} + +.via-blue-400 { + --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)) !important; +} + +.via-blue-500 { + --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)) !important; +} + +.via-blue-600 { + --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)) !important; +} + +.via-blue-700 { + --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)) !important; +} + +.via-blue-800 { + --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)) !important; +} + +.via-blue-900 { + --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)) !important; +} + +.via-indigo-50 { + --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)) !important; +} + +.via-indigo-100 { + --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)) !important; +} + +.via-indigo-200 { + --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)) !important; +} + +.via-indigo-300 { + --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)) !important; +} + +.via-indigo-400 { + --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)) !important; +} + +.via-indigo-500 { + --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)) !important; +} + +.via-indigo-600 { + --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)) !important; +} + +.via-indigo-700 { + --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)) !important; +} + +.via-indigo-800 { + --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)) !important; +} + +.via-indigo-900 { + --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)) !important; +} + +.via-purple-50 { + --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)) !important; +} + +.via-purple-100 { + --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)) !important; +} + +.via-purple-200 { + --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)) !important; +} + +.via-purple-300 { + --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)) !important; +} + +.via-purple-400 { + --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)) !important; +} + +.via-purple-500 { + --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)) !important; +} + +.via-purple-600 { + --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)) !important; +} + +.via-purple-700 { + --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)) !important; +} + +.via-purple-800 { + --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)) !important; +} + +.via-purple-900 { + --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)) !important; +} + +.via-pink-50 { + --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)) !important; +} + +.via-pink-100 { + --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)) !important; +} + +.via-pink-200 { + --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)) !important; +} + +.via-pink-300 { + --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)) !important; +} + +.via-pink-400 { + --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)) !important; +} + +.via-pink-500 { + --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)) !important; +} + +.via-pink-600 { + --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)) !important; +} + +.via-pink-700 { + --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)) !important; +} + +.via-pink-800 { + --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)) !important; +} + +.via-pink-900 { + --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)) !important; +} + +.via-primary { + --tw-gradient-stops: var(--tw-gradient-from), #003197, var(--tw-gradient-to, rgba(0, 49, 151, 0)) !important; +} + +.to-transparent { + --tw-gradient-to: transparent !important; +} + +.to-current { + --tw-gradient-to: currentColor !important; +} + +.to-black { + --tw-gradient-to: #000 !important; +} + +.to-white { + --tw-gradient-to: #fff !important; +} + +.to-gray-50 { + --tw-gradient-to: #f9fafb !important; +} + +.to-gray-100 { + --tw-gradient-to: #f3f4f6 !important; +} + +.to-gray-200 { + --tw-gradient-to: #e5e7eb !important; +} + +.to-gray-300 { + --tw-gradient-to: #d1d5db !important; +} + +.to-gray-400 { + --tw-gradient-to: #9ca3af !important; +} + +.to-gray-500 { + --tw-gradient-to: #6b7280 !important; +} + +.to-gray-600 { + --tw-gradient-to: #4b5563 !important; +} + +.to-gray-700 { + --tw-gradient-to: #374151 !important; +} + +.to-gray-800 { + --tw-gradient-to: #1f2937 !important; +} + +.to-gray-900 { + --tw-gradient-to: #111827 !important; +} + +.to-red-50 { + --tw-gradient-to: #fef2f2 !important; +} + +.to-red-100 { + --tw-gradient-to: #fee2e2 !important; +} + +.to-red-200 { + --tw-gradient-to: #fecaca !important; +} + +.to-red-300 { + --tw-gradient-to: #fca5a5 !important; +} + +.to-red-400 { + --tw-gradient-to: #f87171 !important; +} + +.to-red-500 { + --tw-gradient-to: #ef4444 !important; +} + +.to-red-600 { + --tw-gradient-to: #dc2626 !important; +} + +.to-red-700 { + --tw-gradient-to: #b91c1c !important; +} + +.to-red-800 { + --tw-gradient-to: #991b1b !important; +} + +.to-red-900 { + --tw-gradient-to: #7f1d1d !important; +} + +.to-yellow-50 { + --tw-gradient-to: #fffbeb !important; +} + +.to-yellow-100 { + --tw-gradient-to: #fef3c7 !important; +} + +.to-yellow-200 { + --tw-gradient-to: #fde68a !important; +} + +.to-yellow-300 { + --tw-gradient-to: #fcd34d !important; +} + +.to-yellow-400 { + --tw-gradient-to: #fbbf24 !important; +} + +.to-yellow-500 { + --tw-gradient-to: #f59e0b !important; +} + +.to-yellow-600 { + --tw-gradient-to: #d97706 !important; +} + +.to-yellow-700 { + --tw-gradient-to: #b45309 !important; +} + +.to-yellow-800 { + --tw-gradient-to: #92400e !important; +} + +.to-yellow-900 { + --tw-gradient-to: #78350f !important; +} + +.to-green-50 { + --tw-gradient-to: #ecfdf5 !important; +} + +.to-green-100 { + --tw-gradient-to: #d1fae5 !important; +} + +.to-green-200 { + --tw-gradient-to: #a7f3d0 !important; +} + +.to-green-300 { + --tw-gradient-to: #6ee7b7 !important; +} + +.to-green-400 { + --tw-gradient-to: #34d399 !important; +} + +.to-green-500 { + --tw-gradient-to: #10b981 !important; +} + +.to-green-600 { + --tw-gradient-to: #059669 !important; +} + +.to-green-700 { + --tw-gradient-to: #047857 !important; +} + +.to-green-800 { + --tw-gradient-to: #065f46 !important; +} + +.to-green-900 { + --tw-gradient-to: #064e3b !important; +} + +.to-blue-50 { + --tw-gradient-to: #eff6ff !important; +} + +.to-blue-100 { + --tw-gradient-to: #dbeafe !important; +} + +.to-blue-200 { + --tw-gradient-to: #bfdbfe !important; +} + +.to-blue-300 { + --tw-gradient-to: #93c5fd !important; +} + +.to-blue-400 { + --tw-gradient-to: #60a5fa !important; +} + +.to-blue-500 { + --tw-gradient-to: #3b82f6 !important; +} + +.to-blue-600 { + --tw-gradient-to: #2563eb !important; +} + +.to-blue-700 { + --tw-gradient-to: #1d4ed8 !important; +} + +.to-blue-800 { + --tw-gradient-to: #1e40af !important; +} + +.to-blue-900 { + --tw-gradient-to: #1e3a8a !important; +} + +.to-indigo-50 { + --tw-gradient-to: #eef2ff !important; +} + +.to-indigo-100 { + --tw-gradient-to: #e0e7ff !important; +} + +.to-indigo-200 { + --tw-gradient-to: #c7d2fe !important; +} + +.to-indigo-300 { + --tw-gradient-to: #a5b4fc !important; +} + +.to-indigo-400 { + --tw-gradient-to: #818cf8 !important; +} + +.to-indigo-500 { + --tw-gradient-to: #6366f1 !important; +} + +.to-indigo-600 { + --tw-gradient-to: #4f46e5 !important; +} + +.to-indigo-700 { + --tw-gradient-to: #4338ca !important; +} + +.to-indigo-800 { + --tw-gradient-to: #3730a3 !important; +} + +.to-indigo-900 { + --tw-gradient-to: #312e81 !important; +} + +.to-purple-50 { + --tw-gradient-to: #f5f3ff !important; +} + +.to-purple-100 { + --tw-gradient-to: #ede9fe !important; +} + +.to-purple-200 { + --tw-gradient-to: #ddd6fe !important; +} + +.to-purple-300 { + --tw-gradient-to: #c4b5fd !important; +} + +.to-purple-400 { + --tw-gradient-to: #a78bfa !important; +} + +.to-purple-500 { + --tw-gradient-to: #8b5cf6 !important; +} + +.to-purple-600 { + --tw-gradient-to: #7c3aed !important; +} + +.to-purple-700 { + --tw-gradient-to: #6d28d9 !important; +} + +.to-purple-800 { + --tw-gradient-to: #5b21b6 !important; +} + +.to-purple-900 { + --tw-gradient-to: #4c1d95 !important; +} + +.to-pink-50 { + --tw-gradient-to: #fdf2f8 !important; +} + +.to-pink-100 { + --tw-gradient-to: #fce7f3 !important; +} + +.to-pink-200 { + --tw-gradient-to: #fbcfe8 !important; +} + +.to-pink-300 { + --tw-gradient-to: #f9a8d4 !important; +} + +.to-pink-400 { + --tw-gradient-to: #f472b6 !important; +} + +.to-pink-500 { + --tw-gradient-to: #ec4899 !important; +} + +.to-pink-600 { + --tw-gradient-to: #db2777 !important; +} + +.to-pink-700 { + --tw-gradient-to: #be185d !important; +} + +.to-pink-800 { + --tw-gradient-to: #9d174d !important; +} + +.to-pink-900 { + --tw-gradient-to: #831843 !important; +} + +.to-primary { + --tw-gradient-to: #003197 !important; +} + +.hover\:from-transparent:hover { + --tw-gradient-from: transparent !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; +} + +.hover\:from-current:hover { + --tw-gradient-from: currentColor !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; +} + +.hover\:from-black:hover { + --tw-gradient-from: #000 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; +} + +.hover\:from-white:hover { + --tw-gradient-from: #fff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; +} + +.hover\:from-gray-50:hover { + --tw-gradient-from: #f9fafb !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)) !important; +} + +.hover\:from-gray-100:hover { + --tw-gradient-from: #f3f4f6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)) !important; +} + +.hover\:from-gray-200:hover { + --tw-gradient-from: #e5e7eb !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)) !important; +} + +.hover\:from-gray-300:hover { + --tw-gradient-from: #d1d5db !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)) !important; +} + +.hover\:from-gray-400:hover { + --tw-gradient-from: #9ca3af !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)) !important; +} + +.hover\:from-gray-500:hover { + --tw-gradient-from: #6b7280 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)) !important; +} + +.hover\:from-gray-600:hover { + --tw-gradient-from: #4b5563 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)) !important; +} + +.hover\:from-gray-700:hover { + --tw-gradient-from: #374151 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)) !important; +} + +.hover\:from-gray-800:hover { + --tw-gradient-from: #1f2937 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)) !important; +} + +.hover\:from-gray-900:hover { + --tw-gradient-from: #111827 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)) !important; +} + +.hover\:from-red-50:hover { + --tw-gradient-from: #fef2f2 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)) !important; +} + +.hover\:from-red-100:hover { + --tw-gradient-from: #fee2e2 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)) !important; +} + +.hover\:from-red-200:hover { + --tw-gradient-from: #fecaca !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)) !important; +} + +.hover\:from-red-300:hover { + --tw-gradient-from: #fca5a5 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)) !important; +} + +.hover\:from-red-400:hover { + --tw-gradient-from: #f87171 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)) !important; +} + +.hover\:from-red-500:hover { + --tw-gradient-from: #ef4444 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)) !important; +} + +.hover\:from-red-600:hover { + --tw-gradient-from: #dc2626 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)) !important; +} + +.hover\:from-red-700:hover { + --tw-gradient-from: #b91c1c !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)) !important; +} + +.hover\:from-red-800:hover { + --tw-gradient-from: #991b1b !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)) !important; +} + +.hover\:from-red-900:hover { + --tw-gradient-from: #7f1d1d !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important; +} + +.hover\:from-yellow-50:hover { + --tw-gradient-from: #fffbeb !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)) !important; +} + +.hover\:from-yellow-100:hover { + --tw-gradient-from: #fef3c7 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)) !important; +} + +.hover\:from-yellow-200:hover { + --tw-gradient-from: #fde68a !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)) !important; +} + +.hover\:from-yellow-300:hover { + --tw-gradient-from: #fcd34d !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)) !important; +} + +.hover\:from-yellow-400:hover { + --tw-gradient-from: #fbbf24 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)) !important; +} + +.hover\:from-yellow-500:hover { + --tw-gradient-from: #f59e0b !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)) !important; +} + +.hover\:from-yellow-600:hover { + --tw-gradient-from: #d97706 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)) !important; +} + +.hover\:from-yellow-700:hover { + --tw-gradient-from: #b45309 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)) !important; +} + +.hover\:from-yellow-800:hover { + --tw-gradient-from: #92400e !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)) !important; +} + +.hover\:from-yellow-900:hover { + --tw-gradient-from: #78350f !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)) !important; +} + +.hover\:from-green-50:hover { + --tw-gradient-from: #ecfdf5 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)) !important; +} + +.hover\:from-green-100:hover { + --tw-gradient-from: #d1fae5 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)) !important; +} + +.hover\:from-green-200:hover { + --tw-gradient-from: #a7f3d0 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)) !important; +} + +.hover\:from-green-300:hover { + --tw-gradient-from: #6ee7b7 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)) !important; +} + +.hover\:from-green-400:hover { + --tw-gradient-from: #34d399 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)) !important; +} + +.hover\:from-green-500:hover { + --tw-gradient-from: #10b981 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)) !important; +} + +.hover\:from-green-600:hover { + --tw-gradient-from: #059669 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)) !important; +} + +.hover\:from-green-700:hover { + --tw-gradient-from: #047857 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)) !important; +} + +.hover\:from-green-800:hover { + --tw-gradient-from: #065f46 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)) !important; +} + +.hover\:from-green-900:hover { + --tw-gradient-from: #064e3b !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)) !important; +} + +.hover\:from-blue-50:hover { + --tw-gradient-from: #eff6ff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)) !important; +} + +.hover\:from-blue-100:hover { + --tw-gradient-from: #dbeafe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)) !important; +} + +.hover\:from-blue-200:hover { + --tw-gradient-from: #bfdbfe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)) !important; +} + +.hover\:from-blue-300:hover { + --tw-gradient-from: #93c5fd !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)) !important; +} + +.hover\:from-blue-400:hover { + --tw-gradient-from: #60a5fa !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)) !important; +} + +.hover\:from-blue-500:hover { + --tw-gradient-from: #3b82f6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)) !important; +} + +.hover\:from-blue-600:hover { + --tw-gradient-from: #2563eb !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)) !important; +} + +.hover\:from-blue-700:hover { + --tw-gradient-from: #1d4ed8 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)) !important; +} + +.hover\:from-blue-800:hover { + --tw-gradient-from: #1e40af !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)) !important; +} + +.hover\:from-blue-900:hover { + --tw-gradient-from: #1e3a8a !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)) !important; +} + +.hover\:from-indigo-50:hover { + --tw-gradient-from: #eef2ff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)) !important; +} + +.hover\:from-indigo-100:hover { + --tw-gradient-from: #e0e7ff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)) !important; +} + +.hover\:from-indigo-200:hover { + --tw-gradient-from: #c7d2fe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)) !important; +} + +.hover\:from-indigo-300:hover { + --tw-gradient-from: #a5b4fc !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)) !important; +} + +.hover\:from-indigo-400:hover { + --tw-gradient-from: #818cf8 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)) !important; +} + +.hover\:from-indigo-500:hover { + --tw-gradient-from: #6366f1 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)) !important; +} + +.hover\:from-indigo-600:hover { + --tw-gradient-from: #4f46e5 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)) !important; +} + +.hover\:from-indigo-700:hover { + --tw-gradient-from: #4338ca !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)) !important; +} + +.hover\:from-indigo-800:hover { + --tw-gradient-from: #3730a3 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)) !important; +} + +.hover\:from-indigo-900:hover { + --tw-gradient-from: #312e81 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)) !important; +} + +.hover\:from-purple-50:hover { + --tw-gradient-from: #f5f3ff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)) !important; +} + +.hover\:from-purple-100:hover { + --tw-gradient-from: #ede9fe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)) !important; +} + +.hover\:from-purple-200:hover { + --tw-gradient-from: #ddd6fe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)) !important; +} + +.hover\:from-purple-300:hover { + --tw-gradient-from: #c4b5fd !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)) !important; +} + +.hover\:from-purple-400:hover { + --tw-gradient-from: #a78bfa !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)) !important; +} + +.hover\:from-purple-500:hover { + --tw-gradient-from: #8b5cf6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)) !important; +} + +.hover\:from-purple-600:hover { + --tw-gradient-from: #7c3aed !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)) !important; +} + +.hover\:from-purple-700:hover { + --tw-gradient-from: #6d28d9 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)) !important; +} + +.hover\:from-purple-800:hover { + --tw-gradient-from: #5b21b6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)) !important; +} + +.hover\:from-purple-900:hover { + --tw-gradient-from: #4c1d95 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)) !important; +} + +.hover\:from-pink-50:hover { + --tw-gradient-from: #fdf2f8 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)) !important; +} + +.hover\:from-pink-100:hover { + --tw-gradient-from: #fce7f3 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)) !important; +} + +.hover\:from-pink-200:hover { + --tw-gradient-from: #fbcfe8 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)) !important; +} + +.hover\:from-pink-300:hover { + --tw-gradient-from: #f9a8d4 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)) !important; +} + +.hover\:from-pink-400:hover { + --tw-gradient-from: #f472b6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)) !important; +} + +.hover\:from-pink-500:hover { + --tw-gradient-from: #ec4899 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)) !important; +} + +.hover\:from-pink-600:hover { + --tw-gradient-from: #db2777 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)) !important; +} + +.hover\:from-pink-700:hover { + --tw-gradient-from: #be185d !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)) !important; +} + +.hover\:from-pink-800:hover { + --tw-gradient-from: #9d174d !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)) !important; +} + +.hover\:from-pink-900:hover { + --tw-gradient-from: #831843 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)) !important; +} + +.hover\:from-primary:hover { + --tw-gradient-from: #003197 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 49, 151, 0)) !important; +} + +.hover\:via-transparent:hover { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; +} + +.hover\:via-current:hover { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; +} + +.hover\:via-black:hover { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; +} + +.hover\:via-white:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; +} + +.hover\:via-gray-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)) !important; +} + +.hover\:via-gray-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)) !important; +} + +.hover\:via-gray-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)) !important; +} + +.hover\:via-gray-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)) !important; +} + +.hover\:via-gray-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)) !important; +} + +.hover\:via-gray-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)) !important; +} + +.hover\:via-gray-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)) !important; +} + +.hover\:via-gray-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)) !important; +} + +.hover\:via-gray-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)) !important; +} + +.hover\:via-gray-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)) !important; +} + +.hover\:via-red-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)) !important; +} + +.hover\:via-red-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)) !important; +} + +.hover\:via-red-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)) !important; +} + +.hover\:via-red-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)) !important; +} + +.hover\:via-red-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)) !important; +} + +.hover\:via-red-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)) !important; +} + +.hover\:via-red-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)) !important; +} + +.hover\:via-red-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)) !important; +} + +.hover\:via-red-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)) !important; +} + +.hover\:via-red-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important; +} + +.hover\:via-yellow-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)) !important; +} + +.hover\:via-yellow-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)) !important; +} + +.hover\:via-yellow-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)) !important; +} + +.hover\:via-yellow-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)) !important; +} + +.hover\:via-yellow-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)) !important; +} + +.hover\:via-yellow-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)) !important; +} + +.hover\:via-yellow-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)) !important; +} + +.hover\:via-yellow-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)) !important; +} + +.hover\:via-yellow-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)) !important; +} + +.hover\:via-yellow-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)) !important; +} + +.hover\:via-green-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)) !important; +} + +.hover\:via-green-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)) !important; +} + +.hover\:via-green-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)) !important; +} + +.hover\:via-green-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)) !important; +} + +.hover\:via-green-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)) !important; +} + +.hover\:via-green-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)) !important; +} + +.hover\:via-green-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)) !important; +} + +.hover\:via-green-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)) !important; +} + +.hover\:via-green-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)) !important; +} + +.hover\:via-green-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)) !important; +} + +.hover\:via-blue-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)) !important; +} + +.hover\:via-blue-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)) !important; +} + +.hover\:via-blue-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)) !important; +} + +.hover\:via-blue-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)) !important; +} + +.hover\:via-blue-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)) !important; +} + +.hover\:via-blue-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)) !important; +} + +.hover\:via-blue-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)) !important; +} + +.hover\:via-blue-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)) !important; +} + +.hover\:via-blue-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)) !important; +} + +.hover\:via-blue-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)) !important; +} + +.hover\:via-indigo-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)) !important; +} + +.hover\:via-indigo-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)) !important; +} + +.hover\:via-indigo-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)) !important; +} + +.hover\:via-indigo-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)) !important; +} + +.hover\:via-indigo-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)) !important; +} + +.hover\:via-indigo-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)) !important; +} + +.hover\:via-indigo-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)) !important; +} + +.hover\:via-indigo-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)) !important; +} + +.hover\:via-indigo-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)) !important; +} + +.hover\:via-indigo-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)) !important; +} + +.hover\:via-purple-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)) !important; +} + +.hover\:via-purple-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)) !important; +} + +.hover\:via-purple-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)) !important; +} + +.hover\:via-purple-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)) !important; +} + +.hover\:via-purple-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)) !important; +} + +.hover\:via-purple-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)) !important; +} + +.hover\:via-purple-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)) !important; +} + +.hover\:via-purple-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)) !important; +} + +.hover\:via-purple-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)) !important; +} + +.hover\:via-purple-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)) !important; +} + +.hover\:via-pink-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)) !important; +} + +.hover\:via-pink-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)) !important; +} + +.hover\:via-pink-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)) !important; +} + +.hover\:via-pink-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)) !important; +} + +.hover\:via-pink-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)) !important; +} + +.hover\:via-pink-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)) !important; +} + +.hover\:via-pink-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)) !important; +} + +.hover\:via-pink-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)) !important; +} + +.hover\:via-pink-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)) !important; +} + +.hover\:via-pink-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)) !important; +} + +.hover\:via-primary:hover { + --tw-gradient-stops: var(--tw-gradient-from), #003197, var(--tw-gradient-to, rgba(0, 49, 151, 0)) !important; +} + +.hover\:to-transparent:hover { + --tw-gradient-to: transparent !important; +} + +.hover\:to-current:hover { + --tw-gradient-to: currentColor !important; +} + +.hover\:to-black:hover { + --tw-gradient-to: #000 !important; +} + +.hover\:to-white:hover { + --tw-gradient-to: #fff !important; +} + +.hover\:to-gray-50:hover { + --tw-gradient-to: #f9fafb !important; +} + +.hover\:to-gray-100:hover { + --tw-gradient-to: #f3f4f6 !important; +} + +.hover\:to-gray-200:hover { + --tw-gradient-to: #e5e7eb !important; +} + +.hover\:to-gray-300:hover { + --tw-gradient-to: #d1d5db !important; +} + +.hover\:to-gray-400:hover { + --tw-gradient-to: #9ca3af !important; +} + +.hover\:to-gray-500:hover { + --tw-gradient-to: #6b7280 !important; +} + +.hover\:to-gray-600:hover { + --tw-gradient-to: #4b5563 !important; +} + +.hover\:to-gray-700:hover { + --tw-gradient-to: #374151 !important; +} + +.hover\:to-gray-800:hover { + --tw-gradient-to: #1f2937 !important; +} + +.hover\:to-gray-900:hover { + --tw-gradient-to: #111827 !important; +} + +.hover\:to-red-50:hover { + --tw-gradient-to: #fef2f2 !important; +} + +.hover\:to-red-100:hover { + --tw-gradient-to: #fee2e2 !important; +} + +.hover\:to-red-200:hover { + --tw-gradient-to: #fecaca !important; +} + +.hover\:to-red-300:hover { + --tw-gradient-to: #fca5a5 !important; +} + +.hover\:to-red-400:hover { + --tw-gradient-to: #f87171 !important; +} + +.hover\:to-red-500:hover { + --tw-gradient-to: #ef4444 !important; +} + +.hover\:to-red-600:hover { + --tw-gradient-to: #dc2626 !important; +} + +.hover\:to-red-700:hover { + --tw-gradient-to: #b91c1c !important; +} + +.hover\:to-red-800:hover { + --tw-gradient-to: #991b1b !important; +} + +.hover\:to-red-900:hover { + --tw-gradient-to: #7f1d1d !important; +} + +.hover\:to-yellow-50:hover { + --tw-gradient-to: #fffbeb !important; +} + +.hover\:to-yellow-100:hover { + --tw-gradient-to: #fef3c7 !important; +} + +.hover\:to-yellow-200:hover { + --tw-gradient-to: #fde68a !important; +} + +.hover\:to-yellow-300:hover { + --tw-gradient-to: #fcd34d !important; +} + +.hover\:to-yellow-400:hover { + --tw-gradient-to: #fbbf24 !important; +} + +.hover\:to-yellow-500:hover { + --tw-gradient-to: #f59e0b !important; +} + +.hover\:to-yellow-600:hover { + --tw-gradient-to: #d97706 !important; +} + +.hover\:to-yellow-700:hover { + --tw-gradient-to: #b45309 !important; +} + +.hover\:to-yellow-800:hover { + --tw-gradient-to: #92400e !important; +} + +.hover\:to-yellow-900:hover { + --tw-gradient-to: #78350f !important; +} + +.hover\:to-green-50:hover { + --tw-gradient-to: #ecfdf5 !important; +} + +.hover\:to-green-100:hover { + --tw-gradient-to: #d1fae5 !important; +} + +.hover\:to-green-200:hover { + --tw-gradient-to: #a7f3d0 !important; +} + +.hover\:to-green-300:hover { + --tw-gradient-to: #6ee7b7 !important; +} + +.hover\:to-green-400:hover { + --tw-gradient-to: #34d399 !important; +} + +.hover\:to-green-500:hover { + --tw-gradient-to: #10b981 !important; +} + +.hover\:to-green-600:hover { + --tw-gradient-to: #059669 !important; +} + +.hover\:to-green-700:hover { + --tw-gradient-to: #047857 !important; +} + +.hover\:to-green-800:hover { + --tw-gradient-to: #065f46 !important; +} + +.hover\:to-green-900:hover { + --tw-gradient-to: #064e3b !important; +} + +.hover\:to-blue-50:hover { + --tw-gradient-to: #eff6ff !important; +} + +.hover\:to-blue-100:hover { + --tw-gradient-to: #dbeafe !important; +} + +.hover\:to-blue-200:hover { + --tw-gradient-to: #bfdbfe !important; +} + +.hover\:to-blue-300:hover { + --tw-gradient-to: #93c5fd !important; +} + +.hover\:to-blue-400:hover { + --tw-gradient-to: #60a5fa !important; +} + +.hover\:to-blue-500:hover { + --tw-gradient-to: #3b82f6 !important; +} + +.hover\:to-blue-600:hover { + --tw-gradient-to: #2563eb !important; +} + +.hover\:to-blue-700:hover { + --tw-gradient-to: #1d4ed8 !important; +} + +.hover\:to-blue-800:hover { + --tw-gradient-to: #1e40af !important; +} + +.hover\:to-blue-900:hover { + --tw-gradient-to: #1e3a8a !important; +} + +.hover\:to-indigo-50:hover { + --tw-gradient-to: #eef2ff !important; +} + +.hover\:to-indigo-100:hover { + --tw-gradient-to: #e0e7ff !important; +} + +.hover\:to-indigo-200:hover { + --tw-gradient-to: #c7d2fe !important; +} + +.hover\:to-indigo-300:hover { + --tw-gradient-to: #a5b4fc !important; +} + +.hover\:to-indigo-400:hover { + --tw-gradient-to: #818cf8 !important; +} + +.hover\:to-indigo-500:hover { + --tw-gradient-to: #6366f1 !important; +} + +.hover\:to-indigo-600:hover { + --tw-gradient-to: #4f46e5 !important; +} + +.hover\:to-indigo-700:hover { + --tw-gradient-to: #4338ca !important; +} + +.hover\:to-indigo-800:hover { + --tw-gradient-to: #3730a3 !important; +} + +.hover\:to-indigo-900:hover { + --tw-gradient-to: #312e81 !important; +} + +.hover\:to-purple-50:hover { + --tw-gradient-to: #f5f3ff !important; +} + +.hover\:to-purple-100:hover { + --tw-gradient-to: #ede9fe !important; +} + +.hover\:to-purple-200:hover { + --tw-gradient-to: #ddd6fe !important; +} + +.hover\:to-purple-300:hover { + --tw-gradient-to: #c4b5fd !important; +} + +.hover\:to-purple-400:hover { + --tw-gradient-to: #a78bfa !important; +} + +.hover\:to-purple-500:hover { + --tw-gradient-to: #8b5cf6 !important; +} + +.hover\:to-purple-600:hover { + --tw-gradient-to: #7c3aed !important; +} + +.hover\:to-purple-700:hover { + --tw-gradient-to: #6d28d9 !important; +} + +.hover\:to-purple-800:hover { + --tw-gradient-to: #5b21b6 !important; +} + +.hover\:to-purple-900:hover { + --tw-gradient-to: #4c1d95 !important; +} + +.hover\:to-pink-50:hover { + --tw-gradient-to: #fdf2f8 !important; +} + +.hover\:to-pink-100:hover { + --tw-gradient-to: #fce7f3 !important; +} + +.hover\:to-pink-200:hover { + --tw-gradient-to: #fbcfe8 !important; +} + +.hover\:to-pink-300:hover { + --tw-gradient-to: #f9a8d4 !important; +} + +.hover\:to-pink-400:hover { + --tw-gradient-to: #f472b6 !important; +} + +.hover\:to-pink-500:hover { + --tw-gradient-to: #ec4899 !important; +} + +.hover\:to-pink-600:hover { + --tw-gradient-to: #db2777 !important; +} + +.hover\:to-pink-700:hover { + --tw-gradient-to: #be185d !important; +} + +.hover\:to-pink-800:hover { + --tw-gradient-to: #9d174d !important; +} + +.hover\:to-pink-900:hover { + --tw-gradient-to: #831843 !important; +} + +.hover\:to-primary:hover { + --tw-gradient-to: #003197 !important; +} + +.focus\:from-transparent:focus { + --tw-gradient-from: transparent !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; +} + +.focus\:from-current:focus { + --tw-gradient-from: currentColor !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; +} + +.focus\:from-black:focus { + --tw-gradient-from: #000 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; +} + +.focus\:from-white:focus { + --tw-gradient-from: #fff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; +} + +.focus\:from-gray-50:focus { + --tw-gradient-from: #f9fafb !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)) !important; +} + +.focus\:from-gray-100:focus { + --tw-gradient-from: #f3f4f6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)) !important; +} + +.focus\:from-gray-200:focus { + --tw-gradient-from: #e5e7eb !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)) !important; +} + +.focus\:from-gray-300:focus { + --tw-gradient-from: #d1d5db !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)) !important; +} + +.focus\:from-gray-400:focus { + --tw-gradient-from: #9ca3af !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)) !important; +} + +.focus\:from-gray-500:focus { + --tw-gradient-from: #6b7280 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)) !important; +} + +.focus\:from-gray-600:focus { + --tw-gradient-from: #4b5563 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)) !important; +} + +.focus\:from-gray-700:focus { + --tw-gradient-from: #374151 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)) !important; +} + +.focus\:from-gray-800:focus { + --tw-gradient-from: #1f2937 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)) !important; +} + +.focus\:from-gray-900:focus { + --tw-gradient-from: #111827 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)) !important; +} + +.focus\:from-red-50:focus { + --tw-gradient-from: #fef2f2 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)) !important; +} + +.focus\:from-red-100:focus { + --tw-gradient-from: #fee2e2 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)) !important; +} + +.focus\:from-red-200:focus { + --tw-gradient-from: #fecaca !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)) !important; +} + +.focus\:from-red-300:focus { + --tw-gradient-from: #fca5a5 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)) !important; +} + +.focus\:from-red-400:focus { + --tw-gradient-from: #f87171 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)) !important; +} + +.focus\:from-red-500:focus { + --tw-gradient-from: #ef4444 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)) !important; +} + +.focus\:from-red-600:focus { + --tw-gradient-from: #dc2626 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)) !important; +} + +.focus\:from-red-700:focus { + --tw-gradient-from: #b91c1c !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)) !important; +} + +.focus\:from-red-800:focus { + --tw-gradient-from: #991b1b !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)) !important; +} + +.focus\:from-red-900:focus { + --tw-gradient-from: #7f1d1d !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important; +} + +.focus\:from-yellow-50:focus { + --tw-gradient-from: #fffbeb !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)) !important; +} + +.focus\:from-yellow-100:focus { + --tw-gradient-from: #fef3c7 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)) !important; +} + +.focus\:from-yellow-200:focus { + --tw-gradient-from: #fde68a !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)) !important; +} + +.focus\:from-yellow-300:focus { + --tw-gradient-from: #fcd34d !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)) !important; +} + +.focus\:from-yellow-400:focus { + --tw-gradient-from: #fbbf24 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)) !important; +} + +.focus\:from-yellow-500:focus { + --tw-gradient-from: #f59e0b !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)) !important; +} + +.focus\:from-yellow-600:focus { + --tw-gradient-from: #d97706 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)) !important; +} + +.focus\:from-yellow-700:focus { + --tw-gradient-from: #b45309 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)) !important; +} + +.focus\:from-yellow-800:focus { + --tw-gradient-from: #92400e !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)) !important; +} + +.focus\:from-yellow-900:focus { + --tw-gradient-from: #78350f !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)) !important; +} + +.focus\:from-green-50:focus { + --tw-gradient-from: #ecfdf5 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)) !important; +} + +.focus\:from-green-100:focus { + --tw-gradient-from: #d1fae5 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)) !important; +} + +.focus\:from-green-200:focus { + --tw-gradient-from: #a7f3d0 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)) !important; +} + +.focus\:from-green-300:focus { + --tw-gradient-from: #6ee7b7 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)) !important; +} + +.focus\:from-green-400:focus { + --tw-gradient-from: #34d399 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)) !important; +} + +.focus\:from-green-500:focus { + --tw-gradient-from: #10b981 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)) !important; +} + +.focus\:from-green-600:focus { + --tw-gradient-from: #059669 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)) !important; +} + +.focus\:from-green-700:focus { + --tw-gradient-from: #047857 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)) !important; +} + +.focus\:from-green-800:focus { + --tw-gradient-from: #065f46 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)) !important; +} + +.focus\:from-green-900:focus { + --tw-gradient-from: #064e3b !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)) !important; +} + +.focus\:from-blue-50:focus { + --tw-gradient-from: #eff6ff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)) !important; +} + +.focus\:from-blue-100:focus { + --tw-gradient-from: #dbeafe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)) !important; +} + +.focus\:from-blue-200:focus { + --tw-gradient-from: #bfdbfe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)) !important; +} + +.focus\:from-blue-300:focus { + --tw-gradient-from: #93c5fd !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)) !important; +} + +.focus\:from-blue-400:focus { + --tw-gradient-from: #60a5fa !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)) !important; +} + +.focus\:from-blue-500:focus { + --tw-gradient-from: #3b82f6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)) !important; +} + +.focus\:from-blue-600:focus { + --tw-gradient-from: #2563eb !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)) !important; +} + +.focus\:from-blue-700:focus { + --tw-gradient-from: #1d4ed8 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)) !important; +} + +.focus\:from-blue-800:focus { + --tw-gradient-from: #1e40af !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)) !important; +} + +.focus\:from-blue-900:focus { + --tw-gradient-from: #1e3a8a !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)) !important; +} + +.focus\:from-indigo-50:focus { + --tw-gradient-from: #eef2ff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)) !important; +} + +.focus\:from-indigo-100:focus { + --tw-gradient-from: #e0e7ff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)) !important; +} + +.focus\:from-indigo-200:focus { + --tw-gradient-from: #c7d2fe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)) !important; +} + +.focus\:from-indigo-300:focus { + --tw-gradient-from: #a5b4fc !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)) !important; +} + +.focus\:from-indigo-400:focus { + --tw-gradient-from: #818cf8 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)) !important; +} + +.focus\:from-indigo-500:focus { + --tw-gradient-from: #6366f1 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)) !important; +} + +.focus\:from-indigo-600:focus { + --tw-gradient-from: #4f46e5 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)) !important; +} + +.focus\:from-indigo-700:focus { + --tw-gradient-from: #4338ca !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)) !important; +} + +.focus\:from-indigo-800:focus { + --tw-gradient-from: #3730a3 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)) !important; +} + +.focus\:from-indigo-900:focus { + --tw-gradient-from: #312e81 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)) !important; +} + +.focus\:from-purple-50:focus { + --tw-gradient-from: #f5f3ff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)) !important; +} + +.focus\:from-purple-100:focus { + --tw-gradient-from: #ede9fe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)) !important; +} + +.focus\:from-purple-200:focus { + --tw-gradient-from: #ddd6fe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)) !important; +} + +.focus\:from-purple-300:focus { + --tw-gradient-from: #c4b5fd !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)) !important; +} + +.focus\:from-purple-400:focus { + --tw-gradient-from: #a78bfa !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)) !important; +} + +.focus\:from-purple-500:focus { + --tw-gradient-from: #8b5cf6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)) !important; +} + +.focus\:from-purple-600:focus { + --tw-gradient-from: #7c3aed !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)) !important; +} + +.focus\:from-purple-700:focus { + --tw-gradient-from: #6d28d9 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)) !important; +} + +.focus\:from-purple-800:focus { + --tw-gradient-from: #5b21b6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)) !important; +} + +.focus\:from-purple-900:focus { + --tw-gradient-from: #4c1d95 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)) !important; +} + +.focus\:from-pink-50:focus { + --tw-gradient-from: #fdf2f8 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)) !important; +} + +.focus\:from-pink-100:focus { + --tw-gradient-from: #fce7f3 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)) !important; +} + +.focus\:from-pink-200:focus { + --tw-gradient-from: #fbcfe8 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)) !important; +} + +.focus\:from-pink-300:focus { + --tw-gradient-from: #f9a8d4 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)) !important; +} + +.focus\:from-pink-400:focus { + --tw-gradient-from: #f472b6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)) !important; +} + +.focus\:from-pink-500:focus { + --tw-gradient-from: #ec4899 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)) !important; +} + +.focus\:from-pink-600:focus { + --tw-gradient-from: #db2777 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)) !important; +} + +.focus\:from-pink-700:focus { + --tw-gradient-from: #be185d !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)) !important; +} + +.focus\:from-pink-800:focus { + --tw-gradient-from: #9d174d !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)) !important; +} + +.focus\:from-pink-900:focus { + --tw-gradient-from: #831843 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)) !important; +} + +.focus\:from-primary:focus { + --tw-gradient-from: #003197 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 49, 151, 0)) !important; +} + +.focus\:via-transparent:focus { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; +} + +.focus\:via-current:focus { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; +} + +.focus\:via-black:focus { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; +} + +.focus\:via-white:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; +} + +.focus\:via-gray-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)) !important; +} + +.focus\:via-gray-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)) !important; +} + +.focus\:via-gray-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)) !important; +} + +.focus\:via-gray-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)) !important; +} + +.focus\:via-gray-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)) !important; +} + +.focus\:via-gray-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)) !important; +} + +.focus\:via-gray-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)) !important; +} + +.focus\:via-gray-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)) !important; +} + +.focus\:via-gray-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)) !important; +} + +.focus\:via-gray-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)) !important; +} + +.focus\:via-red-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)) !important; +} + +.focus\:via-red-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)) !important; +} + +.focus\:via-red-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)) !important; +} + +.focus\:via-red-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)) !important; +} + +.focus\:via-red-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)) !important; +} + +.focus\:via-red-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)) !important; +} + +.focus\:via-red-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)) !important; +} + +.focus\:via-red-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)) !important; +} + +.focus\:via-red-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)) !important; +} + +.focus\:via-red-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important; +} + +.focus\:via-yellow-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)) !important; +} + +.focus\:via-yellow-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)) !important; +} + +.focus\:via-yellow-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)) !important; +} + +.focus\:via-yellow-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)) !important; +} + +.focus\:via-yellow-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)) !important; +} + +.focus\:via-yellow-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)) !important; +} + +.focus\:via-yellow-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)) !important; +} + +.focus\:via-yellow-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)) !important; +} + +.focus\:via-yellow-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)) !important; +} + +.focus\:via-yellow-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)) !important; +} + +.focus\:via-green-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)) !important; +} + +.focus\:via-green-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)) !important; +} + +.focus\:via-green-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)) !important; +} + +.focus\:via-green-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)) !important; +} + +.focus\:via-green-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)) !important; +} + +.focus\:via-green-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)) !important; +} + +.focus\:via-green-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)) !important; +} + +.focus\:via-green-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)) !important; +} + +.focus\:via-green-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)) !important; +} + +.focus\:via-green-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)) !important; +} + +.focus\:via-blue-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)) !important; +} + +.focus\:via-blue-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)) !important; +} + +.focus\:via-blue-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)) !important; +} + +.focus\:via-blue-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)) !important; +} + +.focus\:via-blue-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)) !important; +} + +.focus\:via-blue-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)) !important; +} + +.focus\:via-blue-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)) !important; +} + +.focus\:via-blue-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)) !important; +} + +.focus\:via-blue-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)) !important; +} + +.focus\:via-blue-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)) !important; +} + +.focus\:via-indigo-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)) !important; +} + +.focus\:via-indigo-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)) !important; +} + +.focus\:via-indigo-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)) !important; +} + +.focus\:via-indigo-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)) !important; +} + +.focus\:via-indigo-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)) !important; +} + +.focus\:via-indigo-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)) !important; +} + +.focus\:via-indigo-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)) !important; +} + +.focus\:via-indigo-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)) !important; +} + +.focus\:via-indigo-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)) !important; +} + +.focus\:via-indigo-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)) !important; +} + +.focus\:via-purple-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)) !important; +} + +.focus\:via-purple-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)) !important; +} + +.focus\:via-purple-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)) !important; +} + +.focus\:via-purple-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)) !important; +} + +.focus\:via-purple-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)) !important; +} + +.focus\:via-purple-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)) !important; +} + +.focus\:via-purple-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)) !important; +} + +.focus\:via-purple-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)) !important; +} + +.focus\:via-purple-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)) !important; +} + +.focus\:via-purple-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)) !important; +} + +.focus\:via-pink-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)) !important; +} + +.focus\:via-pink-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)) !important; +} + +.focus\:via-pink-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)) !important; +} + +.focus\:via-pink-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)) !important; +} + +.focus\:via-pink-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)) !important; +} + +.focus\:via-pink-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)) !important; +} + +.focus\:via-pink-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)) !important; +} + +.focus\:via-pink-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)) !important; +} + +.focus\:via-pink-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)) !important; +} + +.focus\:via-pink-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)) !important; +} + +.focus\:via-primary:focus { + --tw-gradient-stops: var(--tw-gradient-from), #003197, var(--tw-gradient-to, rgba(0, 49, 151, 0)) !important; +} + +.focus\:to-transparent:focus { + --tw-gradient-to: transparent !important; +} + +.focus\:to-current:focus { + --tw-gradient-to: currentColor !important; +} + +.focus\:to-black:focus { + --tw-gradient-to: #000 !important; +} + +.focus\:to-white:focus { + --tw-gradient-to: #fff !important; +} + +.focus\:to-gray-50:focus { + --tw-gradient-to: #f9fafb !important; +} + +.focus\:to-gray-100:focus { + --tw-gradient-to: #f3f4f6 !important; +} + +.focus\:to-gray-200:focus { + --tw-gradient-to: #e5e7eb !important; +} + +.focus\:to-gray-300:focus { + --tw-gradient-to: #d1d5db !important; +} + +.focus\:to-gray-400:focus { + --tw-gradient-to: #9ca3af !important; +} + +.focus\:to-gray-500:focus { + --tw-gradient-to: #6b7280 !important; +} + +.focus\:to-gray-600:focus { + --tw-gradient-to: #4b5563 !important; +} + +.focus\:to-gray-700:focus { + --tw-gradient-to: #374151 !important; +} + +.focus\:to-gray-800:focus { + --tw-gradient-to: #1f2937 !important; +} + +.focus\:to-gray-900:focus { + --tw-gradient-to: #111827 !important; +} + +.focus\:to-red-50:focus { + --tw-gradient-to: #fef2f2 !important; +} + +.focus\:to-red-100:focus { + --tw-gradient-to: #fee2e2 !important; +} + +.focus\:to-red-200:focus { + --tw-gradient-to: #fecaca !important; +} + +.focus\:to-red-300:focus { + --tw-gradient-to: #fca5a5 !important; +} + +.focus\:to-red-400:focus { + --tw-gradient-to: #f87171 !important; +} + +.focus\:to-red-500:focus { + --tw-gradient-to: #ef4444 !important; +} + +.focus\:to-red-600:focus { + --tw-gradient-to: #dc2626 !important; +} + +.focus\:to-red-700:focus { + --tw-gradient-to: #b91c1c !important; +} + +.focus\:to-red-800:focus { + --tw-gradient-to: #991b1b !important; +} + +.focus\:to-red-900:focus { + --tw-gradient-to: #7f1d1d !important; +} + +.focus\:to-yellow-50:focus { + --tw-gradient-to: #fffbeb !important; +} + +.focus\:to-yellow-100:focus { + --tw-gradient-to: #fef3c7 !important; +} + +.focus\:to-yellow-200:focus { + --tw-gradient-to: #fde68a !important; +} + +.focus\:to-yellow-300:focus { + --tw-gradient-to: #fcd34d !important; +} + +.focus\:to-yellow-400:focus { + --tw-gradient-to: #fbbf24 !important; +} + +.focus\:to-yellow-500:focus { + --tw-gradient-to: #f59e0b !important; +} + +.focus\:to-yellow-600:focus { + --tw-gradient-to: #d97706 !important; +} + +.focus\:to-yellow-700:focus { + --tw-gradient-to: #b45309 !important; +} + +.focus\:to-yellow-800:focus { + --tw-gradient-to: #92400e !important; +} + +.focus\:to-yellow-900:focus { + --tw-gradient-to: #78350f !important; +} + +.focus\:to-green-50:focus { + --tw-gradient-to: #ecfdf5 !important; +} + +.focus\:to-green-100:focus { + --tw-gradient-to: #d1fae5 !important; +} + +.focus\:to-green-200:focus { + --tw-gradient-to: #a7f3d0 !important; +} + +.focus\:to-green-300:focus { + --tw-gradient-to: #6ee7b7 !important; +} + +.focus\:to-green-400:focus { + --tw-gradient-to: #34d399 !important; +} + +.focus\:to-green-500:focus { + --tw-gradient-to: #10b981 !important; +} + +.focus\:to-green-600:focus { + --tw-gradient-to: #059669 !important; +} + +.focus\:to-green-700:focus { + --tw-gradient-to: #047857 !important; +} + +.focus\:to-green-800:focus { + --tw-gradient-to: #065f46 !important; +} + +.focus\:to-green-900:focus { + --tw-gradient-to: #064e3b !important; +} + +.focus\:to-blue-50:focus { + --tw-gradient-to: #eff6ff !important; +} + +.focus\:to-blue-100:focus { + --tw-gradient-to: #dbeafe !important; +} + +.focus\:to-blue-200:focus { + --tw-gradient-to: #bfdbfe !important; +} + +.focus\:to-blue-300:focus { + --tw-gradient-to: #93c5fd !important; +} + +.focus\:to-blue-400:focus { + --tw-gradient-to: #60a5fa !important; +} + +.focus\:to-blue-500:focus { + --tw-gradient-to: #3b82f6 !important; +} + +.focus\:to-blue-600:focus { + --tw-gradient-to: #2563eb !important; +} + +.focus\:to-blue-700:focus { + --tw-gradient-to: #1d4ed8 !important; +} + +.focus\:to-blue-800:focus { + --tw-gradient-to: #1e40af !important; +} + +.focus\:to-blue-900:focus { + --tw-gradient-to: #1e3a8a !important; +} + +.focus\:to-indigo-50:focus { + --tw-gradient-to: #eef2ff !important; +} + +.focus\:to-indigo-100:focus { + --tw-gradient-to: #e0e7ff !important; +} + +.focus\:to-indigo-200:focus { + --tw-gradient-to: #c7d2fe !important; +} + +.focus\:to-indigo-300:focus { + --tw-gradient-to: #a5b4fc !important; +} + +.focus\:to-indigo-400:focus { + --tw-gradient-to: #818cf8 !important; +} + +.focus\:to-indigo-500:focus { + --tw-gradient-to: #6366f1 !important; +} + +.focus\:to-indigo-600:focus { + --tw-gradient-to: #4f46e5 !important; +} + +.focus\:to-indigo-700:focus { + --tw-gradient-to: #4338ca !important; +} + +.focus\:to-indigo-800:focus { + --tw-gradient-to: #3730a3 !important; +} + +.focus\:to-indigo-900:focus { + --tw-gradient-to: #312e81 !important; +} + +.focus\:to-purple-50:focus { + --tw-gradient-to: #f5f3ff !important; +} + +.focus\:to-purple-100:focus { + --tw-gradient-to: #ede9fe !important; +} + +.focus\:to-purple-200:focus { + --tw-gradient-to: #ddd6fe !important; +} + +.focus\:to-purple-300:focus { + --tw-gradient-to: #c4b5fd !important; +} + +.focus\:to-purple-400:focus { + --tw-gradient-to: #a78bfa !important; +} + +.focus\:to-purple-500:focus { + --tw-gradient-to: #8b5cf6 !important; +} + +.focus\:to-purple-600:focus { + --tw-gradient-to: #7c3aed !important; +} + +.focus\:to-purple-700:focus { + --tw-gradient-to: #6d28d9 !important; +} + +.focus\:to-purple-800:focus { + --tw-gradient-to: #5b21b6 !important; +} + +.focus\:to-purple-900:focus { + --tw-gradient-to: #4c1d95 !important; +} + +.focus\:to-pink-50:focus { + --tw-gradient-to: #fdf2f8 !important; +} + +.focus\:to-pink-100:focus { + --tw-gradient-to: #fce7f3 !important; +} + +.focus\:to-pink-200:focus { + --tw-gradient-to: #fbcfe8 !important; +} + +.focus\:to-pink-300:focus { + --tw-gradient-to: #f9a8d4 !important; +} + +.focus\:to-pink-400:focus { + --tw-gradient-to: #f472b6 !important; +} + +.focus\:to-pink-500:focus { + --tw-gradient-to: #ec4899 !important; +} + +.focus\:to-pink-600:focus { + --tw-gradient-to: #db2777 !important; +} + +.focus\:to-pink-700:focus { + --tw-gradient-to: #be185d !important; +} + +.focus\:to-pink-800:focus { + --tw-gradient-to: #9d174d !important; +} + +.focus\:to-pink-900:focus { + --tw-gradient-to: #831843 !important; +} + +.focus\:to-primary:focus { + --tw-gradient-to: #003197 !important; +} + +.bg-opacity-0 { + --tw-bg-opacity: 0 !important; +} + +.bg-opacity-5 { + --tw-bg-opacity: 0.05 !important; +} + +.bg-opacity-10 { + --tw-bg-opacity: 0.1 !important; +} + +.bg-opacity-20 { + --tw-bg-opacity: 0.2 !important; +} + +.bg-opacity-25 { + --tw-bg-opacity: 0.25 !important; +} + +.bg-opacity-30 { + --tw-bg-opacity: 0.3 !important; +} + +.bg-opacity-40 { + --tw-bg-opacity: 0.4 !important; +} + +.bg-opacity-50 { + --tw-bg-opacity: 0.5 !important; +} + +.bg-opacity-60 { + --tw-bg-opacity: 0.6 !important; +} + +.bg-opacity-70 { + --tw-bg-opacity: 0.7 !important; +} + +.bg-opacity-75 { + --tw-bg-opacity: 0.75 !important; +} + +.bg-opacity-80 { + --tw-bg-opacity: 0.8 !important; +} + +.bg-opacity-90 { + --tw-bg-opacity: 0.9 !important; +} + +.bg-opacity-95 { + --tw-bg-opacity: 0.95 !important; +} + +.bg-opacity-100 { + --tw-bg-opacity: 1 !important; +} + +.group:hover .group-hover\:bg-opacity-0 { + --tw-bg-opacity: 0 !important; +} + +.group:hover .group-hover\:bg-opacity-5 { + --tw-bg-opacity: 0.05 !important; +} + +.group:hover .group-hover\:bg-opacity-10 { + --tw-bg-opacity: 0.1 !important; +} + +.group:hover .group-hover\:bg-opacity-20 { + --tw-bg-opacity: 0.2 !important; +} + +.group:hover .group-hover\:bg-opacity-25 { + --tw-bg-opacity: 0.25 !important; +} + +.group:hover .group-hover\:bg-opacity-30 { + --tw-bg-opacity: 0.3 !important; +} + +.group:hover .group-hover\:bg-opacity-40 { + --tw-bg-opacity: 0.4 !important; +} + +.group:hover .group-hover\:bg-opacity-50 { + --tw-bg-opacity: 0.5 !important; +} + +.group:hover .group-hover\:bg-opacity-60 { + --tw-bg-opacity: 0.6 !important; +} + +.group:hover .group-hover\:bg-opacity-70 { + --tw-bg-opacity: 0.7 !important; +} + +.group:hover .group-hover\:bg-opacity-75 { + --tw-bg-opacity: 0.75 !important; +} + +.group:hover .group-hover\:bg-opacity-80 { + --tw-bg-opacity: 0.8 !important; +} + +.group:hover .group-hover\:bg-opacity-90 { + --tw-bg-opacity: 0.9 !important; +} + +.group:hover .group-hover\:bg-opacity-95 { + --tw-bg-opacity: 0.95 !important; +} + +.group:hover .group-hover\:bg-opacity-100 { + --tw-bg-opacity: 1 !important; +} + +.focus-within\:bg-opacity-0:focus-within { + --tw-bg-opacity: 0 !important; +} + +.focus-within\:bg-opacity-5:focus-within { + --tw-bg-opacity: 0.05 !important; +} + +.focus-within\:bg-opacity-10:focus-within { + --tw-bg-opacity: 0.1 !important; +} + +.focus-within\:bg-opacity-20:focus-within { + --tw-bg-opacity: 0.2 !important; +} + +.focus-within\:bg-opacity-25:focus-within { + --tw-bg-opacity: 0.25 !important; +} + +.focus-within\:bg-opacity-30:focus-within { + --tw-bg-opacity: 0.3 !important; +} + +.focus-within\:bg-opacity-40:focus-within { + --tw-bg-opacity: 0.4 !important; +} + +.focus-within\:bg-opacity-50:focus-within { + --tw-bg-opacity: 0.5 !important; +} + +.focus-within\:bg-opacity-60:focus-within { + --tw-bg-opacity: 0.6 !important; +} + +.focus-within\:bg-opacity-70:focus-within { + --tw-bg-opacity: 0.7 !important; +} + +.focus-within\:bg-opacity-75:focus-within { + --tw-bg-opacity: 0.75 !important; +} + +.focus-within\:bg-opacity-80:focus-within { + --tw-bg-opacity: 0.8 !important; +} + +.focus-within\:bg-opacity-90:focus-within { + --tw-bg-opacity: 0.9 !important; +} + +.focus-within\:bg-opacity-95:focus-within { + --tw-bg-opacity: 0.95 !important; +} + +.focus-within\:bg-opacity-100:focus-within { + --tw-bg-opacity: 1 !important; +} + +.hover\:bg-opacity-0:hover { + --tw-bg-opacity: 0 !important; +} + +.hover\:bg-opacity-5:hover { + --tw-bg-opacity: 0.05 !important; +} + +.hover\:bg-opacity-10:hover { + --tw-bg-opacity: 0.1 !important; +} + +.hover\:bg-opacity-20:hover { + --tw-bg-opacity: 0.2 !important; +} + +.hover\:bg-opacity-25:hover { + --tw-bg-opacity: 0.25 !important; +} + +.hover\:bg-opacity-30:hover { + --tw-bg-opacity: 0.3 !important; +} + +.hover\:bg-opacity-40:hover { + --tw-bg-opacity: 0.4 !important; +} + +.hover\:bg-opacity-50:hover { + --tw-bg-opacity: 0.5 !important; +} + +.hover\:bg-opacity-60:hover { + --tw-bg-opacity: 0.6 !important; +} + +.hover\:bg-opacity-70:hover { + --tw-bg-opacity: 0.7 !important; +} + +.hover\:bg-opacity-75:hover { + --tw-bg-opacity: 0.75 !important; +} + +.hover\:bg-opacity-80:hover { + --tw-bg-opacity: 0.8 !important; +} + +.hover\:bg-opacity-90:hover { + --tw-bg-opacity: 0.9 !important; +} + +.hover\:bg-opacity-95:hover { + --tw-bg-opacity: 0.95 !important; +} + +.hover\:bg-opacity-100:hover { + --tw-bg-opacity: 1 !important; +} + +.focus\:bg-opacity-0:focus { + --tw-bg-opacity: 0 !important; +} + +.focus\:bg-opacity-5:focus { + --tw-bg-opacity: 0.05 !important; +} + +.focus\:bg-opacity-10:focus { + --tw-bg-opacity: 0.1 !important; +} + +.focus\:bg-opacity-20:focus { + --tw-bg-opacity: 0.2 !important; +} + +.focus\:bg-opacity-25:focus { + --tw-bg-opacity: 0.25 !important; +} + +.focus\:bg-opacity-30:focus { + --tw-bg-opacity: 0.3 !important; +} + +.focus\:bg-opacity-40:focus { + --tw-bg-opacity: 0.4 !important; +} + +.focus\:bg-opacity-50:focus { + --tw-bg-opacity: 0.5 !important; +} + +.focus\:bg-opacity-60:focus { + --tw-bg-opacity: 0.6 !important; +} + +.focus\:bg-opacity-70:focus { + --tw-bg-opacity: 0.7 !important; +} + +.focus\:bg-opacity-75:focus { + --tw-bg-opacity: 0.75 !important; +} + +.focus\:bg-opacity-80:focus { + --tw-bg-opacity: 0.8 !important; +} + +.focus\:bg-opacity-90:focus { + --tw-bg-opacity: 0.9 !important; +} + +.focus\:bg-opacity-95:focus { + --tw-bg-opacity: 0.95 !important; +} + +.focus\:bg-opacity-100:focus { + --tw-bg-opacity: 1 !important; +} + +.bg-bottom { + background-position: bottom !important; +} + +.bg-center { + background-position: center !important; +} + +.bg-left { + background-position: left !important; +} + +.bg-left-bottom { + background-position: left bottom !important; +} + +.bg-left-top { + background-position: left top !important; +} + +.bg-right { + background-position: right !important; +} + +.bg-right-bottom { + background-position: right bottom !important; +} + +.bg-right-top { + background-position: right top !important; +} + +.bg-top { + background-position: top !important; +} + +.bg-repeat { + background-repeat: repeat !important; +} + +.bg-no-repeat { + background-repeat: no-repeat !important; +} + +.bg-repeat-x { + background-repeat: repeat-x !important; +} + +.bg-repeat-y { + background-repeat: repeat-y !important; +} + +.bg-repeat-round { + background-repeat: round !important; +} + +.bg-repeat-space { + background-repeat: space !important; +} + +.bg-auto { + background-size: auto !important; +} + +.bg-cover { + background-size: cover !important; +} + +.bg-contain { + background-size: contain !important; +} + +.border-collapse { + border-collapse: collapse !important; +} + +.border-separate { + border-collapse: separate !important; +} + +.border-transparent { + border-color: transparent !important; +} + +.border-current { + border-color: currentColor !important; +} + +.border-black { + --tw-border-opacity: 1 !important; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important; +} + +.border-white { + --tw-border-opacity: 1 !important; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important; +} + +.border-gray-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)) !important; +} + +.border-gray-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)) !important; +} + +.border-gray-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)) !important; +} + +.border-gray-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)) !important; +} + +.border-gray-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)) !important; +} + +.border-gray-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)) !important; +} + +.border-gray-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)) !important; +} + +.border-gray-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)) !important; +} + +.border-gray-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)) !important; +} + +.border-gray-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)) !important; +} + +.border-red-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 242, 242, var(--tw-border-opacity)) !important; +} + +.border-red-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 226, 226, var(--tw-border-opacity)) !important; +} + +.border-red-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 202, 202, var(--tw-border-opacity)) !important; +} + +.border-red-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 165, 165, var(--tw-border-opacity)) !important; +} + +.border-red-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(248, 113, 113, var(--tw-border-opacity)) !important; +} + +.border-red-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(239, 68, 68, var(--tw-border-opacity)) !important; +} + +.border-red-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(220, 38, 38, var(--tw-border-opacity)) !important; +} + +.border-red-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(185, 28, 28, var(--tw-border-opacity)) !important; +} + +.border-red-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(153, 27, 27, var(--tw-border-opacity)) !important; +} + +.border-red-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(127, 29, 29, var(--tw-border-opacity)) !important; +} + +.border-yellow-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(255, 251, 235, var(--tw-border-opacity)) !important; +} + +.border-yellow-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 243, 199, var(--tw-border-opacity)) !important; +} + +.border-yellow-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(253, 230, 138, var(--tw-border-opacity)) !important; +} + +.border-yellow-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 211, 77, var(--tw-border-opacity)) !important; +} + +.border-yellow-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(251, 191, 36, var(--tw-border-opacity)) !important; +} + +.border-yellow-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)) !important; +} + +.border-yellow-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(217, 119, 6, var(--tw-border-opacity)) !important; +} + +.border-yellow-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(180, 83, 9, var(--tw-border-opacity)) !important; +} + +.border-yellow-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(146, 64, 14, var(--tw-border-opacity)) !important; +} + +.border-yellow-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(120, 53, 15, var(--tw-border-opacity)) !important; +} + +.border-green-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(236, 253, 245, var(--tw-border-opacity)) !important; +} + +.border-green-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(209, 250, 229, var(--tw-border-opacity)) !important; +} + +.border-green-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(167, 243, 208, var(--tw-border-opacity)) !important; +} + +.border-green-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(110, 231, 183, var(--tw-border-opacity)) !important; +} + +.border-green-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(52, 211, 153, var(--tw-border-opacity)) !important; +} + +.border-green-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(16, 185, 129, var(--tw-border-opacity)) !important; +} + +.border-green-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(5, 150, 105, var(--tw-border-opacity)) !important; +} + +.border-green-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(4, 120, 87, var(--tw-border-opacity)) !important; +} + +.border-green-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(6, 95, 70, var(--tw-border-opacity)) !important; +} + +.border-green-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(6, 78, 59, var(--tw-border-opacity)) !important; +} + +.border-blue-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(239, 246, 255, var(--tw-border-opacity)) !important; +} + +.border-blue-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(219, 234, 254, var(--tw-border-opacity)) !important; +} + +.border-blue-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(191, 219, 254, var(--tw-border-opacity)) !important; +} + +.border-blue-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(147, 197, 253, var(--tw-border-opacity)) !important; +} + +.border-blue-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(96, 165, 250, var(--tw-border-opacity)) !important; +} + +.border-blue-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)) !important; +} + +.border-blue-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(37, 99, 235, var(--tw-border-opacity)) !important; +} + +.border-blue-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(29, 78, 216, var(--tw-border-opacity)) !important; +} + +.border-blue-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(30, 64, 175, var(--tw-border-opacity)) !important; +} + +.border-blue-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(30, 58, 138, var(--tw-border-opacity)) !important; +} + +.border-indigo-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(238, 242, 255, var(--tw-border-opacity)) !important; +} + +.border-indigo-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(224, 231, 255, var(--tw-border-opacity)) !important; +} + +.border-indigo-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(199, 210, 254, var(--tw-border-opacity)) !important; +} + +.border-indigo-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(165, 180, 252, var(--tw-border-opacity)) !important; +} + +.border-indigo-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(129, 140, 248, var(--tw-border-opacity)) !important; +} + +.border-indigo-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(99, 102, 241, var(--tw-border-opacity)) !important; +} + +.border-indigo-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(79, 70, 229, var(--tw-border-opacity)) !important; +} + +.border-indigo-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(67, 56, 202, var(--tw-border-opacity)) !important; +} + +.border-indigo-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(55, 48, 163, var(--tw-border-opacity)) !important; +} + +.border-indigo-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(49, 46, 129, var(--tw-border-opacity)) !important; +} + +.border-purple-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(245, 243, 255, var(--tw-border-opacity)) !important; +} + +.border-purple-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(237, 233, 254, var(--tw-border-opacity)) !important; +} + +.border-purple-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(221, 214, 254, var(--tw-border-opacity)) !important; +} + +.border-purple-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(196, 181, 253, var(--tw-border-opacity)) !important; +} + +.border-purple-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(167, 139, 250, var(--tw-border-opacity)) !important; +} + +.border-purple-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(139, 92, 246, var(--tw-border-opacity)) !important; +} + +.border-purple-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(124, 58, 237, var(--tw-border-opacity)) !important; +} + +.border-purple-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(109, 40, 217, var(--tw-border-opacity)) !important; +} + +.border-purple-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(91, 33, 182, var(--tw-border-opacity)) !important; +} + +.border-purple-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(76, 29, 149, var(--tw-border-opacity)) !important; +} + +.border-pink-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(253, 242, 248, var(--tw-border-opacity)) !important; +} + +.border-pink-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 231, 243, var(--tw-border-opacity)) !important; +} + +.border-pink-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(251, 207, 232, var(--tw-border-opacity)) !important; +} + +.border-pink-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(249, 168, 212, var(--tw-border-opacity)) !important; +} + +.border-pink-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(244, 114, 182, var(--tw-border-opacity)) !important; +} + +.border-pink-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(236, 72, 153, var(--tw-border-opacity)) !important; +} + +.border-pink-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(219, 39, 119, var(--tw-border-opacity)) !important; +} + +.border-pink-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(190, 24, 93, var(--tw-border-opacity)) !important; +} + +.border-pink-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(157, 23, 77, var(--tw-border-opacity)) !important; +} + +.border-pink-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(131, 24, 67, var(--tw-border-opacity)) !important; +} + +.border-primary { + --tw-border-opacity: 1 !important; + border-color: rgba(0, 49, 151, var(--tw-border-opacity)) !important; +} + +.group:hover .group-hover\:border-transparent { + border-color: transparent !important; +} + +.group:hover .group-hover\:border-current { + border-color: currentColor !important; +} + +.group:hover .group-hover\:border-black { + --tw-border-opacity: 1 !important; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important; +} + +.group:hover .group-hover\:border-white { + --tw-border-opacity: 1 !important; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important; +} + +.group:hover .group-hover\:border-gray-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)) !important; +} + +.group:hover .group-hover\:border-gray-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)) !important; +} + +.group:hover .group-hover\:border-gray-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)) !important; +} + +.group:hover .group-hover\:border-gray-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)) !important; +} + +.group:hover .group-hover\:border-gray-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)) !important; +} + +.group:hover .group-hover\:border-gray-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)) !important; +} + +.group:hover .group-hover\:border-gray-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)) !important; +} + +.group:hover .group-hover\:border-gray-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)) !important; +} + +.group:hover .group-hover\:border-gray-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)) !important; +} + +.group:hover .group-hover\:border-gray-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)) !important; +} + +.group:hover .group-hover\:border-red-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 242, 242, var(--tw-border-opacity)) !important; +} + +.group:hover .group-hover\:border-red-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 226, 226, var(--tw-border-opacity)) !important; +} + +.group:hover .group-hover\:border-red-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 202, 202, var(--tw-border-opacity)) !important; +} + +.group:hover .group-hover\:border-red-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 165, 165, var(--tw-border-opacity)) !important; +} + +.group:hover .group-hover\:border-red-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(248, 113, 113, var(--tw-border-opacity)) !important; +} + +.group:hover .group-hover\:border-red-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(239, 68, 68, var(--tw-border-opacity)) !important; +} + +.group:hover .group-hover\:border-red-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(220, 38, 38, var(--tw-border-opacity)) !important; +} + +.group:hover .group-hover\:border-red-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(185, 28, 28, var(--tw-border-opacity)) !important; +} + +.group:hover .group-hover\:border-red-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(153, 27, 27, var(--tw-border-opacity)) !important; +} + +.group:hover .group-hover\:border-red-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(127, 29, 29, var(--tw-border-opacity)) !important; +} + +.group:hover .group-hover\:border-yellow-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(255, 251, 235, var(--tw-border-opacity)) !important; +} + +.group:hover .group-hover\:border-yellow-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 243, 199, var(--tw-border-opacity)) !important; +} + +.group:hover .group-hover\:border-yellow-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(253, 230, 138, var(--tw-border-opacity)) !important; +} + +.group:hover .group-hover\:border-yellow-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 211, 77, var(--tw-border-opacity)) !important; +} + +.group:hover .group-hover\:border-yellow-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(251, 191, 36, var(--tw-border-opacity)) !important; +} + +.group:hover .group-hover\:border-yellow-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)) !important; +} + +.group:hover .group-hover\:border-yellow-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(217, 119, 6, var(--tw-border-opacity)) !important; +} + +.group:hover .group-hover\:border-yellow-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(180, 83, 9, var(--tw-border-opacity)) !important; +} + +.group:hover .group-hover\:border-yellow-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(146, 64, 14, var(--tw-border-opacity)) !important; +} + +.group:hover .group-hover\:border-yellow-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(120, 53, 15, var(--tw-border-opacity)) !important; +} + +.group:hover .group-hover\:border-green-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(236, 253, 245, var(--tw-border-opacity)) !important; +} + +.group:hover .group-hover\:border-green-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(209, 250, 229, var(--tw-border-opacity)) !important; +} + +.group:hover .group-hover\:border-green-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(167, 243, 208, var(--tw-border-opacity)) !important; +} + +.group:hover .group-hover\:border-green-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(110, 231, 183, var(--tw-border-opacity)) !important; +} + +.group:hover .group-hover\:border-green-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(52, 211, 153, var(--tw-border-opacity)) !important; +} + +.group:hover .group-hover\:border-green-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(16, 185, 129, var(--tw-border-opacity)) !important; +} + +.group:hover .group-hover\:border-green-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(5, 150, 105, var(--tw-border-opacity)) !important; +} + +.group:hover .group-hover\:border-green-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(4, 120, 87, var(--tw-border-opacity)) !important; +} + +.group:hover .group-hover\:border-green-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(6, 95, 70, var(--tw-border-opacity)) !important; +} + +.group:hover .group-hover\:border-green-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(6, 78, 59, var(--tw-border-opacity)) !important; +} + +.group:hover .group-hover\:border-blue-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(239, 246, 255, var(--tw-border-opacity)) !important; +} + +.group:hover .group-hover\:border-blue-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(219, 234, 254, var(--tw-border-opacity)) !important; +} + +.group:hover .group-hover\:border-blue-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(191, 219, 254, var(--tw-border-opacity)) !important; +} + +.group:hover .group-hover\:border-blue-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(147, 197, 253, var(--tw-border-opacity)) !important; +} + +.group:hover .group-hover\:border-blue-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(96, 165, 250, var(--tw-border-opacity)) !important; +} + +.group:hover .group-hover\:border-blue-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)) !important; +} + +.group:hover .group-hover\:border-blue-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(37, 99, 235, var(--tw-border-opacity)) !important; +} + +.group:hover .group-hover\:border-blue-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(29, 78, 216, var(--tw-border-opacity)) !important; +} + +.group:hover .group-hover\:border-blue-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(30, 64, 175, var(--tw-border-opacity)) !important; +} + +.group:hover .group-hover\:border-blue-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(30, 58, 138, var(--tw-border-opacity)) !important; +} + +.group:hover .group-hover\:border-indigo-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(238, 242, 255, var(--tw-border-opacity)) !important; +} + +.group:hover .group-hover\:border-indigo-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(224, 231, 255, var(--tw-border-opacity)) !important; +} + +.group:hover .group-hover\:border-indigo-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(199, 210, 254, var(--tw-border-opacity)) !important; +} + +.group:hover .group-hover\:border-indigo-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(165, 180, 252, var(--tw-border-opacity)) !important; +} + +.group:hover .group-hover\:border-indigo-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(129, 140, 248, var(--tw-border-opacity)) !important; +} + +.group:hover .group-hover\:border-indigo-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(99, 102, 241, var(--tw-border-opacity)) !important; +} + +.group:hover .group-hover\:border-indigo-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(79, 70, 229, var(--tw-border-opacity)) !important; +} + +.group:hover .group-hover\:border-indigo-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(67, 56, 202, var(--tw-border-opacity)) !important; +} + +.group:hover .group-hover\:border-indigo-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(55, 48, 163, var(--tw-border-opacity)) !important; +} + +.group:hover .group-hover\:border-indigo-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(49, 46, 129, var(--tw-border-opacity)) !important; +} + +.group:hover .group-hover\:border-purple-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(245, 243, 255, var(--tw-border-opacity)) !important; +} + +.group:hover .group-hover\:border-purple-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(237, 233, 254, var(--tw-border-opacity)) !important; +} + +.group:hover .group-hover\:border-purple-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(221, 214, 254, var(--tw-border-opacity)) !important; +} + +.group:hover .group-hover\:border-purple-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(196, 181, 253, var(--tw-border-opacity)) !important; +} + +.group:hover .group-hover\:border-purple-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(167, 139, 250, var(--tw-border-opacity)) !important; +} + +.group:hover .group-hover\:border-purple-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(139, 92, 246, var(--tw-border-opacity)) !important; +} + +.group:hover .group-hover\:border-purple-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(124, 58, 237, var(--tw-border-opacity)) !important; +} + +.group:hover .group-hover\:border-purple-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(109, 40, 217, var(--tw-border-opacity)) !important; +} + +.group:hover .group-hover\:border-purple-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(91, 33, 182, var(--tw-border-opacity)) !important; +} + +.group:hover .group-hover\:border-purple-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(76, 29, 149, var(--tw-border-opacity)) !important; +} + +.group:hover .group-hover\:border-pink-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(253, 242, 248, var(--tw-border-opacity)) !important; +} + +.group:hover .group-hover\:border-pink-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 231, 243, var(--tw-border-opacity)) !important; +} + +.group:hover .group-hover\:border-pink-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(251, 207, 232, var(--tw-border-opacity)) !important; +} + +.group:hover .group-hover\:border-pink-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(249, 168, 212, var(--tw-border-opacity)) !important; +} + +.group:hover .group-hover\:border-pink-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(244, 114, 182, var(--tw-border-opacity)) !important; +} + +.group:hover .group-hover\:border-pink-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(236, 72, 153, var(--tw-border-opacity)) !important; +} + +.group:hover .group-hover\:border-pink-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(219, 39, 119, var(--tw-border-opacity)) !important; +} + +.group:hover .group-hover\:border-pink-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(190, 24, 93, var(--tw-border-opacity)) !important; +} + +.group:hover .group-hover\:border-pink-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(157, 23, 77, var(--tw-border-opacity)) !important; +} + +.group:hover .group-hover\:border-pink-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(131, 24, 67, var(--tw-border-opacity)) !important; +} + +.group:hover .group-hover\:border-primary { + --tw-border-opacity: 1 !important; + border-color: rgba(0, 49, 151, var(--tw-border-opacity)) !important; +} + +.focus-within\:border-transparent:focus-within { + border-color: transparent !important; +} + +.focus-within\:border-current:focus-within { + border-color: currentColor !important; +} + +.focus-within\:border-black:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important; +} + +.focus-within\:border-white:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important; +} + +.focus-within\:border-gray-50:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)) !important; +} + +.focus-within\:border-gray-100:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)) !important; +} + +.focus-within\:border-gray-200:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)) !important; +} + +.focus-within\:border-gray-300:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)) !important; +} + +.focus-within\:border-gray-400:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)) !important; +} + +.focus-within\:border-gray-500:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)) !important; +} + +.focus-within\:border-gray-600:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)) !important; +} + +.focus-within\:border-gray-700:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)) !important; +} + +.focus-within\:border-gray-800:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)) !important; +} + +.focus-within\:border-gray-900:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)) !important; +} + +.focus-within\:border-red-50:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 242, 242, var(--tw-border-opacity)) !important; +} + +.focus-within\:border-red-100:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 226, 226, var(--tw-border-opacity)) !important; +} + +.focus-within\:border-red-200:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 202, 202, var(--tw-border-opacity)) !important; +} + +.focus-within\:border-red-300:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 165, 165, var(--tw-border-opacity)) !important; +} + +.focus-within\:border-red-400:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(248, 113, 113, var(--tw-border-opacity)) !important; +} + +.focus-within\:border-red-500:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(239, 68, 68, var(--tw-border-opacity)) !important; +} + +.focus-within\:border-red-600:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(220, 38, 38, var(--tw-border-opacity)) !important; +} + +.focus-within\:border-red-700:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(185, 28, 28, var(--tw-border-opacity)) !important; +} + +.focus-within\:border-red-800:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(153, 27, 27, var(--tw-border-opacity)) !important; +} + +.focus-within\:border-red-900:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(127, 29, 29, var(--tw-border-opacity)) !important; +} + +.focus-within\:border-yellow-50:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(255, 251, 235, var(--tw-border-opacity)) !important; +} + +.focus-within\:border-yellow-100:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 243, 199, var(--tw-border-opacity)) !important; +} + +.focus-within\:border-yellow-200:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(253, 230, 138, var(--tw-border-opacity)) !important; +} + +.focus-within\:border-yellow-300:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 211, 77, var(--tw-border-opacity)) !important; +} + +.focus-within\:border-yellow-400:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(251, 191, 36, var(--tw-border-opacity)) !important; +} + +.focus-within\:border-yellow-500:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)) !important; +} + +.focus-within\:border-yellow-600:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(217, 119, 6, var(--tw-border-opacity)) !important; +} + +.focus-within\:border-yellow-700:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(180, 83, 9, var(--tw-border-opacity)) !important; +} + +.focus-within\:border-yellow-800:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(146, 64, 14, var(--tw-border-opacity)) !important; +} + +.focus-within\:border-yellow-900:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(120, 53, 15, var(--tw-border-opacity)) !important; +} + +.focus-within\:border-green-50:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(236, 253, 245, var(--tw-border-opacity)) !important; +} + +.focus-within\:border-green-100:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(209, 250, 229, var(--tw-border-opacity)) !important; +} + +.focus-within\:border-green-200:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(167, 243, 208, var(--tw-border-opacity)) !important; +} + +.focus-within\:border-green-300:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(110, 231, 183, var(--tw-border-opacity)) !important; +} + +.focus-within\:border-green-400:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(52, 211, 153, var(--tw-border-opacity)) !important; +} + +.focus-within\:border-green-500:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(16, 185, 129, var(--tw-border-opacity)) !important; +} + +.focus-within\:border-green-600:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(5, 150, 105, var(--tw-border-opacity)) !important; +} + +.focus-within\:border-green-700:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(4, 120, 87, var(--tw-border-opacity)) !important; +} + +.focus-within\:border-green-800:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(6, 95, 70, var(--tw-border-opacity)) !important; +} + +.focus-within\:border-green-900:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(6, 78, 59, var(--tw-border-opacity)) !important; +} + +.focus-within\:border-blue-50:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(239, 246, 255, var(--tw-border-opacity)) !important; +} + +.focus-within\:border-blue-100:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(219, 234, 254, var(--tw-border-opacity)) !important; +} + +.focus-within\:border-blue-200:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(191, 219, 254, var(--tw-border-opacity)) !important; +} + +.focus-within\:border-blue-300:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(147, 197, 253, var(--tw-border-opacity)) !important; +} + +.focus-within\:border-blue-400:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(96, 165, 250, var(--tw-border-opacity)) !important; +} + +.focus-within\:border-blue-500:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)) !important; +} + +.focus-within\:border-blue-600:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(37, 99, 235, var(--tw-border-opacity)) !important; +} + +.focus-within\:border-blue-700:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(29, 78, 216, var(--tw-border-opacity)) !important; +} + +.focus-within\:border-blue-800:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(30, 64, 175, var(--tw-border-opacity)) !important; +} + +.focus-within\:border-blue-900:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(30, 58, 138, var(--tw-border-opacity)) !important; +} + +.focus-within\:border-indigo-50:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(238, 242, 255, var(--tw-border-opacity)) !important; +} + +.focus-within\:border-indigo-100:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(224, 231, 255, var(--tw-border-opacity)) !important; +} + +.focus-within\:border-indigo-200:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(199, 210, 254, var(--tw-border-opacity)) !important; +} + +.focus-within\:border-indigo-300:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(165, 180, 252, var(--tw-border-opacity)) !important; +} + +.focus-within\:border-indigo-400:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(129, 140, 248, var(--tw-border-opacity)) !important; +} + +.focus-within\:border-indigo-500:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(99, 102, 241, var(--tw-border-opacity)) !important; +} + +.focus-within\:border-indigo-600:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(79, 70, 229, var(--tw-border-opacity)) !important; +} + +.focus-within\:border-indigo-700:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(67, 56, 202, var(--tw-border-opacity)) !important; +} + +.focus-within\:border-indigo-800:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(55, 48, 163, var(--tw-border-opacity)) !important; +} + +.focus-within\:border-indigo-900:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(49, 46, 129, var(--tw-border-opacity)) !important; +} + +.focus-within\:border-purple-50:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(245, 243, 255, var(--tw-border-opacity)) !important; +} + +.focus-within\:border-purple-100:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(237, 233, 254, var(--tw-border-opacity)) !important; +} + +.focus-within\:border-purple-200:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(221, 214, 254, var(--tw-border-opacity)) !important; +} + +.focus-within\:border-purple-300:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(196, 181, 253, var(--tw-border-opacity)) !important; +} + +.focus-within\:border-purple-400:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(167, 139, 250, var(--tw-border-opacity)) !important; +} + +.focus-within\:border-purple-500:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(139, 92, 246, var(--tw-border-opacity)) !important; +} + +.focus-within\:border-purple-600:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(124, 58, 237, var(--tw-border-opacity)) !important; +} + +.focus-within\:border-purple-700:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(109, 40, 217, var(--tw-border-opacity)) !important; +} + +.focus-within\:border-purple-800:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(91, 33, 182, var(--tw-border-opacity)) !important; +} + +.focus-within\:border-purple-900:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(76, 29, 149, var(--tw-border-opacity)) !important; +} + +.focus-within\:border-pink-50:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(253, 242, 248, var(--tw-border-opacity)) !important; +} + +.focus-within\:border-pink-100:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 231, 243, var(--tw-border-opacity)) !important; +} + +.focus-within\:border-pink-200:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(251, 207, 232, var(--tw-border-opacity)) !important; +} + +.focus-within\:border-pink-300:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(249, 168, 212, var(--tw-border-opacity)) !important; +} + +.focus-within\:border-pink-400:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(244, 114, 182, var(--tw-border-opacity)) !important; +} + +.focus-within\:border-pink-500:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(236, 72, 153, var(--tw-border-opacity)) !important; +} + +.focus-within\:border-pink-600:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(219, 39, 119, var(--tw-border-opacity)) !important; +} + +.focus-within\:border-pink-700:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(190, 24, 93, var(--tw-border-opacity)) !important; +} + +.focus-within\:border-pink-800:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(157, 23, 77, var(--tw-border-opacity)) !important; +} + +.focus-within\:border-pink-900:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(131, 24, 67, var(--tw-border-opacity)) !important; +} + +.focus-within\:border-primary:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(0, 49, 151, var(--tw-border-opacity)) !important; +} + +.hover\:border-transparent:hover { + border-color: transparent !important; +} + +.hover\:border-current:hover { + border-color: currentColor !important; +} + +.hover\:border-black:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important; +} + +.hover\:border-white:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important; +} + +.hover\:border-gray-50:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)) !important; +} + +.hover\:border-gray-100:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)) !important; +} + +.hover\:border-gray-200:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)) !important; +} + +.hover\:border-gray-300:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)) !important; +} + +.hover\:border-gray-400:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)) !important; +} + +.hover\:border-gray-500:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)) !important; +} + +.hover\:border-gray-600:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)) !important; +} + +.hover\:border-gray-700:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)) !important; +} + +.hover\:border-gray-800:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)) !important; +} + +.hover\:border-gray-900:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)) !important; +} + +.hover\:border-red-50:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 242, 242, var(--tw-border-opacity)) !important; +} + +.hover\:border-red-100:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 226, 226, var(--tw-border-opacity)) !important; +} + +.hover\:border-red-200:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 202, 202, var(--tw-border-opacity)) !important; +} + +.hover\:border-red-300:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 165, 165, var(--tw-border-opacity)) !important; +} + +.hover\:border-red-400:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(248, 113, 113, var(--tw-border-opacity)) !important; +} + +.hover\:border-red-500:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(239, 68, 68, var(--tw-border-opacity)) !important; +} + +.hover\:border-red-600:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(220, 38, 38, var(--tw-border-opacity)) !important; +} + +.hover\:border-red-700:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(185, 28, 28, var(--tw-border-opacity)) !important; +} + +.hover\:border-red-800:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(153, 27, 27, var(--tw-border-opacity)) !important; +} + +.hover\:border-red-900:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(127, 29, 29, var(--tw-border-opacity)) !important; +} + +.hover\:border-yellow-50:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(255, 251, 235, var(--tw-border-opacity)) !important; +} + +.hover\:border-yellow-100:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 243, 199, var(--tw-border-opacity)) !important; +} + +.hover\:border-yellow-200:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(253, 230, 138, var(--tw-border-opacity)) !important; +} + +.hover\:border-yellow-300:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 211, 77, var(--tw-border-opacity)) !important; +} + +.hover\:border-yellow-400:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(251, 191, 36, var(--tw-border-opacity)) !important; +} + +.hover\:border-yellow-500:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)) !important; +} + +.hover\:border-yellow-600:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(217, 119, 6, var(--tw-border-opacity)) !important; +} + +.hover\:border-yellow-700:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(180, 83, 9, var(--tw-border-opacity)) !important; +} + +.hover\:border-yellow-800:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(146, 64, 14, var(--tw-border-opacity)) !important; +} + +.hover\:border-yellow-900:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(120, 53, 15, var(--tw-border-opacity)) !important; +} + +.hover\:border-green-50:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(236, 253, 245, var(--tw-border-opacity)) !important; +} + +.hover\:border-green-100:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(209, 250, 229, var(--tw-border-opacity)) !important; +} + +.hover\:border-green-200:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(167, 243, 208, var(--tw-border-opacity)) !important; +} + +.hover\:border-green-300:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(110, 231, 183, var(--tw-border-opacity)) !important; +} + +.hover\:border-green-400:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(52, 211, 153, var(--tw-border-opacity)) !important; +} + +.hover\:border-green-500:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(16, 185, 129, var(--tw-border-opacity)) !important; +} + +.hover\:border-green-600:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(5, 150, 105, var(--tw-border-opacity)) !important; +} + +.hover\:border-green-700:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(4, 120, 87, var(--tw-border-opacity)) !important; +} + +.hover\:border-green-800:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(6, 95, 70, var(--tw-border-opacity)) !important; +} + +.hover\:border-green-900:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(6, 78, 59, var(--tw-border-opacity)) !important; +} + +.hover\:border-blue-50:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(239, 246, 255, var(--tw-border-opacity)) !important; +} + +.hover\:border-blue-100:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(219, 234, 254, var(--tw-border-opacity)) !important; +} + +.hover\:border-blue-200:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(191, 219, 254, var(--tw-border-opacity)) !important; +} + +.hover\:border-blue-300:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(147, 197, 253, var(--tw-border-opacity)) !important; +} + +.hover\:border-blue-400:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(96, 165, 250, var(--tw-border-opacity)) !important; +} + +.hover\:border-blue-500:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)) !important; +} + +.hover\:border-blue-600:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(37, 99, 235, var(--tw-border-opacity)) !important; +} + +.hover\:border-blue-700:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(29, 78, 216, var(--tw-border-opacity)) !important; +} + +.hover\:border-blue-800:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(30, 64, 175, var(--tw-border-opacity)) !important; +} + +.hover\:border-blue-900:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(30, 58, 138, var(--tw-border-opacity)) !important; +} + +.hover\:border-indigo-50:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(238, 242, 255, var(--tw-border-opacity)) !important; +} + +.hover\:border-indigo-100:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(224, 231, 255, var(--tw-border-opacity)) !important; +} + +.hover\:border-indigo-200:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(199, 210, 254, var(--tw-border-opacity)) !important; +} + +.hover\:border-indigo-300:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(165, 180, 252, var(--tw-border-opacity)) !important; +} + +.hover\:border-indigo-400:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(129, 140, 248, var(--tw-border-opacity)) !important; +} + +.hover\:border-indigo-500:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(99, 102, 241, var(--tw-border-opacity)) !important; +} + +.hover\:border-indigo-600:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(79, 70, 229, var(--tw-border-opacity)) !important; +} + +.hover\:border-indigo-700:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(67, 56, 202, var(--tw-border-opacity)) !important; +} + +.hover\:border-indigo-800:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(55, 48, 163, var(--tw-border-opacity)) !important; +} + +.hover\:border-indigo-900:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(49, 46, 129, var(--tw-border-opacity)) !important; +} + +.hover\:border-purple-50:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(245, 243, 255, var(--tw-border-opacity)) !important; +} + +.hover\:border-purple-100:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(237, 233, 254, var(--tw-border-opacity)) !important; +} + +.hover\:border-purple-200:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(221, 214, 254, var(--tw-border-opacity)) !important; +} + +.hover\:border-purple-300:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(196, 181, 253, var(--tw-border-opacity)) !important; +} + +.hover\:border-purple-400:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(167, 139, 250, var(--tw-border-opacity)) !important; +} + +.hover\:border-purple-500:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(139, 92, 246, var(--tw-border-opacity)) !important; +} + +.hover\:border-purple-600:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(124, 58, 237, var(--tw-border-opacity)) !important; +} + +.hover\:border-purple-700:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(109, 40, 217, var(--tw-border-opacity)) !important; +} + +.hover\:border-purple-800:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(91, 33, 182, var(--tw-border-opacity)) !important; +} + +.hover\:border-purple-900:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(76, 29, 149, var(--tw-border-opacity)) !important; +} + +.hover\:border-pink-50:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(253, 242, 248, var(--tw-border-opacity)) !important; +} + +.hover\:border-pink-100:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 231, 243, var(--tw-border-opacity)) !important; +} + +.hover\:border-pink-200:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(251, 207, 232, var(--tw-border-opacity)) !important; +} + +.hover\:border-pink-300:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(249, 168, 212, var(--tw-border-opacity)) !important; +} + +.hover\:border-pink-400:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(244, 114, 182, var(--tw-border-opacity)) !important; +} + +.hover\:border-pink-500:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(236, 72, 153, var(--tw-border-opacity)) !important; +} + +.hover\:border-pink-600:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(219, 39, 119, var(--tw-border-opacity)) !important; +} + +.hover\:border-pink-700:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(190, 24, 93, var(--tw-border-opacity)) !important; +} + +.hover\:border-pink-800:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(157, 23, 77, var(--tw-border-opacity)) !important; +} + +.hover\:border-pink-900:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(131, 24, 67, var(--tw-border-opacity)) !important; +} + +.hover\:border-primary:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(0, 49, 151, var(--tw-border-opacity)) !important; +} + +.focus\:border-transparent:focus { + border-color: transparent !important; +} + +.focus\:border-current:focus { + border-color: currentColor !important; +} + +.focus\:border-black:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important; +} + +.focus\:border-white:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important; +} + +.focus\:border-gray-50:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)) !important; +} + +.focus\:border-gray-100:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)) !important; +} + +.focus\:border-gray-200:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)) !important; +} + +.focus\:border-gray-300:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)) !important; +} + +.focus\:border-gray-400:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)) !important; +} + +.focus\:border-gray-500:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)) !important; +} + +.focus\:border-gray-600:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)) !important; +} + +.focus\:border-gray-700:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)) !important; +} + +.focus\:border-gray-800:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)) !important; +} + +.focus\:border-gray-900:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)) !important; +} + +.focus\:border-red-50:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 242, 242, var(--tw-border-opacity)) !important; +} + +.focus\:border-red-100:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 226, 226, var(--tw-border-opacity)) !important; +} + +.focus\:border-red-200:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 202, 202, var(--tw-border-opacity)) !important; +} + +.focus\:border-red-300:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 165, 165, var(--tw-border-opacity)) !important; +} + +.focus\:border-red-400:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(248, 113, 113, var(--tw-border-opacity)) !important; +} + +.focus\:border-red-500:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(239, 68, 68, var(--tw-border-opacity)) !important; +} + +.focus\:border-red-600:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(220, 38, 38, var(--tw-border-opacity)) !important; +} + +.focus\:border-red-700:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(185, 28, 28, var(--tw-border-opacity)) !important; +} + +.focus\:border-red-800:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(153, 27, 27, var(--tw-border-opacity)) !important; +} + +.focus\:border-red-900:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(127, 29, 29, var(--tw-border-opacity)) !important; +} + +.focus\:border-yellow-50:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(255, 251, 235, var(--tw-border-opacity)) !important; +} + +.focus\:border-yellow-100:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 243, 199, var(--tw-border-opacity)) !important; +} + +.focus\:border-yellow-200:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(253, 230, 138, var(--tw-border-opacity)) !important; +} + +.focus\:border-yellow-300:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 211, 77, var(--tw-border-opacity)) !important; +} + +.focus\:border-yellow-400:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(251, 191, 36, var(--tw-border-opacity)) !important; +} + +.focus\:border-yellow-500:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)) !important; +} + +.focus\:border-yellow-600:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(217, 119, 6, var(--tw-border-opacity)) !important; +} + +.focus\:border-yellow-700:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(180, 83, 9, var(--tw-border-opacity)) !important; +} + +.focus\:border-yellow-800:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(146, 64, 14, var(--tw-border-opacity)) !important; +} + +.focus\:border-yellow-900:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(120, 53, 15, var(--tw-border-opacity)) !important; +} + +.focus\:border-green-50:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(236, 253, 245, var(--tw-border-opacity)) !important; +} + +.focus\:border-green-100:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(209, 250, 229, var(--tw-border-opacity)) !important; +} + +.focus\:border-green-200:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(167, 243, 208, var(--tw-border-opacity)) !important; +} + +.focus\:border-green-300:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(110, 231, 183, var(--tw-border-opacity)) !important; +} + +.focus\:border-green-400:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(52, 211, 153, var(--tw-border-opacity)) !important; +} + +.focus\:border-green-500:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(16, 185, 129, var(--tw-border-opacity)) !important; +} + +.focus\:border-green-600:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(5, 150, 105, var(--tw-border-opacity)) !important; +} + +.focus\:border-green-700:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(4, 120, 87, var(--tw-border-opacity)) !important; +} + +.focus\:border-green-800:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(6, 95, 70, var(--tw-border-opacity)) !important; +} + +.focus\:border-green-900:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(6, 78, 59, var(--tw-border-opacity)) !important; +} + +.focus\:border-blue-50:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(239, 246, 255, var(--tw-border-opacity)) !important; +} + +.focus\:border-blue-100:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(219, 234, 254, var(--tw-border-opacity)) !important; +} + +.focus\:border-blue-200:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(191, 219, 254, var(--tw-border-opacity)) !important; +} + +.focus\:border-blue-300:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(147, 197, 253, var(--tw-border-opacity)) !important; +} + +.focus\:border-blue-400:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(96, 165, 250, var(--tw-border-opacity)) !important; +} + +.focus\:border-blue-500:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)) !important; +} + +.focus\:border-blue-600:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(37, 99, 235, var(--tw-border-opacity)) !important; +} + +.focus\:border-blue-700:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(29, 78, 216, var(--tw-border-opacity)) !important; +} + +.focus\:border-blue-800:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(30, 64, 175, var(--tw-border-opacity)) !important; +} + +.focus\:border-blue-900:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(30, 58, 138, var(--tw-border-opacity)) !important; +} + +.focus\:border-indigo-50:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(238, 242, 255, var(--tw-border-opacity)) !important; +} + +.focus\:border-indigo-100:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(224, 231, 255, var(--tw-border-opacity)) !important; +} + +.focus\:border-indigo-200:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(199, 210, 254, var(--tw-border-opacity)) !important; +} + +.focus\:border-indigo-300:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(165, 180, 252, var(--tw-border-opacity)) !important; +} + +.focus\:border-indigo-400:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(129, 140, 248, var(--tw-border-opacity)) !important; +} + +.focus\:border-indigo-500:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(99, 102, 241, var(--tw-border-opacity)) !important; +} + +.focus\:border-indigo-600:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(79, 70, 229, var(--tw-border-opacity)) !important; +} + +.focus\:border-indigo-700:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(67, 56, 202, var(--tw-border-opacity)) !important; +} + +.focus\:border-indigo-800:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(55, 48, 163, var(--tw-border-opacity)) !important; +} + +.focus\:border-indigo-900:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(49, 46, 129, var(--tw-border-opacity)) !important; +} + +.focus\:border-purple-50:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(245, 243, 255, var(--tw-border-opacity)) !important; +} + +.focus\:border-purple-100:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(237, 233, 254, var(--tw-border-opacity)) !important; +} + +.focus\:border-purple-200:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(221, 214, 254, var(--tw-border-opacity)) !important; +} + +.focus\:border-purple-300:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(196, 181, 253, var(--tw-border-opacity)) !important; +} + +.focus\:border-purple-400:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(167, 139, 250, var(--tw-border-opacity)) !important; +} + +.focus\:border-purple-500:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(139, 92, 246, var(--tw-border-opacity)) !important; +} + +.focus\:border-purple-600:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(124, 58, 237, var(--tw-border-opacity)) !important; +} + +.focus\:border-purple-700:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(109, 40, 217, var(--tw-border-opacity)) !important; +} + +.focus\:border-purple-800:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(91, 33, 182, var(--tw-border-opacity)) !important; +} + +.focus\:border-purple-900:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(76, 29, 149, var(--tw-border-opacity)) !important; +} + +.focus\:border-pink-50:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(253, 242, 248, var(--tw-border-opacity)) !important; +} + +.focus\:border-pink-100:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 231, 243, var(--tw-border-opacity)) !important; +} + +.focus\:border-pink-200:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(251, 207, 232, var(--tw-border-opacity)) !important; +} + +.focus\:border-pink-300:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(249, 168, 212, var(--tw-border-opacity)) !important; +} + +.focus\:border-pink-400:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(244, 114, 182, var(--tw-border-opacity)) !important; +} + +.focus\:border-pink-500:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(236, 72, 153, var(--tw-border-opacity)) !important; +} + +.focus\:border-pink-600:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(219, 39, 119, var(--tw-border-opacity)) !important; +} + +.focus\:border-pink-700:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(190, 24, 93, var(--tw-border-opacity)) !important; +} + +.focus\:border-pink-800:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(157, 23, 77, var(--tw-border-opacity)) !important; +} + +.focus\:border-pink-900:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(131, 24, 67, var(--tw-border-opacity)) !important; +} + +.focus\:border-primary:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(0, 49, 151, var(--tw-border-opacity)) !important; +} + +.border-opacity-0 { + --tw-border-opacity: 0 !important; +} + +.border-opacity-5 { + --tw-border-opacity: 0.05 !important; +} + +.border-opacity-10 { + --tw-border-opacity: 0.1 !important; +} + +.border-opacity-20 { + --tw-border-opacity: 0.2 !important; +} + +.border-opacity-25 { + --tw-border-opacity: 0.25 !important; +} + +.border-opacity-30 { + --tw-border-opacity: 0.3 !important; +} + +.border-opacity-40 { + --tw-border-opacity: 0.4 !important; +} + +.border-opacity-50 { + --tw-border-opacity: 0.5 !important; +} + +.border-opacity-60 { + --tw-border-opacity: 0.6 !important; +} + +.border-opacity-70 { + --tw-border-opacity: 0.7 !important; +} + +.border-opacity-75 { + --tw-border-opacity: 0.75 !important; +} + +.border-opacity-80 { + --tw-border-opacity: 0.8 !important; +} + +.border-opacity-90 { + --tw-border-opacity: 0.9 !important; +} + +.border-opacity-95 { + --tw-border-opacity: 0.95 !important; +} + +.border-opacity-100 { + --tw-border-opacity: 1 !important; +} + +.group:hover .group-hover\:border-opacity-0 { + --tw-border-opacity: 0 !important; +} + +.group:hover .group-hover\:border-opacity-5 { + --tw-border-opacity: 0.05 !important; +} + +.group:hover .group-hover\:border-opacity-10 { + --tw-border-opacity: 0.1 !important; +} + +.group:hover .group-hover\:border-opacity-20 { + --tw-border-opacity: 0.2 !important; +} + +.group:hover .group-hover\:border-opacity-25 { + --tw-border-opacity: 0.25 !important; +} + +.group:hover .group-hover\:border-opacity-30 { + --tw-border-opacity: 0.3 !important; +} + +.group:hover .group-hover\:border-opacity-40 { + --tw-border-opacity: 0.4 !important; +} + +.group:hover .group-hover\:border-opacity-50 { + --tw-border-opacity: 0.5 !important; +} + +.group:hover .group-hover\:border-opacity-60 { + --tw-border-opacity: 0.6 !important; +} + +.group:hover .group-hover\:border-opacity-70 { + --tw-border-opacity: 0.7 !important; +} + +.group:hover .group-hover\:border-opacity-75 { + --tw-border-opacity: 0.75 !important; +} + +.group:hover .group-hover\:border-opacity-80 { + --tw-border-opacity: 0.8 !important; +} + +.group:hover .group-hover\:border-opacity-90 { + --tw-border-opacity: 0.9 !important; +} + +.group:hover .group-hover\:border-opacity-95 { + --tw-border-opacity: 0.95 !important; +} + +.group:hover .group-hover\:border-opacity-100 { + --tw-border-opacity: 1 !important; +} + +.focus-within\:border-opacity-0:focus-within { + --tw-border-opacity: 0 !important; +} + +.focus-within\:border-opacity-5:focus-within { + --tw-border-opacity: 0.05 !important; +} + +.focus-within\:border-opacity-10:focus-within { + --tw-border-opacity: 0.1 !important; +} + +.focus-within\:border-opacity-20:focus-within { + --tw-border-opacity: 0.2 !important; +} + +.focus-within\:border-opacity-25:focus-within { + --tw-border-opacity: 0.25 !important; +} + +.focus-within\:border-opacity-30:focus-within { + --tw-border-opacity: 0.3 !important; +} + +.focus-within\:border-opacity-40:focus-within { + --tw-border-opacity: 0.4 !important; +} + +.focus-within\:border-opacity-50:focus-within { + --tw-border-opacity: 0.5 !important; +} + +.focus-within\:border-opacity-60:focus-within { + --tw-border-opacity: 0.6 !important; +} + +.focus-within\:border-opacity-70:focus-within { + --tw-border-opacity: 0.7 !important; +} + +.focus-within\:border-opacity-75:focus-within { + --tw-border-opacity: 0.75 !important; +} + +.focus-within\:border-opacity-80:focus-within { + --tw-border-opacity: 0.8 !important; +} + +.focus-within\:border-opacity-90:focus-within { + --tw-border-opacity: 0.9 !important; +} + +.focus-within\:border-opacity-95:focus-within { + --tw-border-opacity: 0.95 !important; +} + +.focus-within\:border-opacity-100:focus-within { + --tw-border-opacity: 1 !important; +} + +.hover\:border-opacity-0:hover { + --tw-border-opacity: 0 !important; +} + +.hover\:border-opacity-5:hover { + --tw-border-opacity: 0.05 !important; +} + +.hover\:border-opacity-10:hover { + --tw-border-opacity: 0.1 !important; +} + +.hover\:border-opacity-20:hover { + --tw-border-opacity: 0.2 !important; +} + +.hover\:border-opacity-25:hover { + --tw-border-opacity: 0.25 !important; +} + +.hover\:border-opacity-30:hover { + --tw-border-opacity: 0.3 !important; +} + +.hover\:border-opacity-40:hover { + --tw-border-opacity: 0.4 !important; +} + +.hover\:border-opacity-50:hover { + --tw-border-opacity: 0.5 !important; +} + +.hover\:border-opacity-60:hover { + --tw-border-opacity: 0.6 !important; +} + +.hover\:border-opacity-70:hover { + --tw-border-opacity: 0.7 !important; +} + +.hover\:border-opacity-75:hover { + --tw-border-opacity: 0.75 !important; +} + +.hover\:border-opacity-80:hover { + --tw-border-opacity: 0.8 !important; +} + +.hover\:border-opacity-90:hover { + --tw-border-opacity: 0.9 !important; +} + +.hover\:border-opacity-95:hover { + --tw-border-opacity: 0.95 !important; +} + +.hover\:border-opacity-100:hover { + --tw-border-opacity: 1 !important; +} + +.focus\:border-opacity-0:focus { + --tw-border-opacity: 0 !important; +} + +.focus\:border-opacity-5:focus { + --tw-border-opacity: 0.05 !important; +} + +.focus\:border-opacity-10:focus { + --tw-border-opacity: 0.1 !important; +} + +.focus\:border-opacity-20:focus { + --tw-border-opacity: 0.2 !important; +} + +.focus\:border-opacity-25:focus { + --tw-border-opacity: 0.25 !important; +} + +.focus\:border-opacity-30:focus { + --tw-border-opacity: 0.3 !important; +} + +.focus\:border-opacity-40:focus { + --tw-border-opacity: 0.4 !important; +} + +.focus\:border-opacity-50:focus { + --tw-border-opacity: 0.5 !important; +} + +.focus\:border-opacity-60:focus { + --tw-border-opacity: 0.6 !important; +} + +.focus\:border-opacity-70:focus { + --tw-border-opacity: 0.7 !important; +} + +.focus\:border-opacity-75:focus { + --tw-border-opacity: 0.75 !important; +} + +.focus\:border-opacity-80:focus { + --tw-border-opacity: 0.8 !important; +} + +.focus\:border-opacity-90:focus { + --tw-border-opacity: 0.9 !important; +} + +.focus\:border-opacity-95:focus { + --tw-border-opacity: 0.95 !important; +} + +.focus\:border-opacity-100:focus { + --tw-border-opacity: 1 !important; +} + +.rounded-none { + border-radius: 0px !important; +} + +.rounded-sm { + border-radius: 0.125rem !important; +} + +.rounded { + border-radius: 0.25rem !important; +} + +.rounded-md { + border-radius: 0.375rem !important; +} + +.rounded-lg { + border-radius: 0.5rem !important; +} + +.rounded-xl { + border-radius: 0.75rem !important; +} + +.rounded-2xl { + border-radius: 1rem !important; +} + +.rounded-3xl { + border-radius: 1.5rem !important; +} + +.rounded-full { + border-radius: 9999px !important; +} + +.rounded-t-none { + border-top-left-radius: 0px !important; + border-top-right-radius: 0px !important; +} + +.rounded-r-none { + border-top-right-radius: 0px !important; + border-bottom-right-radius: 0px !important; +} + +.rounded-b-none { + border-bottom-right-radius: 0px !important; + border-bottom-left-radius: 0px !important; +} + +.rounded-l-none { + border-top-left-radius: 0px !important; + border-bottom-left-radius: 0px !important; +} + +.rounded-t-sm { + border-top-left-radius: 0.125rem !important; + border-top-right-radius: 0.125rem !important; +} + +.rounded-r-sm { + border-top-right-radius: 0.125rem !important; + border-bottom-right-radius: 0.125rem !important; +} + +.rounded-b-sm { + border-bottom-right-radius: 0.125rem !important; + border-bottom-left-radius: 0.125rem !important; +} + +.rounded-l-sm { + border-top-left-radius: 0.125rem !important; + border-bottom-left-radius: 0.125rem !important; +} + +.rounded-t { + border-top-left-radius: 0.25rem !important; + border-top-right-radius: 0.25rem !important; +} + +.rounded-r { + border-top-right-radius: 0.25rem !important; + border-bottom-right-radius: 0.25rem !important; +} + +.rounded-b { + border-bottom-right-radius: 0.25rem !important; + border-bottom-left-radius: 0.25rem !important; +} + +.rounded-l { + border-top-left-radius: 0.25rem !important; + border-bottom-left-radius: 0.25rem !important; +} + +.rounded-t-md { + border-top-left-radius: 0.375rem !important; + border-top-right-radius: 0.375rem !important; +} + +.rounded-r-md { + border-top-right-radius: 0.375rem !important; + border-bottom-right-radius: 0.375rem !important; +} + +.rounded-b-md { + border-bottom-right-radius: 0.375rem !important; + border-bottom-left-radius: 0.375rem !important; +} + +.rounded-l-md { + border-top-left-radius: 0.375rem !important; + border-bottom-left-radius: 0.375rem !important; +} + +.rounded-t-lg { + border-top-left-radius: 0.5rem !important; + border-top-right-radius: 0.5rem !important; +} + +.rounded-r-lg { + border-top-right-radius: 0.5rem !important; + border-bottom-right-radius: 0.5rem !important; +} + +.rounded-b-lg { + border-bottom-right-radius: 0.5rem !important; + border-bottom-left-radius: 0.5rem !important; +} + +.rounded-l-lg { + border-top-left-radius: 0.5rem !important; + border-bottom-left-radius: 0.5rem !important; +} + +.rounded-t-xl { + border-top-left-radius: 0.75rem !important; + border-top-right-radius: 0.75rem !important; +} + +.rounded-r-xl { + border-top-right-radius: 0.75rem !important; + border-bottom-right-radius: 0.75rem !important; +} + +.rounded-b-xl { + border-bottom-right-radius: 0.75rem !important; + border-bottom-left-radius: 0.75rem !important; +} + +.rounded-l-xl { + border-top-left-radius: 0.75rem !important; + border-bottom-left-radius: 0.75rem !important; +} + +.rounded-t-2xl { + border-top-left-radius: 1rem !important; + border-top-right-radius: 1rem !important; +} + +.rounded-r-2xl { + border-top-right-radius: 1rem !important; + border-bottom-right-radius: 1rem !important; +} + +.rounded-b-2xl { + border-bottom-right-radius: 1rem !important; + border-bottom-left-radius: 1rem !important; +} + +.rounded-l-2xl { + border-top-left-radius: 1rem !important; + border-bottom-left-radius: 1rem !important; +} + +.rounded-t-3xl { + border-top-left-radius: 1.5rem !important; + border-top-right-radius: 1.5rem !important; +} + +.rounded-r-3xl { + border-top-right-radius: 1.5rem !important; + border-bottom-right-radius: 1.5rem !important; +} + +.rounded-b-3xl { + border-bottom-right-radius: 1.5rem !important; + border-bottom-left-radius: 1.5rem !important; +} + +.rounded-l-3xl { + border-top-left-radius: 1.5rem !important; + border-bottom-left-radius: 1.5rem !important; +} + +.rounded-t-full { + border-top-left-radius: 9999px !important; + border-top-right-radius: 9999px !important; +} + +.rounded-r-full { + border-top-right-radius: 9999px !important; + border-bottom-right-radius: 9999px !important; +} + +.rounded-b-full { + border-bottom-right-radius: 9999px !important; + border-bottom-left-radius: 9999px !important; +} + +.rounded-l-full { + border-top-left-radius: 9999px !important; + border-bottom-left-radius: 9999px !important; +} + +.rounded-tl-none { + border-top-left-radius: 0px !important; +} + +.rounded-tr-none { + border-top-right-radius: 0px !important; +} + +.rounded-br-none { + border-bottom-right-radius: 0px !important; +} + +.rounded-bl-none { + border-bottom-left-radius: 0px !important; +} + +.rounded-tl-sm { + border-top-left-radius: 0.125rem !important; +} + +.rounded-tr-sm { + border-top-right-radius: 0.125rem !important; +} + +.rounded-br-sm { + border-bottom-right-radius: 0.125rem !important; +} + +.rounded-bl-sm { + border-bottom-left-radius: 0.125rem !important; +} + +.rounded-tl { + border-top-left-radius: 0.25rem !important; +} + +.rounded-tr { + border-top-right-radius: 0.25rem !important; +} + +.rounded-br { + border-bottom-right-radius: 0.25rem !important; +} + +.rounded-bl { + border-bottom-left-radius: 0.25rem !important; +} + +.rounded-tl-md { + border-top-left-radius: 0.375rem !important; +} + +.rounded-tr-md { + border-top-right-radius: 0.375rem !important; +} + +.rounded-br-md { + border-bottom-right-radius: 0.375rem !important; +} + +.rounded-bl-md { + border-bottom-left-radius: 0.375rem !important; +} + +.rounded-tl-lg { + border-top-left-radius: 0.5rem !important; +} + +.rounded-tr-lg { + border-top-right-radius: 0.5rem !important; +} + +.rounded-br-lg { + border-bottom-right-radius: 0.5rem !important; +} + +.rounded-bl-lg { + border-bottom-left-radius: 0.5rem !important; +} + +.rounded-tl-xl { + border-top-left-radius: 0.75rem !important; +} + +.rounded-tr-xl { + border-top-right-radius: 0.75rem !important; +} + +.rounded-br-xl { + border-bottom-right-radius: 0.75rem !important; +} + +.rounded-bl-xl { + border-bottom-left-radius: 0.75rem !important; +} + +.rounded-tl-2xl { + border-top-left-radius: 1rem !important; +} + +.rounded-tr-2xl { + border-top-right-radius: 1rem !important; +} + +.rounded-br-2xl { + border-bottom-right-radius: 1rem !important; +} + +.rounded-bl-2xl { + border-bottom-left-radius: 1rem !important; +} + +.rounded-tl-3xl { + border-top-left-radius: 1.5rem !important; +} + +.rounded-tr-3xl { + border-top-right-radius: 1.5rem !important; +} + +.rounded-br-3xl { + border-bottom-right-radius: 1.5rem !important; +} + +.rounded-bl-3xl { + border-bottom-left-radius: 1.5rem !important; +} + +.rounded-tl-full { + border-top-left-radius: 9999px !important; +} + +.rounded-tr-full { + border-top-right-radius: 9999px !important; +} + +.rounded-br-full { + border-bottom-right-radius: 9999px !important; +} + +.rounded-bl-full { + border-bottom-left-radius: 9999px !important; +} + +.border-solid { + border-style: solid !important; +} + +.border-dashed { + border-style: dashed !important; +} + +.border-dotted { + border-style: dotted !important; +} + +.border-double { + border-style: double !important; +} + +.border-none { + border-style: none !important; +} + +.border-0 { + border-width: 0px !important; +} + +.border-2 { + border-width: 2px !important; +} + +.border-4 { + border-width: 4px !important; +} + +.border-8 { + border-width: 8px !important; +} + +.border { + border-width: 1px !important; +} + +.border-t-0 { + border-top-width: 0px !important; +} + +.border-r-0 { + border-right-width: 0px !important; +} + +.border-b-0 { + border-bottom-width: 0px !important; +} + +.border-l-0 { + border-left-width: 0px !important; +} + +.border-t-2 { + border-top-width: 2px !important; +} + +.border-r-2 { + border-right-width: 2px !important; +} + +.border-b-2 { + border-bottom-width: 2px !important; +} + +.border-l-2 { + border-left-width: 2px !important; +} + +.border-t-4 { + border-top-width: 4px !important; +} + +.border-r-4 { + border-right-width: 4px !important; +} + +.border-b-4 { + border-bottom-width: 4px !important; +} + +.border-l-4 { + border-left-width: 4px !important; +} + +.border-t-8 { + border-top-width: 8px !important; +} + +.border-r-8 { + border-right-width: 8px !important; +} + +.border-b-8 { + border-bottom-width: 8px !important; +} + +.border-l-8 { + border-left-width: 8px !important; +} + +.border-t { + border-top-width: 1px !important; +} + +.border-r { + border-right-width: 1px !important; +} + +.border-b { + border-bottom-width: 1px !important; +} + +.border-l { + border-left-width: 1px !important; +} + +.decoration-slice { + -webkit-box-decoration-break: slice !important; + box-decoration-break: slice !important; +} + +.decoration-clone { + -webkit-box-decoration-break: clone !important; + box-decoration-break: clone !important; +} + +.box-border { + box-sizing: border-box !important; +} + +.box-content { + box-sizing: content-box !important; +} + +.cursor-auto { + cursor: auto !important; +} + +.cursor-default { + cursor: default !important; +} + +.cursor-pointer { + cursor: pointer !important; +} + +.cursor-wait { + cursor: wait !important; +} + +.cursor-text { + cursor: text !important; +} + +.cursor-move { + cursor: move !important; +} + +.cursor-help { + cursor: help !important; +} + +.cursor-not-allowed { + cursor: not-allowed !important; +} + +.block { + display: block !important; +} + +.inline-block { + display: inline-block !important; +} + +.inline { + display: inline !important; +} + +.flex { + display: flex !important; +} + +.inline-flex { + display: inline-flex !important; +} + +.table { + display: table !important; +} + +.inline-table { + display: inline-table !important; +} + +.table-caption { + display: table-caption !important; +} + +.table-cell { + display: table-cell !important; +} + +.table-column { + display: table-column !important; +} + +.table-column-group { + display: table-column-group !important; +} + +.table-footer-group { + display: table-footer-group !important; +} + +.table-header-group { + display: table-header-group !important; +} + +.table-row-group { + display: table-row-group !important; +} + +.table-row { + display: table-row !important; +} + +.flow-root { + display: flow-root !important; +} + +.grid { + display: grid !important; +} + +.inline-grid { + display: inline-grid !important; +} + +.contents { + display: contents !important; +} + +.list-item { + display: list-item !important; +} + +.hidden { + display: none !important; +} + +.flex-row { + flex-direction: row !important; +} + +.flex-row-reverse { + flex-direction: row-reverse !important; +} + +.flex-col { + flex-direction: column !important; +} + +.flex-col-reverse { + flex-direction: column-reverse !important; +} + +.flex-wrap { + flex-wrap: wrap !important; +} + +.flex-wrap-reverse { + flex-wrap: wrap-reverse !important; +} + +.flex-nowrap { + flex-wrap: nowrap !important; +} + +.place-items-start { + place-items: start !important; +} + +.place-items-end { + place-items: end !important; +} + +.place-items-center { + place-items: center !important; +} + +.place-items-stretch { + place-items: stretch !important; +} + +.place-content-center { + place-content: center !important; +} + +.place-content-start { + place-content: start !important; +} + +.place-content-end { + place-content: end !important; +} + +.place-content-between { + place-content: space-between !important; +} + +.place-content-around { + place-content: space-around !important; +} + +.place-content-evenly { + place-content: space-evenly !important; +} + +.place-content-stretch { + place-content: stretch !important; +} + +.place-self-auto { + place-self: auto !important; +} + +.place-self-start { + place-self: start !important; +} + +.place-self-end { + place-self: end !important; +} + +.place-self-center { + place-self: center !important; +} + +.place-self-stretch { + place-self: stretch !important; +} + +.items-start { + align-items: flex-start !important; +} + +.items-end { + align-items: flex-end !important; +} + +.items-center { + align-items: center !important; +} + +.items-baseline { + align-items: baseline !important; +} + +.items-stretch { + align-items: stretch !important; +} + +.content-center { + align-content: center !important; +} + +.content-start { + align-content: flex-start !important; +} + +.content-end { + align-content: flex-end !important; +} + +.content-between { + align-content: space-between !important; +} + +.content-around { + align-content: space-around !important; +} + +.content-evenly { + align-content: space-evenly !important; +} + +.self-auto { + align-self: auto !important; +} + +.self-start { + align-self: flex-start !important; +} + +.self-end { + align-self: flex-end !important; +} + +.self-center { + align-self: center !important; +} + +.self-stretch { + align-self: stretch !important; +} + +.justify-items-start { + justify-items: start !important; +} + +.justify-items-end { + justify-items: end !important; +} + +.justify-items-center { + justify-items: center !important; +} + +.justify-items-stretch { + justify-items: stretch !important; +} + +.justify-start { + justify-content: flex-start !important; +} + +.justify-end { + justify-content: flex-end !important; +} + +.justify-center { + justify-content: center !important; +} + +.justify-between { + justify-content: space-between !important; +} + +.justify-around { + justify-content: space-around !important; +} + +.justify-evenly { + justify-content: space-evenly !important; +} + +.justify-self-auto { + justify-self: auto !important; +} + +.justify-self-start { + justify-self: start !important; +} + +.justify-self-end { + justify-self: end !important; +} + +.justify-self-center { + justify-self: center !important; +} + +.justify-self-stretch { + justify-self: stretch !important; +} + +.flex-1 { + flex: 1 1 0% !important; +} + +.flex-auto { + flex: 1 1 auto !important; +} + +.flex-initial { + flex: 0 1 auto !important; +} + +.flex-none { + flex: none !important; +} + +.flex-grow-0 { + flex-grow: 0 !important; +} + +.flex-grow { + flex-grow: 1 !important; +} + +.flex-shrink-0 { + flex-shrink: 0 !important; +} + +.flex-shrink { + flex-shrink: 1 !important; +} + +.order-1 { + order: 1 !important; +} + +.order-2 { + order: 2 !important; +} + +.order-3 { + order: 3 !important; +} + +.order-4 { + order: 4 !important; +} + +.order-5 { + order: 5 !important; +} + +.order-6 { + order: 6 !important; +} + +.order-7 { + order: 7 !important; +} + +.order-8 { + order: 8 !important; +} + +.order-9 { + order: 9 !important; +} + +.order-10 { + order: 10 !important; +} + +.order-11 { + order: 11 !important; +} + +.order-12 { + order: 12 !important; +} + +.order-first { + order: -9999 !important; +} + +.order-last { + order: 9999 !important; +} + +.order-none { + order: 0 !important; +} + +.float-right { + float: right !important; +} + +.float-left { + float: left !important; +} + +.float-none { + float: none !important; +} + +.clear-left { + clear: left !important; +} + +.clear-right { + clear: right !important; +} + +.clear-both { + clear: both !important; +} + +.clear-none { + clear: none !important; +} + +.font-sans { + font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important; +} + +.font-serif { + font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif !important; +} + +.font-mono { + font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important; +} + +.font-thin { + font-weight: 100 !important; +} + +.font-extralight { + font-weight: 200 !important; +} + +.font-light { + font-weight: 300 !important; +} + +.font-normal { + font-weight: 400 !important; +} + +.font-medium { + font-weight: 500 !important; +} + +.font-semibold { + font-weight: 600 !important; +} + +.font-bold { + font-weight: 700 !important; +} + +.font-extrabold { + font-weight: 800 !important; +} + +.font-black { + font-weight: 900 !important; +} + +.h-0 { + height: 0px !important; +} + +.h-1 { + height: 0.25rem !important; +} + +.h-2 { + height: 0.5rem !important; +} + +.h-3 { + height: 0.75rem !important; +} + +.h-4 { + height: 1rem !important; +} + +.h-5 { + height: 1.25rem !important; +} + +.h-6 { + height: 1.5rem !important; +} + +.h-7 { + height: 1.75rem !important; +} + +.h-8 { + height: 2rem !important; +} + +.h-9 { + height: 2.25rem !important; +} + +.h-10 { + height: 2.5rem !important; +} + +.h-11 { + height: 2.75rem !important; +} + +.h-12 { + height: 3rem !important; +} + +.h-14 { + height: 3.5rem !important; +} + +.h-16 { + height: 4rem !important; +} + +.h-20 { + height: 5rem !important; +} + +.h-24 { + height: 6rem !important; +} + +.h-28 { + height: 7rem !important; +} + +.h-32 { + height: 8rem !important; +} + +.h-36 { + height: 9rem !important; +} + +.h-40 { + height: 10rem !important; +} + +.h-44 { + height: 11rem !important; +} + +.h-48 { + height: 12rem !important; +} + +.h-52 { + height: 13rem !important; +} + +.h-56 { + height: 14rem !important; +} + +.h-60 { + height: 15rem !important; +} + +.h-64 { + height: 16rem !important; +} + +.h-72 { + height: 18rem !important; +} + +.h-80 { + height: 20rem !important; +} + +.h-96 { + height: 24rem !important; +} + +.h-auto { + height: auto !important; +} + +.h-px { + height: 1px !important; +} + +.h-0\.5 { + height: 0.125rem !important; +} + +.h-1\.5 { + height: 0.375rem !important; +} + +.h-2\.5 { + height: 0.625rem !important; +} + +.h-3\.5 { + height: 0.875rem !important; +} + +.h-1\/2 { + height: 50% !important; +} + +.h-1\/3 { + height: 33.333333% !important; +} + +.h-2\/3 { + height: 66.666667% !important; +} + +.h-1\/4 { + height: 25% !important; +} + +.h-2\/4 { + height: 50% !important; +} + +.h-3\/4 { + height: 75% !important; +} + +.h-1\/5 { + height: 20% !important; +} + +.h-2\/5 { + height: 40% !important; +} + +.h-3\/5 { + height: 60% !important; +} + +.h-4\/5 { + height: 80% !important; +} + +.h-1\/6 { + height: 16.666667% !important; +} + +.h-2\/6 { + height: 33.333333% !important; +} + +.h-3\/6 { + height: 50% !important; +} + +.h-4\/6 { + height: 66.666667% !important; +} + +.h-5\/6 { + height: 83.333333% !important; +} + +.h-full { + height: 100% !important; +} + +.h-screen { + height: 100vh !important; +} + +.text-xs { + font-size: 0.75rem !important; + line-height: 1rem !important; +} + +.text-sm { + font-size: 0.875rem !important; + line-height: 1.25rem !important; +} + +.text-base { + font-size: 1rem !important; + line-height: 1.5rem !important; +} + +.text-lg { + font-size: 1.125rem !important; + line-height: 1.75rem !important; +} + +.text-xl { + font-size: 1.25rem !important; + line-height: 1.75rem !important; +} + +.text-2xl { + font-size: 1.5rem !important; + line-height: 2rem !important; +} + +.text-3xl { + font-size: 1.875rem !important; + line-height: 2.25rem !important; +} + +.text-4xl { + font-size: 2.25rem !important; + line-height: 2.5rem !important; +} + +.text-5xl { + font-size: 3rem !important; + line-height: 1 !important; +} + +.text-6xl { + font-size: 3.75rem !important; + line-height: 1 !important; +} + +.text-7xl { + font-size: 4.5rem !important; + line-height: 1 !important; +} + +.text-8xl { + font-size: 6rem !important; + line-height: 1 !important; +} + +.text-9xl { + font-size: 8rem !important; + line-height: 1 !important; +} + +.leading-3 { + line-height: .75rem !important; +} + +.leading-4 { + line-height: 1rem !important; +} + +.leading-5 { + line-height: 1.25rem !important; +} + +.leading-6 { + line-height: 1.5rem !important; +} + +.leading-7 { + line-height: 1.75rem !important; +} + +.leading-8 { + line-height: 2rem !important; +} + +.leading-9 { + line-height: 2.25rem !important; +} + +.leading-10 { + line-height: 2.5rem !important; +} + +.leading-none { + line-height: 1 !important; +} + +.leading-tight { + line-height: 1.25 !important; +} + +.leading-snug { + line-height: 1.375 !important; +} + +.leading-normal { + line-height: 1.5 !important; +} + +.leading-relaxed { + line-height: 1.625 !important; +} + +.leading-loose { + line-height: 2 !important; +} + +.list-inside { + list-style-position: inside !important; +} + +.list-outside { + list-style-position: outside !important; +} + +.list-none { + list-style-type: none !important; +} + +.list-disc { + list-style-type: disc !important; +} + +.list-decimal { + list-style-type: decimal !important; +} + +.m-0 { + margin: 0px !important; +} + +.m-1 { + margin: 0.25rem !important; +} + +.m-2 { + margin: 0.5rem !important; +} + +.m-3 { + margin: 0.75rem !important; +} + +.m-4 { + margin: 1rem !important; +} + +.m-5 { + margin: 1.25rem !important; +} + +.m-6 { + margin: 1.5rem !important; +} + +.m-7 { + margin: 1.75rem !important; +} + +.m-8 { + margin: 2rem !important; +} + +.m-9 { + margin: 2.25rem !important; +} + +.m-10 { + margin: 2.5rem !important; +} + +.m-11 { + margin: 2.75rem !important; +} + +.m-12 { + margin: 3rem !important; +} + +.m-14 { + margin: 3.5rem !important; +} + +.m-16 { + margin: 4rem !important; +} + +.m-20 { + margin: 5rem !important; +} + +.m-24 { + margin: 6rem !important; +} + +.m-28 { + margin: 7rem !important; +} + +.m-32 { + margin: 8rem !important; +} + +.m-36 { + margin: 9rem !important; +} + +.m-40 { + margin: 10rem !important; +} + +.m-44 { + margin: 11rem !important; +} + +.m-48 { + margin: 12rem !important; +} + +.m-52 { + margin: 13rem !important; +} + +.m-56 { + margin: 14rem !important; +} + +.m-60 { + margin: 15rem !important; +} + +.m-64 { + margin: 16rem !important; +} + +.m-72 { + margin: 18rem !important; +} + +.m-80 { + margin: 20rem !important; +} + +.m-96 { + margin: 24rem !important; +} + +.m-auto { + margin: auto !important; +} + +.m-px { + margin: 1px !important; +} + +.m-0\.5 { + margin: 0.125rem !important; +} + +.m-1\.5 { + margin: 0.375rem !important; +} + +.m-2\.5 { + margin: 0.625rem !important; +} + +.m-3\.5 { + margin: 0.875rem !important; +} + +.-m-0 { + margin: 0px !important; +} + +.-m-1 { + margin: -0.25rem !important; +} + +.-m-2 { + margin: -0.5rem !important; +} + +.-m-3 { + margin: -0.75rem !important; +} + +.-m-4 { + margin: -1rem !important; +} + +.-m-5 { + margin: -1.25rem !important; +} + +.-m-6 { + margin: -1.5rem !important; +} + +.-m-7 { + margin: -1.75rem !important; +} + +.-m-8 { + margin: -2rem !important; +} + +.-m-9 { + margin: -2.25rem !important; +} + +.-m-10 { + margin: -2.5rem !important; +} + +.-m-11 { + margin: -2.75rem !important; +} + +.-m-12 { + margin: -3rem !important; +} + +.-m-14 { + margin: -3.5rem !important; +} + +.-m-16 { + margin: -4rem !important; +} + +.-m-20 { + margin: -5rem !important; +} + +.-m-24 { + margin: -6rem !important; +} + +.-m-28 { + margin: -7rem !important; +} + +.-m-32 { + margin: -8rem !important; +} + +.-m-36 { + margin: -9rem !important; +} + +.-m-40 { + margin: -10rem !important; +} + +.-m-44 { + margin: -11rem !important; +} + +.-m-48 { + margin: -12rem !important; +} + +.-m-52 { + margin: -13rem !important; +} + +.-m-56 { + margin: -14rem !important; +} + +.-m-60 { + margin: -15rem !important; +} + +.-m-64 { + margin: -16rem !important; +} + +.-m-72 { + margin: -18rem !important; +} + +.-m-80 { + margin: -20rem !important; +} + +.-m-96 { + margin: -24rem !important; +} + +.-m-px { + margin: -1px !important; +} + +.-m-0\.5 { + margin: -0.125rem !important; +} + +.-m-1\.5 { + margin: -0.375rem !important; +} + +.-m-2\.5 { + margin: -0.625rem !important; +} + +.-m-3\.5 { + margin: -0.875rem !important; +} + +.my-0 { + margin-top: 0px !important; + margin-bottom: 0px !important; +} + +.mx-0 { + margin-left: 0px !important; + margin-right: 0px !important; +} + +.my-1 { + margin-top: 0.25rem !important; + margin-bottom: 0.25rem !important; +} + +.mx-1 { + margin-left: 0.25rem !important; + margin-right: 0.25rem !important; +} + +.my-2 { + margin-top: 0.5rem !important; + margin-bottom: 0.5rem !important; +} + +.mx-2 { + margin-left: 0.5rem !important; + margin-right: 0.5rem !important; +} + +.my-3 { + margin-top: 0.75rem !important; + margin-bottom: 0.75rem !important; +} + +.mx-3 { + margin-left: 0.75rem !important; + margin-right: 0.75rem !important; +} + +.my-4 { + margin-top: 1rem !important; + margin-bottom: 1rem !important; +} + +.mx-4 { + margin-left: 1rem !important; + margin-right: 1rem !important; +} + +.my-5 { + margin-top: 1.25rem !important; + margin-bottom: 1.25rem !important; +} + +.mx-5 { + margin-left: 1.25rem !important; + margin-right: 1.25rem !important; +} + +.my-6 { + margin-top: 1.5rem !important; + margin-bottom: 1.5rem !important; +} + +.mx-6 { + margin-left: 1.5rem !important; + margin-right: 1.5rem !important; +} + +.my-7 { + margin-top: 1.75rem !important; + margin-bottom: 1.75rem !important; +} + +.mx-7 { + margin-left: 1.75rem !important; + margin-right: 1.75rem !important; +} + +.my-8 { + margin-top: 2rem !important; + margin-bottom: 2rem !important; +} + +.mx-8 { + margin-left: 2rem !important; + margin-right: 2rem !important; +} + +.my-9 { + margin-top: 2.25rem !important; + margin-bottom: 2.25rem !important; +} + +.mx-9 { + margin-left: 2.25rem !important; + margin-right: 2.25rem !important; +} + +.my-10 { + margin-top: 2.5rem !important; + margin-bottom: 2.5rem !important; +} + +.mx-10 { + margin-left: 2.5rem !important; + margin-right: 2.5rem !important; +} + +.my-11 { + margin-top: 2.75rem !important; + margin-bottom: 2.75rem !important; +} + +.mx-11 { + margin-left: 2.75rem !important; + margin-right: 2.75rem !important; +} + +.my-12 { + margin-top: 3rem !important; + margin-bottom: 3rem !important; +} + +.mx-12 { + margin-left: 3rem !important; + margin-right: 3rem !important; +} + +.my-14 { + margin-top: 3.5rem !important; + margin-bottom: 3.5rem !important; +} + +.mx-14 { + margin-left: 3.5rem !important; + margin-right: 3.5rem !important; +} + +.my-16 { + margin-top: 4rem !important; + margin-bottom: 4rem !important; +} + +.mx-16 { + margin-left: 4rem !important; + margin-right: 4rem !important; +} + +.my-20 { + margin-top: 5rem !important; + margin-bottom: 5rem !important; +} + +.mx-20 { + margin-left: 5rem !important; + margin-right: 5rem !important; +} + +.my-24 { + margin-top: 6rem !important; + margin-bottom: 6rem !important; +} + +.mx-24 { + margin-left: 6rem !important; + margin-right: 6rem !important; +} + +.my-28 { + margin-top: 7rem !important; + margin-bottom: 7rem !important; +} + +.mx-28 { + margin-left: 7rem !important; + margin-right: 7rem !important; +} + +.my-32 { + margin-top: 8rem !important; + margin-bottom: 8rem !important; +} + +.mx-32 { + margin-left: 8rem !important; + margin-right: 8rem !important; +} + +.my-36 { + margin-top: 9rem !important; + margin-bottom: 9rem !important; +} + +.mx-36 { + margin-left: 9rem !important; + margin-right: 9rem !important; +} + +.my-40 { + margin-top: 10rem !important; + margin-bottom: 10rem !important; +} + +.mx-40 { + margin-left: 10rem !important; + margin-right: 10rem !important; +} + +.my-44 { + margin-top: 11rem !important; + margin-bottom: 11rem !important; +} + +.mx-44 { + margin-left: 11rem !important; + margin-right: 11rem !important; +} + +.my-48 { + margin-top: 12rem !important; + margin-bottom: 12rem !important; +} + +.mx-48 { + margin-left: 12rem !important; + margin-right: 12rem !important; +} + +.my-52 { + margin-top: 13rem !important; + margin-bottom: 13rem !important; +} + +.mx-52 { + margin-left: 13rem !important; + margin-right: 13rem !important; +} + +.my-56 { + margin-top: 14rem !important; + margin-bottom: 14rem !important; +} + +.mx-56 { + margin-left: 14rem !important; + margin-right: 14rem !important; +} + +.my-60 { + margin-top: 15rem !important; + margin-bottom: 15rem !important; +} + +.mx-60 { + margin-left: 15rem !important; + margin-right: 15rem !important; +} + +.my-64 { + margin-top: 16rem !important; + margin-bottom: 16rem !important; +} + +.mx-64 { + margin-left: 16rem !important; + margin-right: 16rem !important; +} + +.my-72 { + margin-top: 18rem !important; + margin-bottom: 18rem !important; +} + +.mx-72 { + margin-left: 18rem !important; + margin-right: 18rem !important; +} + +.my-80 { + margin-top: 20rem !important; + margin-bottom: 20rem !important; +} + +.mx-80 { + margin-left: 20rem !important; + margin-right: 20rem !important; +} + +.my-96 { + margin-top: 24rem !important; + margin-bottom: 24rem !important; +} + +.mx-96 { + margin-left: 24rem !important; + margin-right: 24rem !important; +} + +.my-auto { + margin-top: auto !important; + margin-bottom: auto !important; +} + +.mx-auto { + margin-left: auto !important; + margin-right: auto !important; +} + +.my-px { + margin-top: 1px !important; + margin-bottom: 1px !important; +} + +.mx-px { + margin-left: 1px !important; + margin-right: 1px !important; +} + +.my-0\.5 { + margin-top: 0.125rem !important; + margin-bottom: 0.125rem !important; +} + +.mx-0\.5 { + margin-left: 0.125rem !important; + margin-right: 0.125rem !important; +} + +.my-1\.5 { + margin-top: 0.375rem !important; + margin-bottom: 0.375rem !important; +} + +.mx-1\.5 { + margin-left: 0.375rem !important; + margin-right: 0.375rem !important; +} + +.my-2\.5 { + margin-top: 0.625rem !important; + margin-bottom: 0.625rem !important; +} + +.mx-2\.5 { + margin-left: 0.625rem !important; + margin-right: 0.625rem !important; +} + +.my-3\.5 { + margin-top: 0.875rem !important; + margin-bottom: 0.875rem !important; +} + +.mx-3\.5 { + margin-left: 0.875rem !important; + margin-right: 0.875rem !important; +} + +.-my-0 { + margin-top: 0px !important; + margin-bottom: 0px !important; +} + +.-mx-0 { + margin-left: 0px !important; + margin-right: 0px !important; +} + +.-my-1 { + margin-top: -0.25rem !important; + margin-bottom: -0.25rem !important; +} + +.-mx-1 { + margin-left: -0.25rem !important; + margin-right: -0.25rem !important; +} + +.-my-2 { + margin-top: -0.5rem !important; + margin-bottom: -0.5rem !important; +} + +.-mx-2 { + margin-left: -0.5rem !important; + margin-right: -0.5rem !important; +} + +.-my-3 { + margin-top: -0.75rem !important; + margin-bottom: -0.75rem !important; +} + +.-mx-3 { + margin-left: -0.75rem !important; + margin-right: -0.75rem !important; +} + +.-my-4 { + margin-top: -1rem !important; + margin-bottom: -1rem !important; +} + +.-mx-4 { + margin-left: -1rem !important; + margin-right: -1rem !important; +} + +.-my-5 { + margin-top: -1.25rem !important; + margin-bottom: -1.25rem !important; +} + +.-mx-5 { + margin-left: -1.25rem !important; + margin-right: -1.25rem !important; +} + +.-my-6 { + margin-top: -1.5rem !important; + margin-bottom: -1.5rem !important; +} + +.-mx-6 { + margin-left: -1.5rem !important; + margin-right: -1.5rem !important; +} + +.-my-7 { + margin-top: -1.75rem !important; + margin-bottom: -1.75rem !important; +} + +.-mx-7 { + margin-left: -1.75rem !important; + margin-right: -1.75rem !important; +} + +.-my-8 { + margin-top: -2rem !important; + margin-bottom: -2rem !important; +} + +.-mx-8 { + margin-left: -2rem !important; + margin-right: -2rem !important; +} + +.-my-9 { + margin-top: -2.25rem !important; + margin-bottom: -2.25rem !important; +} + +.-mx-9 { + margin-left: -2.25rem !important; + margin-right: -2.25rem !important; +} + +.-my-10 { + margin-top: -2.5rem !important; + margin-bottom: -2.5rem !important; +} + +.-mx-10 { + margin-left: -2.5rem !important; + margin-right: -2.5rem !important; +} + +.-my-11 { + margin-top: -2.75rem !important; + margin-bottom: -2.75rem !important; +} + +.-mx-11 { + margin-left: -2.75rem !important; + margin-right: -2.75rem !important; +} + +.-my-12 { + margin-top: -3rem !important; + margin-bottom: -3rem !important; +} + +.-mx-12 { + margin-left: -3rem !important; + margin-right: -3rem !important; +} + +.-my-14 { + margin-top: -3.5rem !important; + margin-bottom: -3.5rem !important; +} + +.-mx-14 { + margin-left: -3.5rem !important; + margin-right: -3.5rem !important; +} + +.-my-16 { + margin-top: -4rem !important; + margin-bottom: -4rem !important; +} + +.-mx-16 { + margin-left: -4rem !important; + margin-right: -4rem !important; +} + +.-my-20 { + margin-top: -5rem !important; + margin-bottom: -5rem !important; +} + +.-mx-20 { + margin-left: -5rem !important; + margin-right: -5rem !important; +} + +.-my-24 { + margin-top: -6rem !important; + margin-bottom: -6rem !important; +} + +.-mx-24 { + margin-left: -6rem !important; + margin-right: -6rem !important; +} + +.-my-28 { + margin-top: -7rem !important; + margin-bottom: -7rem !important; +} + +.-mx-28 { + margin-left: -7rem !important; + margin-right: -7rem !important; +} + +.-my-32 { + margin-top: -8rem !important; + margin-bottom: -8rem !important; +} + +.-mx-32 { + margin-left: -8rem !important; + margin-right: -8rem !important; +} + +.-my-36 { + margin-top: -9rem !important; + margin-bottom: -9rem !important; +} + +.-mx-36 { + margin-left: -9rem !important; + margin-right: -9rem !important; +} + +.-my-40 { + margin-top: -10rem !important; + margin-bottom: -10rem !important; +} + +.-mx-40 { + margin-left: -10rem !important; + margin-right: -10rem !important; +} + +.-my-44 { + margin-top: -11rem !important; + margin-bottom: -11rem !important; +} + +.-mx-44 { + margin-left: -11rem !important; + margin-right: -11rem !important; +} + +.-my-48 { + margin-top: -12rem !important; + margin-bottom: -12rem !important; +} + +.-mx-48 { + margin-left: -12rem !important; + margin-right: -12rem !important; +} + +.-my-52 { + margin-top: -13rem !important; + margin-bottom: -13rem !important; +} + +.-mx-52 { + margin-left: -13rem !important; + margin-right: -13rem !important; +} + +.-my-56 { + margin-top: -14rem !important; + margin-bottom: -14rem !important; +} + +.-mx-56 { + margin-left: -14rem !important; + margin-right: -14rem !important; +} + +.-my-60 { + margin-top: -15rem !important; + margin-bottom: -15rem !important; +} + +.-mx-60 { + margin-left: -15rem !important; + margin-right: -15rem !important; +} + +.-my-64 { + margin-top: -16rem !important; + margin-bottom: -16rem !important; +} + +.-mx-64 { + margin-left: -16rem !important; + margin-right: -16rem !important; +} + +.-my-72 { + margin-top: -18rem !important; + margin-bottom: -18rem !important; +} + +.-mx-72 { + margin-left: -18rem !important; + margin-right: -18rem !important; +} + +.-my-80 { + margin-top: -20rem !important; + margin-bottom: -20rem !important; +} + +.-mx-80 { + margin-left: -20rem !important; + margin-right: -20rem !important; +} + +.-my-96 { + margin-top: -24rem !important; + margin-bottom: -24rem !important; +} + +.-mx-96 { + margin-left: -24rem !important; + margin-right: -24rem !important; +} + +.-my-px { + margin-top: -1px !important; + margin-bottom: -1px !important; +} + +.-mx-px { + margin-left: -1px !important; + margin-right: -1px !important; +} + +.-my-0\.5 { + margin-top: -0.125rem !important; + margin-bottom: -0.125rem !important; +} + +.-mx-0\.5 { + margin-left: -0.125rem !important; + margin-right: -0.125rem !important; +} + +.-my-1\.5 { + margin-top: -0.375rem !important; + margin-bottom: -0.375rem !important; +} + +.-mx-1\.5 { + margin-left: -0.375rem !important; + margin-right: -0.375rem !important; +} + +.-my-2\.5 { + margin-top: -0.625rem !important; + margin-bottom: -0.625rem !important; +} + +.-mx-2\.5 { + margin-left: -0.625rem !important; + margin-right: -0.625rem !important; +} + +.-my-3\.5 { + margin-top: -0.875rem !important; + margin-bottom: -0.875rem !important; +} + +.-mx-3\.5 { + margin-left: -0.875rem !important; + margin-right: -0.875rem !important; +} + +.mt-0 { + margin-top: 0px !important; +} + +.mr-0 { + margin-right: 0px !important; +} + +.mb-0 { + margin-bottom: 0px !important; +} + +.ml-0 { + margin-left: 0px !important; +} + +.mt-1 { + margin-top: 0.25rem !important; +} + +.mr-1 { + margin-right: 0.25rem !important; +} + +.mb-1 { + margin-bottom: 0.25rem !important; +} + +.ml-1 { + margin-left: 0.25rem !important; +} + +.mt-2 { + margin-top: 0.5rem !important; +} + +.mr-2 { + margin-right: 0.5rem !important; +} + +.mb-2 { + margin-bottom: 0.5rem !important; +} + +.ml-2 { + margin-left: 0.5rem !important; +} + +.mt-3 { + margin-top: 0.75rem !important; +} + +.mr-3 { + margin-right: 0.75rem !important; +} + +.mb-3 { + margin-bottom: 0.75rem !important; +} + +.ml-3 { + margin-left: 0.75rem !important; +} + +.mt-4 { + margin-top: 1rem !important; +} + +.mr-4 { + margin-right: 1rem !important; +} + +.mb-4 { + margin-bottom: 1rem !important; +} + +.ml-4 { + margin-left: 1rem !important; +} + +.mt-5 { + margin-top: 1.25rem !important; +} + +.mr-5 { + margin-right: 1.25rem !important; +} + +.mb-5 { + margin-bottom: 1.25rem !important; +} + +.ml-5 { + margin-left: 1.25rem !important; +} + +.mt-6 { + margin-top: 1.5rem !important; +} + +.mr-6 { + margin-right: 1.5rem !important; +} + +.mb-6 { + margin-bottom: 1.5rem !important; +} + +.ml-6 { + margin-left: 1.5rem !important; +} + +.mt-7 { + margin-top: 1.75rem !important; +} + +.mr-7 { + margin-right: 1.75rem !important; +} + +.mb-7 { + margin-bottom: 1.75rem !important; +} + +.ml-7 { + margin-left: 1.75rem !important; +} + +.mt-8 { + margin-top: 2rem !important; +} + +.mr-8 { + margin-right: 2rem !important; +} + +.mb-8 { + margin-bottom: 2rem !important; +} + +.ml-8 { + margin-left: 2rem !important; +} + +.mt-9 { + margin-top: 2.25rem !important; +} + +.mr-9 { + margin-right: 2.25rem !important; +} + +.mb-9 { + margin-bottom: 2.25rem !important; +} + +.ml-9 { + margin-left: 2.25rem !important; +} + +.mt-10 { + margin-top: 2.5rem !important; +} + +.mr-10 { + margin-right: 2.5rem !important; +} + +.mb-10 { + margin-bottom: 2.5rem !important; +} + +.ml-10 { + margin-left: 2.5rem !important; +} + +.mt-11 { + margin-top: 2.75rem !important; +} + +.mr-11 { + margin-right: 2.75rem !important; +} + +.mb-11 { + margin-bottom: 2.75rem !important; +} + +.ml-11 { + margin-left: 2.75rem !important; +} + +.mt-12 { + margin-top: 3rem !important; +} + +.mr-12 { + margin-right: 3rem !important; +} + +.mb-12 { + margin-bottom: 3rem !important; +} + +.ml-12 { + margin-left: 3rem !important; +} + +.mt-14 { + margin-top: 3.5rem !important; +} + +.mr-14 { + margin-right: 3.5rem !important; +} + +.mb-14 { + margin-bottom: 3.5rem !important; +} + +.ml-14 { + margin-left: 3.5rem !important; +} + +.mt-16 { + margin-top: 4rem !important; +} + +.mr-16 { + margin-right: 4rem !important; +} + +.mb-16 { + margin-bottom: 4rem !important; +} + +.ml-16 { + margin-left: 4rem !important; +} + +.mt-20 { + margin-top: 5rem !important; +} + +.mr-20 { + margin-right: 5rem !important; +} + +.mb-20 { + margin-bottom: 5rem !important; +} + +.ml-20 { + margin-left: 5rem !important; +} + +.mt-24 { + margin-top: 6rem !important; +} + +.mr-24 { + margin-right: 6rem !important; +} + +.mb-24 { + margin-bottom: 6rem !important; +} + +.ml-24 { + margin-left: 6rem !important; +} + +.mt-28 { + margin-top: 7rem !important; +} + +.mr-28 { + margin-right: 7rem !important; +} + +.mb-28 { + margin-bottom: 7rem !important; +} + +.ml-28 { + margin-left: 7rem !important; +} + +.mt-32 { + margin-top: 8rem !important; +} + +.mr-32 { + margin-right: 8rem !important; +} + +.mb-32 { + margin-bottom: 8rem !important; +} + +.ml-32 { + margin-left: 8rem !important; +} + +.mt-36 { + margin-top: 9rem !important; +} + +.mr-36 { + margin-right: 9rem !important; +} + +.mb-36 { + margin-bottom: 9rem !important; +} + +.ml-36 { + margin-left: 9rem !important; +} + +.mt-40 { + margin-top: 10rem !important; +} + +.mr-40 { + margin-right: 10rem !important; +} + +.mb-40 { + margin-bottom: 10rem !important; +} + +.ml-40 { + margin-left: 10rem !important; +} + +.mt-44 { + margin-top: 11rem !important; +} + +.mr-44 { + margin-right: 11rem !important; +} + +.mb-44 { + margin-bottom: 11rem !important; +} + +.ml-44 { + margin-left: 11rem !important; +} + +.mt-48 { + margin-top: 12rem !important; +} + +.mr-48 { + margin-right: 12rem !important; +} + +.mb-48 { + margin-bottom: 12rem !important; +} + +.ml-48 { + margin-left: 12rem !important; +} + +.mt-52 { + margin-top: 13rem !important; +} + +.mr-52 { + margin-right: 13rem !important; +} + +.mb-52 { + margin-bottom: 13rem !important; +} + +.ml-52 { + margin-left: 13rem !important; +} + +.mt-56 { + margin-top: 14rem !important; +} + +.mr-56 { + margin-right: 14rem !important; +} + +.mb-56 { + margin-bottom: 14rem !important; +} + +.ml-56 { + margin-left: 14rem !important; +} + +.mt-60 { + margin-top: 15rem !important; +} + +.mr-60 { + margin-right: 15rem !important; +} + +.mb-60 { + margin-bottom: 15rem !important; +} + +.ml-60 { + margin-left: 15rem !important; +} + +.mt-64 { + margin-top: 16rem !important; +} + +.mr-64 { + margin-right: 16rem !important; +} + +.mb-64 { + margin-bottom: 16rem !important; +} + +.ml-64 { + margin-left: 16rem !important; +} + +.mt-72 { + margin-top: 18rem !important; +} + +.mr-72 { + margin-right: 18rem !important; +} + +.mb-72 { + margin-bottom: 18rem !important; +} + +.ml-72 { + margin-left: 18rem !important; +} + +.mt-80 { + margin-top: 20rem !important; +} + +.mr-80 { + margin-right: 20rem !important; +} + +.mb-80 { + margin-bottom: 20rem !important; +} + +.ml-80 { + margin-left: 20rem !important; +} + +.mt-96 { + margin-top: 24rem !important; +} + +.mr-96 { + margin-right: 24rem !important; +} + +.mb-96 { + margin-bottom: 24rem !important; +} + +.ml-96 { + margin-left: 24rem !important; +} + +.mt-auto { + margin-top: auto !important; +} + +.mr-auto { + margin-right: auto !important; +} + +.mb-auto { + margin-bottom: auto !important; +} + +.ml-auto { + margin-left: auto !important; +} + +.mt-px { + margin-top: 1px !important; +} + +.mr-px { + margin-right: 1px !important; +} + +.mb-px { + margin-bottom: 1px !important; +} + +.ml-px { + margin-left: 1px !important; +} + +.mt-0\.5 { + margin-top: 0.125rem !important; +} + +.mr-0\.5 { + margin-right: 0.125rem !important; +} + +.mb-0\.5 { + margin-bottom: 0.125rem !important; +} + +.ml-0\.5 { + margin-left: 0.125rem !important; +} + +.mt-1\.5 { + margin-top: 0.375rem !important; +} + +.mr-1\.5 { + margin-right: 0.375rem !important; +} + +.mb-1\.5 { + margin-bottom: 0.375rem !important; +} + +.ml-1\.5 { + margin-left: 0.375rem !important; +} + +.mt-2\.5 { + margin-top: 0.625rem !important; +} + +.mr-2\.5 { + margin-right: 0.625rem !important; +} + +.mb-2\.5 { + margin-bottom: 0.625rem !important; +} + +.ml-2\.5 { + margin-left: 0.625rem !important; +} + +.mt-3\.5 { + margin-top: 0.875rem !important; +} + +.mr-3\.5 { + margin-right: 0.875rem !important; +} + +.mb-3\.5 { + margin-bottom: 0.875rem !important; +} + +.ml-3\.5 { + margin-left: 0.875rem !important; +} + +.-mt-0 { + margin-top: 0px !important; +} + +.-mr-0 { + margin-right: 0px !important; +} + +.-mb-0 { + margin-bottom: 0px !important; +} + +.-ml-0 { + margin-left: 0px !important; +} + +.-mt-1 { + margin-top: -0.25rem !important; +} + +.-mr-1 { + margin-right: -0.25rem !important; +} + +.-mb-1 { + margin-bottom: -0.25rem !important; +} + +.-ml-1 { + margin-left: -0.25rem !important; +} + +.-mt-2 { + margin-top: -0.5rem !important; +} + +.-mr-2 { + margin-right: -0.5rem !important; +} + +.-mb-2 { + margin-bottom: -0.5rem !important; +} + +.-ml-2 { + margin-left: -0.5rem !important; +} + +.-mt-3 { + margin-top: -0.75rem !important; +} + +.-mr-3 { + margin-right: -0.75rem !important; +} + +.-mb-3 { + margin-bottom: -0.75rem !important; +} + +.-ml-3 { + margin-left: -0.75rem !important; +} + +.-mt-4 { + margin-top: -1rem !important; +} + +.-mr-4 { + margin-right: -1rem !important; +} + +.-mb-4 { + margin-bottom: -1rem !important; +} + +.-ml-4 { + margin-left: -1rem !important; +} + +.-mt-5 { + margin-top: -1.25rem !important; +} + +.-mr-5 { + margin-right: -1.25rem !important; +} + +.-mb-5 { + margin-bottom: -1.25rem !important; +} + +.-ml-5 { + margin-left: -1.25rem !important; +} + +.-mt-6 { + margin-top: -1.5rem !important; +} + +.-mr-6 { + margin-right: -1.5rem !important; +} + +.-mb-6 { + margin-bottom: -1.5rem !important; +} + +.-ml-6 { + margin-left: -1.5rem !important; +} + +.-mt-7 { + margin-top: -1.75rem !important; +} + +.-mr-7 { + margin-right: -1.75rem !important; +} + +.-mb-7 { + margin-bottom: -1.75rem !important; +} + +.-ml-7 { + margin-left: -1.75rem !important; +} + +.-mt-8 { + margin-top: -2rem !important; +} + +.-mr-8 { + margin-right: -2rem !important; +} + +.-mb-8 { + margin-bottom: -2rem !important; +} + +.-ml-8 { + margin-left: -2rem !important; +} + +.-mt-9 { + margin-top: -2.25rem !important; +} + +.-mr-9 { + margin-right: -2.25rem !important; +} + +.-mb-9 { + margin-bottom: -2.25rem !important; +} + +.-ml-9 { + margin-left: -2.25rem !important; +} + +.-mt-10 { + margin-top: -2.5rem !important; +} + +.-mr-10 { + margin-right: -2.5rem !important; +} + +.-mb-10 { + margin-bottom: -2.5rem !important; +} + +.-ml-10 { + margin-left: -2.5rem !important; +} + +.-mt-11 { + margin-top: -2.75rem !important; +} + +.-mr-11 { + margin-right: -2.75rem !important; +} + +.-mb-11 { + margin-bottom: -2.75rem !important; +} + +.-ml-11 { + margin-left: -2.75rem !important; +} + +.-mt-12 { + margin-top: -3rem !important; +} + +.-mr-12 { + margin-right: -3rem !important; +} + +.-mb-12 { + margin-bottom: -3rem !important; +} + +.-ml-12 { + margin-left: -3rem !important; +} + +.-mt-14 { + margin-top: -3.5rem !important; +} + +.-mr-14 { + margin-right: -3.5rem !important; +} + +.-mb-14 { + margin-bottom: -3.5rem !important; +} + +.-ml-14 { + margin-left: -3.5rem !important; +} + +.-mt-16 { + margin-top: -4rem !important; +} + +.-mr-16 { + margin-right: -4rem !important; +} + +.-mb-16 { + margin-bottom: -4rem !important; +} + +.-ml-16 { + margin-left: -4rem !important; +} + +.-mt-20 { + margin-top: -5rem !important; +} + +.-mr-20 { + margin-right: -5rem !important; +} + +.-mb-20 { + margin-bottom: -5rem !important; +} + +.-ml-20 { + margin-left: -5rem !important; +} + +.-mt-24 { + margin-top: -6rem !important; +} + +.-mr-24 { + margin-right: -6rem !important; +} + +.-mb-24 { + margin-bottom: -6rem !important; +} + +.-ml-24 { + margin-left: -6rem !important; +} + +.-mt-28 { + margin-top: -7rem !important; +} + +.-mr-28 { + margin-right: -7rem !important; +} + +.-mb-28 { + margin-bottom: -7rem !important; +} + +.-ml-28 { + margin-left: -7rem !important; +} + +.-mt-32 { + margin-top: -8rem !important; +} + +.-mr-32 { + margin-right: -8rem !important; +} + +.-mb-32 { + margin-bottom: -8rem !important; +} + +.-ml-32 { + margin-left: -8rem !important; +} + +.-mt-36 { + margin-top: -9rem !important; +} + +.-mr-36 { + margin-right: -9rem !important; +} + +.-mb-36 { + margin-bottom: -9rem !important; +} + +.-ml-36 { + margin-left: -9rem !important; +} + +.-mt-40 { + margin-top: -10rem !important; +} + +.-mr-40 { + margin-right: -10rem !important; +} + +.-mb-40 { + margin-bottom: -10rem !important; +} + +.-ml-40 { + margin-left: -10rem !important; +} + +.-mt-44 { + margin-top: -11rem !important; +} + +.-mr-44 { + margin-right: -11rem !important; +} + +.-mb-44 { + margin-bottom: -11rem !important; +} + +.-ml-44 { + margin-left: -11rem !important; +} + +.-mt-48 { + margin-top: -12rem !important; +} + +.-mr-48 { + margin-right: -12rem !important; +} + +.-mb-48 { + margin-bottom: -12rem !important; +} + +.-ml-48 { + margin-left: -12rem !important; +} + +.-mt-52 { + margin-top: -13rem !important; +} + +.-mr-52 { + margin-right: -13rem !important; +} + +.-mb-52 { + margin-bottom: -13rem !important; +} + +.-ml-52 { + margin-left: -13rem !important; +} + +.-mt-56 { + margin-top: -14rem !important; +} + +.-mr-56 { + margin-right: -14rem !important; +} + +.-mb-56 { + margin-bottom: -14rem !important; +} + +.-ml-56 { + margin-left: -14rem !important; +} + +.-mt-60 { + margin-top: -15rem !important; +} + +.-mr-60 { + margin-right: -15rem !important; +} + +.-mb-60 { + margin-bottom: -15rem !important; +} + +.-ml-60 { + margin-left: -15rem !important; +} + +.-mt-64 { + margin-top: -16rem !important; +} + +.-mr-64 { + margin-right: -16rem !important; +} + +.-mb-64 { + margin-bottom: -16rem !important; +} + +.-ml-64 { + margin-left: -16rem !important; +} + +.-mt-72 { + margin-top: -18rem !important; +} + +.-mr-72 { + margin-right: -18rem !important; +} + +.-mb-72 { + margin-bottom: -18rem !important; +} + +.-ml-72 { + margin-left: -18rem !important; +} + +.-mt-80 { + margin-top: -20rem !important; +} + +.-mr-80 { + margin-right: -20rem !important; +} + +.-mb-80 { + margin-bottom: -20rem !important; +} + +.-ml-80 { + margin-left: -20rem !important; +} + +.-mt-96 { + margin-top: -24rem !important; +} + +.-mr-96 { + margin-right: -24rem !important; +} + +.-mb-96 { + margin-bottom: -24rem !important; +} + +.-ml-96 { + margin-left: -24rem !important; +} + +.-mt-px { + margin-top: -1px !important; +} + +.-mr-px { + margin-right: -1px !important; +} + +.-mb-px { + margin-bottom: -1px !important; +} + +.-ml-px { + margin-left: -1px !important; +} + +.-mt-0\.5 { + margin-top: -0.125rem !important; +} + +.-mr-0\.5 { + margin-right: -0.125rem !important; +} + +.-mb-0\.5 { + margin-bottom: -0.125rem !important; +} + +.-ml-0\.5 { + margin-left: -0.125rem !important; +} + +.-mt-1\.5 { + margin-top: -0.375rem !important; +} + +.-mr-1\.5 { + margin-right: -0.375rem !important; +} + +.-mb-1\.5 { + margin-bottom: -0.375rem !important; +} + +.-ml-1\.5 { + margin-left: -0.375rem !important; +} + +.-mt-2\.5 { + margin-top: -0.625rem !important; +} + +.-mr-2\.5 { + margin-right: -0.625rem !important; +} + +.-mb-2\.5 { + margin-bottom: -0.625rem !important; +} + +.-ml-2\.5 { + margin-left: -0.625rem !important; +} + +.-mt-3\.5 { + margin-top: -0.875rem !important; +} + +.-mr-3\.5 { + margin-right: -0.875rem !important; +} + +.-mb-3\.5 { + margin-bottom: -0.875rem !important; +} + +.-ml-3\.5 { + margin-left: -0.875rem !important; +} + +.max-h-0 { + max-height: 0px !important; +} + +.max-h-1 { + max-height: 0.25rem !important; +} + +.max-h-2 { + max-height: 0.5rem !important; +} + +.max-h-3 { + max-height: 0.75rem !important; +} + +.max-h-4 { + max-height: 1rem !important; +} + +.max-h-5 { + max-height: 1.25rem !important; +} + +.max-h-6 { + max-height: 1.5rem !important; +} + +.max-h-7 { + max-height: 1.75rem !important; +} + +.max-h-8 { + max-height: 2rem !important; +} + +.max-h-9 { + max-height: 2.25rem !important; +} + +.max-h-10 { + max-height: 2.5rem !important; +} + +.max-h-11 { + max-height: 2.75rem !important; +} + +.max-h-12 { + max-height: 3rem !important; +} + +.max-h-14 { + max-height: 3.5rem !important; +} + +.max-h-16 { + max-height: 4rem !important; +} + +.max-h-20 { + max-height: 5rem !important; +} + +.max-h-24 { + max-height: 6rem !important; +} + +.max-h-28 { + max-height: 7rem !important; +} + +.max-h-32 { + max-height: 8rem !important; +} + +.max-h-36 { + max-height: 9rem !important; +} + +.max-h-40 { + max-height: 10rem !important; +} + +.max-h-44 { + max-height: 11rem !important; +} + +.max-h-48 { + max-height: 12rem !important; +} + +.max-h-52 { + max-height: 13rem !important; +} + +.max-h-56 { + max-height: 14rem !important; +} + +.max-h-60 { + max-height: 15rem !important; +} + +.max-h-64 { + max-height: 16rem !important; +} + +.max-h-72 { + max-height: 18rem !important; +} + +.max-h-80 { + max-height: 20rem !important; +} + +.max-h-96 { + max-height: 24rem !important; +} + +.max-h-px { + max-height: 1px !important; +} + +.max-h-0\.5 { + max-height: 0.125rem !important; +} + +.max-h-1\.5 { + max-height: 0.375rem !important; +} + +.max-h-2\.5 { + max-height: 0.625rem !important; +} + +.max-h-3\.5 { + max-height: 0.875rem !important; +} + +.max-h-full { + max-height: 100% !important; +} + +.max-h-screen { + max-height: 100vh !important; +} + +.max-w-0 { + max-width: 0rem !important; +} + +.max-w-none { + max-width: none !important; +} + +.max-w-xs { + max-width: 20rem !important; +} + +.max-w-sm { + max-width: 24rem !important; +} + +.max-w-md { + max-width: 28rem !important; +} + +.max-w-lg { + max-width: 32rem !important; +} + +.max-w-xl { + max-width: 36rem !important; +} + +.max-w-2xl { + max-width: 42rem !important; +} + +.max-w-3xl { + max-width: 48rem !important; +} + +.max-w-4xl { + max-width: 56rem !important; +} + +.max-w-5xl { + max-width: 64rem !important; +} + +.max-w-6xl { + max-width: 72rem !important; +} + +.max-w-7xl { + max-width: 80rem !important; +} + +.max-w-full { + max-width: 100% !important; +} + +.max-w-min { + max-width: -webkit-min-content !important; + max-width: -moz-min-content !important; + max-width: min-content !important; +} + +.max-w-max { + max-width: -webkit-max-content !important; + max-width: -moz-max-content !important; + max-width: max-content !important; +} + +.max-w-prose { + max-width: 65ch !important; +} + +.max-w-screen-sm { + max-width: 640px !important; +} + +.max-w-screen-md { + max-width: 768px !important; +} + +.max-w-screen-lg { + max-width: 1024px !important; +} + +.max-w-screen-xl { + max-width: 1280px !important; +} + +.max-w-screen-2xl { + max-width: 1536px !important; +} + +.min-h-0 { + min-height: 0px !important; +} + +.min-h-full { + min-height: 100% !important; +} + +.min-h-screen { + min-height: 100vh !important; +} + +.min-w-0 { + min-width: 0px !important; +} + +.min-w-full { + min-width: 100% !important; +} + +.min-w-min { + min-width: -webkit-min-content !important; + min-width: -moz-min-content !important; + min-width: min-content !important; +} + +.min-w-max { + min-width: -webkit-max-content !important; + min-width: -moz-max-content !important; + min-width: max-content !important; +} + +.object-contain { + -o-object-fit: contain !important; + object-fit: contain !important; +} + +.object-cover { + -o-object-fit: cover !important; + object-fit: cover !important; +} + +.object-fill { + -o-object-fit: fill !important; + object-fit: fill !important; +} + +.object-none { + -o-object-fit: none !important; + object-fit: none !important; +} + +.object-scale-down { + -o-object-fit: scale-down !important; + object-fit: scale-down !important; +} + +.object-bottom { + -o-object-position: bottom !important; + object-position: bottom !important; +} + +.object-center { + -o-object-position: center !important; + object-position: center !important; +} + +.object-left { + -o-object-position: left !important; + object-position: left !important; +} + +.object-left-bottom { + -o-object-position: left bottom !important; + object-position: left bottom !important; +} + +.object-left-top { + -o-object-position: left top !important; + object-position: left top !important; +} + +.object-right { + -o-object-position: right !important; + object-position: right !important; +} + +.object-right-bottom { + -o-object-position: right bottom !important; + object-position: right bottom !important; +} + +.object-right-top { + -o-object-position: right top !important; + object-position: right top !important; +} + +.object-top { + -o-object-position: top !important; + object-position: top !important; +} + +.opacity-0 { + opacity: 0 !important; +} + +.opacity-5 { + opacity: 0.05 !important; +} + +.opacity-10 { + opacity: 0.1 !important; +} + +.opacity-20 { + opacity: 0.2 !important; +} + +.opacity-25 { + opacity: 0.25 !important; +} + +.opacity-30 { + opacity: 0.3 !important; +} + +.opacity-40 { + opacity: 0.4 !important; +} + +.opacity-50 { + opacity: 0.5 !important; +} + +.opacity-60 { + opacity: 0.6 !important; +} + +.opacity-70 { + opacity: 0.7 !important; +} + +.opacity-75 { + opacity: 0.75 !important; +} + +.opacity-80 { + opacity: 0.8 !important; +} + +.opacity-90 { + opacity: 0.9 !important; +} + +.opacity-95 { + opacity: 0.95 !important; +} + +.opacity-100 { + opacity: 1 !important; +} + +.group:hover .group-hover\:opacity-0 { + opacity: 0 !important; +} + +.group:hover .group-hover\:opacity-5 { + opacity: 0.05 !important; +} + +.group:hover .group-hover\:opacity-10 { + opacity: 0.1 !important; +} + +.group:hover .group-hover\:opacity-20 { + opacity: 0.2 !important; +} + +.group:hover .group-hover\:opacity-25 { + opacity: 0.25 !important; +} + +.group:hover .group-hover\:opacity-30 { + opacity: 0.3 !important; +} + +.group:hover .group-hover\:opacity-40 { + opacity: 0.4 !important; +} + +.group:hover .group-hover\:opacity-50 { + opacity: 0.5 !important; +} + +.group:hover .group-hover\:opacity-60 { + opacity: 0.6 !important; +} + +.group:hover .group-hover\:opacity-70 { + opacity: 0.7 !important; +} + +.group:hover .group-hover\:opacity-75 { + opacity: 0.75 !important; +} + +.group:hover .group-hover\:opacity-80 { + opacity: 0.8 !important; +} + +.group:hover .group-hover\:opacity-90 { + opacity: 0.9 !important; +} + +.group:hover .group-hover\:opacity-95 { + opacity: 0.95 !important; +} + +.group:hover .group-hover\:opacity-100 { + opacity: 1 !important; +} + +.focus-within\:opacity-0:focus-within { + opacity: 0 !important; +} + +.focus-within\:opacity-5:focus-within { + opacity: 0.05 !important; +} + +.focus-within\:opacity-10:focus-within { + opacity: 0.1 !important; +} + +.focus-within\:opacity-20:focus-within { + opacity: 0.2 !important; +} + +.focus-within\:opacity-25:focus-within { + opacity: 0.25 !important; +} + +.focus-within\:opacity-30:focus-within { + opacity: 0.3 !important; +} + +.focus-within\:opacity-40:focus-within { + opacity: 0.4 !important; +} + +.focus-within\:opacity-50:focus-within { + opacity: 0.5 !important; +} + +.focus-within\:opacity-60:focus-within { + opacity: 0.6 !important; +} + +.focus-within\:opacity-70:focus-within { + opacity: 0.7 !important; +} + +.focus-within\:opacity-75:focus-within { + opacity: 0.75 !important; +} + +.focus-within\:opacity-80:focus-within { + opacity: 0.8 !important; +} + +.focus-within\:opacity-90:focus-within { + opacity: 0.9 !important; +} + +.focus-within\:opacity-95:focus-within { + opacity: 0.95 !important; +} + +.focus-within\:opacity-100:focus-within { + opacity: 1 !important; +} + +.hover\:opacity-0:hover { + opacity: 0 !important; +} + +.hover\:opacity-5:hover { + opacity: 0.05 !important; +} + +.hover\:opacity-10:hover { + opacity: 0.1 !important; +} + +.hover\:opacity-20:hover { + opacity: 0.2 !important; +} + +.hover\:opacity-25:hover { + opacity: 0.25 !important; +} + +.hover\:opacity-30:hover { + opacity: 0.3 !important; +} + +.hover\:opacity-40:hover { + opacity: 0.4 !important; +} + +.hover\:opacity-50:hover { + opacity: 0.5 !important; +} + +.hover\:opacity-60:hover { + opacity: 0.6 !important; +} + +.hover\:opacity-70:hover { + opacity: 0.7 !important; +} + +.hover\:opacity-75:hover { + opacity: 0.75 !important; +} + +.hover\:opacity-80:hover { + opacity: 0.8 !important; +} + +.hover\:opacity-90:hover { + opacity: 0.9 !important; +} + +.hover\:opacity-95:hover { + opacity: 0.95 !important; +} + +.hover\:opacity-100:hover { + opacity: 1 !important; +} + +.focus\:opacity-0:focus { + opacity: 0 !important; +} + +.focus\:opacity-5:focus { + opacity: 0.05 !important; +} + +.focus\:opacity-10:focus { + opacity: 0.1 !important; +} + +.focus\:opacity-20:focus { + opacity: 0.2 !important; +} + +.focus\:opacity-25:focus { + opacity: 0.25 !important; +} + +.focus\:opacity-30:focus { + opacity: 0.3 !important; +} + +.focus\:opacity-40:focus { + opacity: 0.4 !important; +} + +.focus\:opacity-50:focus { + opacity: 0.5 !important; +} + +.focus\:opacity-60:focus { + opacity: 0.6 !important; +} + +.focus\:opacity-70:focus { + opacity: 0.7 !important; +} + +.focus\:opacity-75:focus { + opacity: 0.75 !important; +} + +.focus\:opacity-80:focus { + opacity: 0.8 !important; +} + +.focus\:opacity-90:focus { + opacity: 0.9 !important; +} + +.focus\:opacity-95:focus { + opacity: 0.95 !important; +} + +.focus\:opacity-100:focus { + opacity: 1 !important; +} + +.disabled\:opacity-0:disabled { + opacity: 0 !important; +} + +.disabled\:opacity-5:disabled { + opacity: 0.05 !important; +} + +.disabled\:opacity-10:disabled { + opacity: 0.1 !important; +} + +.disabled\:opacity-20:disabled { + opacity: 0.2 !important; +} + +.disabled\:opacity-25:disabled { + opacity: 0.25 !important; +} + +.disabled\:opacity-30:disabled { + opacity: 0.3 !important; +} + +.disabled\:opacity-40:disabled { + opacity: 0.4 !important; +} + +.disabled\:opacity-50:disabled { + opacity: 0.5 !important; +} + +.disabled\:opacity-60:disabled { + opacity: 0.6 !important; +} + +.disabled\:opacity-70:disabled { + opacity: 0.7 !important; +} + +.disabled\:opacity-75:disabled { + opacity: 0.75 !important; +} + +.disabled\:opacity-80:disabled { + opacity: 0.8 !important; +} + +.disabled\:opacity-90:disabled { + opacity: 0.9 !important; +} + +.disabled\:opacity-95:disabled { + opacity: 0.95 !important; +} + +.disabled\:opacity-100:disabled { + opacity: 1 !important; +} + +.outline-none { + outline: 2px solid transparent !important; + outline-offset: 2px !important; +} + +.outline-white { + outline: 2px dotted white !important; + outline-offset: 2px !important; +} + +.outline-black { + outline: 2px dotted black !important; + outline-offset: 2px !important; +} + +.focus-within\:outline-none:focus-within { + outline: 2px solid transparent !important; + outline-offset: 2px !important; +} + +.focus-within\:outline-white:focus-within { + outline: 2px dotted white !important; + outline-offset: 2px !important; +} + +.focus-within\:outline-black:focus-within { + outline: 2px dotted black !important; + outline-offset: 2px !important; +} + +.focus\:outline-none:focus { + outline: 2px solid transparent !important; + outline-offset: 2px !important; +} + +.focus\:outline-white:focus { + outline: 2px dotted white !important; + outline-offset: 2px !important; +} + +.focus\:outline-black:focus { + outline: 2px dotted black !important; + outline-offset: 2px !important; +} + +.overflow-auto { + overflow: auto !important; +} + +.overflow-hidden { + overflow: hidden !important; +} + +.overflow-visible { + overflow: visible !important; +} + +.overflow-scroll { + overflow: scroll !important; +} + +.overflow-x-auto { + overflow-x: auto !important; +} + +.overflow-y-auto { + overflow-y: auto !important; +} + +.overflow-x-hidden { + overflow-x: hidden !important; +} + +.overflow-y-hidden { + overflow-y: hidden !important; +} + +.overflow-x-visible { + overflow-x: visible !important; +} + +.overflow-y-visible { + overflow-y: visible !important; +} + +.overflow-x-scroll { + overflow-x: scroll !important; +} + +.overflow-y-scroll { + overflow-y: scroll !important; +} + +.overscroll-auto { + -ms-scroll-chaining: chained !important; + overscroll-behavior: auto !important; +} + +.overscroll-contain { + -ms-scroll-chaining: none !important; + overscroll-behavior: contain !important; +} + +.overscroll-none { + -ms-scroll-chaining: none !important; + overscroll-behavior: none !important; +} + +.overscroll-y-auto { + overscroll-behavior-y: auto !important; +} + +.overscroll-y-contain { + overscroll-behavior-y: contain !important; +} + +.overscroll-y-none { + overscroll-behavior-y: none !important; +} + +.overscroll-x-auto { + overscroll-behavior-x: auto !important; +} + +.overscroll-x-contain { + overscroll-behavior-x: contain !important; +} + +.overscroll-x-none { + overscroll-behavior-x: none !important; +} + +.p-0 { + padding: 0px !important; +} + +.p-1 { + padding: 0.25rem !important; +} + +.p-2 { + padding: 0.5rem !important; +} + +.p-3 { + padding: 0.75rem !important; +} + +.p-4 { + padding: 1rem !important; +} + +.p-5 { + padding: 1.25rem !important; +} + +.p-6 { + padding: 1.5rem !important; +} + +.p-7 { + padding: 1.75rem !important; +} + +.p-8 { + padding: 2rem !important; +} + +.p-9 { + padding: 2.25rem !important; +} + +.p-10 { + padding: 2.5rem !important; +} + +.p-11 { + padding: 2.75rem !important; +} + +.p-12 { + padding: 3rem !important; +} + +.p-14 { + padding: 3.5rem !important; +} + +.p-16 { + padding: 4rem !important; +} + +.p-20 { + padding: 5rem !important; +} + +.p-24 { + padding: 6rem !important; +} + +.p-28 { + padding: 7rem !important; +} + +.p-32 { + padding: 8rem !important; +} + +.p-36 { + padding: 9rem !important; +} + +.p-40 { + padding: 10rem !important; +} + +.p-44 { + padding: 11rem !important; +} + +.p-48 { + padding: 12rem !important; +} + +.p-52 { + padding: 13rem !important; +} + +.p-56 { + padding: 14rem !important; +} + +.p-60 { + padding: 15rem !important; +} + +.p-64 { + padding: 16rem !important; +} + +.p-72 { + padding: 18rem !important; +} + +.p-80 { + padding: 20rem !important; +} + +.p-96 { + padding: 24rem !important; +} + +.p-px { + padding: 1px !important; +} + +.p-0\.5 { + padding: 0.125rem !important; +} + +.p-1\.5 { + padding: 0.375rem !important; +} + +.p-2\.5 { + padding: 0.625rem !important; +} + +.p-3\.5 { + padding: 0.875rem !important; +} + +.py-0 { + padding-top: 0px !important; + padding-bottom: 0px !important; +} + +.px-0 { + padding-left: 0px !important; + padding-right: 0px !important; +} + +.py-1 { + padding-top: 0.25rem !important; + padding-bottom: 0.25rem !important; +} + +.px-1 { + padding-left: 0.25rem !important; + padding-right: 0.25rem !important; +} + +.py-2 { + padding-top: 0.5rem !important; + padding-bottom: 0.5rem !important; +} + +.px-2 { + padding-left: 0.5rem !important; + padding-right: 0.5rem !important; +} + +.py-3 { + padding-top: 0.75rem !important; + padding-bottom: 0.75rem !important; +} + +.px-3 { + padding-left: 0.75rem !important; + padding-right: 0.75rem !important; +} + +.py-4 { + padding-top: 1rem !important; + padding-bottom: 1rem !important; +} + +.px-4 { + padding-left: 1rem !important; + padding-right: 1rem !important; +} + +.py-5 { + padding-top: 1.25rem !important; + padding-bottom: 1.25rem !important; +} + +.px-5 { + padding-left: 1.25rem !important; + padding-right: 1.25rem !important; +} + +.py-6 { + padding-top: 1.5rem !important; + padding-bottom: 1.5rem !important; +} + +.px-6 { + padding-left: 1.5rem !important; + padding-right: 1.5rem !important; +} + +.py-7 { + padding-top: 1.75rem !important; + padding-bottom: 1.75rem !important; +} + +.px-7 { + padding-left: 1.75rem !important; + padding-right: 1.75rem !important; +} + +.py-8 { + padding-top: 2rem !important; + padding-bottom: 2rem !important; +} + +.px-8 { + padding-left: 2rem !important; + padding-right: 2rem !important; +} + +.py-9 { + padding-top: 2.25rem !important; + padding-bottom: 2.25rem !important; +} + +.px-9 { + padding-left: 2.25rem !important; + padding-right: 2.25rem !important; +} + +.py-10 { + padding-top: 2.5rem !important; + padding-bottom: 2.5rem !important; +} + +.px-10 { + padding-left: 2.5rem !important; + padding-right: 2.5rem !important; +} + +.py-11 { + padding-top: 2.75rem !important; + padding-bottom: 2.75rem !important; +} + +.px-11 { + padding-left: 2.75rem !important; + padding-right: 2.75rem !important; +} + +.py-12 { + padding-top: 3rem !important; + padding-bottom: 3rem !important; +} + +.px-12 { + padding-left: 3rem !important; + padding-right: 3rem !important; +} + +.py-14 { + padding-top: 3.5rem !important; + padding-bottom: 3.5rem !important; +} + +.px-14 { + padding-left: 3.5rem !important; + padding-right: 3.5rem !important; +} + +.py-16 { + padding-top: 4rem !important; + padding-bottom: 4rem !important; +} + +.px-16 { + padding-left: 4rem !important; + padding-right: 4rem !important; +} + +.py-20 { + padding-top: 5rem !important; + padding-bottom: 5rem !important; +} + +.px-20 { + padding-left: 5rem !important; + padding-right: 5rem !important; +} + +.py-24 { + padding-top: 6rem !important; + padding-bottom: 6rem !important; +} + +.px-24 { + padding-left: 6rem !important; + padding-right: 6rem !important; +} + +.py-28 { + padding-top: 7rem !important; + padding-bottom: 7rem !important; +} + +.px-28 { + padding-left: 7rem !important; + padding-right: 7rem !important; +} + +.py-32 { + padding-top: 8rem !important; + padding-bottom: 8rem !important; +} + +.px-32 { + padding-left: 8rem !important; + padding-right: 8rem !important; +} + +.py-36 { + padding-top: 9rem !important; + padding-bottom: 9rem !important; +} + +.px-36 { + padding-left: 9rem !important; + padding-right: 9rem !important; +} + +.py-40 { + padding-top: 10rem !important; + padding-bottom: 10rem !important; +} + +.px-40 { + padding-left: 10rem !important; + padding-right: 10rem !important; +} + +.py-44 { + padding-top: 11rem !important; + padding-bottom: 11rem !important; +} + +.px-44 { + padding-left: 11rem !important; + padding-right: 11rem !important; +} + +.py-48 { + padding-top: 12rem !important; + padding-bottom: 12rem !important; +} + +.px-48 { + padding-left: 12rem !important; + padding-right: 12rem !important; +} + +.py-52 { + padding-top: 13rem !important; + padding-bottom: 13rem !important; +} + +.px-52 { + padding-left: 13rem !important; + padding-right: 13rem !important; +} + +.py-56 { + padding-top: 14rem !important; + padding-bottom: 14rem !important; +} + +.px-56 { + padding-left: 14rem !important; + padding-right: 14rem !important; +} + +.py-60 { + padding-top: 15rem !important; + padding-bottom: 15rem !important; +} + +.px-60 { + padding-left: 15rem !important; + padding-right: 15rem !important; +} + +.py-64 { + padding-top: 16rem !important; + padding-bottom: 16rem !important; +} + +.px-64 { + padding-left: 16rem !important; + padding-right: 16rem !important; +} + +.py-72 { + padding-top: 18rem !important; + padding-bottom: 18rem !important; +} + +.px-72 { + padding-left: 18rem !important; + padding-right: 18rem !important; +} + +.py-80 { + padding-top: 20rem !important; + padding-bottom: 20rem !important; +} + +.px-80 { + padding-left: 20rem !important; + padding-right: 20rem !important; +} + +.py-96 { + padding-top: 24rem !important; + padding-bottom: 24rem !important; +} + +.px-96 { + padding-left: 24rem !important; + padding-right: 24rem !important; +} + +.py-px { + padding-top: 1px !important; + padding-bottom: 1px !important; +} + +.px-px { + padding-left: 1px !important; + padding-right: 1px !important; +} + +.py-0\.5 { + padding-top: 0.125rem !important; + padding-bottom: 0.125rem !important; +} + +.px-0\.5 { + padding-left: 0.125rem !important; + padding-right: 0.125rem !important; +} + +.py-1\.5 { + padding-top: 0.375rem !important; + padding-bottom: 0.375rem !important; +} + +.px-1\.5 { + padding-left: 0.375rem !important; + padding-right: 0.375rem !important; +} + +.py-2\.5 { + padding-top: 0.625rem !important; + padding-bottom: 0.625rem !important; +} + +.px-2\.5 { + padding-left: 0.625rem !important; + padding-right: 0.625rem !important; +} + +.py-3\.5 { + padding-top: 0.875rem !important; + padding-bottom: 0.875rem !important; +} + +.px-3\.5 { + padding-left: 0.875rem !important; + padding-right: 0.875rem !important; +} + +.pt-0 { + padding-top: 0px !important; +} + +.pr-0 { + padding-right: 0px !important; +} + +.pb-0 { + padding-bottom: 0px !important; +} + +.pl-0 { + padding-left: 0px !important; +} + +.pt-1 { + padding-top: 0.25rem !important; +} + +.pr-1 { + padding-right: 0.25rem !important; +} + +.pb-1 { + padding-bottom: 0.25rem !important; +} + +.pl-1 { + padding-left: 0.25rem !important; +} + +.pt-2 { + padding-top: 0.5rem !important; +} + +.pr-2 { + padding-right: 0.5rem !important; +} + +.pb-2 { + padding-bottom: 0.5rem !important; +} + +.pl-2 { + padding-left: 0.5rem !important; +} + +.pt-3 { + padding-top: 0.75rem !important; +} + +.pr-3 { + padding-right: 0.75rem !important; +} + +.pb-3 { + padding-bottom: 0.75rem !important; +} + +.pl-3 { + padding-left: 0.75rem !important; +} + +.pt-4 { + padding-top: 1rem !important; +} + +.pr-4 { + padding-right: 1rem !important; +} + +.pb-4 { + padding-bottom: 1rem !important; +} + +.pl-4 { + padding-left: 1rem !important; +} + +.pt-5 { + padding-top: 1.25rem !important; +} + +.pr-5 { + padding-right: 1.25rem !important; +} + +.pb-5 { + padding-bottom: 1.25rem !important; +} + +.pl-5 { + padding-left: 1.25rem !important; +} + +.pt-6 { + padding-top: 1.5rem !important; +} + +.pr-6 { + padding-right: 1.5rem !important; +} + +.pb-6 { + padding-bottom: 1.5rem !important; +} + +.pl-6 { + padding-left: 1.5rem !important; +} + +.pt-7 { + padding-top: 1.75rem !important; +} + +.pr-7 { + padding-right: 1.75rem !important; +} + +.pb-7 { + padding-bottom: 1.75rem !important; +} + +.pl-7 { + padding-left: 1.75rem !important; +} + +.pt-8 { + padding-top: 2rem !important; +} + +.pr-8 { + padding-right: 2rem !important; +} + +.pb-8 { + padding-bottom: 2rem !important; +} + +.pl-8 { + padding-left: 2rem !important; +} + +.pt-9 { + padding-top: 2.25rem !important; +} + +.pr-9 { + padding-right: 2.25rem !important; +} + +.pb-9 { + padding-bottom: 2.25rem !important; +} + +.pl-9 { + padding-left: 2.25rem !important; +} + +.pt-10 { + padding-top: 2.5rem !important; +} + +.pr-10 { + padding-right: 2.5rem !important; +} + +.pb-10 { + padding-bottom: 2.5rem !important; +} + +.pl-10 { + padding-left: 2.5rem !important; +} + +.pt-11 { + padding-top: 2.75rem !important; +} + +.pr-11 { + padding-right: 2.75rem !important; +} + +.pb-11 { + padding-bottom: 2.75rem !important; +} + +.pl-11 { + padding-left: 2.75rem !important; +} + +.pt-12 { + padding-top: 3rem !important; +} + +.pr-12 { + padding-right: 3rem !important; +} + +.pb-12 { + padding-bottom: 3rem !important; +} + +.pl-12 { + padding-left: 3rem !important; +} + +.pt-14 { + padding-top: 3.5rem !important; +} + +.pr-14 { + padding-right: 3.5rem !important; +} + +.pb-14 { + padding-bottom: 3.5rem !important; +} + +.pl-14 { + padding-left: 3.5rem !important; +} + +.pt-16 { + padding-top: 4rem !important; +} + +.pr-16 { + padding-right: 4rem !important; +} + +.pb-16 { + padding-bottom: 4rem !important; +} + +.pl-16 { + padding-left: 4rem !important; +} + +.pt-20 { + padding-top: 5rem !important; +} + +.pr-20 { + padding-right: 5rem !important; +} + +.pb-20 { + padding-bottom: 5rem !important; +} + +.pl-20 { + padding-left: 5rem !important; +} + +.pt-24 { + padding-top: 6rem !important; +} + +.pr-24 { + padding-right: 6rem !important; +} + +.pb-24 { + padding-bottom: 6rem !important; +} + +.pl-24 { + padding-left: 6rem !important; +} + +.pt-28 { + padding-top: 7rem !important; +} + +.pr-28 { + padding-right: 7rem !important; +} + +.pb-28 { + padding-bottom: 7rem !important; +} + +.pl-28 { + padding-left: 7rem !important; +} + +.pt-32 { + padding-top: 8rem !important; +} + +.pr-32 { + padding-right: 8rem !important; +} + +.pb-32 { + padding-bottom: 8rem !important; +} + +.pl-32 { + padding-left: 8rem !important; +} + +.pt-36 { + padding-top: 9rem !important; +} + +.pr-36 { + padding-right: 9rem !important; +} + +.pb-36 { + padding-bottom: 9rem !important; +} + +.pl-36 { + padding-left: 9rem !important; +} + +.pt-40 { + padding-top: 10rem !important; +} + +.pr-40 { + padding-right: 10rem !important; +} + +.pb-40 { + padding-bottom: 10rem !important; +} + +.pl-40 { + padding-left: 10rem !important; +} + +.pt-44 { + padding-top: 11rem !important; +} + +.pr-44 { + padding-right: 11rem !important; +} + +.pb-44 { + padding-bottom: 11rem !important; +} + +.pl-44 { + padding-left: 11rem !important; +} + +.pt-48 { + padding-top: 12rem !important; +} + +.pr-48 { + padding-right: 12rem !important; +} + +.pb-48 { + padding-bottom: 12rem !important; +} + +.pl-48 { + padding-left: 12rem !important; +} + +.pt-52 { + padding-top: 13rem !important; +} + +.pr-52 { + padding-right: 13rem !important; +} + +.pb-52 { + padding-bottom: 13rem !important; +} + +.pl-52 { + padding-left: 13rem !important; +} + +.pt-56 { + padding-top: 14rem !important; +} + +.pr-56 { + padding-right: 14rem !important; +} + +.pb-56 { + padding-bottom: 14rem !important; +} + +.pl-56 { + padding-left: 14rem !important; +} + +.pt-60 { + padding-top: 15rem !important; +} + +.pr-60 { + padding-right: 15rem !important; +} + +.pb-60 { + padding-bottom: 15rem !important; +} + +.pl-60 { + padding-left: 15rem !important; +} + +.pt-64 { + padding-top: 16rem !important; +} + +.pr-64 { + padding-right: 16rem !important; +} + +.pb-64 { + padding-bottom: 16rem !important; +} + +.pl-64 { + padding-left: 16rem !important; +} + +.pt-72 { + padding-top: 18rem !important; +} + +.pr-72 { + padding-right: 18rem !important; +} + +.pb-72 { + padding-bottom: 18rem !important; +} + +.pl-72 { + padding-left: 18rem !important; +} + +.pt-80 { + padding-top: 20rem !important; +} + +.pr-80 { + padding-right: 20rem !important; +} + +.pb-80 { + padding-bottom: 20rem !important; +} + +.pl-80 { + padding-left: 20rem !important; +} + +.pt-96 { + padding-top: 24rem !important; +} + +.pr-96 { + padding-right: 24rem !important; +} + +.pb-96 { + padding-bottom: 24rem !important; +} + +.pl-96 { + padding-left: 24rem !important; +} + +.pt-px { + padding-top: 1px !important; +} + +.pr-px { + padding-right: 1px !important; +} + +.pb-px { + padding-bottom: 1px !important; +} + +.pl-px { + padding-left: 1px !important; +} + +.pt-0\.5 { + padding-top: 0.125rem !important; +} + +.pr-0\.5 { + padding-right: 0.125rem !important; +} + +.pb-0\.5 { + padding-bottom: 0.125rem !important; +} + +.pl-0\.5 { + padding-left: 0.125rem !important; +} + +.pt-1\.5 { + padding-top: 0.375rem !important; +} + +.pr-1\.5 { + padding-right: 0.375rem !important; +} + +.pb-1\.5 { + padding-bottom: 0.375rem !important; +} + +.pl-1\.5 { + padding-left: 0.375rem !important; +} + +.pt-2\.5 { + padding-top: 0.625rem !important; +} + +.pr-2\.5 { + padding-right: 0.625rem !important; +} + +.pb-2\.5 { + padding-bottom: 0.625rem !important; +} + +.pl-2\.5 { + padding-left: 0.625rem !important; +} + +.pt-3\.5 { + padding-top: 0.875rem !important; +} + +.pr-3\.5 { + padding-right: 0.875rem !important; +} + +.pb-3\.5 { + padding-bottom: 0.875rem !important; +} + +.pl-3\.5 { + padding-left: 0.875rem !important; +} + +.placeholder-transparent::-moz-placeholder { + color: transparent !important; +} + +.placeholder-transparent:-ms-input-placeholder { + color: transparent !important; +} + +.placeholder-transparent::placeholder { + color: transparent !important; +} + +.placeholder-current::-moz-placeholder { + color: currentColor !important; +} + +.placeholder-current:-ms-input-placeholder { + color: currentColor !important; +} + +.placeholder-current::placeholder { + color: currentColor !important; +} + +.placeholder-black::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-black:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-black::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-white::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-white:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-white::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-gray-50::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-gray-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-gray-50::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-gray-100::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-gray-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-gray-100::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-gray-200::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-gray-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-gray-200::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-gray-300::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-gray-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-gray-300::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-gray-400::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-gray-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-gray-400::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-gray-500::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-gray-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-gray-500::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-gray-600::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-gray-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-gray-600::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-gray-700::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-gray-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-gray-700::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-gray-800::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-gray-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-gray-800::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-gray-900::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-gray-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-gray-900::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-red-50::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 242, 242, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-red-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 242, 242, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-red-50::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 242, 242, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-red-100::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 226, 226, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-red-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 226, 226, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-red-100::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 226, 226, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-red-200::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 202, 202, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-red-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 202, 202, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-red-200::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 202, 202, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-red-300::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 165, 165, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-red-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 165, 165, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-red-300::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 165, 165, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-red-400::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(248, 113, 113, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-red-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(248, 113, 113, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-red-400::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(248, 113, 113, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-red-500::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(239, 68, 68, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-red-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(239, 68, 68, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-red-500::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(239, 68, 68, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-red-600::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(220, 38, 38, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-red-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(220, 38, 38, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-red-600::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(220, 38, 38, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-red-700::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(185, 28, 28, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-red-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(185, 28, 28, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-red-700::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(185, 28, 28, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-red-800::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(153, 27, 27, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-red-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(153, 27, 27, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-red-800::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(153, 27, 27, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-red-900::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(127, 29, 29, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-red-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(127, 29, 29, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-red-900::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(127, 29, 29, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-yellow-50::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(255, 251, 235, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-yellow-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(255, 251, 235, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-yellow-50::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(255, 251, 235, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-yellow-100::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 243, 199, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-yellow-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 243, 199, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-yellow-100::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 243, 199, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-yellow-200::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(253, 230, 138, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-yellow-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(253, 230, 138, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-yellow-200::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(253, 230, 138, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-yellow-300::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 211, 77, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-yellow-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 211, 77, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-yellow-300::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 211, 77, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-yellow-400::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(251, 191, 36, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-yellow-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(251, 191, 36, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-yellow-400::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(251, 191, 36, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-yellow-500::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-yellow-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-yellow-500::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-yellow-600::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(217, 119, 6, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-yellow-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(217, 119, 6, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-yellow-600::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(217, 119, 6, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-yellow-700::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(180, 83, 9, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-yellow-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(180, 83, 9, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-yellow-700::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(180, 83, 9, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-yellow-800::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(146, 64, 14, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-yellow-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(146, 64, 14, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-yellow-800::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(146, 64, 14, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-yellow-900::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(120, 53, 15, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-yellow-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(120, 53, 15, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-yellow-900::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(120, 53, 15, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-green-50::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(236, 253, 245, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-green-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(236, 253, 245, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-green-50::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(236, 253, 245, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-green-100::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(209, 250, 229, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-green-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(209, 250, 229, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-green-100::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(209, 250, 229, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-green-200::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(167, 243, 208, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-green-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(167, 243, 208, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-green-200::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(167, 243, 208, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-green-300::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(110, 231, 183, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-green-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(110, 231, 183, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-green-300::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(110, 231, 183, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-green-400::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(52, 211, 153, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-green-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(52, 211, 153, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-green-400::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(52, 211, 153, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-green-500::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(16, 185, 129, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-green-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(16, 185, 129, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-green-500::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(16, 185, 129, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-green-600::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(5, 150, 105, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-green-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(5, 150, 105, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-green-600::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(5, 150, 105, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-green-700::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(4, 120, 87, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-green-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(4, 120, 87, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-green-700::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(4, 120, 87, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-green-800::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(6, 95, 70, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-green-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(6, 95, 70, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-green-800::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(6, 95, 70, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-green-900::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(6, 78, 59, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-green-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(6, 78, 59, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-green-900::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(6, 78, 59, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-blue-50::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(239, 246, 255, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-blue-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(239, 246, 255, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-blue-50::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(239, 246, 255, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-blue-100::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(219, 234, 254, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-blue-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(219, 234, 254, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-blue-100::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(219, 234, 254, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-blue-200::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(191, 219, 254, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-blue-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(191, 219, 254, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-blue-200::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(191, 219, 254, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-blue-300::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(147, 197, 253, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-blue-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(147, 197, 253, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-blue-300::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(147, 197, 253, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-blue-400::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(96, 165, 250, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-blue-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(96, 165, 250, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-blue-400::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(96, 165, 250, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-blue-500::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-blue-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-blue-500::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-blue-600::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(37, 99, 235, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-blue-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(37, 99, 235, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-blue-600::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(37, 99, 235, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-blue-700::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(29, 78, 216, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-blue-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(29, 78, 216, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-blue-700::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(29, 78, 216, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-blue-800::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(30, 64, 175, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-blue-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(30, 64, 175, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-blue-800::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(30, 64, 175, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-blue-900::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(30, 58, 138, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-blue-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(30, 58, 138, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-blue-900::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(30, 58, 138, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-indigo-50::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(238, 242, 255, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-indigo-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(238, 242, 255, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-indigo-50::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(238, 242, 255, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-indigo-100::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(224, 231, 255, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-indigo-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(224, 231, 255, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-indigo-100::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(224, 231, 255, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-indigo-200::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(199, 210, 254, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-indigo-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(199, 210, 254, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-indigo-200::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(199, 210, 254, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-indigo-300::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(165, 180, 252, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-indigo-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(165, 180, 252, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-indigo-300::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(165, 180, 252, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-indigo-400::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(129, 140, 248, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-indigo-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(129, 140, 248, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-indigo-400::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(129, 140, 248, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-indigo-500::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(99, 102, 241, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-indigo-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(99, 102, 241, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-indigo-500::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(99, 102, 241, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-indigo-600::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(79, 70, 229, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-indigo-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(79, 70, 229, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-indigo-600::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(79, 70, 229, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-indigo-700::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(67, 56, 202, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-indigo-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(67, 56, 202, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-indigo-700::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(67, 56, 202, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-indigo-800::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(55, 48, 163, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-indigo-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(55, 48, 163, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-indigo-800::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(55, 48, 163, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-indigo-900::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(49, 46, 129, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-indigo-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(49, 46, 129, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-indigo-900::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(49, 46, 129, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-purple-50::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(245, 243, 255, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-purple-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(245, 243, 255, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-purple-50::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(245, 243, 255, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-purple-100::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(237, 233, 254, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-purple-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(237, 233, 254, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-purple-100::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(237, 233, 254, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-purple-200::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(221, 214, 254, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-purple-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(221, 214, 254, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-purple-200::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(221, 214, 254, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-purple-300::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(196, 181, 253, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-purple-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(196, 181, 253, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-purple-300::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(196, 181, 253, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-purple-400::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(167, 139, 250, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-purple-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(167, 139, 250, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-purple-400::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(167, 139, 250, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-purple-500::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(139, 92, 246, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-purple-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(139, 92, 246, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-purple-500::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(139, 92, 246, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-purple-600::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(124, 58, 237, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-purple-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(124, 58, 237, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-purple-600::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(124, 58, 237, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-purple-700::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(109, 40, 217, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-purple-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(109, 40, 217, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-purple-700::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(109, 40, 217, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-purple-800::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(91, 33, 182, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-purple-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(91, 33, 182, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-purple-800::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(91, 33, 182, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-purple-900::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(76, 29, 149, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-purple-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(76, 29, 149, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-purple-900::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(76, 29, 149, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-pink-50::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(253, 242, 248, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-pink-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(253, 242, 248, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-pink-50::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(253, 242, 248, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-pink-100::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 231, 243, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-pink-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 231, 243, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-pink-100::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 231, 243, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-pink-200::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(251, 207, 232, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-pink-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(251, 207, 232, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-pink-200::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(251, 207, 232, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-pink-300::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(249, 168, 212, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-pink-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(249, 168, 212, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-pink-300::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(249, 168, 212, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-pink-400::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(244, 114, 182, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-pink-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(244, 114, 182, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-pink-400::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(244, 114, 182, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-pink-500::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(236, 72, 153, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-pink-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(236, 72, 153, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-pink-500::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(236, 72, 153, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-pink-600::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(219, 39, 119, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-pink-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(219, 39, 119, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-pink-600::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(219, 39, 119, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-pink-700::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(190, 24, 93, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-pink-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(190, 24, 93, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-pink-700::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(190, 24, 93, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-pink-800::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(157, 23, 77, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-pink-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(157, 23, 77, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-pink-800::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(157, 23, 77, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-pink-900::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(131, 24, 67, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-pink-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(131, 24, 67, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-pink-900::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(131, 24, 67, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-primary::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(0, 49, 151, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-primary:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(0, 49, 151, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-primary::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(0, 49, 151, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-transparent:focus::-moz-placeholder { + color: transparent !important; +} + +.focus\:placeholder-transparent:focus:-ms-input-placeholder { + color: transparent !important; +} + +.focus\:placeholder-transparent:focus::placeholder { + color: transparent !important; +} + +.focus\:placeholder-current:focus::-moz-placeholder { + color: currentColor !important; +} + +.focus\:placeholder-current:focus:-ms-input-placeholder { + color: currentColor !important; +} + +.focus\:placeholder-current:focus::placeholder { + color: currentColor !important; +} + +.focus\:placeholder-black:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-black:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-black:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-white:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-white:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-white:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-gray-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-gray-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-gray-50:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-gray-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-gray-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-gray-100:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-gray-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-gray-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-gray-200:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-gray-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-gray-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-gray-300:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-gray-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-gray-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-gray-400:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-gray-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-gray-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-gray-500:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-gray-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-gray-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-gray-600:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-gray-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-gray-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-gray-700:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-gray-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-gray-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-gray-800:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-gray-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-gray-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-gray-900:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-red-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 242, 242, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-red-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 242, 242, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-red-50:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 242, 242, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-red-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 226, 226, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-red-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 226, 226, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-red-100:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 226, 226, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-red-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 202, 202, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-red-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 202, 202, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-red-200:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 202, 202, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-red-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 165, 165, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-red-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 165, 165, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-red-300:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 165, 165, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-red-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(248, 113, 113, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-red-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(248, 113, 113, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-red-400:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(248, 113, 113, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-red-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(239, 68, 68, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-red-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(239, 68, 68, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-red-500:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(239, 68, 68, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-red-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(220, 38, 38, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-red-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(220, 38, 38, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-red-600:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(220, 38, 38, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-red-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(185, 28, 28, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-red-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(185, 28, 28, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-red-700:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(185, 28, 28, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-red-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(153, 27, 27, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-red-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(153, 27, 27, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-red-800:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(153, 27, 27, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-red-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(127, 29, 29, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-red-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(127, 29, 29, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-red-900:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(127, 29, 29, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-yellow-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(255, 251, 235, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-yellow-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(255, 251, 235, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-yellow-50:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(255, 251, 235, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-yellow-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 243, 199, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-yellow-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 243, 199, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-yellow-100:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 243, 199, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-yellow-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(253, 230, 138, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-yellow-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(253, 230, 138, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-yellow-200:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(253, 230, 138, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-yellow-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 211, 77, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-yellow-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 211, 77, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-yellow-300:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 211, 77, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-yellow-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(251, 191, 36, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-yellow-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(251, 191, 36, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-yellow-400:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(251, 191, 36, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-yellow-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-yellow-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-yellow-500:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-yellow-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(217, 119, 6, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-yellow-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(217, 119, 6, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-yellow-600:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(217, 119, 6, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-yellow-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(180, 83, 9, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-yellow-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(180, 83, 9, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-yellow-700:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(180, 83, 9, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-yellow-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(146, 64, 14, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-yellow-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(146, 64, 14, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-yellow-800:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(146, 64, 14, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-yellow-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(120, 53, 15, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-yellow-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(120, 53, 15, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-yellow-900:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(120, 53, 15, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-green-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(236, 253, 245, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-green-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(236, 253, 245, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-green-50:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(236, 253, 245, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-green-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(209, 250, 229, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-green-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(209, 250, 229, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-green-100:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(209, 250, 229, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-green-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(167, 243, 208, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-green-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(167, 243, 208, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-green-200:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(167, 243, 208, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-green-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(110, 231, 183, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-green-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(110, 231, 183, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-green-300:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(110, 231, 183, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-green-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(52, 211, 153, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-green-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(52, 211, 153, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-green-400:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(52, 211, 153, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-green-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(16, 185, 129, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-green-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(16, 185, 129, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-green-500:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(16, 185, 129, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-green-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(5, 150, 105, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-green-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(5, 150, 105, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-green-600:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(5, 150, 105, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-green-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(4, 120, 87, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-green-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(4, 120, 87, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-green-700:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(4, 120, 87, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-green-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(6, 95, 70, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-green-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(6, 95, 70, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-green-800:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(6, 95, 70, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-green-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(6, 78, 59, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-green-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(6, 78, 59, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-green-900:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(6, 78, 59, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-blue-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(239, 246, 255, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-blue-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(239, 246, 255, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-blue-50:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(239, 246, 255, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-blue-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(219, 234, 254, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-blue-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(219, 234, 254, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-blue-100:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(219, 234, 254, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-blue-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(191, 219, 254, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-blue-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(191, 219, 254, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-blue-200:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(191, 219, 254, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-blue-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(147, 197, 253, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-blue-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(147, 197, 253, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-blue-300:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(147, 197, 253, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-blue-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(96, 165, 250, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-blue-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(96, 165, 250, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-blue-400:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(96, 165, 250, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-blue-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-blue-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-blue-500:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-blue-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(37, 99, 235, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-blue-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(37, 99, 235, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-blue-600:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(37, 99, 235, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-blue-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(29, 78, 216, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-blue-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(29, 78, 216, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-blue-700:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(29, 78, 216, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-blue-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(30, 64, 175, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-blue-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(30, 64, 175, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-blue-800:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(30, 64, 175, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-blue-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(30, 58, 138, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-blue-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(30, 58, 138, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-blue-900:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(30, 58, 138, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-indigo-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(238, 242, 255, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-indigo-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(238, 242, 255, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-indigo-50:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(238, 242, 255, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-indigo-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(224, 231, 255, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-indigo-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(224, 231, 255, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-indigo-100:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(224, 231, 255, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-indigo-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(199, 210, 254, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-indigo-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(199, 210, 254, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-indigo-200:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(199, 210, 254, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-indigo-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(165, 180, 252, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-indigo-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(165, 180, 252, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-indigo-300:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(165, 180, 252, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-indigo-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(129, 140, 248, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-indigo-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(129, 140, 248, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-indigo-400:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(129, 140, 248, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-indigo-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(99, 102, 241, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-indigo-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(99, 102, 241, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-indigo-500:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(99, 102, 241, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-indigo-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(79, 70, 229, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-indigo-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(79, 70, 229, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-indigo-600:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(79, 70, 229, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-indigo-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(67, 56, 202, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-indigo-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(67, 56, 202, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-indigo-700:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(67, 56, 202, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-indigo-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(55, 48, 163, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-indigo-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(55, 48, 163, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-indigo-800:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(55, 48, 163, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-indigo-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(49, 46, 129, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-indigo-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(49, 46, 129, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-indigo-900:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(49, 46, 129, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-purple-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(245, 243, 255, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-purple-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(245, 243, 255, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-purple-50:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(245, 243, 255, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-purple-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(237, 233, 254, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-purple-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(237, 233, 254, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-purple-100:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(237, 233, 254, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-purple-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(221, 214, 254, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-purple-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(221, 214, 254, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-purple-200:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(221, 214, 254, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-purple-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(196, 181, 253, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-purple-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(196, 181, 253, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-purple-300:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(196, 181, 253, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-purple-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(167, 139, 250, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-purple-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(167, 139, 250, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-purple-400:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(167, 139, 250, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-purple-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(139, 92, 246, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-purple-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(139, 92, 246, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-purple-500:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(139, 92, 246, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-purple-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(124, 58, 237, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-purple-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(124, 58, 237, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-purple-600:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(124, 58, 237, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-purple-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(109, 40, 217, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-purple-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(109, 40, 217, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-purple-700:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(109, 40, 217, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-purple-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(91, 33, 182, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-purple-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(91, 33, 182, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-purple-800:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(91, 33, 182, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-purple-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(76, 29, 149, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-purple-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(76, 29, 149, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-purple-900:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(76, 29, 149, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-pink-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(253, 242, 248, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-pink-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(253, 242, 248, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-pink-50:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(253, 242, 248, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-pink-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 231, 243, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-pink-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 231, 243, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-pink-100:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 231, 243, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-pink-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(251, 207, 232, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-pink-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(251, 207, 232, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-pink-200:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(251, 207, 232, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-pink-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(249, 168, 212, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-pink-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(249, 168, 212, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-pink-300:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(249, 168, 212, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-pink-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(244, 114, 182, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-pink-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(244, 114, 182, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-pink-400:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(244, 114, 182, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-pink-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(236, 72, 153, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-pink-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(236, 72, 153, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-pink-500:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(236, 72, 153, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-pink-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(219, 39, 119, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-pink-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(219, 39, 119, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-pink-600:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(219, 39, 119, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-pink-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(190, 24, 93, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-pink-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(190, 24, 93, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-pink-700:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(190, 24, 93, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-pink-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(157, 23, 77, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-pink-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(157, 23, 77, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-pink-800:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(157, 23, 77, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-pink-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(131, 24, 67, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-pink-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(131, 24, 67, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-pink-900:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(131, 24, 67, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-primary:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(0, 49, 151, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-primary:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(0, 49, 151, var(--tw-placeholder-opacity)) !important; +} + +.focus\:placeholder-primary:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(0, 49, 151, var(--tw-placeholder-opacity)) !important; +} + +.placeholder-opacity-0::-moz-placeholder { + --tw-placeholder-opacity: 0 !important; +} + +.placeholder-opacity-0:-ms-input-placeholder { + --tw-placeholder-opacity: 0 !important; +} + +.placeholder-opacity-0::placeholder { + --tw-placeholder-opacity: 0 !important; +} + +.placeholder-opacity-5::-moz-placeholder { + --tw-placeholder-opacity: 0.05 !important; +} + +.placeholder-opacity-5:-ms-input-placeholder { + --tw-placeholder-opacity: 0.05 !important; +} + +.placeholder-opacity-5::placeholder { + --tw-placeholder-opacity: 0.05 !important; +} + +.placeholder-opacity-10::-moz-placeholder { + --tw-placeholder-opacity: 0.1 !important; +} + +.placeholder-opacity-10:-ms-input-placeholder { + --tw-placeholder-opacity: 0.1 !important; +} + +.placeholder-opacity-10::placeholder { + --tw-placeholder-opacity: 0.1 !important; +} + +.placeholder-opacity-20::-moz-placeholder { + --tw-placeholder-opacity: 0.2 !important; +} + +.placeholder-opacity-20:-ms-input-placeholder { + --tw-placeholder-opacity: 0.2 !important; +} + +.placeholder-opacity-20::placeholder { + --tw-placeholder-opacity: 0.2 !important; +} + +.placeholder-opacity-25::-moz-placeholder { + --tw-placeholder-opacity: 0.25 !important; +} + +.placeholder-opacity-25:-ms-input-placeholder { + --tw-placeholder-opacity: 0.25 !important; +} + +.placeholder-opacity-25::placeholder { + --tw-placeholder-opacity: 0.25 !important; +} + +.placeholder-opacity-30::-moz-placeholder { + --tw-placeholder-opacity: 0.3 !important; +} + +.placeholder-opacity-30:-ms-input-placeholder { + --tw-placeholder-opacity: 0.3 !important; +} + +.placeholder-opacity-30::placeholder { + --tw-placeholder-opacity: 0.3 !important; +} + +.placeholder-opacity-40::-moz-placeholder { + --tw-placeholder-opacity: 0.4 !important; +} + +.placeholder-opacity-40:-ms-input-placeholder { + --tw-placeholder-opacity: 0.4 !important; +} + +.placeholder-opacity-40::placeholder { + --tw-placeholder-opacity: 0.4 !important; +} + +.placeholder-opacity-50::-moz-placeholder { + --tw-placeholder-opacity: 0.5 !important; +} + +.placeholder-opacity-50:-ms-input-placeholder { + --tw-placeholder-opacity: 0.5 !important; +} + +.placeholder-opacity-50::placeholder { + --tw-placeholder-opacity: 0.5 !important; +} + +.placeholder-opacity-60::-moz-placeholder { + --tw-placeholder-opacity: 0.6 !important; +} + +.placeholder-opacity-60:-ms-input-placeholder { + --tw-placeholder-opacity: 0.6 !important; +} + +.placeholder-opacity-60::placeholder { + --tw-placeholder-opacity: 0.6 !important; +} + +.placeholder-opacity-70::-moz-placeholder { + --tw-placeholder-opacity: 0.7 !important; +} + +.placeholder-opacity-70:-ms-input-placeholder { + --tw-placeholder-opacity: 0.7 !important; +} + +.placeholder-opacity-70::placeholder { + --tw-placeholder-opacity: 0.7 !important; +} + +.placeholder-opacity-75::-moz-placeholder { + --tw-placeholder-opacity: 0.75 !important; +} + +.placeholder-opacity-75:-ms-input-placeholder { + --tw-placeholder-opacity: 0.75 !important; +} + +.placeholder-opacity-75::placeholder { + --tw-placeholder-opacity: 0.75 !important; +} + +.placeholder-opacity-80::-moz-placeholder { + --tw-placeholder-opacity: 0.8 !important; +} + +.placeholder-opacity-80:-ms-input-placeholder { + --tw-placeholder-opacity: 0.8 !important; +} + +.placeholder-opacity-80::placeholder { + --tw-placeholder-opacity: 0.8 !important; +} + +.placeholder-opacity-90::-moz-placeholder { + --tw-placeholder-opacity: 0.9 !important; +} + +.placeholder-opacity-90:-ms-input-placeholder { + --tw-placeholder-opacity: 0.9 !important; +} + +.placeholder-opacity-90::placeholder { + --tw-placeholder-opacity: 0.9 !important; +} + +.placeholder-opacity-95::-moz-placeholder { + --tw-placeholder-opacity: 0.95 !important; +} + +.placeholder-opacity-95:-ms-input-placeholder { + --tw-placeholder-opacity: 0.95 !important; +} + +.placeholder-opacity-95::placeholder { + --tw-placeholder-opacity: 0.95 !important; +} + +.placeholder-opacity-100::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; +} + +.placeholder-opacity-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; +} + +.placeholder-opacity-100::placeholder { + --tw-placeholder-opacity: 1 !important; +} + +.focus\:placeholder-opacity-0:focus::-moz-placeholder { + --tw-placeholder-opacity: 0 !important; +} + +.focus\:placeholder-opacity-0:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0 !important; +} + +.focus\:placeholder-opacity-0:focus::placeholder { + --tw-placeholder-opacity: 0 !important; +} + +.focus\:placeholder-opacity-5:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.05 !important; +} + +.focus\:placeholder-opacity-5:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.05 !important; +} + +.focus\:placeholder-opacity-5:focus::placeholder { + --tw-placeholder-opacity: 0.05 !important; +} + +.focus\:placeholder-opacity-10:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.1 !important; +} + +.focus\:placeholder-opacity-10:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.1 !important; +} + +.focus\:placeholder-opacity-10:focus::placeholder { + --tw-placeholder-opacity: 0.1 !important; +} + +.focus\:placeholder-opacity-20:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.2 !important; +} + +.focus\:placeholder-opacity-20:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.2 !important; +} + +.focus\:placeholder-opacity-20:focus::placeholder { + --tw-placeholder-opacity: 0.2 !important; +} + +.focus\:placeholder-opacity-25:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.25 !important; +} + +.focus\:placeholder-opacity-25:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.25 !important; +} + +.focus\:placeholder-opacity-25:focus::placeholder { + --tw-placeholder-opacity: 0.25 !important; +} + +.focus\:placeholder-opacity-30:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.3 !important; +} + +.focus\:placeholder-opacity-30:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.3 !important; +} + +.focus\:placeholder-opacity-30:focus::placeholder { + --tw-placeholder-opacity: 0.3 !important; +} + +.focus\:placeholder-opacity-40:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.4 !important; +} + +.focus\:placeholder-opacity-40:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.4 !important; +} + +.focus\:placeholder-opacity-40:focus::placeholder { + --tw-placeholder-opacity: 0.4 !important; +} + +.focus\:placeholder-opacity-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.5 !important; +} + +.focus\:placeholder-opacity-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.5 !important; +} + +.focus\:placeholder-opacity-50:focus::placeholder { + --tw-placeholder-opacity: 0.5 !important; +} + +.focus\:placeholder-opacity-60:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.6 !important; +} + +.focus\:placeholder-opacity-60:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.6 !important; +} + +.focus\:placeholder-opacity-60:focus::placeholder { + --tw-placeholder-opacity: 0.6 !important; +} + +.focus\:placeholder-opacity-70:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.7 !important; +} + +.focus\:placeholder-opacity-70:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.7 !important; +} + +.focus\:placeholder-opacity-70:focus::placeholder { + --tw-placeholder-opacity: 0.7 !important; +} + +.focus\:placeholder-opacity-75:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.75 !important; +} + +.focus\:placeholder-opacity-75:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.75 !important; +} + +.focus\:placeholder-opacity-75:focus::placeholder { + --tw-placeholder-opacity: 0.75 !important; +} + +.focus\:placeholder-opacity-80:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.8 !important; +} + +.focus\:placeholder-opacity-80:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.8 !important; +} + +.focus\:placeholder-opacity-80:focus::placeholder { + --tw-placeholder-opacity: 0.8 !important; +} + +.focus\:placeholder-opacity-90:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.9 !important; +} + +.focus\:placeholder-opacity-90:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.9 !important; +} + +.focus\:placeholder-opacity-90:focus::placeholder { + --tw-placeholder-opacity: 0.9 !important; +} + +.focus\:placeholder-opacity-95:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.95 !important; +} + +.focus\:placeholder-opacity-95:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.95 !important; +} + +.focus\:placeholder-opacity-95:focus::placeholder { + --tw-placeholder-opacity: 0.95 !important; +} + +.focus\:placeholder-opacity-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; +} + +.focus\:placeholder-opacity-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; +} + +.focus\:placeholder-opacity-100:focus::placeholder { + --tw-placeholder-opacity: 1 !important; +} + +.pointer-events-none { + pointer-events: none !important; +} + +.pointer-events-auto { + pointer-events: auto !important; +} + +.static { + position: static !important; +} + +.fixed { + position: fixed !important; +} + +.absolute { + position: absolute !important; +} + +.relative { + position: relative !important; +} + +.sticky { + position: sticky !important; +} + +.inset-0 { + top: 0px !important; + right: 0px !important; + bottom: 0px !important; + left: 0px !important; +} + +.inset-1 { + top: 0.25rem !important; + right: 0.25rem !important; + bottom: 0.25rem !important; + left: 0.25rem !important; +} + +.inset-2 { + top: 0.5rem !important; + right: 0.5rem !important; + bottom: 0.5rem !important; + left: 0.5rem !important; +} + +.inset-3 { + top: 0.75rem !important; + right: 0.75rem !important; + bottom: 0.75rem !important; + left: 0.75rem !important; +} + +.inset-4 { + top: 1rem !important; + right: 1rem !important; + bottom: 1rem !important; + left: 1rem !important; +} + +.inset-5 { + top: 1.25rem !important; + right: 1.25rem !important; + bottom: 1.25rem !important; + left: 1.25rem !important; +} + +.inset-6 { + top: 1.5rem !important; + right: 1.5rem !important; + bottom: 1.5rem !important; + left: 1.5rem !important; +} + +.inset-7 { + top: 1.75rem !important; + right: 1.75rem !important; + bottom: 1.75rem !important; + left: 1.75rem !important; +} + +.inset-8 { + top: 2rem !important; + right: 2rem !important; + bottom: 2rem !important; + left: 2rem !important; +} + +.inset-9 { + top: 2.25rem !important; + right: 2.25rem !important; + bottom: 2.25rem !important; + left: 2.25rem !important; +} + +.inset-10 { + top: 2.5rem !important; + right: 2.5rem !important; + bottom: 2.5rem !important; + left: 2.5rem !important; +} + +.inset-11 { + top: 2.75rem !important; + right: 2.75rem !important; + bottom: 2.75rem !important; + left: 2.75rem !important; +} + +.inset-12 { + top: 3rem !important; + right: 3rem !important; + bottom: 3rem !important; + left: 3rem !important; +} + +.inset-14 { + top: 3.5rem !important; + right: 3.5rem !important; + bottom: 3.5rem !important; + left: 3.5rem !important; +} + +.inset-16 { + top: 4rem !important; + right: 4rem !important; + bottom: 4rem !important; + left: 4rem !important; +} + +.inset-20 { + top: 5rem !important; + right: 5rem !important; + bottom: 5rem !important; + left: 5rem !important; +} + +.inset-24 { + top: 6rem !important; + right: 6rem !important; + bottom: 6rem !important; + left: 6rem !important; +} + +.inset-28 { + top: 7rem !important; + right: 7rem !important; + bottom: 7rem !important; + left: 7rem !important; +} + +.inset-32 { + top: 8rem !important; + right: 8rem !important; + bottom: 8rem !important; + left: 8rem !important; +} + +.inset-36 { + top: 9rem !important; + right: 9rem !important; + bottom: 9rem !important; + left: 9rem !important; +} + +.inset-40 { + top: 10rem !important; + right: 10rem !important; + bottom: 10rem !important; + left: 10rem !important; +} + +.inset-44 { + top: 11rem !important; + right: 11rem !important; + bottom: 11rem !important; + left: 11rem !important; +} + +.inset-48 { + top: 12rem !important; + right: 12rem !important; + bottom: 12rem !important; + left: 12rem !important; +} + +.inset-52 { + top: 13rem !important; + right: 13rem !important; + bottom: 13rem !important; + left: 13rem !important; +} + +.inset-56 { + top: 14rem !important; + right: 14rem !important; + bottom: 14rem !important; + left: 14rem !important; +} + +.inset-60 { + top: 15rem !important; + right: 15rem !important; + bottom: 15rem !important; + left: 15rem !important; +} + +.inset-64 { + top: 16rem !important; + right: 16rem !important; + bottom: 16rem !important; + left: 16rem !important; +} + +.inset-72 { + top: 18rem !important; + right: 18rem !important; + bottom: 18rem !important; + left: 18rem !important; +} + +.inset-80 { + top: 20rem !important; + right: 20rem !important; + bottom: 20rem !important; + left: 20rem !important; +} + +.inset-96 { + top: 24rem !important; + right: 24rem !important; + bottom: 24rem !important; + left: 24rem !important; +} + +.inset-auto { + top: auto !important; + right: auto !important; + bottom: auto !important; + left: auto !important; +} + +.inset-px { + top: 1px !important; + right: 1px !important; + bottom: 1px !important; + left: 1px !important; +} + +.inset-0\.5 { + top: 0.125rem !important; + right: 0.125rem !important; + bottom: 0.125rem !important; + left: 0.125rem !important; +} + +.inset-1\.5 { + top: 0.375rem !important; + right: 0.375rem !important; + bottom: 0.375rem !important; + left: 0.375rem !important; +} + +.inset-2\.5 { + top: 0.625rem !important; + right: 0.625rem !important; + bottom: 0.625rem !important; + left: 0.625rem !important; +} + +.inset-3\.5 { + top: 0.875rem !important; + right: 0.875rem !important; + bottom: 0.875rem !important; + left: 0.875rem !important; +} + +.-inset-0 { + top: 0px !important; + right: 0px !important; + bottom: 0px !important; + left: 0px !important; +} + +.-inset-1 { + top: -0.25rem !important; + right: -0.25rem !important; + bottom: -0.25rem !important; + left: -0.25rem !important; +} + +.-inset-2 { + top: -0.5rem !important; + right: -0.5rem !important; + bottom: -0.5rem !important; + left: -0.5rem !important; +} + +.-inset-3 { + top: -0.75rem !important; + right: -0.75rem !important; + bottom: -0.75rem !important; + left: -0.75rem !important; +} + +.-inset-4 { + top: -1rem !important; + right: -1rem !important; + bottom: -1rem !important; + left: -1rem !important; +} + +.-inset-5 { + top: -1.25rem !important; + right: -1.25rem !important; + bottom: -1.25rem !important; + left: -1.25rem !important; +} + +.-inset-6 { + top: -1.5rem !important; + right: -1.5rem !important; + bottom: -1.5rem !important; + left: -1.5rem !important; +} + +.-inset-7 { + top: -1.75rem !important; + right: -1.75rem !important; + bottom: -1.75rem !important; + left: -1.75rem !important; +} + +.-inset-8 { + top: -2rem !important; + right: -2rem !important; + bottom: -2rem !important; + left: -2rem !important; +} + +.-inset-9 { + top: -2.25rem !important; + right: -2.25rem !important; + bottom: -2.25rem !important; + left: -2.25rem !important; +} + +.-inset-10 { + top: -2.5rem !important; + right: -2.5rem !important; + bottom: -2.5rem !important; + left: -2.5rem !important; +} + +.-inset-11 { + top: -2.75rem !important; + right: -2.75rem !important; + bottom: -2.75rem !important; + left: -2.75rem !important; +} + +.-inset-12 { + top: -3rem !important; + right: -3rem !important; + bottom: -3rem !important; + left: -3rem !important; +} + +.-inset-14 { + top: -3.5rem !important; + right: -3.5rem !important; + bottom: -3.5rem !important; + left: -3.5rem !important; +} + +.-inset-16 { + top: -4rem !important; + right: -4rem !important; + bottom: -4rem !important; + left: -4rem !important; +} + +.-inset-20 { + top: -5rem !important; + right: -5rem !important; + bottom: -5rem !important; + left: -5rem !important; +} + +.-inset-24 { + top: -6rem !important; + right: -6rem !important; + bottom: -6rem !important; + left: -6rem !important; +} + +.-inset-28 { + top: -7rem !important; + right: -7rem !important; + bottom: -7rem !important; + left: -7rem !important; +} + +.-inset-32 { + top: -8rem !important; + right: -8rem !important; + bottom: -8rem !important; + left: -8rem !important; +} + +.-inset-36 { + top: -9rem !important; + right: -9rem !important; + bottom: -9rem !important; + left: -9rem !important; +} + +.-inset-40 { + top: -10rem !important; + right: -10rem !important; + bottom: -10rem !important; + left: -10rem !important; +} + +.-inset-44 { + top: -11rem !important; + right: -11rem !important; + bottom: -11rem !important; + left: -11rem !important; +} + +.-inset-48 { + top: -12rem !important; + right: -12rem !important; + bottom: -12rem !important; + left: -12rem !important; +} + +.-inset-52 { + top: -13rem !important; + right: -13rem !important; + bottom: -13rem !important; + left: -13rem !important; +} + +.-inset-56 { + top: -14rem !important; + right: -14rem !important; + bottom: -14rem !important; + left: -14rem !important; +} + +.-inset-60 { + top: -15rem !important; + right: -15rem !important; + bottom: -15rem !important; + left: -15rem !important; +} + +.-inset-64 { + top: -16rem !important; + right: -16rem !important; + bottom: -16rem !important; + left: -16rem !important; +} + +.-inset-72 { + top: -18rem !important; + right: -18rem !important; + bottom: -18rem !important; + left: -18rem !important; +} + +.-inset-80 { + top: -20rem !important; + right: -20rem !important; + bottom: -20rem !important; + left: -20rem !important; +} + +.-inset-96 { + top: -24rem !important; + right: -24rem !important; + bottom: -24rem !important; + left: -24rem !important; +} + +.-inset-px { + top: -1px !important; + right: -1px !important; + bottom: -1px !important; + left: -1px !important; +} + +.-inset-0\.5 { + top: -0.125rem !important; + right: -0.125rem !important; + bottom: -0.125rem !important; + left: -0.125rem !important; +} + +.-inset-1\.5 { + top: -0.375rem !important; + right: -0.375rem !important; + bottom: -0.375rem !important; + left: -0.375rem !important; +} + +.-inset-2\.5 { + top: -0.625rem !important; + right: -0.625rem !important; + bottom: -0.625rem !important; + left: -0.625rem !important; +} + +.-inset-3\.5 { + top: -0.875rem !important; + right: -0.875rem !important; + bottom: -0.875rem !important; + left: -0.875rem !important; +} + +.inset-1\/2 { + top: 50% !important; + right: 50% !important; + bottom: 50% !important; + left: 50% !important; +} + +.inset-1\/3 { + top: 33.333333% !important; + right: 33.333333% !important; + bottom: 33.333333% !important; + left: 33.333333% !important; +} + +.inset-2\/3 { + top: 66.666667% !important; + right: 66.666667% !important; + bottom: 66.666667% !important; + left: 66.666667% !important; +} + +.inset-1\/4 { + top: 25% !important; + right: 25% !important; + bottom: 25% !important; + left: 25% !important; +} + +.inset-2\/4 { + top: 50% !important; + right: 50% !important; + bottom: 50% !important; + left: 50% !important; +} + +.inset-3\/4 { + top: 75% !important; + right: 75% !important; + bottom: 75% !important; + left: 75% !important; +} + +.inset-full { + top: 100% !important; + right: 100% !important; + bottom: 100% !important; + left: 100% !important; +} + +.-inset-1\/2 { + top: -50% !important; + right: -50% !important; + bottom: -50% !important; + left: -50% !important; +} + +.-inset-1\/3 { + top: -33.333333% !important; + right: -33.333333% !important; + bottom: -33.333333% !important; + left: -33.333333% !important; +} + +.-inset-2\/3 { + top: -66.666667% !important; + right: -66.666667% !important; + bottom: -66.666667% !important; + left: -66.666667% !important; +} + +.-inset-1\/4 { + top: -25% !important; + right: -25% !important; + bottom: -25% !important; + left: -25% !important; +} + +.-inset-2\/4 { + top: -50% !important; + right: -50% !important; + bottom: -50% !important; + left: -50% !important; +} + +.-inset-3\/4 { + top: -75% !important; + right: -75% !important; + bottom: -75% !important; + left: -75% !important; +} + +.-inset-full { + top: -100% !important; + right: -100% !important; + bottom: -100% !important; + left: -100% !important; +} + +.inset-y-0 { + top: 0px !important; + bottom: 0px !important; +} + +.inset-x-0 { + right: 0px !important; + left: 0px !important; +} + +.inset-y-1 { + top: 0.25rem !important; + bottom: 0.25rem !important; +} + +.inset-x-1 { + right: 0.25rem !important; + left: 0.25rem !important; +} + +.inset-y-2 { + top: 0.5rem !important; + bottom: 0.5rem !important; +} + +.inset-x-2 { + right: 0.5rem !important; + left: 0.5rem !important; +} + +.inset-y-3 { + top: 0.75rem !important; + bottom: 0.75rem !important; +} + +.inset-x-3 { + right: 0.75rem !important; + left: 0.75rem !important; +} + +.inset-y-4 { + top: 1rem !important; + bottom: 1rem !important; +} + +.inset-x-4 { + right: 1rem !important; + left: 1rem !important; +} + +.inset-y-5 { + top: 1.25rem !important; + bottom: 1.25rem !important; +} + +.inset-x-5 { + right: 1.25rem !important; + left: 1.25rem !important; +} + +.inset-y-6 { + top: 1.5rem !important; + bottom: 1.5rem !important; +} + +.inset-x-6 { + right: 1.5rem !important; + left: 1.5rem !important; +} + +.inset-y-7 { + top: 1.75rem !important; + bottom: 1.75rem !important; +} + +.inset-x-7 { + right: 1.75rem !important; + left: 1.75rem !important; +} + +.inset-y-8 { + top: 2rem !important; + bottom: 2rem !important; +} + +.inset-x-8 { + right: 2rem !important; + left: 2rem !important; +} + +.inset-y-9 { + top: 2.25rem !important; + bottom: 2.25rem !important; +} + +.inset-x-9 { + right: 2.25rem !important; + left: 2.25rem !important; +} + +.inset-y-10 { + top: 2.5rem !important; + bottom: 2.5rem !important; +} + +.inset-x-10 { + right: 2.5rem !important; + left: 2.5rem !important; +} + +.inset-y-11 { + top: 2.75rem !important; + bottom: 2.75rem !important; +} + +.inset-x-11 { + right: 2.75rem !important; + left: 2.75rem !important; +} + +.inset-y-12 { + top: 3rem !important; + bottom: 3rem !important; +} + +.inset-x-12 { + right: 3rem !important; + left: 3rem !important; +} + +.inset-y-14 { + top: 3.5rem !important; + bottom: 3.5rem !important; +} + +.inset-x-14 { + right: 3.5rem !important; + left: 3.5rem !important; +} + +.inset-y-16 { + top: 4rem !important; + bottom: 4rem !important; +} + +.inset-x-16 { + right: 4rem !important; + left: 4rem !important; +} + +.inset-y-20 { + top: 5rem !important; + bottom: 5rem !important; +} + +.inset-x-20 { + right: 5rem !important; + left: 5rem !important; +} + +.inset-y-24 { + top: 6rem !important; + bottom: 6rem !important; +} + +.inset-x-24 { + right: 6rem !important; + left: 6rem !important; +} + +.inset-y-28 { + top: 7rem !important; + bottom: 7rem !important; +} + +.inset-x-28 { + right: 7rem !important; + left: 7rem !important; +} + +.inset-y-32 { + top: 8rem !important; + bottom: 8rem !important; +} + +.inset-x-32 { + right: 8rem !important; + left: 8rem !important; +} + +.inset-y-36 { + top: 9rem !important; + bottom: 9rem !important; +} + +.inset-x-36 { + right: 9rem !important; + left: 9rem !important; +} + +.inset-y-40 { + top: 10rem !important; + bottom: 10rem !important; +} + +.inset-x-40 { + right: 10rem !important; + left: 10rem !important; +} + +.inset-y-44 { + top: 11rem !important; + bottom: 11rem !important; +} + +.inset-x-44 { + right: 11rem !important; + left: 11rem !important; +} + +.inset-y-48 { + top: 12rem !important; + bottom: 12rem !important; +} + +.inset-x-48 { + right: 12rem !important; + left: 12rem !important; +} + +.inset-y-52 { + top: 13rem !important; + bottom: 13rem !important; +} + +.inset-x-52 { + right: 13rem !important; + left: 13rem !important; +} + +.inset-y-56 { + top: 14rem !important; + bottom: 14rem !important; +} + +.inset-x-56 { + right: 14rem !important; + left: 14rem !important; +} + +.inset-y-60 { + top: 15rem !important; + bottom: 15rem !important; +} + +.inset-x-60 { + right: 15rem !important; + left: 15rem !important; +} + +.inset-y-64 { + top: 16rem !important; + bottom: 16rem !important; +} + +.inset-x-64 { + right: 16rem !important; + left: 16rem !important; +} + +.inset-y-72 { + top: 18rem !important; + bottom: 18rem !important; +} + +.inset-x-72 { + right: 18rem !important; + left: 18rem !important; +} + +.inset-y-80 { + top: 20rem !important; + bottom: 20rem !important; +} + +.inset-x-80 { + right: 20rem !important; + left: 20rem !important; +} + +.inset-y-96 { + top: 24rem !important; + bottom: 24rem !important; +} + +.inset-x-96 { + right: 24rem !important; + left: 24rem !important; +} + +.inset-y-auto { + top: auto !important; + bottom: auto !important; +} + +.inset-x-auto { + right: auto !important; + left: auto !important; +} + +.inset-y-px { + top: 1px !important; + bottom: 1px !important; +} + +.inset-x-px { + right: 1px !important; + left: 1px !important; +} + +.inset-y-0\.5 { + top: 0.125rem !important; + bottom: 0.125rem !important; +} + +.inset-x-0\.5 { + right: 0.125rem !important; + left: 0.125rem !important; +} + +.inset-y-1\.5 { + top: 0.375rem !important; + bottom: 0.375rem !important; +} + +.inset-x-1\.5 { + right: 0.375rem !important; + left: 0.375rem !important; +} + +.inset-y-2\.5 { + top: 0.625rem !important; + bottom: 0.625rem !important; +} + +.inset-x-2\.5 { + right: 0.625rem !important; + left: 0.625rem !important; +} + +.inset-y-3\.5 { + top: 0.875rem !important; + bottom: 0.875rem !important; +} + +.inset-x-3\.5 { + right: 0.875rem !important; + left: 0.875rem !important; +} + +.-inset-y-0 { + top: 0px !important; + bottom: 0px !important; +} + +.-inset-x-0 { + right: 0px !important; + left: 0px !important; +} + +.-inset-y-1 { + top: -0.25rem !important; + bottom: -0.25rem !important; +} + +.-inset-x-1 { + right: -0.25rem !important; + left: -0.25rem !important; +} + +.-inset-y-2 { + top: -0.5rem !important; + bottom: -0.5rem !important; +} + +.-inset-x-2 { + right: -0.5rem !important; + left: -0.5rem !important; +} + +.-inset-y-3 { + top: -0.75rem !important; + bottom: -0.75rem !important; +} + +.-inset-x-3 { + right: -0.75rem !important; + left: -0.75rem !important; +} + +.-inset-y-4 { + top: -1rem !important; + bottom: -1rem !important; +} + +.-inset-x-4 { + right: -1rem !important; + left: -1rem !important; +} + +.-inset-y-5 { + top: -1.25rem !important; + bottom: -1.25rem !important; +} + +.-inset-x-5 { + right: -1.25rem !important; + left: -1.25rem !important; +} + +.-inset-y-6 { + top: -1.5rem !important; + bottom: -1.5rem !important; +} + +.-inset-x-6 { + right: -1.5rem !important; + left: -1.5rem !important; +} + +.-inset-y-7 { + top: -1.75rem !important; + bottom: -1.75rem !important; +} + +.-inset-x-7 { + right: -1.75rem !important; + left: -1.75rem !important; +} + +.-inset-y-8 { + top: -2rem !important; + bottom: -2rem !important; +} + +.-inset-x-8 { + right: -2rem !important; + left: -2rem !important; +} + +.-inset-y-9 { + top: -2.25rem !important; + bottom: -2.25rem !important; +} + +.-inset-x-9 { + right: -2.25rem !important; + left: -2.25rem !important; +} + +.-inset-y-10 { + top: -2.5rem !important; + bottom: -2.5rem !important; +} + +.-inset-x-10 { + right: -2.5rem !important; + left: -2.5rem !important; +} + +.-inset-y-11 { + top: -2.75rem !important; + bottom: -2.75rem !important; +} + +.-inset-x-11 { + right: -2.75rem !important; + left: -2.75rem !important; +} + +.-inset-y-12 { + top: -3rem !important; + bottom: -3rem !important; +} + +.-inset-x-12 { + right: -3rem !important; + left: -3rem !important; +} + +.-inset-y-14 { + top: -3.5rem !important; + bottom: -3.5rem !important; +} + +.-inset-x-14 { + right: -3.5rem !important; + left: -3.5rem !important; +} + +.-inset-y-16 { + top: -4rem !important; + bottom: -4rem !important; +} + +.-inset-x-16 { + right: -4rem !important; + left: -4rem !important; +} + +.-inset-y-20 { + top: -5rem !important; + bottom: -5rem !important; +} + +.-inset-x-20 { + right: -5rem !important; + left: -5rem !important; +} + +.-inset-y-24 { + top: -6rem !important; + bottom: -6rem !important; +} + +.-inset-x-24 { + right: -6rem !important; + left: -6rem !important; +} + +.-inset-y-28 { + top: -7rem !important; + bottom: -7rem !important; +} + +.-inset-x-28 { + right: -7rem !important; + left: -7rem !important; +} + +.-inset-y-32 { + top: -8rem !important; + bottom: -8rem !important; +} + +.-inset-x-32 { + right: -8rem !important; + left: -8rem !important; +} + +.-inset-y-36 { + top: -9rem !important; + bottom: -9rem !important; +} + +.-inset-x-36 { + right: -9rem !important; + left: -9rem !important; +} + +.-inset-y-40 { + top: -10rem !important; + bottom: -10rem !important; +} + +.-inset-x-40 { + right: -10rem !important; + left: -10rem !important; +} + +.-inset-y-44 { + top: -11rem !important; + bottom: -11rem !important; +} + +.-inset-x-44 { + right: -11rem !important; + left: -11rem !important; +} + +.-inset-y-48 { + top: -12rem !important; + bottom: -12rem !important; +} + +.-inset-x-48 { + right: -12rem !important; + left: -12rem !important; +} + +.-inset-y-52 { + top: -13rem !important; + bottom: -13rem !important; +} + +.-inset-x-52 { + right: -13rem !important; + left: -13rem !important; +} + +.-inset-y-56 { + top: -14rem !important; + bottom: -14rem !important; +} + +.-inset-x-56 { + right: -14rem !important; + left: -14rem !important; +} + +.-inset-y-60 { + top: -15rem !important; + bottom: -15rem !important; +} + +.-inset-x-60 { + right: -15rem !important; + left: -15rem !important; +} + +.-inset-y-64 { + top: -16rem !important; + bottom: -16rem !important; +} + +.-inset-x-64 { + right: -16rem !important; + left: -16rem !important; +} + +.-inset-y-72 { + top: -18rem !important; + bottom: -18rem !important; +} + +.-inset-x-72 { + right: -18rem !important; + left: -18rem !important; +} + +.-inset-y-80 { + top: -20rem !important; + bottom: -20rem !important; +} + +.-inset-x-80 { + right: -20rem !important; + left: -20rem !important; +} + +.-inset-y-96 { + top: -24rem !important; + bottom: -24rem !important; +} + +.-inset-x-96 { + right: -24rem !important; + left: -24rem !important; +} + +.-inset-y-px { + top: -1px !important; + bottom: -1px !important; +} + +.-inset-x-px { + right: -1px !important; + left: -1px !important; +} + +.-inset-y-0\.5 { + top: -0.125rem !important; + bottom: -0.125rem !important; +} + +.-inset-x-0\.5 { + right: -0.125rem !important; + left: -0.125rem !important; +} + +.-inset-y-1\.5 { + top: -0.375rem !important; + bottom: -0.375rem !important; +} + +.-inset-x-1\.5 { + right: -0.375rem !important; + left: -0.375rem !important; +} + +.-inset-y-2\.5 { + top: -0.625rem !important; + bottom: -0.625rem !important; +} + +.-inset-x-2\.5 { + right: -0.625rem !important; + left: -0.625rem !important; +} + +.-inset-y-3\.5 { + top: -0.875rem !important; + bottom: -0.875rem !important; +} + +.-inset-x-3\.5 { + right: -0.875rem !important; + left: -0.875rem !important; +} + +.inset-y-1\/2 { + top: 50% !important; + bottom: 50% !important; +} + +.inset-x-1\/2 { + right: 50% !important; + left: 50% !important; +} + +.inset-y-1\/3 { + top: 33.333333% !important; + bottom: 33.333333% !important; +} + +.inset-x-1\/3 { + right: 33.333333% !important; + left: 33.333333% !important; +} + +.inset-y-2\/3 { + top: 66.666667% !important; + bottom: 66.666667% !important; +} + +.inset-x-2\/3 { + right: 66.666667% !important; + left: 66.666667% !important; +} + +.inset-y-1\/4 { + top: 25% !important; + bottom: 25% !important; +} + +.inset-x-1\/4 { + right: 25% !important; + left: 25% !important; +} + +.inset-y-2\/4 { + top: 50% !important; + bottom: 50% !important; +} + +.inset-x-2\/4 { + right: 50% !important; + left: 50% !important; +} + +.inset-y-3\/4 { + top: 75% !important; + bottom: 75% !important; +} + +.inset-x-3\/4 { + right: 75% !important; + left: 75% !important; +} + +.inset-y-full { + top: 100% !important; + bottom: 100% !important; +} + +.inset-x-full { + right: 100% !important; + left: 100% !important; +} + +.-inset-y-1\/2 { + top: -50% !important; + bottom: -50% !important; +} + +.-inset-x-1\/2 { + right: -50% !important; + left: -50% !important; +} + +.-inset-y-1\/3 { + top: -33.333333% !important; + bottom: -33.333333% !important; +} + +.-inset-x-1\/3 { + right: -33.333333% !important; + left: -33.333333% !important; +} + +.-inset-y-2\/3 { + top: -66.666667% !important; + bottom: -66.666667% !important; +} + +.-inset-x-2\/3 { + right: -66.666667% !important; + left: -66.666667% !important; +} + +.-inset-y-1\/4 { + top: -25% !important; + bottom: -25% !important; +} + +.-inset-x-1\/4 { + right: -25% !important; + left: -25% !important; +} + +.-inset-y-2\/4 { + top: -50% !important; + bottom: -50% !important; +} + +.-inset-x-2\/4 { + right: -50% !important; + left: -50% !important; +} + +.-inset-y-3\/4 { + top: -75% !important; + bottom: -75% !important; +} + +.-inset-x-3\/4 { + right: -75% !important; + left: -75% !important; +} + +.-inset-y-full { + top: -100% !important; + bottom: -100% !important; +} + +.-inset-x-full { + right: -100% !important; + left: -100% !important; +} + +.top-0 { + top: 0px !important; +} + +.right-0 { + right: 0px !important; +} + +.bottom-0 { + bottom: 0px !important; +} + +.left-0 { + left: 0px !important; +} + +.top-1 { + top: 0.25rem !important; +} + +.right-1 { + right: 0.25rem !important; +} + +.bottom-1 { + bottom: 0.25rem !important; +} + +.left-1 { + left: 0.25rem !important; +} + +.top-2 { + top: 0.5rem !important; +} + +.right-2 { + right: 0.5rem !important; +} + +.bottom-2 { + bottom: 0.5rem !important; +} + +.left-2 { + left: 0.5rem !important; +} + +.top-3 { + top: 0.75rem !important; +} + +.right-3 { + right: 0.75rem !important; +} + +.bottom-3 { + bottom: 0.75rem !important; +} + +.left-3 { + left: 0.75rem !important; +} + +.top-4 { + top: 1rem !important; +} + +.right-4 { + right: 1rem !important; +} + +.bottom-4 { + bottom: 1rem !important; +} + +.left-4 { + left: 1rem !important; +} + +.top-5 { + top: 1.25rem !important; +} + +.right-5 { + right: 1.25rem !important; +} + +.bottom-5 { + bottom: 1.25rem !important; +} + +.left-5 { + left: 1.25rem !important; +} + +.top-6 { + top: 1.5rem !important; +} + +.right-6 { + right: 1.5rem !important; +} + +.bottom-6 { + bottom: 1.5rem !important; +} + +.left-6 { + left: 1.5rem !important; +} + +.top-7 { + top: 1.75rem !important; +} + +.right-7 { + right: 1.75rem !important; +} + +.bottom-7 { + bottom: 1.75rem !important; +} + +.left-7 { + left: 1.75rem !important; +} + +.top-8 { + top: 2rem !important; +} + +.right-8 { + right: 2rem !important; +} + +.bottom-8 { + bottom: 2rem !important; +} + +.left-8 { + left: 2rem !important; +} + +.top-9 { + top: 2.25rem !important; +} + +.right-9 { + right: 2.25rem !important; +} + +.bottom-9 { + bottom: 2.25rem !important; +} + +.left-9 { + left: 2.25rem !important; +} + +.top-10 { + top: 2.5rem !important; +} + +.right-10 { + right: 2.5rem !important; +} + +.bottom-10 { + bottom: 2.5rem !important; +} + +.left-10 { + left: 2.5rem !important; +} + +.top-11 { + top: 2.75rem !important; +} + +.right-11 { + right: 2.75rem !important; +} + +.bottom-11 { + bottom: 2.75rem !important; +} + +.left-11 { + left: 2.75rem !important; +} + +.top-12 { + top: 3rem !important; +} + +.right-12 { + right: 3rem !important; +} + +.bottom-12 { + bottom: 3rem !important; +} + +.left-12 { + left: 3rem !important; +} + +.top-14 { + top: 3.5rem !important; +} + +.right-14 { + right: 3.5rem !important; +} + +.bottom-14 { + bottom: 3.5rem !important; +} + +.left-14 { + left: 3.5rem !important; +} + +.top-16 { + top: 4rem !important; +} + +.right-16 { + right: 4rem !important; +} + +.bottom-16 { + bottom: 4rem !important; +} + +.left-16 { + left: 4rem !important; +} + +.top-20 { + top: 5rem !important; +} + +.right-20 { + right: 5rem !important; +} + +.bottom-20 { + bottom: 5rem !important; +} + +.left-20 { + left: 5rem !important; +} + +.top-24 { + top: 6rem !important; +} + +.right-24 { + right: 6rem !important; +} + +.bottom-24 { + bottom: 6rem !important; +} + +.left-24 { + left: 6rem !important; +} + +.top-28 { + top: 7rem !important; +} + +.right-28 { + right: 7rem !important; +} + +.bottom-28 { + bottom: 7rem !important; +} + +.left-28 { + left: 7rem !important; +} + +.top-32 { + top: 8rem !important; +} + +.right-32 { + right: 8rem !important; +} + +.bottom-32 { + bottom: 8rem !important; +} + +.left-32 { + left: 8rem !important; +} + +.top-36 { + top: 9rem !important; +} + +.right-36 { + right: 9rem !important; +} + +.bottom-36 { + bottom: 9rem !important; +} + +.left-36 { + left: 9rem !important; +} + +.top-40 { + top: 10rem !important; +} + +.right-40 { + right: 10rem !important; +} + +.bottom-40 { + bottom: 10rem !important; +} + +.left-40 { + left: 10rem !important; +} + +.top-44 { + top: 11rem !important; +} + +.right-44 { + right: 11rem !important; +} + +.bottom-44 { + bottom: 11rem !important; +} + +.left-44 { + left: 11rem !important; +} + +.top-48 { + top: 12rem !important; +} + +.right-48 { + right: 12rem !important; +} + +.bottom-48 { + bottom: 12rem !important; +} + +.left-48 { + left: 12rem !important; +} + +.top-52 { + top: 13rem !important; +} + +.right-52 { + right: 13rem !important; +} + +.bottom-52 { + bottom: 13rem !important; +} + +.left-52 { + left: 13rem !important; +} + +.top-56 { + top: 14rem !important; +} + +.right-56 { + right: 14rem !important; +} + +.bottom-56 { + bottom: 14rem !important; +} + +.left-56 { + left: 14rem !important; +} + +.top-60 { + top: 15rem !important; +} + +.right-60 { + right: 15rem !important; +} + +.bottom-60 { + bottom: 15rem !important; +} + +.left-60 { + left: 15rem !important; +} + +.top-64 { + top: 16rem !important; +} + +.right-64 { + right: 16rem !important; +} + +.bottom-64 { + bottom: 16rem !important; +} + +.left-64 { + left: 16rem !important; +} + +.top-72 { + top: 18rem !important; +} + +.right-72 { + right: 18rem !important; +} + +.bottom-72 { + bottom: 18rem !important; +} + +.left-72 { + left: 18rem !important; +} + +.top-80 { + top: 20rem !important; +} + +.right-80 { + right: 20rem !important; +} + +.bottom-80 { + bottom: 20rem !important; +} + +.left-80 { + left: 20rem !important; +} + +.top-96 { + top: 24rem !important; +} + +.right-96 { + right: 24rem !important; +} + +.bottom-96 { + bottom: 24rem !important; +} + +.left-96 { + left: 24rem !important; +} + +.top-auto { + top: auto !important; +} + +.right-auto { + right: auto !important; +} + +.bottom-auto { + bottom: auto !important; +} + +.left-auto { + left: auto !important; +} + +.top-px { + top: 1px !important; +} + +.right-px { + right: 1px !important; +} + +.bottom-px { + bottom: 1px !important; +} + +.left-px { + left: 1px !important; +} + +.top-0\.5 { + top: 0.125rem !important; +} + +.right-0\.5 { + right: 0.125rem !important; +} + +.bottom-0\.5 { + bottom: 0.125rem !important; +} + +.left-0\.5 { + left: 0.125rem !important; +} + +.top-1\.5 { + top: 0.375rem !important; +} + +.right-1\.5 { + right: 0.375rem !important; +} + +.bottom-1\.5 { + bottom: 0.375rem !important; +} + +.left-1\.5 { + left: 0.375rem !important; +} + +.top-2\.5 { + top: 0.625rem !important; +} + +.right-2\.5 { + right: 0.625rem !important; +} + +.bottom-2\.5 { + bottom: 0.625rem !important; +} + +.left-2\.5 { + left: 0.625rem !important; +} + +.top-3\.5 { + top: 0.875rem !important; +} + +.right-3\.5 { + right: 0.875rem !important; +} + +.bottom-3\.5 { + bottom: 0.875rem !important; +} + +.left-3\.5 { + left: 0.875rem !important; +} + +.-top-0 { + top: 0px !important; +} + +.-right-0 { + right: 0px !important; +} + +.-bottom-0 { + bottom: 0px !important; +} + +.-left-0 { + left: 0px !important; +} + +.-top-1 { + top: -0.25rem !important; +} + +.-right-1 { + right: -0.25rem !important; +} + +.-bottom-1 { + bottom: -0.25rem !important; +} + +.-left-1 { + left: -0.25rem !important; +} + +.-top-2 { + top: -0.5rem !important; +} + +.-right-2 { + right: -0.5rem !important; +} + +.-bottom-2 { + bottom: -0.5rem !important; +} + +.-left-2 { + left: -0.5rem !important; +} + +.-top-3 { + top: -0.75rem !important; +} + +.-right-3 { + right: -0.75rem !important; +} + +.-bottom-3 { + bottom: -0.75rem !important; +} + +.-left-3 { + left: -0.75rem !important; +} + +.-top-4 { + top: -1rem !important; +} + +.-right-4 { + right: -1rem !important; +} + +.-bottom-4 { + bottom: -1rem !important; +} + +.-left-4 { + left: -1rem !important; +} + +.-top-5 { + top: -1.25rem !important; +} + +.-right-5 { + right: -1.25rem !important; +} + +.-bottom-5 { + bottom: -1.25rem !important; +} + +.-left-5 { + left: -1.25rem !important; +} + +.-top-6 { + top: -1.5rem !important; +} + +.-right-6 { + right: -1.5rem !important; +} + +.-bottom-6 { + bottom: -1.5rem !important; +} + +.-left-6 { + left: -1.5rem !important; +} + +.-top-7 { + top: -1.75rem !important; +} + +.-right-7 { + right: -1.75rem !important; +} + +.-bottom-7 { + bottom: -1.75rem !important; +} + +.-left-7 { + left: -1.75rem !important; +} + +.-top-8 { + top: -2rem !important; +} + +.-right-8 { + right: -2rem !important; +} + +.-bottom-8 { + bottom: -2rem !important; +} + +.-left-8 { + left: -2rem !important; +} + +.-top-9 { + top: -2.25rem !important; +} + +.-right-9 { + right: -2.25rem !important; +} + +.-bottom-9 { + bottom: -2.25rem !important; +} + +.-left-9 { + left: -2.25rem !important; +} + +.-top-10 { + top: -2.5rem !important; +} + +.-right-10 { + right: -2.5rem !important; +} + +.-bottom-10 { + bottom: -2.5rem !important; +} + +.-left-10 { + left: -2.5rem !important; +} + +.-top-11 { + top: -2.75rem !important; +} + +.-right-11 { + right: -2.75rem !important; +} + +.-bottom-11 { + bottom: -2.75rem !important; +} + +.-left-11 { + left: -2.75rem !important; +} + +.-top-12 { + top: -3rem !important; +} + +.-right-12 { + right: -3rem !important; +} + +.-bottom-12 { + bottom: -3rem !important; +} + +.-left-12 { + left: -3rem !important; +} + +.-top-14 { + top: -3.5rem !important; +} + +.-right-14 { + right: -3.5rem !important; +} + +.-bottom-14 { + bottom: -3.5rem !important; +} + +.-left-14 { + left: -3.5rem !important; +} + +.-top-16 { + top: -4rem !important; +} + +.-right-16 { + right: -4rem !important; +} + +.-bottom-16 { + bottom: -4rem !important; +} + +.-left-16 { + left: -4rem !important; +} + +.-top-20 { + top: -5rem !important; +} + +.-right-20 { + right: -5rem !important; +} + +.-bottom-20 { + bottom: -5rem !important; +} + +.-left-20 { + left: -5rem !important; +} + +.-top-24 { + top: -6rem !important; +} + +.-right-24 { + right: -6rem !important; +} + +.-bottom-24 { + bottom: -6rem !important; +} + +.-left-24 { + left: -6rem !important; +} + +.-top-28 { + top: -7rem !important; +} + +.-right-28 { + right: -7rem !important; +} + +.-bottom-28 { + bottom: -7rem !important; +} + +.-left-28 { + left: -7rem !important; +} + +.-top-32 { + top: -8rem !important; +} + +.-right-32 { + right: -8rem !important; +} + +.-bottom-32 { + bottom: -8rem !important; +} + +.-left-32 { + left: -8rem !important; +} + +.-top-36 { + top: -9rem !important; +} + +.-right-36 { + right: -9rem !important; +} + +.-bottom-36 { + bottom: -9rem !important; +} + +.-left-36 { + left: -9rem !important; +} + +.-top-40 { + top: -10rem !important; +} + +.-right-40 { + right: -10rem !important; +} + +.-bottom-40 { + bottom: -10rem !important; +} + +.-left-40 { + left: -10rem !important; +} + +.-top-44 { + top: -11rem !important; +} + +.-right-44 { + right: -11rem !important; +} + +.-bottom-44 { + bottom: -11rem !important; +} + +.-left-44 { + left: -11rem !important; +} + +.-top-48 { + top: -12rem !important; +} + +.-right-48 { + right: -12rem !important; +} + +.-bottom-48 { + bottom: -12rem !important; +} + +.-left-48 { + left: -12rem !important; +} + +.-top-52 { + top: -13rem !important; +} + +.-right-52 { + right: -13rem !important; +} + +.-bottom-52 { + bottom: -13rem !important; +} + +.-left-52 { + left: -13rem !important; +} + +.-top-56 { + top: -14rem !important; +} + +.-right-56 { + right: -14rem !important; +} + +.-bottom-56 { + bottom: -14rem !important; +} + +.-left-56 { + left: -14rem !important; +} + +.-top-60 { + top: -15rem !important; +} + +.-right-60 { + right: -15rem !important; +} + +.-bottom-60 { + bottom: -15rem !important; +} + +.-left-60 { + left: -15rem !important; +} + +.-top-64 { + top: -16rem !important; +} + +.-right-64 { + right: -16rem !important; +} + +.-bottom-64 { + bottom: -16rem !important; +} + +.-left-64 { + left: -16rem !important; +} + +.-top-72 { + top: -18rem !important; +} + +.-right-72 { + right: -18rem !important; +} + +.-bottom-72 { + bottom: -18rem !important; +} + +.-left-72 { + left: -18rem !important; +} + +.-top-80 { + top: -20rem !important; +} + +.-right-80 { + right: -20rem !important; +} + +.-bottom-80 { + bottom: -20rem !important; +} + +.-left-80 { + left: -20rem !important; +} + +.-top-96 { + top: -24rem !important; +} + +.-right-96 { + right: -24rem !important; +} + +.-bottom-96 { + bottom: -24rem !important; +} + +.-left-96 { + left: -24rem !important; +} + +.-top-px { + top: -1px !important; +} + +.-right-px { + right: -1px !important; +} + +.-bottom-px { + bottom: -1px !important; +} + +.-left-px { + left: -1px !important; +} + +.-top-0\.5 { + top: -0.125rem !important; +} + +.-right-0\.5 { + right: -0.125rem !important; +} + +.-bottom-0\.5 { + bottom: -0.125rem !important; +} + +.-left-0\.5 { + left: -0.125rem !important; +} + +.-top-1\.5 { + top: -0.375rem !important; +} + +.-right-1\.5 { + right: -0.375rem !important; +} + +.-bottom-1\.5 { + bottom: -0.375rem !important; +} + +.-left-1\.5 { + left: -0.375rem !important; +} + +.-top-2\.5 { + top: -0.625rem !important; +} + +.-right-2\.5 { + right: -0.625rem !important; +} + +.-bottom-2\.5 { + bottom: -0.625rem !important; +} + +.-left-2\.5 { + left: -0.625rem !important; +} + +.-top-3\.5 { + top: -0.875rem !important; +} + +.-right-3\.5 { + right: -0.875rem !important; +} + +.-bottom-3\.5 { + bottom: -0.875rem !important; +} + +.-left-3\.5 { + left: -0.875rem !important; +} + +.top-1\/2 { + top: 50% !important; +} + +.right-1\/2 { + right: 50% !important; +} + +.bottom-1\/2 { + bottom: 50% !important; +} + +.left-1\/2 { + left: 50% !important; +} + +.top-1\/3 { + top: 33.333333% !important; +} + +.right-1\/3 { + right: 33.333333% !important; +} + +.bottom-1\/3 { + bottom: 33.333333% !important; +} + +.left-1\/3 { + left: 33.333333% !important; +} + +.top-2\/3 { + top: 66.666667% !important; +} + +.right-2\/3 { + right: 66.666667% !important; +} + +.bottom-2\/3 { + bottom: 66.666667% !important; +} + +.left-2\/3 { + left: 66.666667% !important; +} + +.top-1\/4 { + top: 25% !important; +} + +.right-1\/4 { + right: 25% !important; +} + +.bottom-1\/4 { + bottom: 25% !important; +} + +.left-1\/4 { + left: 25% !important; +} + +.top-2\/4 { + top: 50% !important; +} + +.right-2\/4 { + right: 50% !important; +} + +.bottom-2\/4 { + bottom: 50% !important; +} + +.left-2\/4 { + left: 50% !important; +} + +.top-3\/4 { + top: 75% !important; +} + +.right-3\/4 { + right: 75% !important; +} + +.bottom-3\/4 { + bottom: 75% !important; +} + +.left-3\/4 { + left: 75% !important; +} + +.top-full { + top: 100% !important; +} + +.right-full { + right: 100% !important; +} + +.bottom-full { + bottom: 100% !important; +} + +.left-full { + left: 100% !important; +} + +.-top-1\/2 { + top: -50% !important; +} + +.-right-1\/2 { + right: -50% !important; +} + +.-bottom-1\/2 { + bottom: -50% !important; +} + +.-left-1\/2 { + left: -50% !important; +} + +.-top-1\/3 { + top: -33.333333% !important; +} + +.-right-1\/3 { + right: -33.333333% !important; +} + +.-bottom-1\/3 { + bottom: -33.333333% !important; +} + +.-left-1\/3 { + left: -33.333333% !important; +} + +.-top-2\/3 { + top: -66.666667% !important; +} + +.-right-2\/3 { + right: -66.666667% !important; +} + +.-bottom-2\/3 { + bottom: -66.666667% !important; +} + +.-left-2\/3 { + left: -66.666667% !important; +} + +.-top-1\/4 { + top: -25% !important; +} + +.-right-1\/4 { + right: -25% !important; +} + +.-bottom-1\/4 { + bottom: -25% !important; +} + +.-left-1\/4 { + left: -25% !important; +} + +.-top-2\/4 { + top: -50% !important; +} + +.-right-2\/4 { + right: -50% !important; +} + +.-bottom-2\/4 { + bottom: -50% !important; +} + +.-left-2\/4 { + left: -50% !important; +} + +.-top-3\/4 { + top: -75% !important; +} + +.-right-3\/4 { + right: -75% !important; +} + +.-bottom-3\/4 { + bottom: -75% !important; +} + +.-left-3\/4 { + left: -75% !important; +} + +.-top-full { + top: -100% !important; +} + +.-right-full { + right: -100% !important; +} + +.-bottom-full { + bottom: -100% !important; +} + +.-left-full { + left: -100% !important; +} + +.resize-none { + resize: none !important; +} + +.resize-y { + resize: vertical !important; +} + +.resize-x { + resize: horizontal !important; +} + +.resize { + resize: both !important; +} + +* { + --tw-shadow: 0 0 #0000; +} + +.shadow-sm { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; +} + +.shadow { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; +} + +.shadow-md { + --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; +} + +.shadow-lg { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; +} + +.shadow-xl { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; +} + +.shadow-2xl { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; +} + +.shadow-inner { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; +} + +.shadow-none { + --tw-shadow: 0 0 #0000 !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; +} + +.group:hover .group-hover\:shadow-sm { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; +} + +.group:hover .group-hover\:shadow { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; +} + +.group:hover .group-hover\:shadow-md { + --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; +} + +.group:hover .group-hover\:shadow-lg { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; +} + +.group:hover .group-hover\:shadow-xl { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; +} + +.group:hover .group-hover\:shadow-2xl { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; +} + +.group:hover .group-hover\:shadow-inner { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; +} + +.group:hover .group-hover\:shadow-none { + --tw-shadow: 0 0 #0000 !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; +} + +.focus-within\:shadow-sm:focus-within { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; +} + +.focus-within\:shadow:focus-within { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; +} + +.focus-within\:shadow-md:focus-within { + --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; +} + +.focus-within\:shadow-lg:focus-within { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; +} + +.focus-within\:shadow-xl:focus-within { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; +} + +.focus-within\:shadow-2xl:focus-within { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; +} + +.focus-within\:shadow-inner:focus-within { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; +} + +.focus-within\:shadow-none:focus-within { + --tw-shadow: 0 0 #0000 !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; +} + +.hover\:shadow-sm:hover { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; +} + +.hover\:shadow:hover { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; +} + +.hover\:shadow-md:hover { + --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; +} + +.hover\:shadow-lg:hover { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; +} + +.hover\:shadow-xl:hover { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; +} + +.hover\:shadow-2xl:hover { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; +} + +.hover\:shadow-inner:hover { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; +} + +.hover\:shadow-none:hover { + --tw-shadow: 0 0 #0000 !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; +} + +.focus\:shadow-sm:focus { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; +} + +.focus\:shadow:focus { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; +} + +.focus\:shadow-md:focus { + --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; +} + +.focus\:shadow-lg:focus { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; +} + +.focus\:shadow-xl:focus { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; +} + +.focus\:shadow-2xl:focus { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; +} + +.focus\:shadow-inner:focus { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; +} + +.focus\:shadow-none:focus { + --tw-shadow: 0 0 #0000 !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; +} + +* { + --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/); + --tw-ring-offset-width: 0px; + --tw-ring-offset-color: #fff; + --tw-ring-color: rgba(59, 130, 246, 0.5); + --tw-ring-offset-shadow: 0 0 #0000; + --tw-ring-shadow: 0 0 #0000; +} + +.ring-0 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; +} + +.ring-1 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; +} + +.ring-2 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; +} + +.ring-4 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; +} + +.ring-8 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; +} + +.ring { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; +} + +.ring-inset { + --tw-ring-inset: inset !important; +} + +.focus-within\:ring-0:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; +} + +.focus-within\:ring-1:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; +} + +.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) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; +} + +.focus-within\:ring-4:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; +} + +.focus-within\:ring-8:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; +} + +.focus-within\:ring:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; +} + +.focus-within\:ring-inset:focus-within { + --tw-ring-inset: inset !important; +} + +.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) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; +} + +.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) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; +} + +.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) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; +} + +.focus\:ring-4:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; +} + +.focus\:ring-8:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; +} + +.focus\:ring:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; +} + +.focus\:ring-inset:focus { + --tw-ring-inset: inset !important; +} + +.ring-offset-transparent { + --tw-ring-offset-color: transparent !important; +} + +.ring-offset-current { + --tw-ring-offset-color: currentColor !important; +} + +.ring-offset-black { + --tw-ring-offset-color: #000 !important; +} + +.ring-offset-white { + --tw-ring-offset-color: #fff !important; +} + +.ring-offset-gray-50 { + --tw-ring-offset-color: #f9fafb !important; +} + +.ring-offset-gray-100 { + --tw-ring-offset-color: #f3f4f6 !important; +} + +.ring-offset-gray-200 { + --tw-ring-offset-color: #e5e7eb !important; +} + +.ring-offset-gray-300 { + --tw-ring-offset-color: #d1d5db !important; +} + +.ring-offset-gray-400 { + --tw-ring-offset-color: #9ca3af !important; +} + +.ring-offset-gray-500 { + --tw-ring-offset-color: #6b7280 !important; +} + +.ring-offset-gray-600 { + --tw-ring-offset-color: #4b5563 !important; +} + +.ring-offset-gray-700 { + --tw-ring-offset-color: #374151 !important; +} + +.ring-offset-gray-800 { + --tw-ring-offset-color: #1f2937 !important; +} + +.ring-offset-gray-900 { + --tw-ring-offset-color: #111827 !important; +} + +.ring-offset-red-50 { + --tw-ring-offset-color: #fef2f2 !important; +} + +.ring-offset-red-100 { + --tw-ring-offset-color: #fee2e2 !important; +} + +.ring-offset-red-200 { + --tw-ring-offset-color: #fecaca !important; +} + +.ring-offset-red-300 { + --tw-ring-offset-color: #fca5a5 !important; +} + +.ring-offset-red-400 { + --tw-ring-offset-color: #f87171 !important; +} + +.ring-offset-red-500 { + --tw-ring-offset-color: #ef4444 !important; +} + +.ring-offset-red-600 { + --tw-ring-offset-color: #dc2626 !important; +} + +.ring-offset-red-700 { + --tw-ring-offset-color: #b91c1c !important; +} + +.ring-offset-red-800 { + --tw-ring-offset-color: #991b1b !important; +} + +.ring-offset-red-900 { + --tw-ring-offset-color: #7f1d1d !important; +} + +.ring-offset-yellow-50 { + --tw-ring-offset-color: #fffbeb !important; +} + +.ring-offset-yellow-100 { + --tw-ring-offset-color: #fef3c7 !important; +} + +.ring-offset-yellow-200 { + --tw-ring-offset-color: #fde68a !important; +} + +.ring-offset-yellow-300 { + --tw-ring-offset-color: #fcd34d !important; +} + +.ring-offset-yellow-400 { + --tw-ring-offset-color: #fbbf24 !important; +} + +.ring-offset-yellow-500 { + --tw-ring-offset-color: #f59e0b !important; +} + +.ring-offset-yellow-600 { + --tw-ring-offset-color: #d97706 !important; +} + +.ring-offset-yellow-700 { + --tw-ring-offset-color: #b45309 !important; +} + +.ring-offset-yellow-800 { + --tw-ring-offset-color: #92400e !important; +} + +.ring-offset-yellow-900 { + --tw-ring-offset-color: #78350f !important; +} + +.ring-offset-green-50 { + --tw-ring-offset-color: #ecfdf5 !important; +} + +.ring-offset-green-100 { + --tw-ring-offset-color: #d1fae5 !important; +} + +.ring-offset-green-200 { + --tw-ring-offset-color: #a7f3d0 !important; +} + +.ring-offset-green-300 { + --tw-ring-offset-color: #6ee7b7 !important; +} + +.ring-offset-green-400 { + --tw-ring-offset-color: #34d399 !important; +} + +.ring-offset-green-500 { + --tw-ring-offset-color: #10b981 !important; +} + +.ring-offset-green-600 { + --tw-ring-offset-color: #059669 !important; +} + +.ring-offset-green-700 { + --tw-ring-offset-color: #047857 !important; +} + +.ring-offset-green-800 { + --tw-ring-offset-color: #065f46 !important; +} + +.ring-offset-green-900 { + --tw-ring-offset-color: #064e3b !important; +} + +.ring-offset-blue-50 { + --tw-ring-offset-color: #eff6ff !important; +} + +.ring-offset-blue-100 { + --tw-ring-offset-color: #dbeafe !important; +} + +.ring-offset-blue-200 { + --tw-ring-offset-color: #bfdbfe !important; +} + +.ring-offset-blue-300 { + --tw-ring-offset-color: #93c5fd !important; +} + +.ring-offset-blue-400 { + --tw-ring-offset-color: #60a5fa !important; +} + +.ring-offset-blue-500 { + --tw-ring-offset-color: #3b82f6 !important; +} + +.ring-offset-blue-600 { + --tw-ring-offset-color: #2563eb !important; +} + +.ring-offset-blue-700 { + --tw-ring-offset-color: #1d4ed8 !important; +} + +.ring-offset-blue-800 { + --tw-ring-offset-color: #1e40af !important; +} + +.ring-offset-blue-900 { + --tw-ring-offset-color: #1e3a8a !important; +} + +.ring-offset-indigo-50 { + --tw-ring-offset-color: #eef2ff !important; +} + +.ring-offset-indigo-100 { + --tw-ring-offset-color: #e0e7ff !important; +} + +.ring-offset-indigo-200 { + --tw-ring-offset-color: #c7d2fe !important; +} + +.ring-offset-indigo-300 { + --tw-ring-offset-color: #a5b4fc !important; +} + +.ring-offset-indigo-400 { + --tw-ring-offset-color: #818cf8 !important; +} + +.ring-offset-indigo-500 { + --tw-ring-offset-color: #6366f1 !important; +} + +.ring-offset-indigo-600 { + --tw-ring-offset-color: #4f46e5 !important; +} + +.ring-offset-indigo-700 { + --tw-ring-offset-color: #4338ca !important; +} + +.ring-offset-indigo-800 { + --tw-ring-offset-color: #3730a3 !important; +} + +.ring-offset-indigo-900 { + --tw-ring-offset-color: #312e81 !important; +} + +.ring-offset-purple-50 { + --tw-ring-offset-color: #f5f3ff !important; +} + +.ring-offset-purple-100 { + --tw-ring-offset-color: #ede9fe !important; +} + +.ring-offset-purple-200 { + --tw-ring-offset-color: #ddd6fe !important; +} + +.ring-offset-purple-300 { + --tw-ring-offset-color: #c4b5fd !important; +} + +.ring-offset-purple-400 { + --tw-ring-offset-color: #a78bfa !important; +} + +.ring-offset-purple-500 { + --tw-ring-offset-color: #8b5cf6 !important; +} + +.ring-offset-purple-600 { + --tw-ring-offset-color: #7c3aed !important; +} + +.ring-offset-purple-700 { + --tw-ring-offset-color: #6d28d9 !important; +} + +.ring-offset-purple-800 { + --tw-ring-offset-color: #5b21b6 !important; +} + +.ring-offset-purple-900 { + --tw-ring-offset-color: #4c1d95 !important; +} + +.ring-offset-pink-50 { + --tw-ring-offset-color: #fdf2f8 !important; +} + +.ring-offset-pink-100 { + --tw-ring-offset-color: #fce7f3 !important; +} + +.ring-offset-pink-200 { + --tw-ring-offset-color: #fbcfe8 !important; +} + +.ring-offset-pink-300 { + --tw-ring-offset-color: #f9a8d4 !important; +} + +.ring-offset-pink-400 { + --tw-ring-offset-color: #f472b6 !important; +} + +.ring-offset-pink-500 { + --tw-ring-offset-color: #ec4899 !important; +} + +.ring-offset-pink-600 { + --tw-ring-offset-color: #db2777 !important; +} + +.ring-offset-pink-700 { + --tw-ring-offset-color: #be185d !important; +} + +.ring-offset-pink-800 { + --tw-ring-offset-color: #9d174d !important; +} + +.ring-offset-pink-900 { + --tw-ring-offset-color: #831843 !important; +} + +.ring-offset-primary { + --tw-ring-offset-color: #003197 !important; +} + +.focus-within\:ring-offset-transparent:focus-within { + --tw-ring-offset-color: transparent !important; +} + +.focus-within\:ring-offset-current:focus-within { + --tw-ring-offset-color: currentColor !important; +} + +.focus-within\:ring-offset-black:focus-within { + --tw-ring-offset-color: #000 !important; +} + +.focus-within\:ring-offset-white:focus-within { + --tw-ring-offset-color: #fff !important; +} + +.focus-within\:ring-offset-gray-50:focus-within { + --tw-ring-offset-color: #f9fafb !important; +} + +.focus-within\:ring-offset-gray-100:focus-within { + --tw-ring-offset-color: #f3f4f6 !important; +} + +.focus-within\:ring-offset-gray-200:focus-within { + --tw-ring-offset-color: #e5e7eb !important; +} + +.focus-within\:ring-offset-gray-300:focus-within { + --tw-ring-offset-color: #d1d5db !important; +} + +.focus-within\:ring-offset-gray-400:focus-within { + --tw-ring-offset-color: #9ca3af !important; +} + +.focus-within\:ring-offset-gray-500:focus-within { + --tw-ring-offset-color: #6b7280 !important; +} + +.focus-within\:ring-offset-gray-600:focus-within { + --tw-ring-offset-color: #4b5563 !important; +} + +.focus-within\:ring-offset-gray-700:focus-within { + --tw-ring-offset-color: #374151 !important; +} + +.focus-within\:ring-offset-gray-800:focus-within { + --tw-ring-offset-color: #1f2937 !important; +} + +.focus-within\:ring-offset-gray-900:focus-within { + --tw-ring-offset-color: #111827 !important; +} + +.focus-within\:ring-offset-red-50:focus-within { + --tw-ring-offset-color: #fef2f2 !important; +} + +.focus-within\:ring-offset-red-100:focus-within { + --tw-ring-offset-color: #fee2e2 !important; +} + +.focus-within\:ring-offset-red-200:focus-within { + --tw-ring-offset-color: #fecaca !important; +} + +.focus-within\:ring-offset-red-300:focus-within { + --tw-ring-offset-color: #fca5a5 !important; +} + +.focus-within\:ring-offset-red-400:focus-within { + --tw-ring-offset-color: #f87171 !important; +} + +.focus-within\:ring-offset-red-500:focus-within { + --tw-ring-offset-color: #ef4444 !important; +} + +.focus-within\:ring-offset-red-600:focus-within { + --tw-ring-offset-color: #dc2626 !important; +} + +.focus-within\:ring-offset-red-700:focus-within { + --tw-ring-offset-color: #b91c1c !important; +} + +.focus-within\:ring-offset-red-800:focus-within { + --tw-ring-offset-color: #991b1b !important; +} + +.focus-within\:ring-offset-red-900:focus-within { + --tw-ring-offset-color: #7f1d1d !important; +} + +.focus-within\:ring-offset-yellow-50:focus-within { + --tw-ring-offset-color: #fffbeb !important; +} + +.focus-within\:ring-offset-yellow-100:focus-within { + --tw-ring-offset-color: #fef3c7 !important; +} + +.focus-within\:ring-offset-yellow-200:focus-within { + --tw-ring-offset-color: #fde68a !important; +} + +.focus-within\:ring-offset-yellow-300:focus-within { + --tw-ring-offset-color: #fcd34d !important; +} + +.focus-within\:ring-offset-yellow-400:focus-within { + --tw-ring-offset-color: #fbbf24 !important; +} + +.focus-within\:ring-offset-yellow-500:focus-within { + --tw-ring-offset-color: #f59e0b !important; +} + +.focus-within\:ring-offset-yellow-600:focus-within { + --tw-ring-offset-color: #d97706 !important; +} + +.focus-within\:ring-offset-yellow-700:focus-within { + --tw-ring-offset-color: #b45309 !important; +} + +.focus-within\:ring-offset-yellow-800:focus-within { + --tw-ring-offset-color: #92400e !important; +} + +.focus-within\:ring-offset-yellow-900:focus-within { + --tw-ring-offset-color: #78350f !important; +} + +.focus-within\:ring-offset-green-50:focus-within { + --tw-ring-offset-color: #ecfdf5 !important; +} + +.focus-within\:ring-offset-green-100:focus-within { + --tw-ring-offset-color: #d1fae5 !important; +} + +.focus-within\:ring-offset-green-200:focus-within { + --tw-ring-offset-color: #a7f3d0 !important; +} + +.focus-within\:ring-offset-green-300:focus-within { + --tw-ring-offset-color: #6ee7b7 !important; +} + +.focus-within\:ring-offset-green-400:focus-within { + --tw-ring-offset-color: #34d399 !important; +} + +.focus-within\:ring-offset-green-500:focus-within { + --tw-ring-offset-color: #10b981 !important; +} + +.focus-within\:ring-offset-green-600:focus-within { + --tw-ring-offset-color: #059669 !important; +} + +.focus-within\:ring-offset-green-700:focus-within { + --tw-ring-offset-color: #047857 !important; +} + +.focus-within\:ring-offset-green-800:focus-within { + --tw-ring-offset-color: #065f46 !important; +} + +.focus-within\:ring-offset-green-900:focus-within { + --tw-ring-offset-color: #064e3b !important; +} + +.focus-within\:ring-offset-blue-50:focus-within { + --tw-ring-offset-color: #eff6ff !important; +} + +.focus-within\:ring-offset-blue-100:focus-within { + --tw-ring-offset-color: #dbeafe !important; +} + +.focus-within\:ring-offset-blue-200:focus-within { + --tw-ring-offset-color: #bfdbfe !important; +} + +.focus-within\:ring-offset-blue-300:focus-within { + --tw-ring-offset-color: #93c5fd !important; +} + +.focus-within\:ring-offset-blue-400:focus-within { + --tw-ring-offset-color: #60a5fa !important; +} + +.focus-within\:ring-offset-blue-500:focus-within { + --tw-ring-offset-color: #3b82f6 !important; +} + +.focus-within\:ring-offset-blue-600:focus-within { + --tw-ring-offset-color: #2563eb !important; +} + +.focus-within\:ring-offset-blue-700:focus-within { + --tw-ring-offset-color: #1d4ed8 !important; +} + +.focus-within\:ring-offset-blue-800:focus-within { + --tw-ring-offset-color: #1e40af !important; +} + +.focus-within\:ring-offset-blue-900:focus-within { + --tw-ring-offset-color: #1e3a8a !important; +} + +.focus-within\:ring-offset-indigo-50:focus-within { + --tw-ring-offset-color: #eef2ff !important; +} + +.focus-within\:ring-offset-indigo-100:focus-within { + --tw-ring-offset-color: #e0e7ff !important; +} + +.focus-within\:ring-offset-indigo-200:focus-within { + --tw-ring-offset-color: #c7d2fe !important; +} + +.focus-within\:ring-offset-indigo-300:focus-within { + --tw-ring-offset-color: #a5b4fc !important; +} + +.focus-within\:ring-offset-indigo-400:focus-within { + --tw-ring-offset-color: #818cf8 !important; +} + +.focus-within\:ring-offset-indigo-500:focus-within { + --tw-ring-offset-color: #6366f1 !important; +} + +.focus-within\:ring-offset-indigo-600:focus-within { + --tw-ring-offset-color: #4f46e5 !important; +} + +.focus-within\:ring-offset-indigo-700:focus-within { + --tw-ring-offset-color: #4338ca !important; +} + +.focus-within\:ring-offset-indigo-800:focus-within { + --tw-ring-offset-color: #3730a3 !important; +} + +.focus-within\:ring-offset-indigo-900:focus-within { + --tw-ring-offset-color: #312e81 !important; +} + +.focus-within\:ring-offset-purple-50:focus-within { + --tw-ring-offset-color: #f5f3ff !important; +} + +.focus-within\:ring-offset-purple-100:focus-within { + --tw-ring-offset-color: #ede9fe !important; +} + +.focus-within\:ring-offset-purple-200:focus-within { + --tw-ring-offset-color: #ddd6fe !important; +} + +.focus-within\:ring-offset-purple-300:focus-within { + --tw-ring-offset-color: #c4b5fd !important; +} + +.focus-within\:ring-offset-purple-400:focus-within { + --tw-ring-offset-color: #a78bfa !important; +} + +.focus-within\:ring-offset-purple-500:focus-within { + --tw-ring-offset-color: #8b5cf6 !important; +} + +.focus-within\:ring-offset-purple-600:focus-within { + --tw-ring-offset-color: #7c3aed !important; +} + +.focus-within\:ring-offset-purple-700:focus-within { + --tw-ring-offset-color: #6d28d9 !important; +} + +.focus-within\:ring-offset-purple-800:focus-within { + --tw-ring-offset-color: #5b21b6 !important; +} + +.focus-within\:ring-offset-purple-900:focus-within { + --tw-ring-offset-color: #4c1d95 !important; +} + +.focus-within\:ring-offset-pink-50:focus-within { + --tw-ring-offset-color: #fdf2f8 !important; +} + +.focus-within\:ring-offset-pink-100:focus-within { + --tw-ring-offset-color: #fce7f3 !important; +} + +.focus-within\:ring-offset-pink-200:focus-within { + --tw-ring-offset-color: #fbcfe8 !important; +} + +.focus-within\:ring-offset-pink-300:focus-within { + --tw-ring-offset-color: #f9a8d4 !important; +} + +.focus-within\:ring-offset-pink-400:focus-within { + --tw-ring-offset-color: #f472b6 !important; +} + +.focus-within\:ring-offset-pink-500:focus-within { + --tw-ring-offset-color: #ec4899 !important; +} + +.focus-within\:ring-offset-pink-600:focus-within { + --tw-ring-offset-color: #db2777 !important; +} + +.focus-within\:ring-offset-pink-700:focus-within { + --tw-ring-offset-color: #be185d !important; +} + +.focus-within\:ring-offset-pink-800:focus-within { + --tw-ring-offset-color: #9d174d !important; +} + +.focus-within\:ring-offset-pink-900:focus-within { + --tw-ring-offset-color: #831843 !important; +} + +.focus-within\:ring-offset-primary:focus-within { + --tw-ring-offset-color: #003197 !important; +} + +.focus\:ring-offset-transparent:focus { + --tw-ring-offset-color: transparent !important; +} + +.focus\:ring-offset-current:focus { + --tw-ring-offset-color: currentColor !important; +} + +.focus\:ring-offset-black:focus { + --tw-ring-offset-color: #000 !important; +} + +.focus\:ring-offset-white:focus { + --tw-ring-offset-color: #fff !important; +} + +.focus\:ring-offset-gray-50:focus { + --tw-ring-offset-color: #f9fafb !important; +} + +.focus\:ring-offset-gray-100:focus { + --tw-ring-offset-color: #f3f4f6 !important; +} + +.focus\:ring-offset-gray-200:focus { + --tw-ring-offset-color: #e5e7eb !important; +} + +.focus\:ring-offset-gray-300:focus { + --tw-ring-offset-color: #d1d5db !important; +} + +.focus\:ring-offset-gray-400:focus { + --tw-ring-offset-color: #9ca3af !important; +} + +.focus\:ring-offset-gray-500:focus { + --tw-ring-offset-color: #6b7280 !important; +} + +.focus\:ring-offset-gray-600:focus { + --tw-ring-offset-color: #4b5563 !important; +} + +.focus\:ring-offset-gray-700:focus { + --tw-ring-offset-color: #374151 !important; +} + +.focus\:ring-offset-gray-800:focus { + --tw-ring-offset-color: #1f2937 !important; +} + +.focus\:ring-offset-gray-900:focus { + --tw-ring-offset-color: #111827 !important; +} + +.focus\:ring-offset-red-50:focus { + --tw-ring-offset-color: #fef2f2 !important; +} + +.focus\:ring-offset-red-100:focus { + --tw-ring-offset-color: #fee2e2 !important; +} + +.focus\:ring-offset-red-200:focus { + --tw-ring-offset-color: #fecaca !important; +} + +.focus\:ring-offset-red-300:focus { + --tw-ring-offset-color: #fca5a5 !important; +} + +.focus\:ring-offset-red-400:focus { + --tw-ring-offset-color: #f87171 !important; +} + +.focus\:ring-offset-red-500:focus { + --tw-ring-offset-color: #ef4444 !important; +} + +.focus\:ring-offset-red-600:focus { + --tw-ring-offset-color: #dc2626 !important; +} + +.focus\:ring-offset-red-700:focus { + --tw-ring-offset-color: #b91c1c !important; +} + +.focus\:ring-offset-red-800:focus { + --tw-ring-offset-color: #991b1b !important; +} + +.focus\:ring-offset-red-900:focus { + --tw-ring-offset-color: #7f1d1d !important; +} + +.focus\:ring-offset-yellow-50:focus { + --tw-ring-offset-color: #fffbeb !important; +} + +.focus\:ring-offset-yellow-100:focus { + --tw-ring-offset-color: #fef3c7 !important; +} + +.focus\:ring-offset-yellow-200:focus { + --tw-ring-offset-color: #fde68a !important; +} + +.focus\:ring-offset-yellow-300:focus { + --tw-ring-offset-color: #fcd34d !important; +} + +.focus\:ring-offset-yellow-400:focus { + --tw-ring-offset-color: #fbbf24 !important; +} + +.focus\:ring-offset-yellow-500:focus { + --tw-ring-offset-color: #f59e0b !important; +} + +.focus\:ring-offset-yellow-600:focus { + --tw-ring-offset-color: #d97706 !important; +} + +.focus\:ring-offset-yellow-700:focus { + --tw-ring-offset-color: #b45309 !important; +} + +.focus\:ring-offset-yellow-800:focus { + --tw-ring-offset-color: #92400e !important; +} + +.focus\:ring-offset-yellow-900:focus { + --tw-ring-offset-color: #78350f !important; +} + +.focus\:ring-offset-green-50:focus { + --tw-ring-offset-color: #ecfdf5 !important; +} + +.focus\:ring-offset-green-100:focus { + --tw-ring-offset-color: #d1fae5 !important; +} + +.focus\:ring-offset-green-200:focus { + --tw-ring-offset-color: #a7f3d0 !important; +} + +.focus\:ring-offset-green-300:focus { + --tw-ring-offset-color: #6ee7b7 !important; +} + +.focus\:ring-offset-green-400:focus { + --tw-ring-offset-color: #34d399 !important; +} + +.focus\:ring-offset-green-500:focus { + --tw-ring-offset-color: #10b981 !important; +} + +.focus\:ring-offset-green-600:focus { + --tw-ring-offset-color: #059669 !important; +} + +.focus\:ring-offset-green-700:focus { + --tw-ring-offset-color: #047857 !important; +} + +.focus\:ring-offset-green-800:focus { + --tw-ring-offset-color: #065f46 !important; +} + +.focus\:ring-offset-green-900:focus { + --tw-ring-offset-color: #064e3b !important; +} + +.focus\:ring-offset-blue-50:focus { + --tw-ring-offset-color: #eff6ff !important; +} + +.focus\:ring-offset-blue-100:focus { + --tw-ring-offset-color: #dbeafe !important; +} + +.focus\:ring-offset-blue-200:focus { + --tw-ring-offset-color: #bfdbfe !important; +} + +.focus\:ring-offset-blue-300:focus { + --tw-ring-offset-color: #93c5fd !important; +} + +.focus\:ring-offset-blue-400:focus { + --tw-ring-offset-color: #60a5fa !important; +} + +.focus\:ring-offset-blue-500:focus { + --tw-ring-offset-color: #3b82f6 !important; +} + +.focus\:ring-offset-blue-600:focus { + --tw-ring-offset-color: #2563eb !important; +} + +.focus\:ring-offset-blue-700:focus { + --tw-ring-offset-color: #1d4ed8 !important; +} + +.focus\:ring-offset-blue-800:focus { + --tw-ring-offset-color: #1e40af !important; +} + +.focus\:ring-offset-blue-900:focus { + --tw-ring-offset-color: #1e3a8a !important; +} + +.focus\:ring-offset-indigo-50:focus { + --tw-ring-offset-color: #eef2ff !important; +} + +.focus\:ring-offset-indigo-100:focus { + --tw-ring-offset-color: #e0e7ff !important; +} + +.focus\:ring-offset-indigo-200:focus { + --tw-ring-offset-color: #c7d2fe !important; +} + +.focus\:ring-offset-indigo-300:focus { + --tw-ring-offset-color: #a5b4fc !important; +} + +.focus\:ring-offset-indigo-400:focus { + --tw-ring-offset-color: #818cf8 !important; +} + +.focus\:ring-offset-indigo-500:focus { + --tw-ring-offset-color: #6366f1 !important; +} + +.focus\:ring-offset-indigo-600:focus { + --tw-ring-offset-color: #4f46e5 !important; +} + +.focus\:ring-offset-indigo-700:focus { + --tw-ring-offset-color: #4338ca !important; +} + +.focus\:ring-offset-indigo-800:focus { + --tw-ring-offset-color: #3730a3 !important; +} + +.focus\:ring-offset-indigo-900:focus { + --tw-ring-offset-color: #312e81 !important; +} + +.focus\:ring-offset-purple-50:focus { + --tw-ring-offset-color: #f5f3ff !important; +} + +.focus\:ring-offset-purple-100:focus { + --tw-ring-offset-color: #ede9fe !important; +} + +.focus\:ring-offset-purple-200:focus { + --tw-ring-offset-color: #ddd6fe !important; +} + +.focus\:ring-offset-purple-300:focus { + --tw-ring-offset-color: #c4b5fd !important; +} + +.focus\:ring-offset-purple-400:focus { + --tw-ring-offset-color: #a78bfa !important; +} + +.focus\:ring-offset-purple-500:focus { + --tw-ring-offset-color: #8b5cf6 !important; +} + +.focus\:ring-offset-purple-600:focus { + --tw-ring-offset-color: #7c3aed !important; +} + +.focus\:ring-offset-purple-700:focus { + --tw-ring-offset-color: #6d28d9 !important; +} + +.focus\:ring-offset-purple-800:focus { + --tw-ring-offset-color: #5b21b6 !important; +} + +.focus\:ring-offset-purple-900:focus { + --tw-ring-offset-color: #4c1d95 !important; +} + +.focus\:ring-offset-pink-50:focus { + --tw-ring-offset-color: #fdf2f8 !important; +} + +.focus\:ring-offset-pink-100:focus { + --tw-ring-offset-color: #fce7f3 !important; +} + +.focus\:ring-offset-pink-200:focus { + --tw-ring-offset-color: #fbcfe8 !important; +} + +.focus\:ring-offset-pink-300:focus { + --tw-ring-offset-color: #f9a8d4 !important; +} + +.focus\:ring-offset-pink-400:focus { + --tw-ring-offset-color: #f472b6 !important; +} + +.focus\:ring-offset-pink-500:focus { + --tw-ring-offset-color: #ec4899 !important; +} + +.focus\:ring-offset-pink-600:focus { + --tw-ring-offset-color: #db2777 !important; +} + +.focus\:ring-offset-pink-700:focus { + --tw-ring-offset-color: #be185d !important; +} + +.focus\:ring-offset-pink-800:focus { + --tw-ring-offset-color: #9d174d !important; +} + +.focus\:ring-offset-pink-900:focus { + --tw-ring-offset-color: #831843 !important; +} + +.focus\:ring-offset-primary:focus { + --tw-ring-offset-color: #003197 !important; +} + +.ring-offset-0 { + --tw-ring-offset-width: 0px !important; +} + +.ring-offset-1 { + --tw-ring-offset-width: 1px !important; +} + +.ring-offset-2 { + --tw-ring-offset-width: 2px !important; +} + +.ring-offset-4 { + --tw-ring-offset-width: 4px !important; +} + +.ring-offset-8 { + --tw-ring-offset-width: 8px !important; +} + +.focus-within\:ring-offset-0:focus-within { + --tw-ring-offset-width: 0px !important; +} + +.focus-within\:ring-offset-1:focus-within { + --tw-ring-offset-width: 1px !important; +} + +.focus-within\:ring-offset-2:focus-within { + --tw-ring-offset-width: 2px !important; +} + +.focus-within\:ring-offset-4:focus-within { + --tw-ring-offset-width: 4px !important; +} + +.focus-within\:ring-offset-8:focus-within { + --tw-ring-offset-width: 8px !important; +} + +.focus\:ring-offset-0:focus { + --tw-ring-offset-width: 0px !important; +} + +.focus\:ring-offset-1:focus { + --tw-ring-offset-width: 1px !important; +} + +.focus\:ring-offset-2:focus { + --tw-ring-offset-width: 2px !important; +} + +.focus\:ring-offset-4:focus { + --tw-ring-offset-width: 4px !important; +} + +.focus\:ring-offset-8:focus { + --tw-ring-offset-width: 8px !important; +} + +.ring-transparent { + --tw-ring-color: transparent !important; +} + +.ring-current { + --tw-ring-color: currentColor !important; +} + +.ring-black { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important; +} + +.ring-white { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)) !important; +} + +.ring-gray-50 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)) !important; +} + +.ring-gray-100 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)) !important; +} + +.ring-gray-200 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)) !important; +} + +.ring-gray-300 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)) !important; +} + +.ring-gray-400 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)) !important; +} + +.ring-gray-500 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)) !important; +} + +.ring-gray-600 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)) !important; +} + +.ring-gray-700 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)) !important; +} + +.ring-gray-800 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)) !important; +} + +.ring-gray-900 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)) !important; +} + +.ring-red-50 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)) !important; +} + +.ring-red-100 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)) !important; +} + +.ring-red-200 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)) !important; +} + +.ring-red-300 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)) !important; +} + +.ring-red-400 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)) !important; +} + +.ring-red-500 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)) !important; +} + +.ring-red-600 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)) !important; +} + +.ring-red-700 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)) !important; +} + +.ring-red-800 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)) !important; +} + +.ring-red-900 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)) !important; +} + +.ring-yellow-50 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)) !important; +} + +.ring-yellow-100 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)) !important; +} + +.ring-yellow-200 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)) !important; +} + +.ring-yellow-300 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)) !important; +} + +.ring-yellow-400 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)) !important; +} + +.ring-yellow-500 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)) !important; +} + +.ring-yellow-600 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)) !important; +} + +.ring-yellow-700 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)) !important; +} + +.ring-yellow-800 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)) !important; +} + +.ring-yellow-900 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)) !important; +} + +.ring-green-50 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)) !important; +} + +.ring-green-100 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)) !important; +} + +.ring-green-200 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)) !important; +} + +.ring-green-300 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)) !important; +} + +.ring-green-400 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)) !important; +} + +.ring-green-500 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)) !important; +} + +.ring-green-600 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)) !important; +} + +.ring-green-700 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)) !important; +} + +.ring-green-800 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)) !important; +} + +.ring-green-900 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)) !important; +} + +.ring-blue-50 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)) !important; +} + +.ring-blue-100 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)) !important; +} + +.ring-blue-200 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)) !important; +} + +.ring-blue-300 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)) !important; +} + +.ring-blue-400 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)) !important; +} + +.ring-blue-500 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)) !important; +} + +.ring-blue-600 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)) !important; +} + +.ring-blue-700 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)) !important; +} + +.ring-blue-800 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)) !important; +} + +.ring-blue-900 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)) !important; +} + +.ring-indigo-50 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)) !important; +} + +.ring-indigo-100 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)) !important; +} + +.ring-indigo-200 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)) !important; +} + +.ring-indigo-300 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)) !important; +} + +.ring-indigo-400 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)) !important; +} + +.ring-indigo-500 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)) !important; +} + +.ring-indigo-600 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)) !important; +} + +.ring-indigo-700 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)) !important; +} + +.ring-indigo-800 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)) !important; +} + +.ring-indigo-900 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)) !important; +} + +.ring-purple-50 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)) !important; +} + +.ring-purple-100 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)) !important; +} + +.ring-purple-200 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)) !important; +} + +.ring-purple-300 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)) !important; +} + +.ring-purple-400 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)) !important; +} + +.ring-purple-500 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)) !important; +} + +.ring-purple-600 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)) !important; +} + +.ring-purple-700 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)) !important; +} + +.ring-purple-800 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)) !important; +} + +.ring-purple-900 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)) !important; +} + +.ring-pink-50 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)) !important; +} + +.ring-pink-100 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)) !important; +} + +.ring-pink-200 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)) !important; +} + +.ring-pink-300 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)) !important; +} + +.ring-pink-400 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)) !important; +} + +.ring-pink-500 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)) !important; +} + +.ring-pink-600 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)) !important; +} + +.ring-pink-700 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)) !important; +} + +.ring-pink-800 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)) !important; +} + +.ring-pink-900 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)) !important; +} + +.ring-primary { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(0, 49, 151, var(--tw-ring-opacity)) !important; +} + +.focus-within\:ring-transparent:focus-within { + --tw-ring-color: transparent !important; +} + +.focus-within\:ring-current:focus-within { + --tw-ring-color: currentColor !important; +} + +.focus-within\:ring-black:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important; +} + +.focus-within\:ring-white:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)) !important; +} + +.focus-within\:ring-gray-50:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)) !important; +} + +.focus-within\:ring-gray-100:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)) !important; +} + +.focus-within\:ring-gray-200:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)) !important; +} + +.focus-within\:ring-gray-300:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)) !important; +} + +.focus-within\:ring-gray-400:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)) !important; +} + +.focus-within\:ring-gray-500:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)) !important; +} + +.focus-within\:ring-gray-600:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)) !important; +} + +.focus-within\:ring-gray-700:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)) !important; +} + +.focus-within\:ring-gray-800:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)) !important; +} + +.focus-within\:ring-gray-900:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)) !important; +} + +.focus-within\:ring-red-50:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)) !important; +} + +.focus-within\:ring-red-100:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)) !important; +} + +.focus-within\:ring-red-200:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)) !important; +} + +.focus-within\:ring-red-300:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)) !important; +} + +.focus-within\:ring-red-400:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)) !important; +} + +.focus-within\:ring-red-500:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)) !important; +} + +.focus-within\:ring-red-600:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)) !important; +} + +.focus-within\:ring-red-700:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)) !important; +} + +.focus-within\:ring-red-800:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)) !important; +} + +.focus-within\:ring-red-900:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)) !important; +} + +.focus-within\:ring-yellow-50:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)) !important; +} + +.focus-within\:ring-yellow-100:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)) !important; +} + +.focus-within\:ring-yellow-200:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)) !important; +} + +.focus-within\:ring-yellow-300:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)) !important; +} + +.focus-within\:ring-yellow-400:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)) !important; +} + +.focus-within\:ring-yellow-500:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)) !important; +} + +.focus-within\:ring-yellow-600:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)) !important; +} + +.focus-within\:ring-yellow-700:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)) !important; +} + +.focus-within\:ring-yellow-800:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)) !important; +} + +.focus-within\:ring-yellow-900:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)) !important; +} + +.focus-within\:ring-green-50:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)) !important; +} + +.focus-within\:ring-green-100:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)) !important; +} + +.focus-within\:ring-green-200:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)) !important; +} + +.focus-within\:ring-green-300:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)) !important; +} + +.focus-within\:ring-green-400:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)) !important; +} + +.focus-within\:ring-green-500:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)) !important; +} + +.focus-within\:ring-green-600:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)) !important; +} + +.focus-within\:ring-green-700:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)) !important; +} + +.focus-within\:ring-green-800:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)) !important; +} + +.focus-within\:ring-green-900:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)) !important; +} + +.focus-within\:ring-blue-50:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)) !important; +} + +.focus-within\:ring-blue-100:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)) !important; +} + +.focus-within\:ring-blue-200:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)) !important; +} + +.focus-within\:ring-blue-300:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)) !important; +} + +.focus-within\:ring-blue-400:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)) !important; +} + +.focus-within\:ring-blue-500:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)) !important; +} + +.focus-within\:ring-blue-600:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)) !important; +} + +.focus-within\:ring-blue-700:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)) !important; +} + +.focus-within\:ring-blue-800:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)) !important; +} + +.focus-within\:ring-blue-900:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)) !important; +} + +.focus-within\:ring-indigo-50:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)) !important; +} + +.focus-within\:ring-indigo-100:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)) !important; +} + +.focus-within\:ring-indigo-200:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)) !important; +} + +.focus-within\:ring-indigo-300:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)) !important; +} + +.focus-within\:ring-indigo-400:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)) !important; +} + +.focus-within\:ring-indigo-500:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)) !important; +} + +.focus-within\:ring-indigo-600:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)) !important; +} + +.focus-within\:ring-indigo-700:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)) !important; +} + +.focus-within\:ring-indigo-800:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)) !important; +} + +.focus-within\:ring-indigo-900:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)) !important; +} + +.focus-within\:ring-purple-50:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)) !important; +} + +.focus-within\:ring-purple-100:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)) !important; +} + +.focus-within\:ring-purple-200:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)) !important; +} + +.focus-within\:ring-purple-300:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)) !important; +} + +.focus-within\:ring-purple-400:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)) !important; +} + +.focus-within\:ring-purple-500:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)) !important; +} + +.focus-within\:ring-purple-600:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)) !important; +} + +.focus-within\:ring-purple-700:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)) !important; +} + +.focus-within\:ring-purple-800:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)) !important; +} + +.focus-within\:ring-purple-900:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)) !important; +} + +.focus-within\:ring-pink-50:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)) !important; +} + +.focus-within\:ring-pink-100:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)) !important; +} + +.focus-within\:ring-pink-200:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)) !important; +} + +.focus-within\:ring-pink-300:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)) !important; +} + +.focus-within\:ring-pink-400:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)) !important; +} + +.focus-within\:ring-pink-500:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)) !important; +} + +.focus-within\:ring-pink-600:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)) !important; +} + +.focus-within\:ring-pink-700:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)) !important; +} + +.focus-within\:ring-pink-800:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)) !important; +} + +.focus-within\:ring-pink-900:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)) !important; +} + +.focus-within\:ring-primary:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(0, 49, 151, var(--tw-ring-opacity)) !important; +} + +.focus\:ring-transparent:focus { + --tw-ring-color: transparent !important; +} + +.focus\:ring-current:focus { + --tw-ring-color: currentColor !important; +} + +.focus\:ring-black:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important; +} + +.focus\:ring-white:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)) !important; +} + +.focus\:ring-gray-50:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)) !important; +} + +.focus\:ring-gray-100:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)) !important; +} + +.focus\:ring-gray-200:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)) !important; +} + +.focus\:ring-gray-300:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)) !important; +} + +.focus\:ring-gray-400:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)) !important; +} + +.focus\:ring-gray-500:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)) !important; +} + +.focus\:ring-gray-600:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)) !important; +} + +.focus\:ring-gray-700:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)) !important; +} + +.focus\:ring-gray-800:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)) !important; +} + +.focus\:ring-gray-900:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)) !important; +} + +.focus\:ring-red-50:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)) !important; +} + +.focus\:ring-red-100:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)) !important; +} + +.focus\:ring-red-200:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)) !important; +} + +.focus\:ring-red-300:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)) !important; +} + +.focus\:ring-red-400:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)) !important; +} + +.focus\:ring-red-500:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)) !important; +} + +.focus\:ring-red-600:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)) !important; +} + +.focus\:ring-red-700:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)) !important; +} + +.focus\:ring-red-800:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)) !important; +} + +.focus\:ring-red-900:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)) !important; +} + +.focus\:ring-yellow-50:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)) !important; +} + +.focus\:ring-yellow-100:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)) !important; +} + +.focus\:ring-yellow-200:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)) !important; +} + +.focus\:ring-yellow-300:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)) !important; +} + +.focus\:ring-yellow-400:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)) !important; +} + +.focus\:ring-yellow-500:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)) !important; +} + +.focus\:ring-yellow-600:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)) !important; +} + +.focus\:ring-yellow-700:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)) !important; +} + +.focus\:ring-yellow-800:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)) !important; +} + +.focus\:ring-yellow-900:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)) !important; +} + +.focus\:ring-green-50:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)) !important; +} + +.focus\:ring-green-100:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)) !important; +} + +.focus\:ring-green-200:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)) !important; +} + +.focus\:ring-green-300:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)) !important; +} + +.focus\:ring-green-400:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)) !important; +} + +.focus\:ring-green-500:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)) !important; +} + +.focus\:ring-green-600:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)) !important; +} + +.focus\:ring-green-700:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)) !important; +} + +.focus\:ring-green-800:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)) !important; +} + +.focus\:ring-green-900:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)) !important; +} + +.focus\:ring-blue-50:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)) !important; +} + +.focus\:ring-blue-100:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)) !important; +} + +.focus\:ring-blue-200:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)) !important; +} + +.focus\:ring-blue-300:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)) !important; +} + +.focus\:ring-blue-400:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)) !important; +} + +.focus\:ring-blue-500:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)) !important; +} + +.focus\:ring-blue-600:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)) !important; +} + +.focus\:ring-blue-700:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)) !important; +} + +.focus\:ring-blue-800:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)) !important; +} + +.focus\:ring-blue-900:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)) !important; +} + +.focus\:ring-indigo-50:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)) !important; +} + +.focus\:ring-indigo-100:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)) !important; +} + +.focus\:ring-indigo-200:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)) !important; +} + +.focus\:ring-indigo-300:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)) !important; +} + +.focus\:ring-indigo-400:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)) !important; +} + +.focus\:ring-indigo-500:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)) !important; +} + +.focus\:ring-indigo-600:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)) !important; +} + +.focus\:ring-indigo-700:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)) !important; +} + +.focus\:ring-indigo-800:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)) !important; +} + +.focus\:ring-indigo-900:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)) !important; +} + +.focus\:ring-purple-50:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)) !important; +} + +.focus\:ring-purple-100:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)) !important; +} + +.focus\:ring-purple-200:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)) !important; +} + +.focus\:ring-purple-300:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)) !important; +} + +.focus\:ring-purple-400:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)) !important; +} + +.focus\:ring-purple-500:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)) !important; +} + +.focus\:ring-purple-600:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)) !important; +} + +.focus\:ring-purple-700:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)) !important; +} + +.focus\:ring-purple-800:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)) !important; +} + +.focus\:ring-purple-900:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)) !important; +} + +.focus\:ring-pink-50:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)) !important; +} + +.focus\:ring-pink-100:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)) !important; +} + +.focus\:ring-pink-200:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)) !important; +} + +.focus\:ring-pink-300:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)) !important; +} + +.focus\:ring-pink-400:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)) !important; +} + +.focus\:ring-pink-500:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)) !important; +} + +.focus\:ring-pink-600:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)) !important; +} + +.focus\:ring-pink-700:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)) !important; +} + +.focus\:ring-pink-800:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)) !important; +} + +.focus\:ring-pink-900:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)) !important; +} + +.focus\:ring-primary:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(0, 49, 151, var(--tw-ring-opacity)) !important; +} + +.ring-opacity-0 { + --tw-ring-opacity: 0 !important; +} + +.ring-opacity-5 { + --tw-ring-opacity: 0.05 !important; +} + +.ring-opacity-10 { + --tw-ring-opacity: 0.1 !important; +} + +.ring-opacity-20 { + --tw-ring-opacity: 0.2 !important; +} + +.ring-opacity-25 { + --tw-ring-opacity: 0.25 !important; +} + +.ring-opacity-30 { + --tw-ring-opacity: 0.3 !important; +} + +.ring-opacity-40 { + --tw-ring-opacity: 0.4 !important; +} + +.ring-opacity-50 { + --tw-ring-opacity: 0.5 !important; +} + +.ring-opacity-60 { + --tw-ring-opacity: 0.6 !important; +} + +.ring-opacity-70 { + --tw-ring-opacity: 0.7 !important; +} + +.ring-opacity-75 { + --tw-ring-opacity: 0.75 !important; +} + +.ring-opacity-80 { + --tw-ring-opacity: 0.8 !important; +} + +.ring-opacity-90 { + --tw-ring-opacity: 0.9 !important; +} + +.ring-opacity-95 { + --tw-ring-opacity: 0.95 !important; +} + +.ring-opacity-100 { + --tw-ring-opacity: 1 !important; +} + +.focus-within\:ring-opacity-0:focus-within { + --tw-ring-opacity: 0 !important; +} + +.focus-within\:ring-opacity-5:focus-within { + --tw-ring-opacity: 0.05 !important; +} + +.focus-within\:ring-opacity-10:focus-within { + --tw-ring-opacity: 0.1 !important; +} + +.focus-within\:ring-opacity-20:focus-within { + --tw-ring-opacity: 0.2 !important; +} + +.focus-within\:ring-opacity-25:focus-within { + --tw-ring-opacity: 0.25 !important; +} + +.focus-within\:ring-opacity-30:focus-within { + --tw-ring-opacity: 0.3 !important; +} + +.focus-within\:ring-opacity-40:focus-within { + --tw-ring-opacity: 0.4 !important; +} + +.focus-within\:ring-opacity-50:focus-within { + --tw-ring-opacity: 0.5 !important; +} + +.focus-within\:ring-opacity-60:focus-within { + --tw-ring-opacity: 0.6 !important; +} + +.focus-within\:ring-opacity-70:focus-within { + --tw-ring-opacity: 0.7 !important; +} + +.focus-within\:ring-opacity-75:focus-within { + --tw-ring-opacity: 0.75 !important; +} + +.focus-within\:ring-opacity-80:focus-within { + --tw-ring-opacity: 0.8 !important; +} + +.focus-within\:ring-opacity-90:focus-within { + --tw-ring-opacity: 0.9 !important; +} + +.focus-within\:ring-opacity-95:focus-within { + --tw-ring-opacity: 0.95 !important; +} + +.focus-within\:ring-opacity-100:focus-within { + --tw-ring-opacity: 1 !important; +} + +.focus\:ring-opacity-0:focus { + --tw-ring-opacity: 0 !important; +} + +.focus\:ring-opacity-5:focus { + --tw-ring-opacity: 0.05 !important; +} + +.focus\:ring-opacity-10:focus { + --tw-ring-opacity: 0.1 !important; +} + +.focus\:ring-opacity-20:focus { + --tw-ring-opacity: 0.2 !important; +} + +.focus\:ring-opacity-25:focus { + --tw-ring-opacity: 0.25 !important; +} + +.focus\:ring-opacity-30:focus { + --tw-ring-opacity: 0.3 !important; +} + +.focus\:ring-opacity-40:focus { + --tw-ring-opacity: 0.4 !important; +} + +.focus\:ring-opacity-50:focus { + --tw-ring-opacity: 0.5 !important; +} + +.focus\:ring-opacity-60:focus { + --tw-ring-opacity: 0.6 !important; +} + +.focus\:ring-opacity-70:focus { + --tw-ring-opacity: 0.7 !important; +} + +.focus\:ring-opacity-75:focus { + --tw-ring-opacity: 0.75 !important; +} + +.focus\:ring-opacity-80:focus { + --tw-ring-opacity: 0.8 !important; +} + +.focus\:ring-opacity-90:focus { + --tw-ring-opacity: 0.9 !important; +} + +.focus\:ring-opacity-95:focus { + --tw-ring-opacity: 0.95 !important; +} + +.focus\:ring-opacity-100:focus { + --tw-ring-opacity: 1 !important; +} + +.fill-current { + fill: currentColor !important; +} + +.stroke-current { + stroke: currentColor !important; +} + +.stroke-0 { + stroke-width: 0 !important; +} + +.stroke-1 { + stroke-width: 1 !important; +} + +.stroke-2 { + stroke-width: 2 !important; +} + +.table-auto { + table-layout: auto !important; +} + +.table-fixed { + table-layout: fixed !important; +} + +.text-left { + text-align: left !important; +} + +.text-center { + text-align: center !important; +} + +.text-right { + text-align: right !important; +} + +.text-justify { + text-align: justify !important; +} + +.text-transparent { + color: transparent !important; +} + +.text-current { + color: currentColor !important; +} + +.text-black { + --tw-text-opacity: 1 !important; + color: rgba(0, 0, 0, var(--tw-text-opacity)) !important; +} + +.text-white { + --tw-text-opacity: 1 !important; + color: rgba(255, 255, 255, var(--tw-text-opacity)) !important; +} + +.text-gray-50 { + --tw-text-opacity: 1 !important; + color: rgba(249, 250, 251, var(--tw-text-opacity)) !important; +} + +.text-gray-100 { + --tw-text-opacity: 1 !important; + color: rgba(243, 244, 246, var(--tw-text-opacity)) !important; +} + +.text-gray-200 { + --tw-text-opacity: 1 !important; + color: rgba(229, 231, 235, var(--tw-text-opacity)) !important; +} + +.text-gray-300 { + --tw-text-opacity: 1 !important; + color: rgba(209, 213, 219, var(--tw-text-opacity)) !important; +} + +.text-gray-400 { + --tw-text-opacity: 1 !important; + color: rgba(156, 163, 175, var(--tw-text-opacity)) !important; +} + +.text-gray-500 { + --tw-text-opacity: 1 !important; + color: rgba(107, 114, 128, var(--tw-text-opacity)) !important; +} + +.text-gray-600 { + --tw-text-opacity: 1 !important; + color: rgba(75, 85, 99, var(--tw-text-opacity)) !important; +} + +.text-gray-700 { + --tw-text-opacity: 1 !important; + color: rgba(55, 65, 81, var(--tw-text-opacity)) !important; +} + +.text-gray-800 { + --tw-text-opacity: 1 !important; + color: rgba(31, 41, 55, var(--tw-text-opacity)) !important; +} + +.text-gray-900 { + --tw-text-opacity: 1 !important; + color: rgba(17, 24, 39, var(--tw-text-opacity)) !important; +} + +.text-red-50 { + --tw-text-opacity: 1 !important; + color: rgba(254, 242, 242, var(--tw-text-opacity)) !important; +} + +.text-red-100 { + --tw-text-opacity: 1 !important; + color: rgba(254, 226, 226, var(--tw-text-opacity)) !important; +} + +.text-red-200 { + --tw-text-opacity: 1 !important; + color: rgba(254, 202, 202, var(--tw-text-opacity)) !important; +} + +.text-red-300 { + --tw-text-opacity: 1 !important; + color: rgba(252, 165, 165, var(--tw-text-opacity)) !important; +} + +.text-red-400 { + --tw-text-opacity: 1 !important; + color: rgba(248, 113, 113, var(--tw-text-opacity)) !important; +} + +.text-red-500 { + --tw-text-opacity: 1 !important; + color: rgba(239, 68, 68, var(--tw-text-opacity)) !important; +} + +.text-red-600 { + --tw-text-opacity: 1 !important; + color: rgba(220, 38, 38, var(--tw-text-opacity)) !important; +} + +.text-red-700 { + --tw-text-opacity: 1 !important; + color: rgba(185, 28, 28, var(--tw-text-opacity)) !important; +} + +.text-red-800 { + --tw-text-opacity: 1 !important; + color: rgba(153, 27, 27, var(--tw-text-opacity)) !important; +} + +.text-red-900 { + --tw-text-opacity: 1 !important; + color: rgba(127, 29, 29, var(--tw-text-opacity)) !important; +} + +.text-yellow-50 { + --tw-text-opacity: 1 !important; + color: rgba(255, 251, 235, var(--tw-text-opacity)) !important; +} + +.text-yellow-100 { + --tw-text-opacity: 1 !important; + color: rgba(254, 243, 199, var(--tw-text-opacity)) !important; +} + +.text-yellow-200 { + --tw-text-opacity: 1 !important; + color: rgba(253, 230, 138, var(--tw-text-opacity)) !important; +} + +.text-yellow-300 { + --tw-text-opacity: 1 !important; + color: rgba(252, 211, 77, var(--tw-text-opacity)) !important; +} + +.text-yellow-400 { + --tw-text-opacity: 1 !important; + color: rgba(251, 191, 36, var(--tw-text-opacity)) !important; +} + +.text-yellow-500 { + --tw-text-opacity: 1 !important; + color: rgba(245, 158, 11, var(--tw-text-opacity)) !important; +} + +.text-yellow-600 { + --tw-text-opacity: 1 !important; + color: rgba(217, 119, 6, var(--tw-text-opacity)) !important; +} + +.text-yellow-700 { + --tw-text-opacity: 1 !important; + color: rgba(180, 83, 9, var(--tw-text-opacity)) !important; +} + +.text-yellow-800 { + --tw-text-opacity: 1 !important; + color: rgba(146, 64, 14, var(--tw-text-opacity)) !important; +} + +.text-yellow-900 { + --tw-text-opacity: 1 !important; + color: rgba(120, 53, 15, var(--tw-text-opacity)) !important; +} + +.text-green-50 { + --tw-text-opacity: 1 !important; + color: rgba(236, 253, 245, var(--tw-text-opacity)) !important; +} + +.text-green-100 { + --tw-text-opacity: 1 !important; + color: rgba(209, 250, 229, var(--tw-text-opacity)) !important; +} + +.text-green-200 { + --tw-text-opacity: 1 !important; + color: rgba(167, 243, 208, var(--tw-text-opacity)) !important; +} + +.text-green-300 { + --tw-text-opacity: 1 !important; + color: rgba(110, 231, 183, var(--tw-text-opacity)) !important; +} + +.text-green-400 { + --tw-text-opacity: 1 !important; + color: rgba(52, 211, 153, var(--tw-text-opacity)) !important; +} + +.text-green-500 { + --tw-text-opacity: 1 !important; + color: rgba(16, 185, 129, var(--tw-text-opacity)) !important; +} + +.text-green-600 { + --tw-text-opacity: 1 !important; + color: rgba(5, 150, 105, var(--tw-text-opacity)) !important; +} + +.text-green-700 { + --tw-text-opacity: 1 !important; + color: rgba(4, 120, 87, var(--tw-text-opacity)) !important; +} + +.text-green-800 { + --tw-text-opacity: 1 !important; + color: rgba(6, 95, 70, var(--tw-text-opacity)) !important; +} + +.text-green-900 { + --tw-text-opacity: 1 !important; + color: rgba(6, 78, 59, var(--tw-text-opacity)) !important; +} + +.text-blue-50 { + --tw-text-opacity: 1 !important; + color: rgba(239, 246, 255, var(--tw-text-opacity)) !important; +} + +.text-blue-100 { + --tw-text-opacity: 1 !important; + color: rgba(219, 234, 254, var(--tw-text-opacity)) !important; +} + +.text-blue-200 { + --tw-text-opacity: 1 !important; + color: rgba(191, 219, 254, var(--tw-text-opacity)) !important; +} + +.text-blue-300 { + --tw-text-opacity: 1 !important; + color: rgba(147, 197, 253, var(--tw-text-opacity)) !important; +} + +.text-blue-400 { + --tw-text-opacity: 1 !important; + color: rgba(96, 165, 250, var(--tw-text-opacity)) !important; +} + +.text-blue-500 { + --tw-text-opacity: 1 !important; + color: rgba(59, 130, 246, var(--tw-text-opacity)) !important; +} + +.text-blue-600 { + --tw-text-opacity: 1 !important; + color: rgba(37, 99, 235, var(--tw-text-opacity)) !important; +} + +.text-blue-700 { + --tw-text-opacity: 1 !important; + color: rgba(29, 78, 216, var(--tw-text-opacity)) !important; +} + +.text-blue-800 { + --tw-text-opacity: 1 !important; + color: rgba(30, 64, 175, var(--tw-text-opacity)) !important; +} + +.text-blue-900 { + --tw-text-opacity: 1 !important; + color: rgba(30, 58, 138, var(--tw-text-opacity)) !important; +} + +.text-indigo-50 { + --tw-text-opacity: 1 !important; + color: rgba(238, 242, 255, var(--tw-text-opacity)) !important; +} + +.text-indigo-100 { + --tw-text-opacity: 1 !important; + color: rgba(224, 231, 255, var(--tw-text-opacity)) !important; +} + +.text-indigo-200 { + --tw-text-opacity: 1 !important; + color: rgba(199, 210, 254, var(--tw-text-opacity)) !important; +} + +.text-indigo-300 { + --tw-text-opacity: 1 !important; + color: rgba(165, 180, 252, var(--tw-text-opacity)) !important; +} + +.text-indigo-400 { + --tw-text-opacity: 1 !important; + color: rgba(129, 140, 248, var(--tw-text-opacity)) !important; +} + +.text-indigo-500 { + --tw-text-opacity: 1 !important; + color: rgba(99, 102, 241, var(--tw-text-opacity)) !important; +} + +.text-indigo-600 { + --tw-text-opacity: 1 !important; + color: rgba(79, 70, 229, var(--tw-text-opacity)) !important; +} + +.text-indigo-700 { + --tw-text-opacity: 1 !important; + color: rgba(67, 56, 202, var(--tw-text-opacity)) !important; +} + +.text-indigo-800 { + --tw-text-opacity: 1 !important; + color: rgba(55, 48, 163, var(--tw-text-opacity)) !important; +} + +.text-indigo-900 { + --tw-text-opacity: 1 !important; + color: rgba(49, 46, 129, var(--tw-text-opacity)) !important; +} + +.text-purple-50 { + --tw-text-opacity: 1 !important; + color: rgba(245, 243, 255, var(--tw-text-opacity)) !important; +} + +.text-purple-100 { + --tw-text-opacity: 1 !important; + color: rgba(237, 233, 254, var(--tw-text-opacity)) !important; +} + +.text-purple-200 { + --tw-text-opacity: 1 !important; + color: rgba(221, 214, 254, var(--tw-text-opacity)) !important; +} + +.text-purple-300 { + --tw-text-opacity: 1 !important; + color: rgba(196, 181, 253, var(--tw-text-opacity)) !important; +} + +.text-purple-400 { + --tw-text-opacity: 1 !important; + color: rgba(167, 139, 250, var(--tw-text-opacity)) !important; +} + +.text-purple-500 { + --tw-text-opacity: 1 !important; + color: rgba(139, 92, 246, var(--tw-text-opacity)) !important; +} + +.text-purple-600 { + --tw-text-opacity: 1 !important; + color: rgba(124, 58, 237, var(--tw-text-opacity)) !important; +} + +.text-purple-700 { + --tw-text-opacity: 1 !important; + color: rgba(109, 40, 217, var(--tw-text-opacity)) !important; +} + +.text-purple-800 { + --tw-text-opacity: 1 !important; + color: rgba(91, 33, 182, var(--tw-text-opacity)) !important; +} + +.text-purple-900 { + --tw-text-opacity: 1 !important; + color: rgba(76, 29, 149, var(--tw-text-opacity)) !important; +} + +.text-pink-50 { + --tw-text-opacity: 1 !important; + color: rgba(253, 242, 248, var(--tw-text-opacity)) !important; +} + +.text-pink-100 { + --tw-text-opacity: 1 !important; + color: rgba(252, 231, 243, var(--tw-text-opacity)) !important; +} + +.text-pink-200 { + --tw-text-opacity: 1 !important; + color: rgba(251, 207, 232, var(--tw-text-opacity)) !important; +} + +.text-pink-300 { + --tw-text-opacity: 1 !important; + color: rgba(249, 168, 212, var(--tw-text-opacity)) !important; +} + +.text-pink-400 { + --tw-text-opacity: 1 !important; + color: rgba(244, 114, 182, var(--tw-text-opacity)) !important; +} + +.text-pink-500 { + --tw-text-opacity: 1 !important; + color: rgba(236, 72, 153, var(--tw-text-opacity)) !important; +} + +.text-pink-600 { + --tw-text-opacity: 1 !important; + color: rgba(219, 39, 119, var(--tw-text-opacity)) !important; +} + +.text-pink-700 { + --tw-text-opacity: 1 !important; + color: rgba(190, 24, 93, var(--tw-text-opacity)) !important; +} + +.text-pink-800 { + --tw-text-opacity: 1 !important; + color: rgba(157, 23, 77, var(--tw-text-opacity)) !important; +} + +.text-pink-900 { + --tw-text-opacity: 1 !important; + color: rgba(131, 24, 67, var(--tw-text-opacity)) !important; +} + +.text-primary { + --tw-text-opacity: 1 !important; + color: rgba(0, 49, 151, var(--tw-text-opacity)) !important; +} + +.group:hover .group-hover\:text-transparent { + color: transparent !important; +} + +.group:hover .group-hover\:text-current { + color: currentColor !important; +} + +.group:hover .group-hover\:text-black { + --tw-text-opacity: 1 !important; + color: rgba(0, 0, 0, var(--tw-text-opacity)) !important; +} + +.group:hover .group-hover\:text-white { + --tw-text-opacity: 1 !important; + color: rgba(255, 255, 255, var(--tw-text-opacity)) !important; +} + +.group:hover .group-hover\:text-gray-50 { + --tw-text-opacity: 1 !important; + color: rgba(249, 250, 251, var(--tw-text-opacity)) !important; +} + +.group:hover .group-hover\:text-gray-100 { + --tw-text-opacity: 1 !important; + color: rgba(243, 244, 246, var(--tw-text-opacity)) !important; +} + +.group:hover .group-hover\:text-gray-200 { + --tw-text-opacity: 1 !important; + color: rgba(229, 231, 235, var(--tw-text-opacity)) !important; +} + +.group:hover .group-hover\:text-gray-300 { + --tw-text-opacity: 1 !important; + color: rgba(209, 213, 219, var(--tw-text-opacity)) !important; +} + +.group:hover .group-hover\:text-gray-400 { + --tw-text-opacity: 1 !important; + color: rgba(156, 163, 175, var(--tw-text-opacity)) !important; +} + +.group:hover .group-hover\:text-gray-500 { + --tw-text-opacity: 1 !important; + color: rgba(107, 114, 128, var(--tw-text-opacity)) !important; +} + +.group:hover .group-hover\:text-gray-600 { + --tw-text-opacity: 1 !important; + color: rgba(75, 85, 99, var(--tw-text-opacity)) !important; +} + +.group:hover .group-hover\:text-gray-700 { + --tw-text-opacity: 1 !important; + color: rgba(55, 65, 81, var(--tw-text-opacity)) !important; +} + +.group:hover .group-hover\:text-gray-800 { + --tw-text-opacity: 1 !important; + color: rgba(31, 41, 55, var(--tw-text-opacity)) !important; +} + +.group:hover .group-hover\:text-gray-900 { + --tw-text-opacity: 1 !important; + color: rgba(17, 24, 39, var(--tw-text-opacity)) !important; +} + +.group:hover .group-hover\:text-red-50 { + --tw-text-opacity: 1 !important; + color: rgba(254, 242, 242, var(--tw-text-opacity)) !important; +} + +.group:hover .group-hover\:text-red-100 { + --tw-text-opacity: 1 !important; + color: rgba(254, 226, 226, var(--tw-text-opacity)) !important; +} + +.group:hover .group-hover\:text-red-200 { + --tw-text-opacity: 1 !important; + color: rgba(254, 202, 202, var(--tw-text-opacity)) !important; +} + +.group:hover .group-hover\:text-red-300 { + --tw-text-opacity: 1 !important; + color: rgba(252, 165, 165, var(--tw-text-opacity)) !important; +} + +.group:hover .group-hover\:text-red-400 { + --tw-text-opacity: 1 !important; + color: rgba(248, 113, 113, var(--tw-text-opacity)) !important; +} + +.group:hover .group-hover\:text-red-500 { + --tw-text-opacity: 1 !important; + color: rgba(239, 68, 68, var(--tw-text-opacity)) !important; +} + +.group:hover .group-hover\:text-red-600 { + --tw-text-opacity: 1 !important; + color: rgba(220, 38, 38, var(--tw-text-opacity)) !important; +} + +.group:hover .group-hover\:text-red-700 { + --tw-text-opacity: 1 !important; + color: rgba(185, 28, 28, var(--tw-text-opacity)) !important; +} + +.group:hover .group-hover\:text-red-800 { + --tw-text-opacity: 1 !important; + color: rgba(153, 27, 27, var(--tw-text-opacity)) !important; +} + +.group:hover .group-hover\:text-red-900 { + --tw-text-opacity: 1 !important; + color: rgba(127, 29, 29, var(--tw-text-opacity)) !important; +} + +.group:hover .group-hover\:text-yellow-50 { + --tw-text-opacity: 1 !important; + color: rgba(255, 251, 235, var(--tw-text-opacity)) !important; +} + +.group:hover .group-hover\:text-yellow-100 { + --tw-text-opacity: 1 !important; + color: rgba(254, 243, 199, var(--tw-text-opacity)) !important; +} + +.group:hover .group-hover\:text-yellow-200 { + --tw-text-opacity: 1 !important; + color: rgba(253, 230, 138, var(--tw-text-opacity)) !important; +} + +.group:hover .group-hover\:text-yellow-300 { + --tw-text-opacity: 1 !important; + color: rgba(252, 211, 77, var(--tw-text-opacity)) !important; +} + +.group:hover .group-hover\:text-yellow-400 { + --tw-text-opacity: 1 !important; + color: rgba(251, 191, 36, var(--tw-text-opacity)) !important; +} + +.group:hover .group-hover\:text-yellow-500 { + --tw-text-opacity: 1 !important; + color: rgba(245, 158, 11, var(--tw-text-opacity)) !important; +} + +.group:hover .group-hover\:text-yellow-600 { + --tw-text-opacity: 1 !important; + color: rgba(217, 119, 6, var(--tw-text-opacity)) !important; +} + +.group:hover .group-hover\:text-yellow-700 { + --tw-text-opacity: 1 !important; + color: rgba(180, 83, 9, var(--tw-text-opacity)) !important; +} + +.group:hover .group-hover\:text-yellow-800 { + --tw-text-opacity: 1 !important; + color: rgba(146, 64, 14, var(--tw-text-opacity)) !important; +} + +.group:hover .group-hover\:text-yellow-900 { + --tw-text-opacity: 1 !important; + color: rgba(120, 53, 15, var(--tw-text-opacity)) !important; +} + +.group:hover .group-hover\:text-green-50 { + --tw-text-opacity: 1 !important; + color: rgba(236, 253, 245, var(--tw-text-opacity)) !important; +} + +.group:hover .group-hover\:text-green-100 { + --tw-text-opacity: 1 !important; + color: rgba(209, 250, 229, var(--tw-text-opacity)) !important; +} + +.group:hover .group-hover\:text-green-200 { + --tw-text-opacity: 1 !important; + color: rgba(167, 243, 208, var(--tw-text-opacity)) !important; +} + +.group:hover .group-hover\:text-green-300 { + --tw-text-opacity: 1 !important; + color: rgba(110, 231, 183, var(--tw-text-opacity)) !important; +} + +.group:hover .group-hover\:text-green-400 { + --tw-text-opacity: 1 !important; + color: rgba(52, 211, 153, var(--tw-text-opacity)) !important; +} + +.group:hover .group-hover\:text-green-500 { + --tw-text-opacity: 1 !important; + color: rgba(16, 185, 129, var(--tw-text-opacity)) !important; +} + +.group:hover .group-hover\:text-green-600 { + --tw-text-opacity: 1 !important; + color: rgba(5, 150, 105, var(--tw-text-opacity)) !important; +} + +.group:hover .group-hover\:text-green-700 { + --tw-text-opacity: 1 !important; + color: rgba(4, 120, 87, var(--tw-text-opacity)) !important; +} + +.group:hover .group-hover\:text-green-800 { + --tw-text-opacity: 1 !important; + color: rgba(6, 95, 70, var(--tw-text-opacity)) !important; +} + +.group:hover .group-hover\:text-green-900 { + --tw-text-opacity: 1 !important; + color: rgba(6, 78, 59, var(--tw-text-opacity)) !important; +} + +.group:hover .group-hover\:text-blue-50 { + --tw-text-opacity: 1 !important; + color: rgba(239, 246, 255, var(--tw-text-opacity)) !important; +} + +.group:hover .group-hover\:text-blue-100 { + --tw-text-opacity: 1 !important; + color: rgba(219, 234, 254, var(--tw-text-opacity)) !important; +} + +.group:hover .group-hover\:text-blue-200 { + --tw-text-opacity: 1 !important; + color: rgba(191, 219, 254, var(--tw-text-opacity)) !important; +} + +.group:hover .group-hover\:text-blue-300 { + --tw-text-opacity: 1 !important; + color: rgba(147, 197, 253, var(--tw-text-opacity)) !important; +} + +.group:hover .group-hover\:text-blue-400 { + --tw-text-opacity: 1 !important; + color: rgba(96, 165, 250, var(--tw-text-opacity)) !important; +} + +.group:hover .group-hover\:text-blue-500 { + --tw-text-opacity: 1 !important; + color: rgba(59, 130, 246, var(--tw-text-opacity)) !important; +} + +.group:hover .group-hover\:text-blue-600 { + --tw-text-opacity: 1 !important; + color: rgba(37, 99, 235, var(--tw-text-opacity)) !important; +} + +.group:hover .group-hover\:text-blue-700 { + --tw-text-opacity: 1 !important; + color: rgba(29, 78, 216, var(--tw-text-opacity)) !important; +} + +.group:hover .group-hover\:text-blue-800 { + --tw-text-opacity: 1 !important; + color: rgba(30, 64, 175, var(--tw-text-opacity)) !important; +} + +.group:hover .group-hover\:text-blue-900 { + --tw-text-opacity: 1 !important; + color: rgba(30, 58, 138, var(--tw-text-opacity)) !important; +} + +.group:hover .group-hover\:text-indigo-50 { + --tw-text-opacity: 1 !important; + color: rgba(238, 242, 255, var(--tw-text-opacity)) !important; +} + +.group:hover .group-hover\:text-indigo-100 { + --tw-text-opacity: 1 !important; + color: rgba(224, 231, 255, var(--tw-text-opacity)) !important; +} + +.group:hover .group-hover\:text-indigo-200 { + --tw-text-opacity: 1 !important; + color: rgba(199, 210, 254, var(--tw-text-opacity)) !important; +} + +.group:hover .group-hover\:text-indigo-300 { + --tw-text-opacity: 1 !important; + color: rgba(165, 180, 252, var(--tw-text-opacity)) !important; +} + +.group:hover .group-hover\:text-indigo-400 { + --tw-text-opacity: 1 !important; + color: rgba(129, 140, 248, var(--tw-text-opacity)) !important; +} + +.group:hover .group-hover\:text-indigo-500 { + --tw-text-opacity: 1 !important; + color: rgba(99, 102, 241, var(--tw-text-opacity)) !important; +} + +.group:hover .group-hover\:text-indigo-600 { + --tw-text-opacity: 1 !important; + color: rgba(79, 70, 229, var(--tw-text-opacity)) !important; +} + +.group:hover .group-hover\:text-indigo-700 { + --tw-text-opacity: 1 !important; + color: rgba(67, 56, 202, var(--tw-text-opacity)) !important; +} + +.group:hover .group-hover\:text-indigo-800 { + --tw-text-opacity: 1 !important; + color: rgba(55, 48, 163, var(--tw-text-opacity)) !important; +} + +.group:hover .group-hover\:text-indigo-900 { + --tw-text-opacity: 1 !important; + color: rgba(49, 46, 129, var(--tw-text-opacity)) !important; +} + +.group:hover .group-hover\:text-purple-50 { + --tw-text-opacity: 1 !important; + color: rgba(245, 243, 255, var(--tw-text-opacity)) !important; +} + +.group:hover .group-hover\:text-purple-100 { + --tw-text-opacity: 1 !important; + color: rgba(237, 233, 254, var(--tw-text-opacity)) !important; +} + +.group:hover .group-hover\:text-purple-200 { + --tw-text-opacity: 1 !important; + color: rgba(221, 214, 254, var(--tw-text-opacity)) !important; +} + +.group:hover .group-hover\:text-purple-300 { + --tw-text-opacity: 1 !important; + color: rgba(196, 181, 253, var(--tw-text-opacity)) !important; +} + +.group:hover .group-hover\:text-purple-400 { + --tw-text-opacity: 1 !important; + color: rgba(167, 139, 250, var(--tw-text-opacity)) !important; +} + +.group:hover .group-hover\:text-purple-500 { + --tw-text-opacity: 1 !important; + color: rgba(139, 92, 246, var(--tw-text-opacity)) !important; +} + +.group:hover .group-hover\:text-purple-600 { + --tw-text-opacity: 1 !important; + color: rgba(124, 58, 237, var(--tw-text-opacity)) !important; +} + +.group:hover .group-hover\:text-purple-700 { + --tw-text-opacity: 1 !important; + color: rgba(109, 40, 217, var(--tw-text-opacity)) !important; +} + +.group:hover .group-hover\:text-purple-800 { + --tw-text-opacity: 1 !important; + color: rgba(91, 33, 182, var(--tw-text-opacity)) !important; +} + +.group:hover .group-hover\:text-purple-900 { + --tw-text-opacity: 1 !important; + color: rgba(76, 29, 149, var(--tw-text-opacity)) !important; +} + +.group:hover .group-hover\:text-pink-50 { + --tw-text-opacity: 1 !important; + color: rgba(253, 242, 248, var(--tw-text-opacity)) !important; +} + +.group:hover .group-hover\:text-pink-100 { + --tw-text-opacity: 1 !important; + color: rgba(252, 231, 243, var(--tw-text-opacity)) !important; +} + +.group:hover .group-hover\:text-pink-200 { + --tw-text-opacity: 1 !important; + color: rgba(251, 207, 232, var(--tw-text-opacity)) !important; +} + +.group:hover .group-hover\:text-pink-300 { + --tw-text-opacity: 1 !important; + color: rgba(249, 168, 212, var(--tw-text-opacity)) !important; +} + +.group:hover .group-hover\:text-pink-400 { + --tw-text-opacity: 1 !important; + color: rgba(244, 114, 182, var(--tw-text-opacity)) !important; +} + +.group:hover .group-hover\:text-pink-500 { + --tw-text-opacity: 1 !important; + color: rgba(236, 72, 153, var(--tw-text-opacity)) !important; +} + +.group:hover .group-hover\:text-pink-600 { + --tw-text-opacity: 1 !important; + color: rgba(219, 39, 119, var(--tw-text-opacity)) !important; +} + +.group:hover .group-hover\:text-pink-700 { + --tw-text-opacity: 1 !important; + color: rgba(190, 24, 93, var(--tw-text-opacity)) !important; +} + +.group:hover .group-hover\:text-pink-800 { + --tw-text-opacity: 1 !important; + color: rgba(157, 23, 77, var(--tw-text-opacity)) !important; +} + +.group:hover .group-hover\:text-pink-900 { + --tw-text-opacity: 1 !important; + color: rgba(131, 24, 67, var(--tw-text-opacity)) !important; +} + +.group:hover .group-hover\:text-primary { + --tw-text-opacity: 1 !important; + color: rgba(0, 49, 151, var(--tw-text-opacity)) !important; +} + +.focus-within\:text-transparent:focus-within { + color: transparent !important; +} + +.focus-within\:text-current:focus-within { + color: currentColor !important; +} + +.focus-within\:text-black:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(0, 0, 0, var(--tw-text-opacity)) !important; +} + +.focus-within\:text-white:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(255, 255, 255, var(--tw-text-opacity)) !important; +} + +.focus-within\:text-gray-50:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(249, 250, 251, var(--tw-text-opacity)) !important; +} + +.focus-within\:text-gray-100:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(243, 244, 246, var(--tw-text-opacity)) !important; +} + +.focus-within\:text-gray-200:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(229, 231, 235, var(--tw-text-opacity)) !important; +} + +.focus-within\:text-gray-300:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(209, 213, 219, var(--tw-text-opacity)) !important; +} + +.focus-within\:text-gray-400:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(156, 163, 175, var(--tw-text-opacity)) !important; +} + +.focus-within\:text-gray-500:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(107, 114, 128, var(--tw-text-opacity)) !important; +} + +.focus-within\:text-gray-600:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(75, 85, 99, var(--tw-text-opacity)) !important; +} + +.focus-within\:text-gray-700:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(55, 65, 81, var(--tw-text-opacity)) !important; +} + +.focus-within\:text-gray-800:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(31, 41, 55, var(--tw-text-opacity)) !important; +} + +.focus-within\:text-gray-900:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(17, 24, 39, var(--tw-text-opacity)) !important; +} + +.focus-within\:text-red-50:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(254, 242, 242, var(--tw-text-opacity)) !important; +} + +.focus-within\:text-red-100:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(254, 226, 226, var(--tw-text-opacity)) !important; +} + +.focus-within\:text-red-200:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(254, 202, 202, var(--tw-text-opacity)) !important; +} + +.focus-within\:text-red-300:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(252, 165, 165, var(--tw-text-opacity)) !important; +} + +.focus-within\:text-red-400:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(248, 113, 113, var(--tw-text-opacity)) !important; +} + +.focus-within\:text-red-500:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(239, 68, 68, var(--tw-text-opacity)) !important; +} + +.focus-within\:text-red-600:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(220, 38, 38, var(--tw-text-opacity)) !important; +} + +.focus-within\:text-red-700:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(185, 28, 28, var(--tw-text-opacity)) !important; +} + +.focus-within\:text-red-800:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(153, 27, 27, var(--tw-text-opacity)) !important; +} + +.focus-within\:text-red-900:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(127, 29, 29, var(--tw-text-opacity)) !important; +} + +.focus-within\:text-yellow-50:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(255, 251, 235, var(--tw-text-opacity)) !important; +} + +.focus-within\:text-yellow-100:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(254, 243, 199, var(--tw-text-opacity)) !important; +} + +.focus-within\:text-yellow-200:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(253, 230, 138, var(--tw-text-opacity)) !important; +} + +.focus-within\:text-yellow-300:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(252, 211, 77, var(--tw-text-opacity)) !important; +} + +.focus-within\:text-yellow-400:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(251, 191, 36, var(--tw-text-opacity)) !important; +} + +.focus-within\:text-yellow-500:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(245, 158, 11, var(--tw-text-opacity)) !important; +} + +.focus-within\:text-yellow-600:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(217, 119, 6, var(--tw-text-opacity)) !important; +} + +.focus-within\:text-yellow-700:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(180, 83, 9, var(--tw-text-opacity)) !important; +} + +.focus-within\:text-yellow-800:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(146, 64, 14, var(--tw-text-opacity)) !important; +} + +.focus-within\:text-yellow-900:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(120, 53, 15, var(--tw-text-opacity)) !important; +} + +.focus-within\:text-green-50:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(236, 253, 245, var(--tw-text-opacity)) !important; +} + +.focus-within\:text-green-100:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(209, 250, 229, var(--tw-text-opacity)) !important; +} + +.focus-within\:text-green-200:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(167, 243, 208, var(--tw-text-opacity)) !important; +} + +.focus-within\:text-green-300:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(110, 231, 183, var(--tw-text-opacity)) !important; +} + +.focus-within\:text-green-400:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(52, 211, 153, var(--tw-text-opacity)) !important; +} + +.focus-within\:text-green-500:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(16, 185, 129, var(--tw-text-opacity)) !important; +} + +.focus-within\:text-green-600:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(5, 150, 105, var(--tw-text-opacity)) !important; +} + +.focus-within\:text-green-700:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(4, 120, 87, var(--tw-text-opacity)) !important; +} + +.focus-within\:text-green-800:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(6, 95, 70, var(--tw-text-opacity)) !important; +} + +.focus-within\:text-green-900:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(6, 78, 59, var(--tw-text-opacity)) !important; +} + +.focus-within\:text-blue-50:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(239, 246, 255, var(--tw-text-opacity)) !important; +} + +.focus-within\:text-blue-100:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(219, 234, 254, var(--tw-text-opacity)) !important; +} + +.focus-within\:text-blue-200:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(191, 219, 254, var(--tw-text-opacity)) !important; +} + +.focus-within\:text-blue-300:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(147, 197, 253, var(--tw-text-opacity)) !important; +} + +.focus-within\:text-blue-400:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(96, 165, 250, var(--tw-text-opacity)) !important; +} + +.focus-within\:text-blue-500:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(59, 130, 246, var(--tw-text-opacity)) !important; +} + +.focus-within\:text-blue-600:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(37, 99, 235, var(--tw-text-opacity)) !important; +} + +.focus-within\:text-blue-700:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(29, 78, 216, var(--tw-text-opacity)) !important; +} + +.focus-within\:text-blue-800:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(30, 64, 175, var(--tw-text-opacity)) !important; +} + +.focus-within\:text-blue-900:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(30, 58, 138, var(--tw-text-opacity)) !important; +} + +.focus-within\:text-indigo-50:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(238, 242, 255, var(--tw-text-opacity)) !important; +} + +.focus-within\:text-indigo-100:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(224, 231, 255, var(--tw-text-opacity)) !important; +} + +.focus-within\:text-indigo-200:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(199, 210, 254, var(--tw-text-opacity)) !important; +} + +.focus-within\:text-indigo-300:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(165, 180, 252, var(--tw-text-opacity)) !important; +} + +.focus-within\:text-indigo-400:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(129, 140, 248, var(--tw-text-opacity)) !important; +} + +.focus-within\:text-indigo-500:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(99, 102, 241, var(--tw-text-opacity)) !important; +} + +.focus-within\:text-indigo-600:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(79, 70, 229, var(--tw-text-opacity)) !important; +} + +.focus-within\:text-indigo-700:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(67, 56, 202, var(--tw-text-opacity)) !important; +} + +.focus-within\:text-indigo-800:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(55, 48, 163, var(--tw-text-opacity)) !important; +} + +.focus-within\:text-indigo-900:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(49, 46, 129, var(--tw-text-opacity)) !important; +} + +.focus-within\:text-purple-50:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(245, 243, 255, var(--tw-text-opacity)) !important; +} + +.focus-within\:text-purple-100:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(237, 233, 254, var(--tw-text-opacity)) !important; +} + +.focus-within\:text-purple-200:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(221, 214, 254, var(--tw-text-opacity)) !important; +} + +.focus-within\:text-purple-300:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(196, 181, 253, var(--tw-text-opacity)) !important; +} + +.focus-within\:text-purple-400:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(167, 139, 250, var(--tw-text-opacity)) !important; +} + +.focus-within\:text-purple-500:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(139, 92, 246, var(--tw-text-opacity)) !important; +} + +.focus-within\:text-purple-600:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(124, 58, 237, var(--tw-text-opacity)) !important; +} + +.focus-within\:text-purple-700:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(109, 40, 217, var(--tw-text-opacity)) !important; +} + +.focus-within\:text-purple-800:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(91, 33, 182, var(--tw-text-opacity)) !important; +} + +.focus-within\:text-purple-900:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(76, 29, 149, var(--tw-text-opacity)) !important; +} + +.focus-within\:text-pink-50:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(253, 242, 248, var(--tw-text-opacity)) !important; +} + +.focus-within\:text-pink-100:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(252, 231, 243, var(--tw-text-opacity)) !important; +} + +.focus-within\:text-pink-200:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(251, 207, 232, var(--tw-text-opacity)) !important; +} + +.focus-within\:text-pink-300:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(249, 168, 212, var(--tw-text-opacity)) !important; +} + +.focus-within\:text-pink-400:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(244, 114, 182, var(--tw-text-opacity)) !important; +} + +.focus-within\:text-pink-500:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(236, 72, 153, var(--tw-text-opacity)) !important; +} + +.focus-within\:text-pink-600:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(219, 39, 119, var(--tw-text-opacity)) !important; +} + +.focus-within\:text-pink-700:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(190, 24, 93, var(--tw-text-opacity)) !important; +} + +.focus-within\:text-pink-800:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(157, 23, 77, var(--tw-text-opacity)) !important; +} + +.focus-within\:text-pink-900:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(131, 24, 67, var(--tw-text-opacity)) !important; +} + +.focus-within\:text-primary:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(0, 49, 151, var(--tw-text-opacity)) !important; +} + +.hover\:text-transparent:hover { + color: transparent !important; +} + +.hover\:text-current:hover { + color: currentColor !important; +} + +.hover\:text-black:hover { + --tw-text-opacity: 1 !important; + color: rgba(0, 0, 0, var(--tw-text-opacity)) !important; +} + +.hover\:text-white:hover { + --tw-text-opacity: 1 !important; + color: rgba(255, 255, 255, var(--tw-text-opacity)) !important; +} + +.hover\:text-gray-50:hover { + --tw-text-opacity: 1 !important; + color: rgba(249, 250, 251, var(--tw-text-opacity)) !important; +} + +.hover\:text-gray-100:hover { + --tw-text-opacity: 1 !important; + color: rgba(243, 244, 246, var(--tw-text-opacity)) !important; +} + +.hover\:text-gray-200:hover { + --tw-text-opacity: 1 !important; + color: rgba(229, 231, 235, var(--tw-text-opacity)) !important; +} + +.hover\:text-gray-300:hover { + --tw-text-opacity: 1 !important; + color: rgba(209, 213, 219, var(--tw-text-opacity)) !important; +} + +.hover\:text-gray-400:hover { + --tw-text-opacity: 1 !important; + color: rgba(156, 163, 175, var(--tw-text-opacity)) !important; +} + +.hover\:text-gray-500:hover { + --tw-text-opacity: 1 !important; + color: rgba(107, 114, 128, var(--tw-text-opacity)) !important; +} + +.hover\:text-gray-600:hover { + --tw-text-opacity: 1 !important; + color: rgba(75, 85, 99, var(--tw-text-opacity)) !important; +} + +.hover\:text-gray-700:hover { + --tw-text-opacity: 1 !important; + color: rgba(55, 65, 81, var(--tw-text-opacity)) !important; +} + +.hover\:text-gray-800:hover { + --tw-text-opacity: 1 !important; + color: rgba(31, 41, 55, var(--tw-text-opacity)) !important; +} + +.hover\:text-gray-900:hover { + --tw-text-opacity: 1 !important; + color: rgba(17, 24, 39, var(--tw-text-opacity)) !important; +} + +.hover\:text-red-50:hover { + --tw-text-opacity: 1 !important; + color: rgba(254, 242, 242, var(--tw-text-opacity)) !important; +} + +.hover\:text-red-100:hover { + --tw-text-opacity: 1 !important; + color: rgba(254, 226, 226, var(--tw-text-opacity)) !important; +} + +.hover\:text-red-200:hover { + --tw-text-opacity: 1 !important; + color: rgba(254, 202, 202, var(--tw-text-opacity)) !important; +} + +.hover\:text-red-300:hover { + --tw-text-opacity: 1 !important; + color: rgba(252, 165, 165, var(--tw-text-opacity)) !important; +} + +.hover\:text-red-400:hover { + --tw-text-opacity: 1 !important; + color: rgba(248, 113, 113, var(--tw-text-opacity)) !important; +} + +.hover\:text-red-500:hover { + --tw-text-opacity: 1 !important; + color: rgba(239, 68, 68, var(--tw-text-opacity)) !important; +} + +.hover\:text-red-600:hover { + --tw-text-opacity: 1 !important; + color: rgba(220, 38, 38, var(--tw-text-opacity)) !important; +} + +.hover\:text-red-700:hover { + --tw-text-opacity: 1 !important; + color: rgba(185, 28, 28, var(--tw-text-opacity)) !important; +} + +.hover\:text-red-800:hover { + --tw-text-opacity: 1 !important; + color: rgba(153, 27, 27, var(--tw-text-opacity)) !important; +} + +.hover\:text-red-900:hover { + --tw-text-opacity: 1 !important; + color: rgba(127, 29, 29, var(--tw-text-opacity)) !important; +} + +.hover\:text-yellow-50:hover { + --tw-text-opacity: 1 !important; + color: rgba(255, 251, 235, var(--tw-text-opacity)) !important; +} + +.hover\:text-yellow-100:hover { + --tw-text-opacity: 1 !important; + color: rgba(254, 243, 199, var(--tw-text-opacity)) !important; +} + +.hover\:text-yellow-200:hover { + --tw-text-opacity: 1 !important; + color: rgba(253, 230, 138, var(--tw-text-opacity)) !important; +} + +.hover\:text-yellow-300:hover { + --tw-text-opacity: 1 !important; + color: rgba(252, 211, 77, var(--tw-text-opacity)) !important; +} + +.hover\:text-yellow-400:hover { + --tw-text-opacity: 1 !important; + color: rgba(251, 191, 36, var(--tw-text-opacity)) !important; +} + +.hover\:text-yellow-500:hover { + --tw-text-opacity: 1 !important; + color: rgba(245, 158, 11, var(--tw-text-opacity)) !important; +} + +.hover\:text-yellow-600:hover { + --tw-text-opacity: 1 !important; + color: rgba(217, 119, 6, var(--tw-text-opacity)) !important; +} + +.hover\:text-yellow-700:hover { + --tw-text-opacity: 1 !important; + color: rgba(180, 83, 9, var(--tw-text-opacity)) !important; +} + +.hover\:text-yellow-800:hover { + --tw-text-opacity: 1 !important; + color: rgba(146, 64, 14, var(--tw-text-opacity)) !important; +} + +.hover\:text-yellow-900:hover { + --tw-text-opacity: 1 !important; + color: rgba(120, 53, 15, var(--tw-text-opacity)) !important; +} + +.hover\:text-green-50:hover { + --tw-text-opacity: 1 !important; + color: rgba(236, 253, 245, var(--tw-text-opacity)) !important; +} + +.hover\:text-green-100:hover { + --tw-text-opacity: 1 !important; + color: rgba(209, 250, 229, var(--tw-text-opacity)) !important; +} + +.hover\:text-green-200:hover { + --tw-text-opacity: 1 !important; + color: rgba(167, 243, 208, var(--tw-text-opacity)) !important; +} + +.hover\:text-green-300:hover { + --tw-text-opacity: 1 !important; + color: rgba(110, 231, 183, var(--tw-text-opacity)) !important; +} + +.hover\:text-green-400:hover { + --tw-text-opacity: 1 !important; + color: rgba(52, 211, 153, var(--tw-text-opacity)) !important; +} + +.hover\:text-green-500:hover { + --tw-text-opacity: 1 !important; + color: rgba(16, 185, 129, var(--tw-text-opacity)) !important; +} + +.hover\:text-green-600:hover { + --tw-text-opacity: 1 !important; + color: rgba(5, 150, 105, var(--tw-text-opacity)) !important; +} + +.hover\:text-green-700:hover { + --tw-text-opacity: 1 !important; + color: rgba(4, 120, 87, var(--tw-text-opacity)) !important; +} + +.hover\:text-green-800:hover { + --tw-text-opacity: 1 !important; + color: rgba(6, 95, 70, var(--tw-text-opacity)) !important; +} + +.hover\:text-green-900:hover { + --tw-text-opacity: 1 !important; + color: rgba(6, 78, 59, var(--tw-text-opacity)) !important; +} + +.hover\:text-blue-50:hover { + --tw-text-opacity: 1 !important; + color: rgba(239, 246, 255, var(--tw-text-opacity)) !important; +} + +.hover\:text-blue-100:hover { + --tw-text-opacity: 1 !important; + color: rgba(219, 234, 254, var(--tw-text-opacity)) !important; +} + +.hover\:text-blue-200:hover { + --tw-text-opacity: 1 !important; + color: rgba(191, 219, 254, var(--tw-text-opacity)) !important; +} + +.hover\:text-blue-300:hover { + --tw-text-opacity: 1 !important; + color: rgba(147, 197, 253, var(--tw-text-opacity)) !important; +} + +.hover\:text-blue-400:hover { + --tw-text-opacity: 1 !important; + color: rgba(96, 165, 250, var(--tw-text-opacity)) !important; +} + +.hover\:text-blue-500:hover { + --tw-text-opacity: 1 !important; + color: rgba(59, 130, 246, var(--tw-text-opacity)) !important; +} + +.hover\:text-blue-600:hover { + --tw-text-opacity: 1 !important; + color: rgba(37, 99, 235, var(--tw-text-opacity)) !important; +} + +.hover\:text-blue-700:hover { + --tw-text-opacity: 1 !important; + color: rgba(29, 78, 216, var(--tw-text-opacity)) !important; +} + +.hover\:text-blue-800:hover { + --tw-text-opacity: 1 !important; + color: rgba(30, 64, 175, var(--tw-text-opacity)) !important; +} + +.hover\:text-blue-900:hover { + --tw-text-opacity: 1 !important; + color: rgba(30, 58, 138, var(--tw-text-opacity)) !important; +} + +.hover\:text-indigo-50:hover { + --tw-text-opacity: 1 !important; + color: rgba(238, 242, 255, var(--tw-text-opacity)) !important; +} + +.hover\:text-indigo-100:hover { + --tw-text-opacity: 1 !important; + color: rgba(224, 231, 255, var(--tw-text-opacity)) !important; +} + +.hover\:text-indigo-200:hover { + --tw-text-opacity: 1 !important; + color: rgba(199, 210, 254, var(--tw-text-opacity)) !important; +} + +.hover\:text-indigo-300:hover { + --tw-text-opacity: 1 !important; + color: rgba(165, 180, 252, var(--tw-text-opacity)) !important; +} + +.hover\:text-indigo-400:hover { + --tw-text-opacity: 1 !important; + color: rgba(129, 140, 248, var(--tw-text-opacity)) !important; +} + +.hover\:text-indigo-500:hover { + --tw-text-opacity: 1 !important; + color: rgba(99, 102, 241, var(--tw-text-opacity)) !important; +} + +.hover\:text-indigo-600:hover { + --tw-text-opacity: 1 !important; + color: rgba(79, 70, 229, var(--tw-text-opacity)) !important; +} + +.hover\:text-indigo-700:hover { + --tw-text-opacity: 1 !important; + color: rgba(67, 56, 202, var(--tw-text-opacity)) !important; +} + +.hover\:text-indigo-800:hover { + --tw-text-opacity: 1 !important; + color: rgba(55, 48, 163, var(--tw-text-opacity)) !important; +} + +.hover\:text-indigo-900:hover { + --tw-text-opacity: 1 !important; + color: rgba(49, 46, 129, var(--tw-text-opacity)) !important; +} + +.hover\:text-purple-50:hover { + --tw-text-opacity: 1 !important; + color: rgba(245, 243, 255, var(--tw-text-opacity)) !important; +} + +.hover\:text-purple-100:hover { + --tw-text-opacity: 1 !important; + color: rgba(237, 233, 254, var(--tw-text-opacity)) !important; +} + +.hover\:text-purple-200:hover { + --tw-text-opacity: 1 !important; + color: rgba(221, 214, 254, var(--tw-text-opacity)) !important; +} + +.hover\:text-purple-300:hover { + --tw-text-opacity: 1 !important; + color: rgba(196, 181, 253, var(--tw-text-opacity)) !important; +} + +.hover\:text-purple-400:hover { + --tw-text-opacity: 1 !important; + color: rgba(167, 139, 250, var(--tw-text-opacity)) !important; +} + +.hover\:text-purple-500:hover { + --tw-text-opacity: 1 !important; + color: rgba(139, 92, 246, var(--tw-text-opacity)) !important; +} + +.hover\:text-purple-600:hover { + --tw-text-opacity: 1 !important; + color: rgba(124, 58, 237, var(--tw-text-opacity)) !important; +} + +.hover\:text-purple-700:hover { + --tw-text-opacity: 1 !important; + color: rgba(109, 40, 217, var(--tw-text-opacity)) !important; +} + +.hover\:text-purple-800:hover { + --tw-text-opacity: 1 !important; + color: rgba(91, 33, 182, var(--tw-text-opacity)) !important; +} + +.hover\:text-purple-900:hover { + --tw-text-opacity: 1 !important; + color: rgba(76, 29, 149, var(--tw-text-opacity)) !important; +} + +.hover\:text-pink-50:hover { + --tw-text-opacity: 1 !important; + color: rgba(253, 242, 248, var(--tw-text-opacity)) !important; +} + +.hover\:text-pink-100:hover { + --tw-text-opacity: 1 !important; + color: rgba(252, 231, 243, var(--tw-text-opacity)) !important; +} + +.hover\:text-pink-200:hover { + --tw-text-opacity: 1 !important; + color: rgba(251, 207, 232, var(--tw-text-opacity)) !important; +} + +.hover\:text-pink-300:hover { + --tw-text-opacity: 1 !important; + color: rgba(249, 168, 212, var(--tw-text-opacity)) !important; +} + +.hover\:text-pink-400:hover { + --tw-text-opacity: 1 !important; + color: rgba(244, 114, 182, var(--tw-text-opacity)) !important; +} + +.hover\:text-pink-500:hover { + --tw-text-opacity: 1 !important; + color: rgba(236, 72, 153, var(--tw-text-opacity)) !important; +} + +.hover\:text-pink-600:hover { + --tw-text-opacity: 1 !important; + color: rgba(219, 39, 119, var(--tw-text-opacity)) !important; +} + +.hover\:text-pink-700:hover { + --tw-text-opacity: 1 !important; + color: rgba(190, 24, 93, var(--tw-text-opacity)) !important; +} + +.hover\:text-pink-800:hover { + --tw-text-opacity: 1 !important; + color: rgba(157, 23, 77, var(--tw-text-opacity)) !important; +} + +.hover\:text-pink-900:hover { + --tw-text-opacity: 1 !important; + color: rgba(131, 24, 67, var(--tw-text-opacity)) !important; +} + +.hover\:text-primary:hover { + --tw-text-opacity: 1 !important; + color: rgba(0, 49, 151, var(--tw-text-opacity)) !important; +} + +.focus\:text-transparent:focus { + color: transparent !important; +} + +.focus\:text-current:focus { + color: currentColor !important; +} + +.focus\:text-black:focus { + --tw-text-opacity: 1 !important; + color: rgba(0, 0, 0, var(--tw-text-opacity)) !important; +} + +.focus\:text-white:focus { + --tw-text-opacity: 1 !important; + color: rgba(255, 255, 255, var(--tw-text-opacity)) !important; +} + +.focus\:text-gray-50:focus { + --tw-text-opacity: 1 !important; + color: rgba(249, 250, 251, var(--tw-text-opacity)) !important; +} + +.focus\:text-gray-100:focus { + --tw-text-opacity: 1 !important; + color: rgba(243, 244, 246, var(--tw-text-opacity)) !important; +} + +.focus\:text-gray-200:focus { + --tw-text-opacity: 1 !important; + color: rgba(229, 231, 235, var(--tw-text-opacity)) !important; +} + +.focus\:text-gray-300:focus { + --tw-text-opacity: 1 !important; + color: rgba(209, 213, 219, var(--tw-text-opacity)) !important; +} + +.focus\:text-gray-400:focus { + --tw-text-opacity: 1 !important; + color: rgba(156, 163, 175, var(--tw-text-opacity)) !important; +} + +.focus\:text-gray-500:focus { + --tw-text-opacity: 1 !important; + color: rgba(107, 114, 128, var(--tw-text-opacity)) !important; +} + +.focus\:text-gray-600:focus { + --tw-text-opacity: 1 !important; + color: rgba(75, 85, 99, var(--tw-text-opacity)) !important; +} + +.focus\:text-gray-700:focus { + --tw-text-opacity: 1 !important; + color: rgba(55, 65, 81, var(--tw-text-opacity)) !important; +} + +.focus\:text-gray-800:focus { + --tw-text-opacity: 1 !important; + color: rgba(31, 41, 55, var(--tw-text-opacity)) !important; +} + +.focus\:text-gray-900:focus { + --tw-text-opacity: 1 !important; + color: rgba(17, 24, 39, var(--tw-text-opacity)) !important; +} + +.focus\:text-red-50:focus { + --tw-text-opacity: 1 !important; + color: rgba(254, 242, 242, var(--tw-text-opacity)) !important; +} + +.focus\:text-red-100:focus { + --tw-text-opacity: 1 !important; + color: rgba(254, 226, 226, var(--tw-text-opacity)) !important; +} + +.focus\:text-red-200:focus { + --tw-text-opacity: 1 !important; + color: rgba(254, 202, 202, var(--tw-text-opacity)) !important; +} + +.focus\:text-red-300:focus { + --tw-text-opacity: 1 !important; + color: rgba(252, 165, 165, var(--tw-text-opacity)) !important; +} + +.focus\:text-red-400:focus { + --tw-text-opacity: 1 !important; + color: rgba(248, 113, 113, var(--tw-text-opacity)) !important; +} + +.focus\:text-red-500:focus { + --tw-text-opacity: 1 !important; + color: rgba(239, 68, 68, var(--tw-text-opacity)) !important; +} + +.focus\:text-red-600:focus { + --tw-text-opacity: 1 !important; + color: rgba(220, 38, 38, var(--tw-text-opacity)) !important; +} + +.focus\:text-red-700:focus { + --tw-text-opacity: 1 !important; + color: rgba(185, 28, 28, var(--tw-text-opacity)) !important; +} + +.focus\:text-red-800:focus { + --tw-text-opacity: 1 !important; + color: rgba(153, 27, 27, var(--tw-text-opacity)) !important; +} + +.focus\:text-red-900:focus { + --tw-text-opacity: 1 !important; + color: rgba(127, 29, 29, var(--tw-text-opacity)) !important; +} + +.focus\:text-yellow-50:focus { + --tw-text-opacity: 1 !important; + color: rgba(255, 251, 235, var(--tw-text-opacity)) !important; +} + +.focus\:text-yellow-100:focus { + --tw-text-opacity: 1 !important; + color: rgba(254, 243, 199, var(--tw-text-opacity)) !important; +} + +.focus\:text-yellow-200:focus { + --tw-text-opacity: 1 !important; + color: rgba(253, 230, 138, var(--tw-text-opacity)) !important; +} + +.focus\:text-yellow-300:focus { + --tw-text-opacity: 1 !important; + color: rgba(252, 211, 77, var(--tw-text-opacity)) !important; +} + +.focus\:text-yellow-400:focus { + --tw-text-opacity: 1 !important; + color: rgba(251, 191, 36, var(--tw-text-opacity)) !important; +} + +.focus\:text-yellow-500:focus { + --tw-text-opacity: 1 !important; + color: rgba(245, 158, 11, var(--tw-text-opacity)) !important; +} + +.focus\:text-yellow-600:focus { + --tw-text-opacity: 1 !important; + color: rgba(217, 119, 6, var(--tw-text-opacity)) !important; +} + +.focus\:text-yellow-700:focus { + --tw-text-opacity: 1 !important; + color: rgba(180, 83, 9, var(--tw-text-opacity)) !important; +} + +.focus\:text-yellow-800:focus { + --tw-text-opacity: 1 !important; + color: rgba(146, 64, 14, var(--tw-text-opacity)) !important; +} + +.focus\:text-yellow-900:focus { + --tw-text-opacity: 1 !important; + color: rgba(120, 53, 15, var(--tw-text-opacity)) !important; +} + +.focus\:text-green-50:focus { + --tw-text-opacity: 1 !important; + color: rgba(236, 253, 245, var(--tw-text-opacity)) !important; +} + +.focus\:text-green-100:focus { + --tw-text-opacity: 1 !important; + color: rgba(209, 250, 229, var(--tw-text-opacity)) !important; +} + +.focus\:text-green-200:focus { + --tw-text-opacity: 1 !important; + color: rgba(167, 243, 208, var(--tw-text-opacity)) !important; +} + +.focus\:text-green-300:focus { + --tw-text-opacity: 1 !important; + color: rgba(110, 231, 183, var(--tw-text-opacity)) !important; +} + +.focus\:text-green-400:focus { + --tw-text-opacity: 1 !important; + color: rgba(52, 211, 153, var(--tw-text-opacity)) !important; +} + +.focus\:text-green-500:focus { + --tw-text-opacity: 1 !important; + color: rgba(16, 185, 129, var(--tw-text-opacity)) !important; +} + +.focus\:text-green-600:focus { + --tw-text-opacity: 1 !important; + color: rgba(5, 150, 105, var(--tw-text-opacity)) !important; +} + +.focus\:text-green-700:focus { + --tw-text-opacity: 1 !important; + color: rgba(4, 120, 87, var(--tw-text-opacity)) !important; +} + +.focus\:text-green-800:focus { + --tw-text-opacity: 1 !important; + color: rgba(6, 95, 70, var(--tw-text-opacity)) !important; +} + +.focus\:text-green-900:focus { + --tw-text-opacity: 1 !important; + color: rgba(6, 78, 59, var(--tw-text-opacity)) !important; +} + +.focus\:text-blue-50:focus { + --tw-text-opacity: 1 !important; + color: rgba(239, 246, 255, var(--tw-text-opacity)) !important; +} + +.focus\:text-blue-100:focus { + --tw-text-opacity: 1 !important; + color: rgba(219, 234, 254, var(--tw-text-opacity)) !important; +} + +.focus\:text-blue-200:focus { + --tw-text-opacity: 1 !important; + color: rgba(191, 219, 254, var(--tw-text-opacity)) !important; +} + +.focus\:text-blue-300:focus { + --tw-text-opacity: 1 !important; + color: rgba(147, 197, 253, var(--tw-text-opacity)) !important; +} + +.focus\:text-blue-400:focus { + --tw-text-opacity: 1 !important; + color: rgba(96, 165, 250, var(--tw-text-opacity)) !important; +} + +.focus\:text-blue-500:focus { + --tw-text-opacity: 1 !important; + color: rgba(59, 130, 246, var(--tw-text-opacity)) !important; +} + +.focus\:text-blue-600:focus { + --tw-text-opacity: 1 !important; + color: rgba(37, 99, 235, var(--tw-text-opacity)) !important; +} + +.focus\:text-blue-700:focus { + --tw-text-opacity: 1 !important; + color: rgba(29, 78, 216, var(--tw-text-opacity)) !important; +} + +.focus\:text-blue-800:focus { + --tw-text-opacity: 1 !important; + color: rgba(30, 64, 175, var(--tw-text-opacity)) !important; +} + +.focus\:text-blue-900:focus { + --tw-text-opacity: 1 !important; + color: rgba(30, 58, 138, var(--tw-text-opacity)) !important; +} + +.focus\:text-indigo-50:focus { + --tw-text-opacity: 1 !important; + color: rgba(238, 242, 255, var(--tw-text-opacity)) !important; +} + +.focus\:text-indigo-100:focus { + --tw-text-opacity: 1 !important; + color: rgba(224, 231, 255, var(--tw-text-opacity)) !important; +} + +.focus\:text-indigo-200:focus { + --tw-text-opacity: 1 !important; + color: rgba(199, 210, 254, var(--tw-text-opacity)) !important; +} + +.focus\:text-indigo-300:focus { + --tw-text-opacity: 1 !important; + color: rgba(165, 180, 252, var(--tw-text-opacity)) !important; +} + +.focus\:text-indigo-400:focus { + --tw-text-opacity: 1 !important; + color: rgba(129, 140, 248, var(--tw-text-opacity)) !important; +} + +.focus\:text-indigo-500:focus { + --tw-text-opacity: 1 !important; + color: rgba(99, 102, 241, var(--tw-text-opacity)) !important; +} + +.focus\:text-indigo-600:focus { + --tw-text-opacity: 1 !important; + color: rgba(79, 70, 229, var(--tw-text-opacity)) !important; +} + +.focus\:text-indigo-700:focus { + --tw-text-opacity: 1 !important; + color: rgba(67, 56, 202, var(--tw-text-opacity)) !important; +} + +.focus\:text-indigo-800:focus { + --tw-text-opacity: 1 !important; + color: rgba(55, 48, 163, var(--tw-text-opacity)) !important; +} + +.focus\:text-indigo-900:focus { + --tw-text-opacity: 1 !important; + color: rgba(49, 46, 129, var(--tw-text-opacity)) !important; +} + +.focus\:text-purple-50:focus { + --tw-text-opacity: 1 !important; + color: rgba(245, 243, 255, var(--tw-text-opacity)) !important; +} + +.focus\:text-purple-100:focus { + --tw-text-opacity: 1 !important; + color: rgba(237, 233, 254, var(--tw-text-opacity)) !important; +} + +.focus\:text-purple-200:focus { + --tw-text-opacity: 1 !important; + color: rgba(221, 214, 254, var(--tw-text-opacity)) !important; +} + +.focus\:text-purple-300:focus { + --tw-text-opacity: 1 !important; + color: rgba(196, 181, 253, var(--tw-text-opacity)) !important; +} + +.focus\:text-purple-400:focus { + --tw-text-opacity: 1 !important; + color: rgba(167, 139, 250, var(--tw-text-opacity)) !important; +} + +.focus\:text-purple-500:focus { + --tw-text-opacity: 1 !important; + color: rgba(139, 92, 246, var(--tw-text-opacity)) !important; +} + +.focus\:text-purple-600:focus { + --tw-text-opacity: 1 !important; + color: rgba(124, 58, 237, var(--tw-text-opacity)) !important; +} + +.focus\:text-purple-700:focus { + --tw-text-opacity: 1 !important; + color: rgba(109, 40, 217, var(--tw-text-opacity)) !important; +} + +.focus\:text-purple-800:focus { + --tw-text-opacity: 1 !important; + color: rgba(91, 33, 182, var(--tw-text-opacity)) !important; +} + +.focus\:text-purple-900:focus { + --tw-text-opacity: 1 !important; + color: rgba(76, 29, 149, var(--tw-text-opacity)) !important; +} + +.focus\:text-pink-50:focus { + --tw-text-opacity: 1 !important; + color: rgba(253, 242, 248, var(--tw-text-opacity)) !important; +} + +.focus\:text-pink-100:focus { + --tw-text-opacity: 1 !important; + color: rgba(252, 231, 243, var(--tw-text-opacity)) !important; +} + +.focus\:text-pink-200:focus { + --tw-text-opacity: 1 !important; + color: rgba(251, 207, 232, var(--tw-text-opacity)) !important; +} + +.focus\:text-pink-300:focus { + --tw-text-opacity: 1 !important; + color: rgba(249, 168, 212, var(--tw-text-opacity)) !important; +} + +.focus\:text-pink-400:focus { + --tw-text-opacity: 1 !important; + color: rgba(244, 114, 182, var(--tw-text-opacity)) !important; +} + +.focus\:text-pink-500:focus { + --tw-text-opacity: 1 !important; + color: rgba(236, 72, 153, var(--tw-text-opacity)) !important; +} + +.focus\:text-pink-600:focus { + --tw-text-opacity: 1 !important; + color: rgba(219, 39, 119, var(--tw-text-opacity)) !important; +} + +.focus\:text-pink-700:focus { + --tw-text-opacity: 1 !important; + color: rgba(190, 24, 93, var(--tw-text-opacity)) !important; +} + +.focus\:text-pink-800:focus { + --tw-text-opacity: 1 !important; + color: rgba(157, 23, 77, var(--tw-text-opacity)) !important; +} + +.focus\:text-pink-900:focus { + --tw-text-opacity: 1 !important; + color: rgba(131, 24, 67, var(--tw-text-opacity)) !important; +} + +.focus\:text-primary:focus { + --tw-text-opacity: 1 !important; + color: rgba(0, 49, 151, var(--tw-text-opacity)) !important; +} + +.text-opacity-0 { + --tw-text-opacity: 0 !important; +} + +.text-opacity-5 { + --tw-text-opacity: 0.05 !important; +} + +.text-opacity-10 { + --tw-text-opacity: 0.1 !important; +} + +.text-opacity-20 { + --tw-text-opacity: 0.2 !important; +} + +.text-opacity-25 { + --tw-text-opacity: 0.25 !important; +} + +.text-opacity-30 { + --tw-text-opacity: 0.3 !important; +} + +.text-opacity-40 { + --tw-text-opacity: 0.4 !important; +} + +.text-opacity-50 { + --tw-text-opacity: 0.5 !important; +} + +.text-opacity-60 { + --tw-text-opacity: 0.6 !important; +} + +.text-opacity-70 { + --tw-text-opacity: 0.7 !important; +} + +.text-opacity-75 { + --tw-text-opacity: 0.75 !important; +} + +.text-opacity-80 { + --tw-text-opacity: 0.8 !important; +} + +.text-opacity-90 { + --tw-text-opacity: 0.9 !important; +} + +.text-opacity-95 { + --tw-text-opacity: 0.95 !important; +} + +.text-opacity-100 { + --tw-text-opacity: 1 !important; +} + +.group:hover .group-hover\:text-opacity-0 { + --tw-text-opacity: 0 !important; +} + +.group:hover .group-hover\:text-opacity-5 { + --tw-text-opacity: 0.05 !important; +} + +.group:hover .group-hover\:text-opacity-10 { + --tw-text-opacity: 0.1 !important; +} + +.group:hover .group-hover\:text-opacity-20 { + --tw-text-opacity: 0.2 !important; +} + +.group:hover .group-hover\:text-opacity-25 { + --tw-text-opacity: 0.25 !important; +} + +.group:hover .group-hover\:text-opacity-30 { + --tw-text-opacity: 0.3 !important; +} + +.group:hover .group-hover\:text-opacity-40 { + --tw-text-opacity: 0.4 !important; +} + +.group:hover .group-hover\:text-opacity-50 { + --tw-text-opacity: 0.5 !important; +} + +.group:hover .group-hover\:text-opacity-60 { + --tw-text-opacity: 0.6 !important; +} + +.group:hover .group-hover\:text-opacity-70 { + --tw-text-opacity: 0.7 !important; +} + +.group:hover .group-hover\:text-opacity-75 { + --tw-text-opacity: 0.75 !important; +} + +.group:hover .group-hover\:text-opacity-80 { + --tw-text-opacity: 0.8 !important; +} + +.group:hover .group-hover\:text-opacity-90 { + --tw-text-opacity: 0.9 !important; +} + +.group:hover .group-hover\:text-opacity-95 { + --tw-text-opacity: 0.95 !important; +} + +.group:hover .group-hover\:text-opacity-100 { + --tw-text-opacity: 1 !important; +} + +.focus-within\:text-opacity-0:focus-within { + --tw-text-opacity: 0 !important; +} + +.focus-within\:text-opacity-5:focus-within { + --tw-text-opacity: 0.05 !important; +} + +.focus-within\:text-opacity-10:focus-within { + --tw-text-opacity: 0.1 !important; +} + +.focus-within\:text-opacity-20:focus-within { + --tw-text-opacity: 0.2 !important; +} + +.focus-within\:text-opacity-25:focus-within { + --tw-text-opacity: 0.25 !important; +} + +.focus-within\:text-opacity-30:focus-within { + --tw-text-opacity: 0.3 !important; +} + +.focus-within\:text-opacity-40:focus-within { + --tw-text-opacity: 0.4 !important; +} + +.focus-within\:text-opacity-50:focus-within { + --tw-text-opacity: 0.5 !important; +} + +.focus-within\:text-opacity-60:focus-within { + --tw-text-opacity: 0.6 !important; +} + +.focus-within\:text-opacity-70:focus-within { + --tw-text-opacity: 0.7 !important; +} + +.focus-within\:text-opacity-75:focus-within { + --tw-text-opacity: 0.75 !important; +} + +.focus-within\:text-opacity-80:focus-within { + --tw-text-opacity: 0.8 !important; +} + +.focus-within\:text-opacity-90:focus-within { + --tw-text-opacity: 0.9 !important; +} + +.focus-within\:text-opacity-95:focus-within { + --tw-text-opacity: 0.95 !important; +} + +.focus-within\:text-opacity-100:focus-within { + --tw-text-opacity: 1 !important; +} + +.hover\:text-opacity-0:hover { + --tw-text-opacity: 0 !important; +} + +.hover\:text-opacity-5:hover { + --tw-text-opacity: 0.05 !important; +} + +.hover\:text-opacity-10:hover { + --tw-text-opacity: 0.1 !important; +} + +.hover\:text-opacity-20:hover { + --tw-text-opacity: 0.2 !important; +} + +.hover\:text-opacity-25:hover { + --tw-text-opacity: 0.25 !important; +} + +.hover\:text-opacity-30:hover { + --tw-text-opacity: 0.3 !important; +} + +.hover\:text-opacity-40:hover { + --tw-text-opacity: 0.4 !important; +} + +.hover\:text-opacity-50:hover { + --tw-text-opacity: 0.5 !important; +} + +.hover\:text-opacity-60:hover { + --tw-text-opacity: 0.6 !important; +} + +.hover\:text-opacity-70:hover { + --tw-text-opacity: 0.7 !important; +} + +.hover\:text-opacity-75:hover { + --tw-text-opacity: 0.75 !important; +} + +.hover\:text-opacity-80:hover { + --tw-text-opacity: 0.8 !important; +} + +.hover\:text-opacity-90:hover { + --tw-text-opacity: 0.9 !important; +} + +.hover\:text-opacity-95:hover { + --tw-text-opacity: 0.95 !important; +} + +.hover\:text-opacity-100:hover { + --tw-text-opacity: 1 !important; +} + +.focus\:text-opacity-0:focus { + --tw-text-opacity: 0 !important; +} + +.focus\:text-opacity-5:focus { + --tw-text-opacity: 0.05 !important; +} + +.focus\:text-opacity-10:focus { + --tw-text-opacity: 0.1 !important; +} + +.focus\:text-opacity-20:focus { + --tw-text-opacity: 0.2 !important; +} + +.focus\:text-opacity-25:focus { + --tw-text-opacity: 0.25 !important; +} + +.focus\:text-opacity-30:focus { + --tw-text-opacity: 0.3 !important; +} + +.focus\:text-opacity-40:focus { + --tw-text-opacity: 0.4 !important; +} + +.focus\:text-opacity-50:focus { + --tw-text-opacity: 0.5 !important; +} + +.focus\:text-opacity-60:focus { + --tw-text-opacity: 0.6 !important; +} + +.focus\:text-opacity-70:focus { + --tw-text-opacity: 0.7 !important; +} + +.focus\:text-opacity-75:focus { + --tw-text-opacity: 0.75 !important; +} + +.focus\:text-opacity-80:focus { + --tw-text-opacity: 0.8 !important; +} + +.focus\:text-opacity-90:focus { + --tw-text-opacity: 0.9 !important; +} + +.focus\:text-opacity-95:focus { + --tw-text-opacity: 0.95 !important; +} + +.focus\:text-opacity-100:focus { + --tw-text-opacity: 1 !important; +} + +.truncate { + overflow: hidden !important; + text-overflow: ellipsis !important; + white-space: nowrap !important; +} + +.overflow-ellipsis { + text-overflow: ellipsis !important; +} + +.overflow-clip { + text-overflow: clip !important; +} + +.italic { + font-style: italic !important; +} + +.not-italic { + font-style: normal !important; +} + +.uppercase { + text-transform: uppercase !important; +} + +.lowercase { + text-transform: lowercase !important; +} + +.capitalize { + text-transform: capitalize !important; +} + +.normal-case { + text-transform: none !important; +} + +.underline { + text-decoration: underline !important; +} + +.line-through { + text-decoration: line-through !important; +} + +.no-underline { + text-decoration: none !important; +} + +.group:hover .group-hover\:underline { + text-decoration: underline !important; +} + +.group:hover .group-hover\:line-through { + text-decoration: line-through !important; +} + +.group:hover .group-hover\:no-underline { + text-decoration: none !important; +} + +.focus-within\:underline:focus-within { + text-decoration: underline !important; +} + +.focus-within\:line-through:focus-within { + text-decoration: line-through !important; +} + +.focus-within\:no-underline:focus-within { + text-decoration: none !important; +} + +.hover\:underline:hover { + text-decoration: underline !important; +} + +.hover\:line-through:hover { + text-decoration: line-through !important; +} + +.hover\:no-underline:hover { + text-decoration: none !important; +} + +.focus\:underline:focus { + text-decoration: underline !important; +} + +.focus\:line-through:focus { + text-decoration: line-through !important; +} + +.focus\:no-underline:focus { + text-decoration: none !important; +} + +.antialiased { + -webkit-font-smoothing: antialiased !important; + -moz-osx-font-smoothing: grayscale !important; +} + +.subpixel-antialiased { + -webkit-font-smoothing: auto !important; + -moz-osx-font-smoothing: auto !important; +} + +.ordinal, .slashed-zero, .lining-nums, .oldstyle-nums, .proportional-nums, .tabular-nums, .diagonal-fractions, .stacked-fractions { + --tw-ordinal: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-slashed-zero: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-numeric-figure: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-numeric-spacing: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-numeric-fraction: var(--tw-empty,/*!*/ /*!*/) !important; + font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction) !important; +} + +.normal-nums { + font-variant-numeric: normal !important; +} + +.ordinal { + --tw-ordinal: ordinal !important; +} + +.slashed-zero { + --tw-slashed-zero: slashed-zero !important; +} + +.lining-nums { + --tw-numeric-figure: lining-nums !important; +} + +.oldstyle-nums { + --tw-numeric-figure: oldstyle-nums !important; +} + +.proportional-nums { + --tw-numeric-spacing: proportional-nums !important; +} + +.tabular-nums { + --tw-numeric-spacing: tabular-nums !important; +} + +.diagonal-fractions { + --tw-numeric-fraction: diagonal-fractions !important; +} + +.stacked-fractions { + --tw-numeric-fraction: stacked-fractions !important; +} + +.tracking-tighter { + letter-spacing: -0.05em !important; +} + +.tracking-tight { + letter-spacing: -0.025em !important; +} + +.tracking-normal { + letter-spacing: 0em !important; +} + +.tracking-wide { + letter-spacing: 0.025em !important; +} + +.tracking-wider { + letter-spacing: 0.05em !important; +} + +.tracking-widest { + letter-spacing: 0.1em !important; +} + +.select-none { + -webkit-user-select: none !important; + -moz-user-select: none !important; + -ms-user-select: none !important; + user-select: none !important; +} + +.select-text { + -webkit-user-select: text !important; + -moz-user-select: text !important; + -ms-user-select: text !important; + user-select: text !important; +} + +.select-all { + -webkit-user-select: all !important; + -moz-user-select: all !important; + user-select: all !important; +} + +.select-auto { + -webkit-user-select: auto !important; + -moz-user-select: auto !important; + -ms-user-select: auto !important; + user-select: auto !important; +} + +.align-baseline { + vertical-align: baseline !important; +} + +.align-top { + vertical-align: top !important; +} + +.align-middle { + vertical-align: middle !important; +} + +.align-bottom { + vertical-align: bottom !important; +} + +.align-text-top { + vertical-align: text-top !important; +} + +.align-text-bottom { + vertical-align: text-bottom !important; +} + +.visible { + visibility: visible !important; +} + +.invisible { + visibility: hidden !important; +} + +.whitespace-normal { + white-space: normal !important; +} + +.whitespace-nowrap { + white-space: nowrap !important; +} + +.whitespace-pre { + white-space: pre !important; +} + +.whitespace-pre-line { + white-space: pre-line !important; +} + +.whitespace-pre-wrap { + white-space: pre-wrap !important; +} + +.break-normal { + overflow-wrap: normal !important; + word-break: normal !important; +} + +.break-words { + overflow-wrap: break-word !important; +} + +.break-all { + word-break: break-all !important; +} + +.w-0 { + width: 0px !important; +} + +.w-1 { + width: 0.25rem !important; +} + +.w-2 { + width: 0.5rem !important; +} + +.w-3 { + width: 0.75rem !important; +} + +.w-4 { + width: 1rem !important; +} + +.w-5 { + width: 1.25rem !important; +} + +.w-6 { + width: 1.5rem !important; +} + +.w-7 { + width: 1.75rem !important; +} + +.w-8 { + width: 2rem !important; +} + +.w-9 { + width: 2.25rem !important; +} + +.w-10 { + width: 2.5rem !important; +} + +.w-11 { + width: 2.75rem !important; +} + +.w-12 { + width: 3rem !important; +} + +.w-14 { + width: 3.5rem !important; +} + +.w-16 { + width: 4rem !important; +} + +.w-20 { + width: 5rem !important; +} + +.w-24 { + width: 6rem !important; +} + +.w-28 { + width: 7rem !important; +} + +.w-32 { + width: 8rem !important; +} + +.w-36 { + width: 9rem !important; +} + +.w-40 { + width: 10rem !important; +} + +.w-44 { + width: 11rem !important; +} + +.w-48 { + width: 12rem !important; +} + +.w-52 { + width: 13rem !important; +} + +.w-56 { + width: 14rem !important; +} + +.w-60 { + width: 15rem !important; +} + +.w-64 { + width: 16rem !important; +} + +.w-72 { + width: 18rem !important; +} + +.w-80 { + width: 20rem !important; +} + +.w-96 { + width: 24rem !important; +} + +.w-auto { + width: auto !important; +} + +.w-px { + width: 1px !important; +} + +.w-0\.5 { + width: 0.125rem !important; +} + +.w-1\.5 { + width: 0.375rem !important; +} + +.w-2\.5 { + width: 0.625rem !important; +} + +.w-3\.5 { + width: 0.875rem !important; +} + +.w-1\/2 { + width: 50% !important; +} + +.w-1\/3 { + width: 33.333333% !important; +} + +.w-2\/3 { + width: 66.666667% !important; +} + +.w-1\/4 { + width: 25% !important; +} + +.w-2\/4 { + width: 50% !important; +} + +.w-3\/4 { + width: 75% !important; +} + +.w-1\/5 { + width: 20% !important; +} + +.w-2\/5 { + width: 40% !important; +} + +.w-3\/5 { + width: 60% !important; +} + +.w-4\/5 { + width: 80% !important; +} + +.w-1\/6 { + width: 16.666667% !important; +} + +.w-2\/6 { + width: 33.333333% !important; +} + +.w-3\/6 { + width: 50% !important; +} + +.w-4\/6 { + width: 66.666667% !important; +} + +.w-5\/6 { + width: 83.333333% !important; +} + +.w-1\/12 { + width: 8.333333% !important; +} + +.w-2\/12 { + width: 16.666667% !important; +} + +.w-3\/12 { + width: 25% !important; +} + +.w-4\/12 { + width: 33.333333% !important; +} + +.w-5\/12 { + width: 41.666667% !important; +} + +.w-6\/12 { + width: 50% !important; +} + +.w-7\/12 { + width: 58.333333% !important; +} + +.w-8\/12 { + width: 66.666667% !important; +} + +.w-9\/12 { + width: 75% !important; +} + +.w-10\/12 { + width: 83.333333% !important; +} + +.w-11\/12 { + width: 91.666667% !important; +} + +.w-full { + width: 100% !important; +} + +.w-screen { + width: 100vw !important; +} + +.w-min { + width: -webkit-min-content !important; + width: -moz-min-content !important; + width: min-content !important; +} + +.w-max { + width: -webkit-max-content !important; + width: -moz-max-content !important; + width: max-content !important; +} + +.z-0 { + z-index: 0 !important; +} + +.z-10 { + z-index: 10 !important; +} + +.z-20 { + z-index: 20 !important; +} + +.z-30 { + z-index: 30 !important; +} + +.z-40 { + z-index: 40 !important; +} + +.z-50 { + z-index: 50 !important; +} + +.z-auto { + z-index: auto !important; +} + +.focus-within\:z-0:focus-within { + z-index: 0 !important; +} + +.focus-within\:z-10:focus-within { + z-index: 10 !important; +} + +.focus-within\:z-20:focus-within { + z-index: 20 !important; +} + +.focus-within\:z-30:focus-within { + z-index: 30 !important; +} + +.focus-within\:z-40:focus-within { + z-index: 40 !important; +} + +.focus-within\:z-50:focus-within { + z-index: 50 !important; +} + +.focus-within\:z-auto:focus-within { + z-index: auto !important; +} + +.focus\:z-0:focus { + z-index: 0 !important; +} + +.focus\:z-10:focus { + z-index: 10 !important; +} + +.focus\:z-20:focus { + z-index: 20 !important; +} + +.focus\:z-30:focus { + z-index: 30 !important; +} + +.focus\:z-40:focus { + z-index: 40 !important; +} + +.focus\:z-50:focus { + z-index: 50 !important; +} + +.focus\:z-auto:focus { + z-index: auto !important; +} + +.isolate { + isolation: isolate !important; +} + +.isolation-auto { + isolation: auto !important; +} + +.gap-0 { + gap: 0px !important; +} + +.gap-1 { + gap: 0.25rem !important; +} + +.gap-2 { + gap: 0.5rem !important; +} + +.gap-3 { + gap: 0.75rem !important; +} + +.gap-4 { + gap: 1rem !important; +} + +.gap-5 { + gap: 1.25rem !important; +} + +.gap-6 { + gap: 1.5rem !important; +} + +.gap-7 { + gap: 1.75rem !important; +} + +.gap-8 { + gap: 2rem !important; +} + +.gap-9 { + gap: 2.25rem !important; +} + +.gap-10 { + gap: 2.5rem !important; +} + +.gap-11 { + gap: 2.75rem !important; +} + +.gap-12 { + gap: 3rem !important; +} + +.gap-14 { + gap: 3.5rem !important; +} + +.gap-16 { + gap: 4rem !important; +} + +.gap-20 { + gap: 5rem !important; +} + +.gap-24 { + gap: 6rem !important; +} + +.gap-28 { + gap: 7rem !important; +} + +.gap-32 { + gap: 8rem !important; +} + +.gap-36 { + gap: 9rem !important; +} + +.gap-40 { + gap: 10rem !important; +} + +.gap-44 { + gap: 11rem !important; +} + +.gap-48 { + gap: 12rem !important; +} + +.gap-52 { + gap: 13rem !important; +} + +.gap-56 { + gap: 14rem !important; +} + +.gap-60 { + gap: 15rem !important; +} + +.gap-64 { + gap: 16rem !important; +} + +.gap-72 { + gap: 18rem !important; +} + +.gap-80 { + gap: 20rem !important; +} + +.gap-96 { + gap: 24rem !important; +} + +.gap-px { + gap: 1px !important; +} + +.gap-0\.5 { + gap: 0.125rem !important; +} + +.gap-1\.5 { + gap: 0.375rem !important; +} + +.gap-2\.5 { + gap: 0.625rem !important; +} + +.gap-3\.5 { + gap: 0.875rem !important; +} + +.gap-x-0 { + -moz-column-gap: 0px !important; + column-gap: 0px !important; +} + +.gap-x-1 { + -moz-column-gap: 0.25rem !important; + column-gap: 0.25rem !important; +} + +.gap-x-2 { + -moz-column-gap: 0.5rem !important; + column-gap: 0.5rem !important; +} + +.gap-x-3 { + -moz-column-gap: 0.75rem !important; + column-gap: 0.75rem !important; +} + +.gap-x-4 { + -moz-column-gap: 1rem !important; + column-gap: 1rem !important; +} + +.gap-x-5 { + -moz-column-gap: 1.25rem !important; + column-gap: 1.25rem !important; +} + +.gap-x-6 { + -moz-column-gap: 1.5rem !important; + column-gap: 1.5rem !important; +} + +.gap-x-7 { + -moz-column-gap: 1.75rem !important; + column-gap: 1.75rem !important; +} + +.gap-x-8 { + -moz-column-gap: 2rem !important; + column-gap: 2rem !important; +} + +.gap-x-9 { + -moz-column-gap: 2.25rem !important; + column-gap: 2.25rem !important; +} + +.gap-x-10 { + -moz-column-gap: 2.5rem !important; + column-gap: 2.5rem !important; +} + +.gap-x-11 { + -moz-column-gap: 2.75rem !important; + column-gap: 2.75rem !important; +} + +.gap-x-12 { + -moz-column-gap: 3rem !important; + column-gap: 3rem !important; +} + +.gap-x-14 { + -moz-column-gap: 3.5rem !important; + column-gap: 3.5rem !important; +} + +.gap-x-16 { + -moz-column-gap: 4rem !important; + column-gap: 4rem !important; +} + +.gap-x-20 { + -moz-column-gap: 5rem !important; + column-gap: 5rem !important; +} + +.gap-x-24 { + -moz-column-gap: 6rem !important; + column-gap: 6rem !important; +} + +.gap-x-28 { + -moz-column-gap: 7rem !important; + column-gap: 7rem !important; +} + +.gap-x-32 { + -moz-column-gap: 8rem !important; + column-gap: 8rem !important; +} + +.gap-x-36 { + -moz-column-gap: 9rem !important; + column-gap: 9rem !important; +} + +.gap-x-40 { + -moz-column-gap: 10rem !important; + column-gap: 10rem !important; +} + +.gap-x-44 { + -moz-column-gap: 11rem !important; + column-gap: 11rem !important; +} + +.gap-x-48 { + -moz-column-gap: 12rem !important; + column-gap: 12rem !important; +} + +.gap-x-52 { + -moz-column-gap: 13rem !important; + column-gap: 13rem !important; +} + +.gap-x-56 { + -moz-column-gap: 14rem !important; + column-gap: 14rem !important; +} + +.gap-x-60 { + -moz-column-gap: 15rem !important; + column-gap: 15rem !important; +} + +.gap-x-64 { + -moz-column-gap: 16rem !important; + column-gap: 16rem !important; +} + +.gap-x-72 { + -moz-column-gap: 18rem !important; + column-gap: 18rem !important; +} + +.gap-x-80 { + -moz-column-gap: 20rem !important; + column-gap: 20rem !important; +} + +.gap-x-96 { + -moz-column-gap: 24rem !important; + column-gap: 24rem !important; +} + +.gap-x-px { + -moz-column-gap: 1px !important; + column-gap: 1px !important; +} + +.gap-x-0\.5 { + -moz-column-gap: 0.125rem !important; + column-gap: 0.125rem !important; +} + +.gap-x-1\.5 { + -moz-column-gap: 0.375rem !important; + column-gap: 0.375rem !important; +} + +.gap-x-2\.5 { + -moz-column-gap: 0.625rem !important; + column-gap: 0.625rem !important; +} + +.gap-x-3\.5 { + -moz-column-gap: 0.875rem !important; + column-gap: 0.875rem !important; +} + +.gap-y-0 { + row-gap: 0px !important; +} + +.gap-y-1 { + row-gap: 0.25rem !important; +} + +.gap-y-2 { + row-gap: 0.5rem !important; +} + +.gap-y-3 { + row-gap: 0.75rem !important; +} + +.gap-y-4 { + row-gap: 1rem !important; +} + +.gap-y-5 { + row-gap: 1.25rem !important; +} + +.gap-y-6 { + row-gap: 1.5rem !important; +} + +.gap-y-7 { + row-gap: 1.75rem !important; +} + +.gap-y-8 { + row-gap: 2rem !important; +} + +.gap-y-9 { + row-gap: 2.25rem !important; +} + +.gap-y-10 { + row-gap: 2.5rem !important; +} + +.gap-y-11 { + row-gap: 2.75rem !important; +} + +.gap-y-12 { + row-gap: 3rem !important; +} + +.gap-y-14 { + row-gap: 3.5rem !important; +} + +.gap-y-16 { + row-gap: 4rem !important; +} + +.gap-y-20 { + row-gap: 5rem !important; +} + +.gap-y-24 { + row-gap: 6rem !important; +} + +.gap-y-28 { + row-gap: 7rem !important; +} + +.gap-y-32 { + row-gap: 8rem !important; +} + +.gap-y-36 { + row-gap: 9rem !important; +} + +.gap-y-40 { + row-gap: 10rem !important; +} + +.gap-y-44 { + row-gap: 11rem !important; +} + +.gap-y-48 { + row-gap: 12rem !important; +} + +.gap-y-52 { + row-gap: 13rem !important; +} + +.gap-y-56 { + row-gap: 14rem !important; +} + +.gap-y-60 { + row-gap: 15rem !important; +} + +.gap-y-64 { + row-gap: 16rem !important; +} + +.gap-y-72 { + row-gap: 18rem !important; +} + +.gap-y-80 { + row-gap: 20rem !important; +} + +.gap-y-96 { + row-gap: 24rem !important; +} + +.gap-y-px { + row-gap: 1px !important; +} + +.gap-y-0\.5 { + row-gap: 0.125rem !important; +} + +.gap-y-1\.5 { + row-gap: 0.375rem !important; +} + +.gap-y-2\.5 { + row-gap: 0.625rem !important; +} + +.gap-y-3\.5 { + row-gap: 0.875rem !important; +} + +.grid-flow-row { + grid-auto-flow: row !important; +} + +.grid-flow-col { + grid-auto-flow: column !important; +} + +.grid-flow-row-dense { + grid-auto-flow: row dense !important; +} + +.grid-flow-col-dense { + grid-auto-flow: column dense !important; +} + +.grid-cols-1 { + grid-template-columns: repeat(1, minmax(0, 1fr)) !important; +} + +.grid-cols-2 { + grid-template-columns: repeat(2, minmax(0, 1fr)) !important; +} + +.grid-cols-3 { + grid-template-columns: repeat(3, minmax(0, 1fr)) !important; +} + +.grid-cols-4 { + grid-template-columns: repeat(4, minmax(0, 1fr)) !important; +} + +.grid-cols-5 { + grid-template-columns: repeat(5, minmax(0, 1fr)) !important; +} + +.grid-cols-6 { + grid-template-columns: repeat(6, minmax(0, 1fr)) !important; +} + +.grid-cols-7 { + grid-template-columns: repeat(7, minmax(0, 1fr)) !important; +} + +.grid-cols-8 { + grid-template-columns: repeat(8, minmax(0, 1fr)) !important; +} + +.grid-cols-9 { + grid-template-columns: repeat(9, minmax(0, 1fr)) !important; +} + +.grid-cols-10 { + grid-template-columns: repeat(10, minmax(0, 1fr)) !important; +} + +.grid-cols-11 { + grid-template-columns: repeat(11, minmax(0, 1fr)) !important; +} + +.grid-cols-12 { + grid-template-columns: repeat(12, minmax(0, 1fr)) !important; +} + +.grid-cols-none { + grid-template-columns: none !important; +} + +.auto-cols-auto { + grid-auto-columns: auto !important; +} + +.auto-cols-min { + grid-auto-columns: -webkit-min-content !important; + grid-auto-columns: min-content !important; +} + +.auto-cols-max { + grid-auto-columns: -webkit-max-content !important; + grid-auto-columns: max-content !important; +} + +.auto-cols-fr { + grid-auto-columns: minmax(0, 1fr) !important; +} + +.col-auto { + grid-column: auto !important; +} + +.col-span-1 { + grid-column: span 1 / span 1 !important; +} + +.col-span-2 { + grid-column: span 2 / span 2 !important; +} + +.col-span-3 { + grid-column: span 3 / span 3 !important; +} + +.col-span-4 { + grid-column: span 4 / span 4 !important; +} + +.col-span-5 { + grid-column: span 5 / span 5 !important; +} + +.col-span-6 { + grid-column: span 6 / span 6 !important; +} + +.col-span-7 { + grid-column: span 7 / span 7 !important; +} + +.col-span-8 { + grid-column: span 8 / span 8 !important; +} + +.col-span-9 { + grid-column: span 9 / span 9 !important; +} + +.col-span-10 { + grid-column: span 10 / span 10 !important; +} + +.col-span-11 { + grid-column: span 11 / span 11 !important; +} + +.col-span-12 { + grid-column: span 12 / span 12 !important; +} + +.col-span-full { + grid-column: 1 / -1 !important; +} + +.col-start-1 { + grid-column-start: 1 !important; +} + +.col-start-2 { + grid-column-start: 2 !important; +} + +.col-start-3 { + grid-column-start: 3 !important; +} + +.col-start-4 { + grid-column-start: 4 !important; +} + +.col-start-5 { + grid-column-start: 5 !important; +} + +.col-start-6 { + grid-column-start: 6 !important; +} + +.col-start-7 { + grid-column-start: 7 !important; +} + +.col-start-8 { + grid-column-start: 8 !important; +} + +.col-start-9 { + grid-column-start: 9 !important; +} + +.col-start-10 { + grid-column-start: 10 !important; +} + +.col-start-11 { + grid-column-start: 11 !important; +} + +.col-start-12 { + grid-column-start: 12 !important; +} + +.col-start-13 { + grid-column-start: 13 !important; +} + +.col-start-auto { + grid-column-start: auto !important; +} + +.col-end-1 { + grid-column-end: 1 !important; +} + +.col-end-2 { + grid-column-end: 2 !important; +} + +.col-end-3 { + grid-column-end: 3 !important; +} + +.col-end-4 { + grid-column-end: 4 !important; +} + +.col-end-5 { + grid-column-end: 5 !important; +} + +.col-end-6 { + grid-column-end: 6 !important; +} + +.col-end-7 { + grid-column-end: 7 !important; +} + +.col-end-8 { + grid-column-end: 8 !important; +} + +.col-end-9 { + grid-column-end: 9 !important; +} + +.col-end-10 { + grid-column-end: 10 !important; +} + +.col-end-11 { + grid-column-end: 11 !important; +} + +.col-end-12 { + grid-column-end: 12 !important; +} + +.col-end-13 { + grid-column-end: 13 !important; +} + +.col-end-auto { + grid-column-end: auto !important; +} + +.grid-rows-1 { + grid-template-rows: repeat(1, minmax(0, 1fr)) !important; +} + +.grid-rows-2 { + grid-template-rows: repeat(2, minmax(0, 1fr)) !important; +} + +.grid-rows-3 { + grid-template-rows: repeat(3, minmax(0, 1fr)) !important; +} + +.grid-rows-4 { + grid-template-rows: repeat(4, minmax(0, 1fr)) !important; +} + +.grid-rows-5 { + grid-template-rows: repeat(5, minmax(0, 1fr)) !important; +} + +.grid-rows-6 { + grid-template-rows: repeat(6, minmax(0, 1fr)) !important; +} + +.grid-rows-none { + grid-template-rows: none !important; +} + +.auto-rows-auto { + grid-auto-rows: auto !important; +} + +.auto-rows-min { + grid-auto-rows: -webkit-min-content !important; + grid-auto-rows: min-content !important; +} + +.auto-rows-max { + grid-auto-rows: -webkit-max-content !important; + grid-auto-rows: max-content !important; +} + +.auto-rows-fr { + grid-auto-rows: minmax(0, 1fr) !important; +} + +.row-auto { + grid-row: auto !important; +} + +.row-span-1 { + grid-row: span 1 / span 1 !important; +} + +.row-span-2 { + grid-row: span 2 / span 2 !important; +} + +.row-span-3 { + grid-row: span 3 / span 3 !important; +} + +.row-span-4 { + grid-row: span 4 / span 4 !important; +} + +.row-span-5 { + grid-row: span 5 / span 5 !important; +} + +.row-span-6 { + grid-row: span 6 / span 6 !important; +} + +.row-span-full { + grid-row: 1 / -1 !important; +} + +.row-start-1 { + grid-row-start: 1 !important; +} + +.row-start-2 { + grid-row-start: 2 !important; +} + +.row-start-3 { + grid-row-start: 3 !important; +} + +.row-start-4 { + grid-row-start: 4 !important; +} + +.row-start-5 { + grid-row-start: 5 !important; +} + +.row-start-6 { + grid-row-start: 6 !important; +} + +.row-start-7 { + grid-row-start: 7 !important; +} + +.row-start-auto { + grid-row-start: auto !important; +} + +.row-end-1 { + grid-row-end: 1 !important; +} + +.row-end-2 { + grid-row-end: 2 !important; +} + +.row-end-3 { + grid-row-end: 3 !important; +} + +.row-end-4 { + grid-row-end: 4 !important; +} + +.row-end-5 { + grid-row-end: 5 !important; +} + +.row-end-6 { + grid-row-end: 6 !important; +} + +.row-end-7 { + grid-row-end: 7 !important; +} + +.row-end-auto { + grid-row-end: auto !important; +} + +.transform { + --tw-translate-x: 0 !important; + --tw-translate-y: 0 !important; + --tw-rotate: 0 !important; + --tw-skew-x: 0 !important; + --tw-skew-y: 0 !important; + --tw-scale-x: 1 !important; + --tw-scale-y: 1 !important; + 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)) !important; +} + +.transform-gpu { + --tw-translate-x: 0 !important; + --tw-translate-y: 0 !important; + --tw-rotate: 0 !important; + --tw-skew-x: 0 !important; + --tw-skew-y: 0 !important; + --tw-scale-x: 1 !important; + --tw-scale-y: 1 !important; + transform: translate3d(var(--tw-translate-x), var(--tw-translate-y), 0) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)) !important; +} + +.transform-none { + transform: none !important; +} + +.origin-center { + transform-origin: center !important; +} + +.origin-top { + transform-origin: top !important; +} + +.origin-top-right { + transform-origin: top right !important; +} + +.origin-right { + transform-origin: right !important; +} + +.origin-bottom-right { + transform-origin: bottom right !important; +} + +.origin-bottom { + transform-origin: bottom !important; +} + +.origin-bottom-left { + transform-origin: bottom left !important; +} + +.origin-left { + transform-origin: left !important; +} + +.origin-top-left { + transform-origin: top left !important; +} + +.scale-0 { + --tw-scale-x: 0 !important; + --tw-scale-y: 0 !important; +} + +.scale-50 { + --tw-scale-x: .5 !important; + --tw-scale-y: .5 !important; +} + +.scale-75 { + --tw-scale-x: .75 !important; + --tw-scale-y: .75 !important; +} + +.scale-90 { + --tw-scale-x: .9 !important; + --tw-scale-y: .9 !important; +} + +.scale-95 { + --tw-scale-x: .95 !important; + --tw-scale-y: .95 !important; +} + +.scale-100 { + --tw-scale-x: 1 !important; + --tw-scale-y: 1 !important; +} + +.scale-105 { + --tw-scale-x: 1.05 !important; + --tw-scale-y: 1.05 !important; +} + +.scale-110 { + --tw-scale-x: 1.1 !important; + --tw-scale-y: 1.1 !important; +} + +.scale-125 { + --tw-scale-x: 1.25 !important; + --tw-scale-y: 1.25 !important; +} + +.scale-150 { + --tw-scale-x: 1.5 !important; + --tw-scale-y: 1.5 !important; +} + +.scale-x-0 { + --tw-scale-x: 0 !important; +} + +.scale-x-50 { + --tw-scale-x: .5 !important; +} + +.scale-x-75 { + --tw-scale-x: .75 !important; +} + +.scale-x-90 { + --tw-scale-x: .9 !important; +} + +.scale-x-95 { + --tw-scale-x: .95 !important; +} + +.scale-x-100 { + --tw-scale-x: 1 !important; +} + +.scale-x-105 { + --tw-scale-x: 1.05 !important; +} + +.scale-x-110 { + --tw-scale-x: 1.1 !important; +} + +.scale-x-125 { + --tw-scale-x: 1.25 !important; +} + +.scale-x-150 { + --tw-scale-x: 1.5 !important; +} + +.scale-y-0 { + --tw-scale-y: 0 !important; +} + +.scale-y-50 { + --tw-scale-y: .5 !important; +} + +.scale-y-75 { + --tw-scale-y: .75 !important; +} + +.scale-y-90 { + --tw-scale-y: .9 !important; +} + +.scale-y-95 { + --tw-scale-y: .95 !important; +} + +.scale-y-100 { + --tw-scale-y: 1 !important; +} + +.scale-y-105 { + --tw-scale-y: 1.05 !important; +} + +.scale-y-110 { + --tw-scale-y: 1.1 !important; +} + +.scale-y-125 { + --tw-scale-y: 1.25 !important; +} + +.scale-y-150 { + --tw-scale-y: 1.5 !important; +} + +.hover\:scale-0:hover { + --tw-scale-x: 0 !important; + --tw-scale-y: 0 !important; +} + +.hover\:scale-50:hover { + --tw-scale-x: .5 !important; + --tw-scale-y: .5 !important; +} + +.hover\:scale-75:hover { + --tw-scale-x: .75 !important; + --tw-scale-y: .75 !important; +} + +.hover\:scale-90:hover { + --tw-scale-x: .9 !important; + --tw-scale-y: .9 !important; +} + +.hover\:scale-95:hover { + --tw-scale-x: .95 !important; + --tw-scale-y: .95 !important; +} + +.hover\:scale-100:hover { + --tw-scale-x: 1 !important; + --tw-scale-y: 1 !important; +} + +.hover\:scale-105:hover { + --tw-scale-x: 1.05 !important; + --tw-scale-y: 1.05 !important; +} + +.hover\:scale-110:hover { + --tw-scale-x: 1.1 !important; + --tw-scale-y: 1.1 !important; +} + +.hover\:scale-125:hover { + --tw-scale-x: 1.25 !important; + --tw-scale-y: 1.25 !important; +} + +.hover\:scale-150:hover { + --tw-scale-x: 1.5 !important; + --tw-scale-y: 1.5 !important; +} + +.hover\:scale-x-0:hover { + --tw-scale-x: 0 !important; +} + +.hover\:scale-x-50:hover { + --tw-scale-x: .5 !important; +} + +.hover\:scale-x-75:hover { + --tw-scale-x: .75 !important; +} + +.hover\:scale-x-90:hover { + --tw-scale-x: .9 !important; +} + +.hover\:scale-x-95:hover { + --tw-scale-x: .95 !important; +} + +.hover\:scale-x-100:hover { + --tw-scale-x: 1 !important; +} + +.hover\:scale-x-105:hover { + --tw-scale-x: 1.05 !important; +} + +.hover\:scale-x-110:hover { + --tw-scale-x: 1.1 !important; +} + +.hover\:scale-x-125:hover { + --tw-scale-x: 1.25 !important; +} + +.hover\:scale-x-150:hover { + --tw-scale-x: 1.5 !important; +} + +.hover\:scale-y-0:hover { + --tw-scale-y: 0 !important; +} + +.hover\:scale-y-50:hover { + --tw-scale-y: .5 !important; +} + +.hover\:scale-y-75:hover { + --tw-scale-y: .75 !important; +} + +.hover\:scale-y-90:hover { + --tw-scale-y: .9 !important; +} + +.hover\:scale-y-95:hover { + --tw-scale-y: .95 !important; +} + +.hover\:scale-y-100:hover { + --tw-scale-y: 1 !important; +} + +.hover\:scale-y-105:hover { + --tw-scale-y: 1.05 !important; +} + +.hover\:scale-y-110:hover { + --tw-scale-y: 1.1 !important; +} + +.hover\:scale-y-125:hover { + --tw-scale-y: 1.25 !important; +} + +.hover\:scale-y-150:hover { + --tw-scale-y: 1.5 !important; +} + +.focus\:scale-0:focus { + --tw-scale-x: 0 !important; + --tw-scale-y: 0 !important; +} + +.focus\:scale-50:focus { + --tw-scale-x: .5 !important; + --tw-scale-y: .5 !important; +} + +.focus\:scale-75:focus { + --tw-scale-x: .75 !important; + --tw-scale-y: .75 !important; +} + +.focus\:scale-90:focus { + --tw-scale-x: .9 !important; + --tw-scale-y: .9 !important; +} + +.focus\:scale-95:focus { + --tw-scale-x: .95 !important; + --tw-scale-y: .95 !important; +} + +.focus\:scale-100:focus { + --tw-scale-x: 1 !important; + --tw-scale-y: 1 !important; +} + +.focus\:scale-105:focus { + --tw-scale-x: 1.05 !important; + --tw-scale-y: 1.05 !important; +} + +.focus\:scale-110:focus { + --tw-scale-x: 1.1 !important; + --tw-scale-y: 1.1 !important; +} + +.focus\:scale-125:focus { + --tw-scale-x: 1.25 !important; + --tw-scale-y: 1.25 !important; +} + +.focus\:scale-150:focus { + --tw-scale-x: 1.5 !important; + --tw-scale-y: 1.5 !important; +} + +.focus\:scale-x-0:focus { + --tw-scale-x: 0 !important; +} + +.focus\:scale-x-50:focus { + --tw-scale-x: .5 !important; +} + +.focus\:scale-x-75:focus { + --tw-scale-x: .75 !important; +} + +.focus\:scale-x-90:focus { + --tw-scale-x: .9 !important; +} + +.focus\:scale-x-95:focus { + --tw-scale-x: .95 !important; +} + +.focus\:scale-x-100:focus { + --tw-scale-x: 1 !important; +} + +.focus\:scale-x-105:focus { + --tw-scale-x: 1.05 !important; +} + +.focus\:scale-x-110:focus { + --tw-scale-x: 1.1 !important; +} + +.focus\:scale-x-125:focus { + --tw-scale-x: 1.25 !important; +} + +.focus\:scale-x-150:focus { + --tw-scale-x: 1.5 !important; +} + +.focus\:scale-y-0:focus { + --tw-scale-y: 0 !important; +} + +.focus\:scale-y-50:focus { + --tw-scale-y: .5 !important; +} + +.focus\:scale-y-75:focus { + --tw-scale-y: .75 !important; +} + +.focus\:scale-y-90:focus { + --tw-scale-y: .9 !important; +} + +.focus\:scale-y-95:focus { + --tw-scale-y: .95 !important; +} + +.focus\:scale-y-100:focus { + --tw-scale-y: 1 !important; +} + +.focus\:scale-y-105:focus { + --tw-scale-y: 1.05 !important; +} + +.focus\:scale-y-110:focus { + --tw-scale-y: 1.1 !important; +} + +.focus\:scale-y-125:focus { + --tw-scale-y: 1.25 !important; +} + +.focus\:scale-y-150:focus { + --tw-scale-y: 1.5 !important; +} + +.rotate-0 { + --tw-rotate: 0deg !important; +} + +.rotate-1 { + --tw-rotate: 1deg !important; +} + +.rotate-2 { + --tw-rotate: 2deg !important; +} + +.rotate-3 { + --tw-rotate: 3deg !important; +} + +.rotate-6 { + --tw-rotate: 6deg !important; +} + +.rotate-12 { + --tw-rotate: 12deg !important; +} + +.rotate-45 { + --tw-rotate: 45deg !important; +} + +.rotate-90 { + --tw-rotate: 90deg !important; +} + +.rotate-180 { + --tw-rotate: 180deg !important; +} + +.-rotate-180 { + --tw-rotate: -180deg !important; +} + +.-rotate-90 { + --tw-rotate: -90deg !important; +} + +.-rotate-45 { + --tw-rotate: -45deg !important; +} + +.-rotate-12 { + --tw-rotate: -12deg !important; +} + +.-rotate-6 { + --tw-rotate: -6deg !important; +} + +.-rotate-3 { + --tw-rotate: -3deg !important; +} + +.-rotate-2 { + --tw-rotate: -2deg !important; +} + +.-rotate-1 { + --tw-rotate: -1deg !important; +} + +.hover\:rotate-0:hover { + --tw-rotate: 0deg !important; +} + +.hover\:rotate-1:hover { + --tw-rotate: 1deg !important; +} + +.hover\:rotate-2:hover { + --tw-rotate: 2deg !important; +} + +.hover\:rotate-3:hover { + --tw-rotate: 3deg !important; +} + +.hover\:rotate-6:hover { + --tw-rotate: 6deg !important; +} + +.hover\:rotate-12:hover { + --tw-rotate: 12deg !important; +} + +.hover\:rotate-45:hover { + --tw-rotate: 45deg !important; +} + +.hover\:rotate-90:hover { + --tw-rotate: 90deg !important; +} + +.hover\:rotate-180:hover { + --tw-rotate: 180deg !important; +} + +.hover\:-rotate-180:hover { + --tw-rotate: -180deg !important; +} + +.hover\:-rotate-90:hover { + --tw-rotate: -90deg !important; +} + +.hover\:-rotate-45:hover { + --tw-rotate: -45deg !important; +} + +.hover\:-rotate-12:hover { + --tw-rotate: -12deg !important; +} + +.hover\:-rotate-6:hover { + --tw-rotate: -6deg !important; +} + +.hover\:-rotate-3:hover { + --tw-rotate: -3deg !important; +} + +.hover\:-rotate-2:hover { + --tw-rotate: -2deg !important; +} + +.hover\:-rotate-1:hover { + --tw-rotate: -1deg !important; +} + +.focus\:rotate-0:focus { + --tw-rotate: 0deg !important; +} + +.focus\:rotate-1:focus { + --tw-rotate: 1deg !important; +} + +.focus\:rotate-2:focus { + --tw-rotate: 2deg !important; +} + +.focus\:rotate-3:focus { + --tw-rotate: 3deg !important; +} + +.focus\:rotate-6:focus { + --tw-rotate: 6deg !important; +} + +.focus\:rotate-12:focus { + --tw-rotate: 12deg !important; +} + +.focus\:rotate-45:focus { + --tw-rotate: 45deg !important; +} + +.focus\:rotate-90:focus { + --tw-rotate: 90deg !important; +} + +.focus\:rotate-180:focus { + --tw-rotate: 180deg !important; +} + +.focus\:-rotate-180:focus { + --tw-rotate: -180deg !important; +} + +.focus\:-rotate-90:focus { + --tw-rotate: -90deg !important; +} + +.focus\:-rotate-45:focus { + --tw-rotate: -45deg !important; +} + +.focus\:-rotate-12:focus { + --tw-rotate: -12deg !important; +} + +.focus\:-rotate-6:focus { + --tw-rotate: -6deg !important; +} + +.focus\:-rotate-3:focus { + --tw-rotate: -3deg !important; +} + +.focus\:-rotate-2:focus { + --tw-rotate: -2deg !important; +} + +.focus\:-rotate-1:focus { + --tw-rotate: -1deg !important; +} + +.translate-x-0 { + --tw-translate-x: 0px !important; +} + +.translate-x-1 { + --tw-translate-x: 0.25rem !important; +} + +.translate-x-2 { + --tw-translate-x: 0.5rem !important; +} + +.translate-x-3 { + --tw-translate-x: 0.75rem !important; +} + +.translate-x-4 { + --tw-translate-x: 1rem !important; +} + +.translate-x-5 { + --tw-translate-x: 1.25rem !important; +} + +.translate-x-6 { + --tw-translate-x: 1.5rem !important; +} + +.translate-x-7 { + --tw-translate-x: 1.75rem !important; +} + +.translate-x-8 { + --tw-translate-x: 2rem !important; +} + +.translate-x-9 { + --tw-translate-x: 2.25rem !important; +} + +.translate-x-10 { + --tw-translate-x: 2.5rem !important; +} + +.translate-x-11 { + --tw-translate-x: 2.75rem !important; +} + +.translate-x-12 { + --tw-translate-x: 3rem !important; +} + +.translate-x-14 { + --tw-translate-x: 3.5rem !important; +} + +.translate-x-16 { + --tw-translate-x: 4rem !important; +} + +.translate-x-20 { + --tw-translate-x: 5rem !important; +} + +.translate-x-24 { + --tw-translate-x: 6rem !important; +} + +.translate-x-28 { + --tw-translate-x: 7rem !important; +} + +.translate-x-32 { + --tw-translate-x: 8rem !important; +} + +.translate-x-36 { + --tw-translate-x: 9rem !important; +} + +.translate-x-40 { + --tw-translate-x: 10rem !important; +} + +.translate-x-44 { + --tw-translate-x: 11rem !important; +} + +.translate-x-48 { + --tw-translate-x: 12rem !important; +} + +.translate-x-52 { + --tw-translate-x: 13rem !important; +} + +.translate-x-56 { + --tw-translate-x: 14rem !important; +} + +.translate-x-60 { + --tw-translate-x: 15rem !important; +} + +.translate-x-64 { + --tw-translate-x: 16rem !important; +} + +.translate-x-72 { + --tw-translate-x: 18rem !important; +} + +.translate-x-80 { + --tw-translate-x: 20rem !important; +} + +.translate-x-96 { + --tw-translate-x: 24rem !important; +} + +.translate-x-px { + --tw-translate-x: 1px !important; +} + +.translate-x-0\.5 { + --tw-translate-x: 0.125rem !important; +} + +.translate-x-1\.5 { + --tw-translate-x: 0.375rem !important; +} + +.translate-x-2\.5 { + --tw-translate-x: 0.625rem !important; +} + +.translate-x-3\.5 { + --tw-translate-x: 0.875rem !important; +} + +.-translate-x-0 { + --tw-translate-x: 0px !important; +} + +.-translate-x-1 { + --tw-translate-x: -0.25rem !important; +} + +.-translate-x-2 { + --tw-translate-x: -0.5rem !important; +} + +.-translate-x-3 { + --tw-translate-x: -0.75rem !important; +} + +.-translate-x-4 { + --tw-translate-x: -1rem !important; +} + +.-translate-x-5 { + --tw-translate-x: -1.25rem !important; +} + +.-translate-x-6 { + --tw-translate-x: -1.5rem !important; +} + +.-translate-x-7 { + --tw-translate-x: -1.75rem !important; +} + +.-translate-x-8 { + --tw-translate-x: -2rem !important; +} + +.-translate-x-9 { + --tw-translate-x: -2.25rem !important; +} + +.-translate-x-10 { + --tw-translate-x: -2.5rem !important; +} + +.-translate-x-11 { + --tw-translate-x: -2.75rem !important; +} + +.-translate-x-12 { + --tw-translate-x: -3rem !important; +} + +.-translate-x-14 { + --tw-translate-x: -3.5rem !important; +} + +.-translate-x-16 { + --tw-translate-x: -4rem !important; +} + +.-translate-x-20 { + --tw-translate-x: -5rem !important; +} + +.-translate-x-24 { + --tw-translate-x: -6rem !important; +} + +.-translate-x-28 { + --tw-translate-x: -7rem !important; +} + +.-translate-x-32 { + --tw-translate-x: -8rem !important; +} + +.-translate-x-36 { + --tw-translate-x: -9rem !important; +} + +.-translate-x-40 { + --tw-translate-x: -10rem !important; +} + +.-translate-x-44 { + --tw-translate-x: -11rem !important; +} + +.-translate-x-48 { + --tw-translate-x: -12rem !important; +} + +.-translate-x-52 { + --tw-translate-x: -13rem !important; +} + +.-translate-x-56 { + --tw-translate-x: -14rem !important; +} + +.-translate-x-60 { + --tw-translate-x: -15rem !important; +} + +.-translate-x-64 { + --tw-translate-x: -16rem !important; +} + +.-translate-x-72 { + --tw-translate-x: -18rem !important; +} + +.-translate-x-80 { + --tw-translate-x: -20rem !important; +} + +.-translate-x-96 { + --tw-translate-x: -24rem !important; +} + +.-translate-x-px { + --tw-translate-x: -1px !important; +} + +.-translate-x-0\.5 { + --tw-translate-x: -0.125rem !important; +} + +.-translate-x-1\.5 { + --tw-translate-x: -0.375rem !important; +} + +.-translate-x-2\.5 { + --tw-translate-x: -0.625rem !important; +} + +.-translate-x-3\.5 { + --tw-translate-x: -0.875rem !important; +} + +.translate-x-1\/2 { + --tw-translate-x: 50% !important; +} + +.translate-x-1\/3 { + --tw-translate-x: 33.333333% !important; +} + +.translate-x-2\/3 { + --tw-translate-x: 66.666667% !important; +} + +.translate-x-1\/4 { + --tw-translate-x: 25% !important; +} + +.translate-x-2\/4 { + --tw-translate-x: 50% !important; +} + +.translate-x-3\/4 { + --tw-translate-x: 75% !important; +} + +.translate-x-full { + --tw-translate-x: 100% !important; +} + +.-translate-x-1\/2 { + --tw-translate-x: -50% !important; +} + +.-translate-x-1\/3 { + --tw-translate-x: -33.333333% !important; +} + +.-translate-x-2\/3 { + --tw-translate-x: -66.666667% !important; +} + +.-translate-x-1\/4 { + --tw-translate-x: -25% !important; +} + +.-translate-x-2\/4 { + --tw-translate-x: -50% !important; +} + +.-translate-x-3\/4 { + --tw-translate-x: -75% !important; +} + +.-translate-x-full { + --tw-translate-x: -100% !important; +} + +.translate-y-0 { + --tw-translate-y: 0px !important; +} + +.translate-y-1 { + --tw-translate-y: 0.25rem !important; +} + +.translate-y-2 { + --tw-translate-y: 0.5rem !important; +} + +.translate-y-3 { + --tw-translate-y: 0.75rem !important; +} + +.translate-y-4 { + --tw-translate-y: 1rem !important; +} + +.translate-y-5 { + --tw-translate-y: 1.25rem !important; +} + +.translate-y-6 { + --tw-translate-y: 1.5rem !important; +} + +.translate-y-7 { + --tw-translate-y: 1.75rem !important; +} + +.translate-y-8 { + --tw-translate-y: 2rem !important; +} + +.translate-y-9 { + --tw-translate-y: 2.25rem !important; +} + +.translate-y-10 { + --tw-translate-y: 2.5rem !important; +} + +.translate-y-11 { + --tw-translate-y: 2.75rem !important; +} + +.translate-y-12 { + --tw-translate-y: 3rem !important; +} + +.translate-y-14 { + --tw-translate-y: 3.5rem !important; +} + +.translate-y-16 { + --tw-translate-y: 4rem !important; +} + +.translate-y-20 { + --tw-translate-y: 5rem !important; +} + +.translate-y-24 { + --tw-translate-y: 6rem !important; +} + +.translate-y-28 { + --tw-translate-y: 7rem !important; +} + +.translate-y-32 { + --tw-translate-y: 8rem !important; +} + +.translate-y-36 { + --tw-translate-y: 9rem !important; +} + +.translate-y-40 { + --tw-translate-y: 10rem !important; +} + +.translate-y-44 { + --tw-translate-y: 11rem !important; +} + +.translate-y-48 { + --tw-translate-y: 12rem !important; +} + +.translate-y-52 { + --tw-translate-y: 13rem !important; +} + +.translate-y-56 { + --tw-translate-y: 14rem !important; +} + +.translate-y-60 { + --tw-translate-y: 15rem !important; +} + +.translate-y-64 { + --tw-translate-y: 16rem !important; +} + +.translate-y-72 { + --tw-translate-y: 18rem !important; +} + +.translate-y-80 { + --tw-translate-y: 20rem !important; +} + +.translate-y-96 { + --tw-translate-y: 24rem !important; +} + +.translate-y-px { + --tw-translate-y: 1px !important; +} + +.translate-y-0\.5 { + --tw-translate-y: 0.125rem !important; +} + +.translate-y-1\.5 { + --tw-translate-y: 0.375rem !important; +} + +.translate-y-2\.5 { + --tw-translate-y: 0.625rem !important; +} + +.translate-y-3\.5 { + --tw-translate-y: 0.875rem !important; +} + +.-translate-y-0 { + --tw-translate-y: 0px !important; +} + +.-translate-y-1 { + --tw-translate-y: -0.25rem !important; +} + +.-translate-y-2 { + --tw-translate-y: -0.5rem !important; +} + +.-translate-y-3 { + --tw-translate-y: -0.75rem !important; +} + +.-translate-y-4 { + --tw-translate-y: -1rem !important; +} + +.-translate-y-5 { + --tw-translate-y: -1.25rem !important; +} + +.-translate-y-6 { + --tw-translate-y: -1.5rem !important; +} + +.-translate-y-7 { + --tw-translate-y: -1.75rem !important; +} + +.-translate-y-8 { + --tw-translate-y: -2rem !important; +} + +.-translate-y-9 { + --tw-translate-y: -2.25rem !important; +} + +.-translate-y-10 { + --tw-translate-y: -2.5rem !important; +} + +.-translate-y-11 { + --tw-translate-y: -2.75rem !important; +} + +.-translate-y-12 { + --tw-translate-y: -3rem !important; +} + +.-translate-y-14 { + --tw-translate-y: -3.5rem !important; +} + +.-translate-y-16 { + --tw-translate-y: -4rem !important; +} + +.-translate-y-20 { + --tw-translate-y: -5rem !important; +} + +.-translate-y-24 { + --tw-translate-y: -6rem !important; +} + +.-translate-y-28 { + --tw-translate-y: -7rem !important; +} + +.-translate-y-32 { + --tw-translate-y: -8rem !important; +} + +.-translate-y-36 { + --tw-translate-y: -9rem !important; +} + +.-translate-y-40 { + --tw-translate-y: -10rem !important; +} + +.-translate-y-44 { + --tw-translate-y: -11rem !important; +} + +.-translate-y-48 { + --tw-translate-y: -12rem !important; +} + +.-translate-y-52 { + --tw-translate-y: -13rem !important; +} + +.-translate-y-56 { + --tw-translate-y: -14rem !important; +} + +.-translate-y-60 { + --tw-translate-y: -15rem !important; +} + +.-translate-y-64 { + --tw-translate-y: -16rem !important; +} + +.-translate-y-72 { + --tw-translate-y: -18rem !important; +} + +.-translate-y-80 { + --tw-translate-y: -20rem !important; +} + +.-translate-y-96 { + --tw-translate-y: -24rem !important; +} + +.-translate-y-px { + --tw-translate-y: -1px !important; +} + +.-translate-y-0\.5 { + --tw-translate-y: -0.125rem !important; +} + +.-translate-y-1\.5 { + --tw-translate-y: -0.375rem !important; +} + +.-translate-y-2\.5 { + --tw-translate-y: -0.625rem !important; +} + +.-translate-y-3\.5 { + --tw-translate-y: -0.875rem !important; +} + +.translate-y-1\/2 { + --tw-translate-y: 50% !important; +} + +.translate-y-1\/3 { + --tw-translate-y: 33.333333% !important; +} + +.translate-y-2\/3 { + --tw-translate-y: 66.666667% !important; +} + +.translate-y-1\/4 { + --tw-translate-y: 25% !important; +} + +.translate-y-2\/4 { + --tw-translate-y: 50% !important; +} + +.translate-y-3\/4 { + --tw-translate-y: 75% !important; +} + +.translate-y-full { + --tw-translate-y: 100% !important; +} + +.-translate-y-1\/2 { + --tw-translate-y: -50% !important; +} + +.-translate-y-1\/3 { + --tw-translate-y: -33.333333% !important; +} + +.-translate-y-2\/3 { + --tw-translate-y: -66.666667% !important; +} + +.-translate-y-1\/4 { + --tw-translate-y: -25% !important; +} + +.-translate-y-2\/4 { + --tw-translate-y: -50% !important; +} + +.-translate-y-3\/4 { + --tw-translate-y: -75% !important; +} + +.-translate-y-full { + --tw-translate-y: -100% !important; +} + +.hover\:translate-x-0:hover { + --tw-translate-x: 0px !important; +} + +.hover\:translate-x-1:hover { + --tw-translate-x: 0.25rem !important; +} + +.hover\:translate-x-2:hover { + --tw-translate-x: 0.5rem !important; +} + +.hover\:translate-x-3:hover { + --tw-translate-x: 0.75rem !important; +} + +.hover\:translate-x-4:hover { + --tw-translate-x: 1rem !important; +} + +.hover\:translate-x-5:hover { + --tw-translate-x: 1.25rem !important; +} + +.hover\:translate-x-6:hover { + --tw-translate-x: 1.5rem !important; +} + +.hover\:translate-x-7:hover { + --tw-translate-x: 1.75rem !important; +} + +.hover\:translate-x-8:hover { + --tw-translate-x: 2rem !important; +} + +.hover\:translate-x-9:hover { + --tw-translate-x: 2.25rem !important; +} + +.hover\:translate-x-10:hover { + --tw-translate-x: 2.5rem !important; +} + +.hover\:translate-x-11:hover { + --tw-translate-x: 2.75rem !important; +} + +.hover\:translate-x-12:hover { + --tw-translate-x: 3rem !important; +} + +.hover\:translate-x-14:hover { + --tw-translate-x: 3.5rem !important; +} + +.hover\:translate-x-16:hover { + --tw-translate-x: 4rem !important; +} + +.hover\:translate-x-20:hover { + --tw-translate-x: 5rem !important; +} + +.hover\:translate-x-24:hover { + --tw-translate-x: 6rem !important; +} + +.hover\:translate-x-28:hover { + --tw-translate-x: 7rem !important; +} + +.hover\:translate-x-32:hover { + --tw-translate-x: 8rem !important; +} + +.hover\:translate-x-36:hover { + --tw-translate-x: 9rem !important; +} + +.hover\:translate-x-40:hover { + --tw-translate-x: 10rem !important; +} + +.hover\:translate-x-44:hover { + --tw-translate-x: 11rem !important; +} + +.hover\:translate-x-48:hover { + --tw-translate-x: 12rem !important; +} + +.hover\:translate-x-52:hover { + --tw-translate-x: 13rem !important; +} + +.hover\:translate-x-56:hover { + --tw-translate-x: 14rem !important; +} + +.hover\:translate-x-60:hover { + --tw-translate-x: 15rem !important; +} + +.hover\:translate-x-64:hover { + --tw-translate-x: 16rem !important; +} + +.hover\:translate-x-72:hover { + --tw-translate-x: 18rem !important; +} + +.hover\:translate-x-80:hover { + --tw-translate-x: 20rem !important; +} + +.hover\:translate-x-96:hover { + --tw-translate-x: 24rem !important; +} + +.hover\:translate-x-px:hover { + --tw-translate-x: 1px !important; +} + +.hover\:translate-x-0\.5:hover { + --tw-translate-x: 0.125rem !important; +} + +.hover\:translate-x-1\.5:hover { + --tw-translate-x: 0.375rem !important; +} + +.hover\:translate-x-2\.5:hover { + --tw-translate-x: 0.625rem !important; +} + +.hover\:translate-x-3\.5:hover { + --tw-translate-x: 0.875rem !important; +} + +.hover\:-translate-x-0:hover { + --tw-translate-x: 0px !important; +} + +.hover\:-translate-x-1:hover { + --tw-translate-x: -0.25rem !important; +} + +.hover\:-translate-x-2:hover { + --tw-translate-x: -0.5rem !important; +} + +.hover\:-translate-x-3:hover { + --tw-translate-x: -0.75rem !important; +} + +.hover\:-translate-x-4:hover { + --tw-translate-x: -1rem !important; +} + +.hover\:-translate-x-5:hover { + --tw-translate-x: -1.25rem !important; +} + +.hover\:-translate-x-6:hover { + --tw-translate-x: -1.5rem !important; +} + +.hover\:-translate-x-7:hover { + --tw-translate-x: -1.75rem !important; +} + +.hover\:-translate-x-8:hover { + --tw-translate-x: -2rem !important; +} + +.hover\:-translate-x-9:hover { + --tw-translate-x: -2.25rem !important; +} + +.hover\:-translate-x-10:hover { + --tw-translate-x: -2.5rem !important; +} + +.hover\:-translate-x-11:hover { + --tw-translate-x: -2.75rem !important; +} + +.hover\:-translate-x-12:hover { + --tw-translate-x: -3rem !important; +} + +.hover\:-translate-x-14:hover { + --tw-translate-x: -3.5rem !important; +} + +.hover\:-translate-x-16:hover { + --tw-translate-x: -4rem !important; +} + +.hover\:-translate-x-20:hover { + --tw-translate-x: -5rem !important; +} + +.hover\:-translate-x-24:hover { + --tw-translate-x: -6rem !important; +} + +.hover\:-translate-x-28:hover { + --tw-translate-x: -7rem !important; +} + +.hover\:-translate-x-32:hover { + --tw-translate-x: -8rem !important; +} + +.hover\:-translate-x-36:hover { + --tw-translate-x: -9rem !important; +} + +.hover\:-translate-x-40:hover { + --tw-translate-x: -10rem !important; +} + +.hover\:-translate-x-44:hover { + --tw-translate-x: -11rem !important; +} + +.hover\:-translate-x-48:hover { + --tw-translate-x: -12rem !important; +} + +.hover\:-translate-x-52:hover { + --tw-translate-x: -13rem !important; +} + +.hover\:-translate-x-56:hover { + --tw-translate-x: -14rem !important; +} + +.hover\:-translate-x-60:hover { + --tw-translate-x: -15rem !important; +} + +.hover\:-translate-x-64:hover { + --tw-translate-x: -16rem !important; +} + +.hover\:-translate-x-72:hover { + --tw-translate-x: -18rem !important; +} + +.hover\:-translate-x-80:hover { + --tw-translate-x: -20rem !important; +} + +.hover\:-translate-x-96:hover { + --tw-translate-x: -24rem !important; +} + +.hover\:-translate-x-px:hover { + --tw-translate-x: -1px !important; +} + +.hover\:-translate-x-0\.5:hover { + --tw-translate-x: -0.125rem !important; +} + +.hover\:-translate-x-1\.5:hover { + --tw-translate-x: -0.375rem !important; +} + +.hover\:-translate-x-2\.5:hover { + --tw-translate-x: -0.625rem !important; +} + +.hover\:-translate-x-3\.5:hover { + --tw-translate-x: -0.875rem !important; +} + +.hover\:translate-x-1\/2:hover { + --tw-translate-x: 50% !important; +} + +.hover\:translate-x-1\/3:hover { + --tw-translate-x: 33.333333% !important; +} + +.hover\:translate-x-2\/3:hover { + --tw-translate-x: 66.666667% !important; +} + +.hover\:translate-x-1\/4:hover { + --tw-translate-x: 25% !important; +} + +.hover\:translate-x-2\/4:hover { + --tw-translate-x: 50% !important; +} + +.hover\:translate-x-3\/4:hover { + --tw-translate-x: 75% !important; +} + +.hover\:translate-x-full:hover { + --tw-translate-x: 100% !important; +} + +.hover\:-translate-x-1\/2:hover { + --tw-translate-x: -50% !important; +} + +.hover\:-translate-x-1\/3:hover { + --tw-translate-x: -33.333333% !important; +} + +.hover\:-translate-x-2\/3:hover { + --tw-translate-x: -66.666667% !important; +} + +.hover\:-translate-x-1\/4:hover { + --tw-translate-x: -25% !important; +} + +.hover\:-translate-x-2\/4:hover { + --tw-translate-x: -50% !important; +} + +.hover\:-translate-x-3\/4:hover { + --tw-translate-x: -75% !important; +} + +.hover\:-translate-x-full:hover { + --tw-translate-x: -100% !important; +} + +.hover\:translate-y-0:hover { + --tw-translate-y: 0px !important; +} + +.hover\:translate-y-1:hover { + --tw-translate-y: 0.25rem !important; +} + +.hover\:translate-y-2:hover { + --tw-translate-y: 0.5rem !important; +} + +.hover\:translate-y-3:hover { + --tw-translate-y: 0.75rem !important; +} + +.hover\:translate-y-4:hover { + --tw-translate-y: 1rem !important; +} + +.hover\:translate-y-5:hover { + --tw-translate-y: 1.25rem !important; +} + +.hover\:translate-y-6:hover { + --tw-translate-y: 1.5rem !important; +} + +.hover\:translate-y-7:hover { + --tw-translate-y: 1.75rem !important; +} + +.hover\:translate-y-8:hover { + --tw-translate-y: 2rem !important; +} + +.hover\:translate-y-9:hover { + --tw-translate-y: 2.25rem !important; +} + +.hover\:translate-y-10:hover { + --tw-translate-y: 2.5rem !important; +} + +.hover\:translate-y-11:hover { + --tw-translate-y: 2.75rem !important; +} + +.hover\:translate-y-12:hover { + --tw-translate-y: 3rem !important; +} + +.hover\:translate-y-14:hover { + --tw-translate-y: 3.5rem !important; +} + +.hover\:translate-y-16:hover { + --tw-translate-y: 4rem !important; +} + +.hover\:translate-y-20:hover { + --tw-translate-y: 5rem !important; +} + +.hover\:translate-y-24:hover { + --tw-translate-y: 6rem !important; +} + +.hover\:translate-y-28:hover { + --tw-translate-y: 7rem !important; +} + +.hover\:translate-y-32:hover { + --tw-translate-y: 8rem !important; +} + +.hover\:translate-y-36:hover { + --tw-translate-y: 9rem !important; +} + +.hover\:translate-y-40:hover { + --tw-translate-y: 10rem !important; +} + +.hover\:translate-y-44:hover { + --tw-translate-y: 11rem !important; +} + +.hover\:translate-y-48:hover { + --tw-translate-y: 12rem !important; +} + +.hover\:translate-y-52:hover { + --tw-translate-y: 13rem !important; +} + +.hover\:translate-y-56:hover { + --tw-translate-y: 14rem !important; +} + +.hover\:translate-y-60:hover { + --tw-translate-y: 15rem !important; +} + +.hover\:translate-y-64:hover { + --tw-translate-y: 16rem !important; +} + +.hover\:translate-y-72:hover { + --tw-translate-y: 18rem !important; +} + +.hover\:translate-y-80:hover { + --tw-translate-y: 20rem !important; +} + +.hover\:translate-y-96:hover { + --tw-translate-y: 24rem !important; +} + +.hover\:translate-y-px:hover { + --tw-translate-y: 1px !important; +} + +.hover\:translate-y-0\.5:hover { + --tw-translate-y: 0.125rem !important; +} + +.hover\:translate-y-1\.5:hover { + --tw-translate-y: 0.375rem !important; +} + +.hover\:translate-y-2\.5:hover { + --tw-translate-y: 0.625rem !important; +} + +.hover\:translate-y-3\.5:hover { + --tw-translate-y: 0.875rem !important; +} + +.hover\:-translate-y-0:hover { + --tw-translate-y: 0px !important; +} + +.hover\:-translate-y-1:hover { + --tw-translate-y: -0.25rem !important; +} + +.hover\:-translate-y-2:hover { + --tw-translate-y: -0.5rem !important; +} + +.hover\:-translate-y-3:hover { + --tw-translate-y: -0.75rem !important; +} + +.hover\:-translate-y-4:hover { + --tw-translate-y: -1rem !important; +} + +.hover\:-translate-y-5:hover { + --tw-translate-y: -1.25rem !important; +} + +.hover\:-translate-y-6:hover { + --tw-translate-y: -1.5rem !important; +} + +.hover\:-translate-y-7:hover { + --tw-translate-y: -1.75rem !important; +} + +.hover\:-translate-y-8:hover { + --tw-translate-y: -2rem !important; +} + +.hover\:-translate-y-9:hover { + --tw-translate-y: -2.25rem !important; +} + +.hover\:-translate-y-10:hover { + --tw-translate-y: -2.5rem !important; +} + +.hover\:-translate-y-11:hover { + --tw-translate-y: -2.75rem !important; +} + +.hover\:-translate-y-12:hover { + --tw-translate-y: -3rem !important; +} + +.hover\:-translate-y-14:hover { + --tw-translate-y: -3.5rem !important; +} + +.hover\:-translate-y-16:hover { + --tw-translate-y: -4rem !important; +} + +.hover\:-translate-y-20:hover { + --tw-translate-y: -5rem !important; +} + +.hover\:-translate-y-24:hover { + --tw-translate-y: -6rem !important; +} + +.hover\:-translate-y-28:hover { + --tw-translate-y: -7rem !important; +} + +.hover\:-translate-y-32:hover { + --tw-translate-y: -8rem !important; +} + +.hover\:-translate-y-36:hover { + --tw-translate-y: -9rem !important; +} + +.hover\:-translate-y-40:hover { + --tw-translate-y: -10rem !important; +} + +.hover\:-translate-y-44:hover { + --tw-translate-y: -11rem !important; +} + +.hover\:-translate-y-48:hover { + --tw-translate-y: -12rem !important; +} + +.hover\:-translate-y-52:hover { + --tw-translate-y: -13rem !important; +} + +.hover\:-translate-y-56:hover { + --tw-translate-y: -14rem !important; +} + +.hover\:-translate-y-60:hover { + --tw-translate-y: -15rem !important; +} + +.hover\:-translate-y-64:hover { + --tw-translate-y: -16rem !important; +} + +.hover\:-translate-y-72:hover { + --tw-translate-y: -18rem !important; +} + +.hover\:-translate-y-80:hover { + --tw-translate-y: -20rem !important; +} + +.hover\:-translate-y-96:hover { + --tw-translate-y: -24rem !important; +} + +.hover\:-translate-y-px:hover { + --tw-translate-y: -1px !important; +} + +.hover\:-translate-y-0\.5:hover { + --tw-translate-y: -0.125rem !important; +} + +.hover\:-translate-y-1\.5:hover { + --tw-translate-y: -0.375rem !important; +} + +.hover\:-translate-y-2\.5:hover { + --tw-translate-y: -0.625rem !important; +} + +.hover\:-translate-y-3\.5:hover { + --tw-translate-y: -0.875rem !important; +} + +.hover\:translate-y-1\/2:hover { + --tw-translate-y: 50% !important; +} + +.hover\:translate-y-1\/3:hover { + --tw-translate-y: 33.333333% !important; +} + +.hover\:translate-y-2\/3:hover { + --tw-translate-y: 66.666667% !important; +} + +.hover\:translate-y-1\/4:hover { + --tw-translate-y: 25% !important; +} + +.hover\:translate-y-2\/4:hover { + --tw-translate-y: 50% !important; +} + +.hover\:translate-y-3\/4:hover { + --tw-translate-y: 75% !important; +} + +.hover\:translate-y-full:hover { + --tw-translate-y: 100% !important; +} + +.hover\:-translate-y-1\/2:hover { + --tw-translate-y: -50% !important; +} + +.hover\:-translate-y-1\/3:hover { + --tw-translate-y: -33.333333% !important; +} + +.hover\:-translate-y-2\/3:hover { + --tw-translate-y: -66.666667% !important; +} + +.hover\:-translate-y-1\/4:hover { + --tw-translate-y: -25% !important; +} + +.hover\:-translate-y-2\/4:hover { + --tw-translate-y: -50% !important; +} + +.hover\:-translate-y-3\/4:hover { + --tw-translate-y: -75% !important; +} + +.hover\:-translate-y-full:hover { + --tw-translate-y: -100% !important; +} + +.focus\:translate-x-0:focus { + --tw-translate-x: 0px !important; +} + +.focus\:translate-x-1:focus { + --tw-translate-x: 0.25rem !important; +} + +.focus\:translate-x-2:focus { + --tw-translate-x: 0.5rem !important; +} + +.focus\:translate-x-3:focus { + --tw-translate-x: 0.75rem !important; +} + +.focus\:translate-x-4:focus { + --tw-translate-x: 1rem !important; +} + +.focus\:translate-x-5:focus { + --tw-translate-x: 1.25rem !important; +} + +.focus\:translate-x-6:focus { + --tw-translate-x: 1.5rem !important; +} + +.focus\:translate-x-7:focus { + --tw-translate-x: 1.75rem !important; +} + +.focus\:translate-x-8:focus { + --tw-translate-x: 2rem !important; +} + +.focus\:translate-x-9:focus { + --tw-translate-x: 2.25rem !important; +} + +.focus\:translate-x-10:focus { + --tw-translate-x: 2.5rem !important; +} + +.focus\:translate-x-11:focus { + --tw-translate-x: 2.75rem !important; +} + +.focus\:translate-x-12:focus { + --tw-translate-x: 3rem !important; +} + +.focus\:translate-x-14:focus { + --tw-translate-x: 3.5rem !important; +} + +.focus\:translate-x-16:focus { + --tw-translate-x: 4rem !important; +} + +.focus\:translate-x-20:focus { + --tw-translate-x: 5rem !important; +} + +.focus\:translate-x-24:focus { + --tw-translate-x: 6rem !important; +} + +.focus\:translate-x-28:focus { + --tw-translate-x: 7rem !important; +} + +.focus\:translate-x-32:focus { + --tw-translate-x: 8rem !important; +} + +.focus\:translate-x-36:focus { + --tw-translate-x: 9rem !important; +} + +.focus\:translate-x-40:focus { + --tw-translate-x: 10rem !important; +} + +.focus\:translate-x-44:focus { + --tw-translate-x: 11rem !important; +} + +.focus\:translate-x-48:focus { + --tw-translate-x: 12rem !important; +} + +.focus\:translate-x-52:focus { + --tw-translate-x: 13rem !important; +} + +.focus\:translate-x-56:focus { + --tw-translate-x: 14rem !important; +} + +.focus\:translate-x-60:focus { + --tw-translate-x: 15rem !important; +} + +.focus\:translate-x-64:focus { + --tw-translate-x: 16rem !important; +} + +.focus\:translate-x-72:focus { + --tw-translate-x: 18rem !important; +} + +.focus\:translate-x-80:focus { + --tw-translate-x: 20rem !important; +} + +.focus\:translate-x-96:focus { + --tw-translate-x: 24rem !important; +} + +.focus\:translate-x-px:focus { + --tw-translate-x: 1px !important; +} + +.focus\:translate-x-0\.5:focus { + --tw-translate-x: 0.125rem !important; +} + +.focus\:translate-x-1\.5:focus { + --tw-translate-x: 0.375rem !important; +} + +.focus\:translate-x-2\.5:focus { + --tw-translate-x: 0.625rem !important; +} + +.focus\:translate-x-3\.5:focus { + --tw-translate-x: 0.875rem !important; +} + +.focus\:-translate-x-0:focus { + --tw-translate-x: 0px !important; +} + +.focus\:-translate-x-1:focus { + --tw-translate-x: -0.25rem !important; +} + +.focus\:-translate-x-2:focus { + --tw-translate-x: -0.5rem !important; +} + +.focus\:-translate-x-3:focus { + --tw-translate-x: -0.75rem !important; +} + +.focus\:-translate-x-4:focus { + --tw-translate-x: -1rem !important; +} + +.focus\:-translate-x-5:focus { + --tw-translate-x: -1.25rem !important; +} + +.focus\:-translate-x-6:focus { + --tw-translate-x: -1.5rem !important; +} + +.focus\:-translate-x-7:focus { + --tw-translate-x: -1.75rem !important; +} + +.focus\:-translate-x-8:focus { + --tw-translate-x: -2rem !important; +} + +.focus\:-translate-x-9:focus { + --tw-translate-x: -2.25rem !important; +} + +.focus\:-translate-x-10:focus { + --tw-translate-x: -2.5rem !important; +} + +.focus\:-translate-x-11:focus { + --tw-translate-x: -2.75rem !important; +} + +.focus\:-translate-x-12:focus { + --tw-translate-x: -3rem !important; +} + +.focus\:-translate-x-14:focus { + --tw-translate-x: -3.5rem !important; +} + +.focus\:-translate-x-16:focus { + --tw-translate-x: -4rem !important; +} + +.focus\:-translate-x-20:focus { + --tw-translate-x: -5rem !important; +} + +.focus\:-translate-x-24:focus { + --tw-translate-x: -6rem !important; +} + +.focus\:-translate-x-28:focus { + --tw-translate-x: -7rem !important; +} + +.focus\:-translate-x-32:focus { + --tw-translate-x: -8rem !important; +} + +.focus\:-translate-x-36:focus { + --tw-translate-x: -9rem !important; +} + +.focus\:-translate-x-40:focus { + --tw-translate-x: -10rem !important; +} + +.focus\:-translate-x-44:focus { + --tw-translate-x: -11rem !important; +} + +.focus\:-translate-x-48:focus { + --tw-translate-x: -12rem !important; +} + +.focus\:-translate-x-52:focus { + --tw-translate-x: -13rem !important; +} + +.focus\:-translate-x-56:focus { + --tw-translate-x: -14rem !important; +} + +.focus\:-translate-x-60:focus { + --tw-translate-x: -15rem !important; +} + +.focus\:-translate-x-64:focus { + --tw-translate-x: -16rem !important; +} + +.focus\:-translate-x-72:focus { + --tw-translate-x: -18rem !important; +} + +.focus\:-translate-x-80:focus { + --tw-translate-x: -20rem !important; +} + +.focus\:-translate-x-96:focus { + --tw-translate-x: -24rem !important; +} + +.focus\:-translate-x-px:focus { + --tw-translate-x: -1px !important; +} + +.focus\:-translate-x-0\.5:focus { + --tw-translate-x: -0.125rem !important; +} + +.focus\:-translate-x-1\.5:focus { + --tw-translate-x: -0.375rem !important; +} + +.focus\:-translate-x-2\.5:focus { + --tw-translate-x: -0.625rem !important; +} + +.focus\:-translate-x-3\.5:focus { + --tw-translate-x: -0.875rem !important; +} + +.focus\:translate-x-1\/2:focus { + --tw-translate-x: 50% !important; +} + +.focus\:translate-x-1\/3:focus { + --tw-translate-x: 33.333333% !important; +} + +.focus\:translate-x-2\/3:focus { + --tw-translate-x: 66.666667% !important; +} + +.focus\:translate-x-1\/4:focus { + --tw-translate-x: 25% !important; +} + +.focus\:translate-x-2\/4:focus { + --tw-translate-x: 50% !important; +} + +.focus\:translate-x-3\/4:focus { + --tw-translate-x: 75% !important; +} + +.focus\:translate-x-full:focus { + --tw-translate-x: 100% !important; +} + +.focus\:-translate-x-1\/2:focus { + --tw-translate-x: -50% !important; +} + +.focus\:-translate-x-1\/3:focus { + --tw-translate-x: -33.333333% !important; +} + +.focus\:-translate-x-2\/3:focus { + --tw-translate-x: -66.666667% !important; +} + +.focus\:-translate-x-1\/4:focus { + --tw-translate-x: -25% !important; +} + +.focus\:-translate-x-2\/4:focus { + --tw-translate-x: -50% !important; +} + +.focus\:-translate-x-3\/4:focus { + --tw-translate-x: -75% !important; +} + +.focus\:-translate-x-full:focus { + --tw-translate-x: -100% !important; +} + +.focus\:translate-y-0:focus { + --tw-translate-y: 0px !important; +} + +.focus\:translate-y-1:focus { + --tw-translate-y: 0.25rem !important; +} + +.focus\:translate-y-2:focus { + --tw-translate-y: 0.5rem !important; +} + +.focus\:translate-y-3:focus { + --tw-translate-y: 0.75rem !important; +} + +.focus\:translate-y-4:focus { + --tw-translate-y: 1rem !important; +} + +.focus\:translate-y-5:focus { + --tw-translate-y: 1.25rem !important; +} + +.focus\:translate-y-6:focus { + --tw-translate-y: 1.5rem !important; +} + +.focus\:translate-y-7:focus { + --tw-translate-y: 1.75rem !important; +} + +.focus\:translate-y-8:focus { + --tw-translate-y: 2rem !important; +} + +.focus\:translate-y-9:focus { + --tw-translate-y: 2.25rem !important; +} + +.focus\:translate-y-10:focus { + --tw-translate-y: 2.5rem !important; +} + +.focus\:translate-y-11:focus { + --tw-translate-y: 2.75rem !important; +} + +.focus\:translate-y-12:focus { + --tw-translate-y: 3rem !important; +} + +.focus\:translate-y-14:focus { + --tw-translate-y: 3.5rem !important; +} + +.focus\:translate-y-16:focus { + --tw-translate-y: 4rem !important; +} + +.focus\:translate-y-20:focus { + --tw-translate-y: 5rem !important; +} + +.focus\:translate-y-24:focus { + --tw-translate-y: 6rem !important; +} + +.focus\:translate-y-28:focus { + --tw-translate-y: 7rem !important; +} + +.focus\:translate-y-32:focus { + --tw-translate-y: 8rem !important; +} + +.focus\:translate-y-36:focus { + --tw-translate-y: 9rem !important; +} + +.focus\:translate-y-40:focus { + --tw-translate-y: 10rem !important; +} + +.focus\:translate-y-44:focus { + --tw-translate-y: 11rem !important; +} + +.focus\:translate-y-48:focus { + --tw-translate-y: 12rem !important; +} + +.focus\:translate-y-52:focus { + --tw-translate-y: 13rem !important; +} + +.focus\:translate-y-56:focus { + --tw-translate-y: 14rem !important; +} + +.focus\:translate-y-60:focus { + --tw-translate-y: 15rem !important; +} + +.focus\:translate-y-64:focus { + --tw-translate-y: 16rem !important; +} + +.focus\:translate-y-72:focus { + --tw-translate-y: 18rem !important; +} + +.focus\:translate-y-80:focus { + --tw-translate-y: 20rem !important; +} + +.focus\:translate-y-96:focus { + --tw-translate-y: 24rem !important; +} + +.focus\:translate-y-px:focus { + --tw-translate-y: 1px !important; +} + +.focus\:translate-y-0\.5:focus { + --tw-translate-y: 0.125rem !important; +} + +.focus\:translate-y-1\.5:focus { + --tw-translate-y: 0.375rem !important; +} + +.focus\:translate-y-2\.5:focus { + --tw-translate-y: 0.625rem !important; +} + +.focus\:translate-y-3\.5:focus { + --tw-translate-y: 0.875rem !important; +} + +.focus\:-translate-y-0:focus { + --tw-translate-y: 0px !important; +} + +.focus\:-translate-y-1:focus { + --tw-translate-y: -0.25rem !important; +} + +.focus\:-translate-y-2:focus { + --tw-translate-y: -0.5rem !important; +} + +.focus\:-translate-y-3:focus { + --tw-translate-y: -0.75rem !important; +} + +.focus\:-translate-y-4:focus { + --tw-translate-y: -1rem !important; +} + +.focus\:-translate-y-5:focus { + --tw-translate-y: -1.25rem !important; +} + +.focus\:-translate-y-6:focus { + --tw-translate-y: -1.5rem !important; +} + +.focus\:-translate-y-7:focus { + --tw-translate-y: -1.75rem !important; +} + +.focus\:-translate-y-8:focus { + --tw-translate-y: -2rem !important; +} + +.focus\:-translate-y-9:focus { + --tw-translate-y: -2.25rem !important; +} + +.focus\:-translate-y-10:focus { + --tw-translate-y: -2.5rem !important; +} + +.focus\:-translate-y-11:focus { + --tw-translate-y: -2.75rem !important; +} + +.focus\:-translate-y-12:focus { + --tw-translate-y: -3rem !important; +} + +.focus\:-translate-y-14:focus { + --tw-translate-y: -3.5rem !important; +} + +.focus\:-translate-y-16:focus { + --tw-translate-y: -4rem !important; +} + +.focus\:-translate-y-20:focus { + --tw-translate-y: -5rem !important; +} + +.focus\:-translate-y-24:focus { + --tw-translate-y: -6rem !important; +} + +.focus\:-translate-y-28:focus { + --tw-translate-y: -7rem !important; +} + +.focus\:-translate-y-32:focus { + --tw-translate-y: -8rem !important; +} + +.focus\:-translate-y-36:focus { + --tw-translate-y: -9rem !important; +} + +.focus\:-translate-y-40:focus { + --tw-translate-y: -10rem !important; +} + +.focus\:-translate-y-44:focus { + --tw-translate-y: -11rem !important; +} + +.focus\:-translate-y-48:focus { + --tw-translate-y: -12rem !important; +} + +.focus\:-translate-y-52:focus { + --tw-translate-y: -13rem !important; +} + +.focus\:-translate-y-56:focus { + --tw-translate-y: -14rem !important; +} + +.focus\:-translate-y-60:focus { + --tw-translate-y: -15rem !important; +} + +.focus\:-translate-y-64:focus { + --tw-translate-y: -16rem !important; +} + +.focus\:-translate-y-72:focus { + --tw-translate-y: -18rem !important; +} + +.focus\:-translate-y-80:focus { + --tw-translate-y: -20rem !important; +} + +.focus\:-translate-y-96:focus { + --tw-translate-y: -24rem !important; +} + +.focus\:-translate-y-px:focus { + --tw-translate-y: -1px !important; +} + +.focus\:-translate-y-0\.5:focus { + --tw-translate-y: -0.125rem !important; +} + +.focus\:-translate-y-1\.5:focus { + --tw-translate-y: -0.375rem !important; +} + +.focus\:-translate-y-2\.5:focus { + --tw-translate-y: -0.625rem !important; +} + +.focus\:-translate-y-3\.5:focus { + --tw-translate-y: -0.875rem !important; +} + +.focus\:translate-y-1\/2:focus { + --tw-translate-y: 50% !important; +} + +.focus\:translate-y-1\/3:focus { + --tw-translate-y: 33.333333% !important; +} + +.focus\:translate-y-2\/3:focus { + --tw-translate-y: 66.666667% !important; +} + +.focus\:translate-y-1\/4:focus { + --tw-translate-y: 25% !important; +} + +.focus\:translate-y-2\/4:focus { + --tw-translate-y: 50% !important; +} + +.focus\:translate-y-3\/4:focus { + --tw-translate-y: 75% !important; +} + +.focus\:translate-y-full:focus { + --tw-translate-y: 100% !important; +} + +.focus\:-translate-y-1\/2:focus { + --tw-translate-y: -50% !important; +} + +.focus\:-translate-y-1\/3:focus { + --tw-translate-y: -33.333333% !important; +} + +.focus\:-translate-y-2\/3:focus { + --tw-translate-y: -66.666667% !important; +} + +.focus\:-translate-y-1\/4:focus { + --tw-translate-y: -25% !important; +} + +.focus\:-translate-y-2\/4:focus { + --tw-translate-y: -50% !important; +} + +.focus\:-translate-y-3\/4:focus { + --tw-translate-y: -75% !important; +} + +.focus\:-translate-y-full:focus { + --tw-translate-y: -100% !important; +} + +.skew-x-0 { + --tw-skew-x: 0deg !important; +} + +.skew-x-1 { + --tw-skew-x: 1deg !important; +} + +.skew-x-2 { + --tw-skew-x: 2deg !important; +} + +.skew-x-3 { + --tw-skew-x: 3deg !important; +} + +.skew-x-6 { + --tw-skew-x: 6deg !important; +} + +.skew-x-12 { + --tw-skew-x: 12deg !important; +} + +.-skew-x-12 { + --tw-skew-x: -12deg !important; +} + +.-skew-x-6 { + --tw-skew-x: -6deg !important; +} + +.-skew-x-3 { + --tw-skew-x: -3deg !important; +} + +.-skew-x-2 { + --tw-skew-x: -2deg !important; +} + +.-skew-x-1 { + --tw-skew-x: -1deg !important; +} + +.skew-y-0 { + --tw-skew-y: 0deg !important; +} + +.skew-y-1 { + --tw-skew-y: 1deg !important; +} + +.skew-y-2 { + --tw-skew-y: 2deg !important; +} + +.skew-y-3 { + --tw-skew-y: 3deg !important; +} + +.skew-y-6 { + --tw-skew-y: 6deg !important; +} + +.skew-y-12 { + --tw-skew-y: 12deg !important; +} + +.-skew-y-12 { + --tw-skew-y: -12deg !important; +} + +.-skew-y-6 { + --tw-skew-y: -6deg !important; +} + +.-skew-y-3 { + --tw-skew-y: -3deg !important; +} + +.-skew-y-2 { + --tw-skew-y: -2deg !important; +} + +.-skew-y-1 { + --tw-skew-y: -1deg !important; +} + +.hover\:skew-x-0:hover { + --tw-skew-x: 0deg !important; +} + +.hover\:skew-x-1:hover { + --tw-skew-x: 1deg !important; +} + +.hover\:skew-x-2:hover { + --tw-skew-x: 2deg !important; +} + +.hover\:skew-x-3:hover { + --tw-skew-x: 3deg !important; +} + +.hover\:skew-x-6:hover { + --tw-skew-x: 6deg !important; +} + +.hover\:skew-x-12:hover { + --tw-skew-x: 12deg !important; +} + +.hover\:-skew-x-12:hover { + --tw-skew-x: -12deg !important; +} + +.hover\:-skew-x-6:hover { + --tw-skew-x: -6deg !important; +} + +.hover\:-skew-x-3:hover { + --tw-skew-x: -3deg !important; +} + +.hover\:-skew-x-2:hover { + --tw-skew-x: -2deg !important; +} + +.hover\:-skew-x-1:hover { + --tw-skew-x: -1deg !important; +} + +.hover\:skew-y-0:hover { + --tw-skew-y: 0deg !important; +} + +.hover\:skew-y-1:hover { + --tw-skew-y: 1deg !important; +} + +.hover\:skew-y-2:hover { + --tw-skew-y: 2deg !important; +} + +.hover\:skew-y-3:hover { + --tw-skew-y: 3deg !important; +} + +.hover\:skew-y-6:hover { + --tw-skew-y: 6deg !important; +} + +.hover\:skew-y-12:hover { + --tw-skew-y: 12deg !important; +} + +.hover\:-skew-y-12:hover { + --tw-skew-y: -12deg !important; +} + +.hover\:-skew-y-6:hover { + --tw-skew-y: -6deg !important; +} + +.hover\:-skew-y-3:hover { + --tw-skew-y: -3deg !important; +} + +.hover\:-skew-y-2:hover { + --tw-skew-y: -2deg !important; +} + +.hover\:-skew-y-1:hover { + --tw-skew-y: -1deg !important; +} + +.focus\:skew-x-0:focus { + --tw-skew-x: 0deg !important; +} + +.focus\:skew-x-1:focus { + --tw-skew-x: 1deg !important; +} + +.focus\:skew-x-2:focus { + --tw-skew-x: 2deg !important; +} + +.focus\:skew-x-3:focus { + --tw-skew-x: 3deg !important; +} + +.focus\:skew-x-6:focus { + --tw-skew-x: 6deg !important; +} + +.focus\:skew-x-12:focus { + --tw-skew-x: 12deg !important; +} + +.focus\:-skew-x-12:focus { + --tw-skew-x: -12deg !important; +} + +.focus\:-skew-x-6:focus { + --tw-skew-x: -6deg !important; +} + +.focus\:-skew-x-3:focus { + --tw-skew-x: -3deg !important; +} + +.focus\:-skew-x-2:focus { + --tw-skew-x: -2deg !important; +} + +.focus\:-skew-x-1:focus { + --tw-skew-x: -1deg !important; +} + +.focus\:skew-y-0:focus { + --tw-skew-y: 0deg !important; +} + +.focus\:skew-y-1:focus { + --tw-skew-y: 1deg !important; +} + +.focus\:skew-y-2:focus { + --tw-skew-y: 2deg !important; +} + +.focus\:skew-y-3:focus { + --tw-skew-y: 3deg !important; +} + +.focus\:skew-y-6:focus { + --tw-skew-y: 6deg !important; +} + +.focus\:skew-y-12:focus { + --tw-skew-y: 12deg !important; +} + +.focus\:-skew-y-12:focus { + --tw-skew-y: -12deg !important; +} + +.focus\:-skew-y-6:focus { + --tw-skew-y: -6deg !important; +} + +.focus\:-skew-y-3:focus { + --tw-skew-y: -3deg !important; +} + +.focus\:-skew-y-2:focus { + --tw-skew-y: -2deg !important; +} + +.focus\:-skew-y-1:focus { + --tw-skew-y: -1deg !important; +} + +.transition-none { + transition-property: none !important; +} + +.transition-all { + transition-property: all !important; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important; + transition-duration: 150ms !important; +} + +.transition { + transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter !important; + transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter !important; + transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter !important; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important; + transition-duration: 150ms !important; +} + +.transition-colors { + transition-property: background-color, border-color, color, fill, stroke !important; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important; + transition-duration: 150ms !important; +} + +.transition-opacity { + transition-property: opacity !important; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important; + transition-duration: 150ms !important; +} + +.transition-shadow { + transition-property: box-shadow !important; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important; + transition-duration: 150ms !important; +} + +.transition-transform { + transition-property: transform !important; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important; + transition-duration: 150ms !important; +} + +.ease-linear { + transition-timing-function: linear !important; +} + +.ease-in { + transition-timing-function: cubic-bezier(0.4, 0, 1, 1) !important; +} + +.ease-out { + transition-timing-function: cubic-bezier(0, 0, 0.2, 1) !important; +} + +.ease-in-out { + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important; +} + +.duration-75 { + transition-duration: 75ms !important; +} + +.duration-100 { + transition-duration: 100ms !important; +} + +.duration-150 { + transition-duration: 150ms !important; +} + +.duration-200 { + transition-duration: 200ms !important; +} + +.duration-300 { + transition-duration: 300ms !important; +} + +.duration-500 { + transition-duration: 500ms !important; +} + +.duration-700 { + transition-duration: 700ms !important; +} + +.duration-1000 { + transition-duration: 1000ms !important; +} + +.delay-75 { + transition-delay: 75ms !important; +} + +.delay-100 { + transition-delay: 100ms !important; +} + +.delay-150 { + transition-delay: 150ms !important; +} + +.delay-200 { + transition-delay: 200ms !important; +} + +.delay-300 { + transition-delay: 300ms !important; +} + +.delay-500 { + transition-delay: 500ms !important; +} + +.delay-700 { + transition-delay: 700ms !important; +} + +.delay-1000 { + transition-delay: 1000ms !important; +} + +@-webkit-keyframes spin { + to { + transform: rotate(360deg); + } +} + +@keyframes spin { + to { + transform: rotate(360deg); + } +} + +@-webkit-keyframes ping { + 75%, 100% { + transform: scale(2); + opacity: 0; + } +} + +@keyframes ping { + 75%, 100% { + transform: scale(2); + opacity: 0; + } +} + +@-webkit-keyframes pulse { + 50% { + opacity: .5; + } +} + +@keyframes pulse { + 50% { + opacity: .5; + } +} + +@-webkit-keyframes bounce { + 0%, 100% { + transform: translateY(-25%); + -webkit-animation-timing-function: cubic-bezier(0.8,0,1,1); + animation-timing-function: cubic-bezier(0.8,0,1,1); + } + + 50% { + transform: none; + -webkit-animation-timing-function: cubic-bezier(0,0,0.2,1); + animation-timing-function: cubic-bezier(0,0,0.2,1); + } +} + +@keyframes bounce { + 0%, 100% { + transform: translateY(-25%); + -webkit-animation-timing-function: cubic-bezier(0.8,0,1,1); + animation-timing-function: cubic-bezier(0.8,0,1,1); + } + + 50% { + transform: none; + -webkit-animation-timing-function: cubic-bezier(0,0,0.2,1); + animation-timing-function: cubic-bezier(0,0,0.2,1); + } +} + +.animate-none { + -webkit-animation: none !important; + animation: none !important; +} + +.animate-spin { + -webkit-animation: spin 1s linear infinite !important; + animation: spin 1s linear infinite !important; +} + +.animate-ping { + -webkit-animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite !important; + animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite !important; +} + +.animate-pulse { + -webkit-animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite !important; + animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite !important; +} + +.animate-bounce { + -webkit-animation: bounce 1s infinite !important; + animation: bounce 1s infinite !important; +} + +.mix-blend-normal { + mix-blend-mode: normal !important; +} + +.mix-blend-multiply { + mix-blend-mode: multiply !important; +} + +.mix-blend-screen { + mix-blend-mode: screen !important; +} + +.mix-blend-overlay { + mix-blend-mode: overlay !important; +} + +.mix-blend-darken { + mix-blend-mode: darken !important; +} + +.mix-blend-lighten { + mix-blend-mode: lighten !important; +} + +.mix-blend-color-dodge { + mix-blend-mode: color-dodge !important; +} + +.mix-blend-color-burn { + mix-blend-mode: color-burn !important; +} + +.mix-blend-hard-light { + mix-blend-mode: hard-light !important; +} + +.mix-blend-soft-light { + mix-blend-mode: soft-light !important; +} + +.mix-blend-difference { + mix-blend-mode: difference !important; +} + +.mix-blend-exclusion { + mix-blend-mode: exclusion !important; +} + +.mix-blend-hue { + mix-blend-mode: hue !important; +} + +.mix-blend-saturation { + mix-blend-mode: saturation !important; +} + +.mix-blend-color { + mix-blend-mode: color !important; +} + +.mix-blend-luminosity { + mix-blend-mode: luminosity !important; +} + +.bg-blend-normal { + background-blend-mode: normal !important; +} + +.bg-blend-multiply { + background-blend-mode: multiply !important; +} + +.bg-blend-screen { + background-blend-mode: screen !important; +} + +.bg-blend-overlay { + background-blend-mode: overlay !important; +} + +.bg-blend-darken { + background-blend-mode: darken !important; +} + +.bg-blend-lighten { + background-blend-mode: lighten !important; +} + +.bg-blend-color-dodge { + background-blend-mode: color-dodge !important; +} + +.bg-blend-color-burn { + background-blend-mode: color-burn !important; +} + +.bg-blend-hard-light { + background-blend-mode: hard-light !important; +} + +.bg-blend-soft-light { + background-blend-mode: soft-light !important; +} + +.bg-blend-difference { + background-blend-mode: difference !important; +} + +.bg-blend-exclusion { + background-blend-mode: exclusion !important; +} + +.bg-blend-hue { + background-blend-mode: hue !important; +} + +.bg-blend-saturation { + background-blend-mode: saturation !important; +} + +.bg-blend-color { + background-blend-mode: color !important; +} + +.bg-blend-luminosity { + background-blend-mode: luminosity !important; +} + +.filter { + --tw-blur: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-brightness: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-contrast: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-grayscale: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-hue-rotate: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-invert: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-saturate: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-sepia: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-drop-shadow: var(--tw-empty,/*!*/ /*!*/) !important; + 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) !important; +} + +.filter-none { + filter: none !important; +} + +.blur-0 { + --tw-blur: blur(0) !important; +} + +.blur-sm { + --tw-blur: blur(4px) !important; +} + +.blur { + --tw-blur: blur(8px) !important; +} + +.blur-md { + --tw-blur: blur(12px) !important; +} + +.blur-lg { + --tw-blur: blur(16px) !important; +} + +.blur-xl { + --tw-blur: blur(24px) !important; +} + +.blur-2xl { + --tw-blur: blur(40px) !important; +} + +.blur-3xl { + --tw-blur: blur(64px) !important; +} + +.brightness-0 { + --tw-brightness: brightness(0) !important; +} + +.brightness-50 { + --tw-brightness: brightness(.5) !important; +} + +.brightness-75 { + --tw-brightness: brightness(.75) !important; +} + +.brightness-90 { + --tw-brightness: brightness(.9) !important; +} + +.brightness-95 { + --tw-brightness: brightness(.95) !important; +} + +.brightness-100 { + --tw-brightness: brightness(1) !important; +} + +.brightness-105 { + --tw-brightness: brightness(1.05) !important; +} + +.brightness-110 { + --tw-brightness: brightness(1.1) !important; +} + +.brightness-125 { + --tw-brightness: brightness(1.25) !important; +} + +.brightness-150 { + --tw-brightness: brightness(1.5) !important; +} + +.brightness-200 { + --tw-brightness: brightness(2) !important; +} + +.contrast-0 { + --tw-contrast: contrast(0) !important; +} + +.contrast-50 { + --tw-contrast: contrast(.5) !important; +} + +.contrast-75 { + --tw-contrast: contrast(.75) !important; +} + +.contrast-100 { + --tw-contrast: contrast(1) !important; +} + +.contrast-125 { + --tw-contrast: contrast(1.25) !important; +} + +.contrast-150 { + --tw-contrast: contrast(1.5) !important; +} + +.contrast-200 { + --tw-contrast: contrast(2) !important; +} + +.drop-shadow-sm { + --tw-drop-shadow: drop-shadow(0 1px 1px rgba(0,0,0,0.05)) !important; +} + +.drop-shadow { + --tw-drop-shadow: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1)) drop-shadow(0 1px 1px rgba(0, 0, 0, 0.06)) !important; +} + +.drop-shadow-md { + --tw-drop-shadow: drop-shadow(0 4px 3px rgba(0, 0, 0, 0.07)) drop-shadow(0 2px 2px rgba(0, 0, 0, 0.06)) !important; +} + +.drop-shadow-lg { + --tw-drop-shadow: drop-shadow(0 10px 8px rgba(0, 0, 0, 0.04)) drop-shadow(0 4px 3px rgba(0, 0, 0, 0.1)) !important; +} + +.drop-shadow-xl { + --tw-drop-shadow: drop-shadow(0 20px 13px rgba(0, 0, 0, 0.03)) drop-shadow(0 8px 5px rgba(0, 0, 0, 0.08)) !important; +} + +.drop-shadow-2xl { + --tw-drop-shadow: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.15)) !important; +} + +.drop-shadow-none { + --tw-drop-shadow: drop-shadow(0 0 #0000) !important; +} + +.grayscale-0 { + --tw-grayscale: grayscale(0) !important; +} + +.grayscale { + --tw-grayscale: grayscale(100%) !important; +} + +.hue-rotate-0 { + --tw-hue-rotate: hue-rotate(0deg) !important; +} + +.hue-rotate-15 { + --tw-hue-rotate: hue-rotate(15deg) !important; +} + +.hue-rotate-30 { + --tw-hue-rotate: hue-rotate(30deg) !important; +} + +.hue-rotate-60 { + --tw-hue-rotate: hue-rotate(60deg) !important; +} + +.hue-rotate-90 { + --tw-hue-rotate: hue-rotate(90deg) !important; +} + +.hue-rotate-180 { + --tw-hue-rotate: hue-rotate(180deg) !important; +} + +.-hue-rotate-180 { + --tw-hue-rotate: hue-rotate(-180deg) !important; +} + +.-hue-rotate-90 { + --tw-hue-rotate: hue-rotate(-90deg) !important; +} + +.-hue-rotate-60 { + --tw-hue-rotate: hue-rotate(-60deg) !important; +} + +.-hue-rotate-30 { + --tw-hue-rotate: hue-rotate(-30deg) !important; +} + +.-hue-rotate-15 { + --tw-hue-rotate: hue-rotate(-15deg) !important; +} + +.invert-0 { + --tw-invert: invert(0) !important; +} + +.invert { + --tw-invert: invert(100%) !important; +} + +.saturate-0 { + --tw-saturate: saturate(0) !important; +} + +.saturate-50 { + --tw-saturate: saturate(.5) !important; +} + +.saturate-100 { + --tw-saturate: saturate(1) !important; +} + +.saturate-150 { + --tw-saturate: saturate(1.5) !important; +} + +.saturate-200 { + --tw-saturate: saturate(2) !important; +} + +.sepia-0 { + --tw-sepia: sepia(0) !important; +} + +.sepia { + --tw-sepia: sepia(100%) !important; +} + +.backdrop-filter { + --tw-backdrop-blur: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-backdrop-brightness: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-backdrop-contrast: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-backdrop-grayscale: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-backdrop-hue-rotate: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-backdrop-invert: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-backdrop-opacity: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-backdrop-saturate: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-backdrop-sepia: var(--tw-empty,/*!*/ /*!*/) !important; + -webkit-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) !important; + 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) !important; +} + +.backdrop-filter-none { + -webkit-backdrop-filter: none !important; + backdrop-filter: none !important; +} + +.backdrop-blur-0 { + --tw-backdrop-blur: blur(0) !important; +} + +.backdrop-blur-sm { + --tw-backdrop-blur: blur(4px) !important; +} + +.backdrop-blur { + --tw-backdrop-blur: blur(8px) !important; +} + +.backdrop-blur-md { + --tw-backdrop-blur: blur(12px) !important; +} + +.backdrop-blur-lg { + --tw-backdrop-blur: blur(16px) !important; +} + +.backdrop-blur-xl { + --tw-backdrop-blur: blur(24px) !important; +} + +.backdrop-blur-2xl { + --tw-backdrop-blur: blur(40px) !important; +} + +.backdrop-blur-3xl { + --tw-backdrop-blur: blur(64px) !important; +} + +.backdrop-brightness-0 { + --tw-backdrop-brightness: brightness(0) !important; +} + +.backdrop-brightness-50 { + --tw-backdrop-brightness: brightness(.5) !important; +} + +.backdrop-brightness-75 { + --tw-backdrop-brightness: brightness(.75) !important; +} + +.backdrop-brightness-90 { + --tw-backdrop-brightness: brightness(.9) !important; +} + +.backdrop-brightness-95 { + --tw-backdrop-brightness: brightness(.95) !important; +} + +.backdrop-brightness-100 { + --tw-backdrop-brightness: brightness(1) !important; +} + +.backdrop-brightness-105 { + --tw-backdrop-brightness: brightness(1.05) !important; +} + +.backdrop-brightness-110 { + --tw-backdrop-brightness: brightness(1.1) !important; +} + +.backdrop-brightness-125 { + --tw-backdrop-brightness: brightness(1.25) !important; +} + +.backdrop-brightness-150 { + --tw-backdrop-brightness: brightness(1.5) !important; +} + +.backdrop-brightness-200 { + --tw-backdrop-brightness: brightness(2) !important; +} + +.backdrop-contrast-0 { + --tw-backdrop-contrast: contrast(0) !important; +} + +.backdrop-contrast-50 { + --tw-backdrop-contrast: contrast(.5) !important; +} + +.backdrop-contrast-75 { + --tw-backdrop-contrast: contrast(.75) !important; +} + +.backdrop-contrast-100 { + --tw-backdrop-contrast: contrast(1) !important; +} + +.backdrop-contrast-125 { + --tw-backdrop-contrast: contrast(1.25) !important; +} + +.backdrop-contrast-150 { + --tw-backdrop-contrast: contrast(1.5) !important; +} + +.backdrop-contrast-200 { + --tw-backdrop-contrast: contrast(2) !important; +} + +.backdrop-grayscale-0 { + --tw-backdrop-grayscale: grayscale(0) !important; +} + +.backdrop-grayscale { + --tw-backdrop-grayscale: grayscale(100%) !important; +} + +.backdrop-hue-rotate-0 { + --tw-backdrop-hue-rotate: hue-rotate(0deg) !important; +} + +.backdrop-hue-rotate-15 { + --tw-backdrop-hue-rotate: hue-rotate(15deg) !important; +} + +.backdrop-hue-rotate-30 { + --tw-backdrop-hue-rotate: hue-rotate(30deg) !important; +} + +.backdrop-hue-rotate-60 { + --tw-backdrop-hue-rotate: hue-rotate(60deg) !important; +} + +.backdrop-hue-rotate-90 { + --tw-backdrop-hue-rotate: hue-rotate(90deg) !important; +} + +.backdrop-hue-rotate-180 { + --tw-backdrop-hue-rotate: hue-rotate(180deg) !important; +} + +.-backdrop-hue-rotate-180 { + --tw-backdrop-hue-rotate: hue-rotate(-180deg) !important; +} + +.-backdrop-hue-rotate-90 { + --tw-backdrop-hue-rotate: hue-rotate(-90deg) !important; +} + +.-backdrop-hue-rotate-60 { + --tw-backdrop-hue-rotate: hue-rotate(-60deg) !important; +} + +.-backdrop-hue-rotate-30 { + --tw-backdrop-hue-rotate: hue-rotate(-30deg) !important; +} + +.-backdrop-hue-rotate-15 { + --tw-backdrop-hue-rotate: hue-rotate(-15deg) !important; +} + +.backdrop-invert-0 { + --tw-backdrop-invert: invert(0) !important; +} + +.backdrop-invert { + --tw-backdrop-invert: invert(100%) !important; +} + +.backdrop-opacity-0 { + --tw-backdrop-opacity: opacity(0) !important; +} + +.backdrop-opacity-5 { + --tw-backdrop-opacity: opacity(0.05) !important; +} + +.backdrop-opacity-10 { + --tw-backdrop-opacity: opacity(0.1) !important; +} + +.backdrop-opacity-20 { + --tw-backdrop-opacity: opacity(0.2) !important; +} + +.backdrop-opacity-25 { + --tw-backdrop-opacity: opacity(0.25) !important; +} + +.backdrop-opacity-30 { + --tw-backdrop-opacity: opacity(0.3) !important; +} + +.backdrop-opacity-40 { + --tw-backdrop-opacity: opacity(0.4) !important; +} + +.backdrop-opacity-50 { + --tw-backdrop-opacity: opacity(0.5) !important; +} + +.backdrop-opacity-60 { + --tw-backdrop-opacity: opacity(0.6) !important; +} + +.backdrop-opacity-70 { + --tw-backdrop-opacity: opacity(0.7) !important; +} + +.backdrop-opacity-75 { + --tw-backdrop-opacity: opacity(0.75) !important; +} + +.backdrop-opacity-80 { + --tw-backdrop-opacity: opacity(0.8) !important; +} + +.backdrop-opacity-90 { + --tw-backdrop-opacity: opacity(0.9) !important; +} + +.backdrop-opacity-95 { + --tw-backdrop-opacity: opacity(0.95) !important; +} + +.backdrop-opacity-100 { + --tw-backdrop-opacity: opacity(1) !important; +} + +.backdrop-saturate-0 { + --tw-backdrop-saturate: saturate(0) !important; +} + +.backdrop-saturate-50 { + --tw-backdrop-saturate: saturate(.5) !important; +} + +.backdrop-saturate-100 { + --tw-backdrop-saturate: saturate(1) !important; +} + +.backdrop-saturate-150 { + --tw-backdrop-saturate: saturate(1.5) !important; +} + +.backdrop-saturate-200 { + --tw-backdrop-saturate: saturate(2) !important; +} + +.backdrop-sepia-0 { + --tw-backdrop-sepia: sepia(0) !important; +} + +.backdrop-sepia { + --tw-backdrop-sepia: sepia(100%) !important; +} + +.ant-table { + --tw-text-opacity: 1; + color: rgba(17, 24, 39, var(--tw-text-opacity)); +} + +.ant-table-tbody > tr > td { + --tw-border-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)); +} + +.ant-table-thead > tr > th { + --tw-bg-opacity: 1; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); + font-weight: 700; + --tw-text-opacity: 1; + color: rgba(17, 24, 39, var(--tw-text-opacity)); +} + +.ant-table tr:nth-child(even) { + --tw-bg-opacity: 1; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); +} + +@media (min-width: 640px) { + .sm\:container { + width: 100%; + } + + @media (min-width: 640px) { + .sm\:container { + max-width: 640px; + } + } + + @media (min-width: 768px) { + .sm\:container { + max-width: 768px; + } + } + + @media (min-width: 1024px) { + .sm\:container { + max-width: 1024px; + } + } + + @media (min-width: 1280px) { + .sm\:container { + max-width: 1280px; + } + } + + @media (min-width: 1536px) { + .sm\:container { + max-width: 1536px; + } + } + + .sm\:space-y-0 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(0px * var(--tw-space-y-reverse)) !important; + } + + .sm\:space-x-0 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(0px * var(--tw-space-x-reverse)) !important; + margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .sm\:space-y-1 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(0.25rem * var(--tw-space-y-reverse)) !important; + } + + .sm\:space-x-1 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(0.25rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(0.25rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .sm\:space-y-2 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(0.5rem * var(--tw-space-y-reverse)) !important; + } + + .sm\:space-x-2 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(0.5rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .sm\:space-y-3 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(0.75rem * var(--tw-space-y-reverse)) !important; + } + + .sm\:space-x-3 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(0.75rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(0.75rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .sm\:space-y-4 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(1rem * var(--tw-space-y-reverse)) !important; + } + + .sm\:space-x-4 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(1rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .sm\:space-y-5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(1.25rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(1.25rem * var(--tw-space-y-reverse)) !important; + } + + .sm\:space-x-5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(1.25rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(1.25rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .sm\:space-y-6 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(1.5rem * var(--tw-space-y-reverse)) !important; + } + + .sm\:space-x-6 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(1.5rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(1.5rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .sm\:space-y-7 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(1.75rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(1.75rem * var(--tw-space-y-reverse)) !important; + } + + .sm\:space-x-7 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(1.75rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(1.75rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .sm\:space-y-8 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(2rem * var(--tw-space-y-reverse)) !important; + } + + .sm\:space-x-8 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(2rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(2rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .sm\:space-y-9 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(2.25rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(2.25rem * var(--tw-space-y-reverse)) !important; + } + + .sm\:space-x-9 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(2.25rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(2.25rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .sm\:space-y-10 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(2.5rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(2.5rem * var(--tw-space-y-reverse)) !important; + } + + .sm\:space-x-10 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(2.5rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(2.5rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .sm\:space-y-11 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(2.75rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(2.75rem * var(--tw-space-y-reverse)) !important; + } + + .sm\:space-x-11 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(2.75rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(2.75rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .sm\:space-y-12 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(3rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(3rem * var(--tw-space-y-reverse)) !important; + } + + .sm\:space-x-12 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(3rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(3rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .sm\:space-y-14 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(3.5rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(3.5rem * var(--tw-space-y-reverse)) !important; + } + + .sm\:space-x-14 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(3.5rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(3.5rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .sm\:space-y-16 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(4rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(4rem * var(--tw-space-y-reverse)) !important; + } + + .sm\:space-x-16 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(4rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(4rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .sm\:space-y-20 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(5rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(5rem * var(--tw-space-y-reverse)) !important; + } + + .sm\:space-x-20 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(5rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(5rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .sm\:space-y-24 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(6rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(6rem * var(--tw-space-y-reverse)) !important; + } + + .sm\:space-x-24 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(6rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(6rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .sm\:space-y-28 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(7rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(7rem * var(--tw-space-y-reverse)) !important; + } + + .sm\:space-x-28 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(7rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(7rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .sm\:space-y-32 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(8rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(8rem * var(--tw-space-y-reverse)) !important; + } + + .sm\:space-x-32 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(8rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(8rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .sm\:space-y-36 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(9rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(9rem * var(--tw-space-y-reverse)) !important; + } + + .sm\:space-x-36 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(9rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(9rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .sm\:space-y-40 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(10rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(10rem * var(--tw-space-y-reverse)) !important; + } + + .sm\:space-x-40 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(10rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(10rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .sm\:space-y-44 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(11rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(11rem * var(--tw-space-y-reverse)) !important; + } + + .sm\:space-x-44 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(11rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(11rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .sm\:space-y-48 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(12rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(12rem * var(--tw-space-y-reverse)) !important; + } + + .sm\:space-x-48 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(12rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(12rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .sm\:space-y-52 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(13rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(13rem * var(--tw-space-y-reverse)) !important; + } + + .sm\:space-x-52 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(13rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(13rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .sm\:space-y-56 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(14rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(14rem * var(--tw-space-y-reverse)) !important; + } + + .sm\:space-x-56 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(14rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(14rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .sm\:space-y-60 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(15rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(15rem * var(--tw-space-y-reverse)) !important; + } + + .sm\:space-x-60 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(15rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(15rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .sm\:space-y-64 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(16rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(16rem * var(--tw-space-y-reverse)) !important; + } + + .sm\:space-x-64 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(16rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(16rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .sm\:space-y-72 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(18rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(18rem * var(--tw-space-y-reverse)) !important; + } + + .sm\:space-x-72 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(18rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(18rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .sm\:space-y-80 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(20rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(20rem * var(--tw-space-y-reverse)) !important; + } + + .sm\:space-x-80 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(20rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(20rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .sm\:space-y-96 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(24rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(24rem * var(--tw-space-y-reverse)) !important; + } + + .sm\:space-x-96 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(24rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(24rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .sm\:space-y-px > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(1px * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(1px * var(--tw-space-y-reverse)) !important; + } + + .sm\:space-x-px > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(1px * var(--tw-space-x-reverse)) !important; + margin-left: calc(1px * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .sm\:space-y-0\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(0.125rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(0.125rem * var(--tw-space-y-reverse)) !important; + } + + .sm\:space-x-0\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(0.125rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(0.125rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .sm\:space-y-1\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(0.375rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(0.375rem * var(--tw-space-y-reverse)) !important; + } + + .sm\:space-x-1\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(0.375rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(0.375rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .sm\:space-y-2\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(0.625rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(0.625rem * var(--tw-space-y-reverse)) !important; + } + + .sm\:space-x-2\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(0.625rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(0.625rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .sm\:space-y-3\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(0.875rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(0.875rem * var(--tw-space-y-reverse)) !important; + } + + .sm\:space-x-3\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(0.875rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(0.875rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .sm\:-space-y-0 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(0px * var(--tw-space-y-reverse)) !important; + } + + .sm\:-space-x-0 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(0px * var(--tw-space-x-reverse)) !important; + margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .sm\:-space-y-1 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-0.25rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-0.25rem * var(--tw-space-y-reverse)) !important; + } + + .sm\:-space-x-1 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-0.25rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-0.25rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .sm\:-space-y-2 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-0.5rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-0.5rem * var(--tw-space-y-reverse)) !important; + } + + .sm\:-space-x-2 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-0.5rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-0.5rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .sm\:-space-y-3 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-0.75rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-0.75rem * var(--tw-space-y-reverse)) !important; + } + + .sm\:-space-x-3 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-0.75rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-0.75rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .sm\:-space-y-4 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-1rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-1rem * var(--tw-space-y-reverse)) !important; + } + + .sm\:-space-x-4 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-1rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-1rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .sm\:-space-y-5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-1.25rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-1.25rem * var(--tw-space-y-reverse)) !important; + } + + .sm\:-space-x-5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-1.25rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-1.25rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .sm\:-space-y-6 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-1.5rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-1.5rem * var(--tw-space-y-reverse)) !important; + } + + .sm\:-space-x-6 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-1.5rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-1.5rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .sm\:-space-y-7 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-1.75rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-1.75rem * var(--tw-space-y-reverse)) !important; + } + + .sm\:-space-x-7 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-1.75rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-1.75rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .sm\:-space-y-8 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-2rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-2rem * var(--tw-space-y-reverse)) !important; + } + + .sm\:-space-x-8 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-2rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-2rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .sm\:-space-y-9 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-2.25rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-2.25rem * var(--tw-space-y-reverse)) !important; + } + + .sm\:-space-x-9 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-2.25rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-2.25rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .sm\:-space-y-10 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-2.5rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-2.5rem * var(--tw-space-y-reverse)) !important; + } + + .sm\:-space-x-10 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-2.5rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-2.5rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .sm\:-space-y-11 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-2.75rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-2.75rem * var(--tw-space-y-reverse)) !important; + } + + .sm\:-space-x-11 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-2.75rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-2.75rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .sm\:-space-y-12 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-3rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-3rem * var(--tw-space-y-reverse)) !important; + } + + .sm\:-space-x-12 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-3rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-3rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .sm\:-space-y-14 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-3.5rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-3.5rem * var(--tw-space-y-reverse)) !important; + } + + .sm\:-space-x-14 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-3.5rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-3.5rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .sm\:-space-y-16 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-4rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-4rem * var(--tw-space-y-reverse)) !important; + } + + .sm\:-space-x-16 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-4rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-4rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .sm\:-space-y-20 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-5rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-5rem * var(--tw-space-y-reverse)) !important; + } + + .sm\:-space-x-20 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-5rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-5rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .sm\:-space-y-24 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-6rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-6rem * var(--tw-space-y-reverse)) !important; + } + + .sm\:-space-x-24 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-6rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-6rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .sm\:-space-y-28 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-7rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-7rem * var(--tw-space-y-reverse)) !important; + } + + .sm\:-space-x-28 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-7rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-7rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .sm\:-space-y-32 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-8rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-8rem * var(--tw-space-y-reverse)) !important; + } + + .sm\:-space-x-32 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-8rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-8rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .sm\:-space-y-36 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-9rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-9rem * var(--tw-space-y-reverse)) !important; + } + + .sm\:-space-x-36 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-9rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-9rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .sm\:-space-y-40 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-10rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-10rem * var(--tw-space-y-reverse)) !important; + } + + .sm\:-space-x-40 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-10rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-10rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .sm\:-space-y-44 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-11rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-11rem * var(--tw-space-y-reverse)) !important; + } + + .sm\:-space-x-44 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-11rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-11rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .sm\:-space-y-48 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-12rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-12rem * var(--tw-space-y-reverse)) !important; + } + + .sm\:-space-x-48 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-12rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-12rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .sm\:-space-y-52 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-13rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-13rem * var(--tw-space-y-reverse)) !important; + } + + .sm\:-space-x-52 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-13rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-13rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .sm\:-space-y-56 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-14rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-14rem * var(--tw-space-y-reverse)) !important; + } + + .sm\:-space-x-56 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-14rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-14rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .sm\:-space-y-60 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-15rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-15rem * var(--tw-space-y-reverse)) !important; + } + + .sm\:-space-x-60 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-15rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-15rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .sm\:-space-y-64 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-16rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-16rem * var(--tw-space-y-reverse)) !important; + } + + .sm\:-space-x-64 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-16rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-16rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .sm\:-space-y-72 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-18rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-18rem * var(--tw-space-y-reverse)) !important; + } + + .sm\:-space-x-72 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-18rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-18rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .sm\:-space-y-80 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-20rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-20rem * var(--tw-space-y-reverse)) !important; + } + + .sm\:-space-x-80 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-20rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-20rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .sm\:-space-y-96 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-24rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-24rem * var(--tw-space-y-reverse)) !important; + } + + .sm\:-space-x-96 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-24rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-24rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .sm\:-space-y-px > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-1px * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-1px * var(--tw-space-y-reverse)) !important; + } + + .sm\:-space-x-px > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-1px * var(--tw-space-x-reverse)) !important; + margin-left: calc(-1px * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .sm\:-space-y-0\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-0.125rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-0.125rem * var(--tw-space-y-reverse)) !important; + } + + .sm\:-space-x-0\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-0.125rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-0.125rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .sm\:-space-y-1\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-0.375rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-0.375rem * var(--tw-space-y-reverse)) !important; + } + + .sm\:-space-x-1\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-0.375rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-0.375rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .sm\:-space-y-2\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-0.625rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-0.625rem * var(--tw-space-y-reverse)) !important; + } + + .sm\:-space-x-2\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-0.625rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-0.625rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .sm\:-space-y-3\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-0.875rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-0.875rem * var(--tw-space-y-reverse)) !important; + } + + .sm\:-space-x-3\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-0.875rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-0.875rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .sm\:space-y-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 1 !important; + } + + .sm\:space-x-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 1 !important; + } + + .sm\:divide-y-0 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0 !important; + border-top-width: calc(0px * calc(1 - var(--tw-divide-y-reverse))) !important; + border-bottom-width: calc(0px * var(--tw-divide-y-reverse)) !important; + } + + .sm\:divide-x-0 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-x-reverse: 0 !important; + border-right-width: calc(0px * var(--tw-divide-x-reverse)) !important; + border-left-width: calc(0px * calc(1 - var(--tw-divide-x-reverse))) !important; + } + + .sm\:divide-y-2 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0 !important; + border-top-width: calc(2px * calc(1 - var(--tw-divide-y-reverse))) !important; + border-bottom-width: calc(2px * var(--tw-divide-y-reverse)) !important; + } + + .sm\:divide-x-2 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-x-reverse: 0 !important; + border-right-width: calc(2px * var(--tw-divide-x-reverse)) !important; + border-left-width: calc(2px * calc(1 - var(--tw-divide-x-reverse))) !important; + } + + .sm\:divide-y-4 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0 !important; + border-top-width: calc(4px * calc(1 - var(--tw-divide-y-reverse))) !important; + border-bottom-width: calc(4px * var(--tw-divide-y-reverse)) !important; + } + + .sm\:divide-x-4 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-x-reverse: 0 !important; + border-right-width: calc(4px * var(--tw-divide-x-reverse)) !important; + border-left-width: calc(4px * calc(1 - var(--tw-divide-x-reverse))) !important; + } + + .sm\:divide-y-8 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0 !important; + border-top-width: calc(8px * calc(1 - var(--tw-divide-y-reverse))) !important; + border-bottom-width: calc(8px * var(--tw-divide-y-reverse)) !important; + } + + .sm\:divide-x-8 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-x-reverse: 0 !important; + border-right-width: calc(8px * var(--tw-divide-x-reverse)) !important; + border-left-width: calc(8px * calc(1 - var(--tw-divide-x-reverse))) !important; + } + + .sm\:divide-y > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0 !important; + border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse))) !important; + border-bottom-width: calc(1px * var(--tw-divide-y-reverse)) !important; + } + + .sm\:divide-x > :not([hidden]) ~ :not([hidden]) { + --tw-divide-x-reverse: 0 !important; + border-right-width: calc(1px * var(--tw-divide-x-reverse)) !important; + border-left-width: calc(1px * calc(1 - var(--tw-divide-x-reverse))) !important; + } + + .sm\:divide-y-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 1 !important; + } + + .sm\:divide-x-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-divide-x-reverse: 1 !important; + } + + .sm\:divide-transparent > :not([hidden]) ~ :not([hidden]) { + border-color: transparent !important; + } + + .sm\:divide-current > :not([hidden]) ~ :not([hidden]) { + border-color: currentColor !important; + } + + .sm\:divide-black > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(0, 0, 0, var(--tw-divide-opacity)) !important; + } + + .sm\:divide-white > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(255, 255, 255, var(--tw-divide-opacity)) !important; + } + + .sm\:divide-gray-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(249, 250, 251, var(--tw-divide-opacity)) !important; + } + + .sm\:divide-gray-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(243, 244, 246, var(--tw-divide-opacity)) !important; + } + + .sm\:divide-gray-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(229, 231, 235, var(--tw-divide-opacity)) !important; + } + + .sm\:divide-gray-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(209, 213, 219, var(--tw-divide-opacity)) !important; + } + + .sm\:divide-gray-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(156, 163, 175, var(--tw-divide-opacity)) !important; + } + + .sm\:divide-gray-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(107, 114, 128, var(--tw-divide-opacity)) !important; + } + + .sm\:divide-gray-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(75, 85, 99, var(--tw-divide-opacity)) !important; + } + + .sm\:divide-gray-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(55, 65, 81, var(--tw-divide-opacity)) !important; + } + + .sm\:divide-gray-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(31, 41, 55, var(--tw-divide-opacity)) !important; + } + + .sm\:divide-gray-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(17, 24, 39, var(--tw-divide-opacity)) !important; + } + + .sm\:divide-red-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(254, 242, 242, var(--tw-divide-opacity)) !important; + } + + .sm\:divide-red-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(254, 226, 226, var(--tw-divide-opacity)) !important; + } + + .sm\:divide-red-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(254, 202, 202, var(--tw-divide-opacity)) !important; + } + + .sm\:divide-red-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(252, 165, 165, var(--tw-divide-opacity)) !important; + } + + .sm\:divide-red-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(248, 113, 113, var(--tw-divide-opacity)) !important; + } + + .sm\:divide-red-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(239, 68, 68, var(--tw-divide-opacity)) !important; + } + + .sm\:divide-red-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(220, 38, 38, var(--tw-divide-opacity)) !important; + } + + .sm\:divide-red-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(185, 28, 28, var(--tw-divide-opacity)) !important; + } + + .sm\:divide-red-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(153, 27, 27, var(--tw-divide-opacity)) !important; + } + + .sm\:divide-red-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(127, 29, 29, var(--tw-divide-opacity)) !important; + } + + .sm\:divide-yellow-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(255, 251, 235, var(--tw-divide-opacity)) !important; + } + + .sm\:divide-yellow-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(254, 243, 199, var(--tw-divide-opacity)) !important; + } + + .sm\:divide-yellow-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(253, 230, 138, var(--tw-divide-opacity)) !important; + } + + .sm\:divide-yellow-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(252, 211, 77, var(--tw-divide-opacity)) !important; + } + + .sm\:divide-yellow-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(251, 191, 36, var(--tw-divide-opacity)) !important; + } + + .sm\:divide-yellow-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(245, 158, 11, var(--tw-divide-opacity)) !important; + } + + .sm\:divide-yellow-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(217, 119, 6, var(--tw-divide-opacity)) !important; + } + + .sm\:divide-yellow-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(180, 83, 9, var(--tw-divide-opacity)) !important; + } + + .sm\:divide-yellow-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(146, 64, 14, var(--tw-divide-opacity)) !important; + } + + .sm\:divide-yellow-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(120, 53, 15, var(--tw-divide-opacity)) !important; + } + + .sm\:divide-green-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(236, 253, 245, var(--tw-divide-opacity)) !important; + } + + .sm\:divide-green-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(209, 250, 229, var(--tw-divide-opacity)) !important; + } + + .sm\:divide-green-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(167, 243, 208, var(--tw-divide-opacity)) !important; + } + + .sm\:divide-green-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(110, 231, 183, var(--tw-divide-opacity)) !important; + } + + .sm\:divide-green-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(52, 211, 153, var(--tw-divide-opacity)) !important; + } + + .sm\:divide-green-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(16, 185, 129, var(--tw-divide-opacity)) !important; + } + + .sm\:divide-green-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(5, 150, 105, var(--tw-divide-opacity)) !important; + } + + .sm\:divide-green-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(4, 120, 87, var(--tw-divide-opacity)) !important; + } + + .sm\:divide-green-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(6, 95, 70, var(--tw-divide-opacity)) !important; + } + + .sm\:divide-green-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(6, 78, 59, var(--tw-divide-opacity)) !important; + } + + .sm\:divide-blue-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(239, 246, 255, var(--tw-divide-opacity)) !important; + } + + .sm\:divide-blue-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(219, 234, 254, var(--tw-divide-opacity)) !important; + } + + .sm\:divide-blue-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(191, 219, 254, var(--tw-divide-opacity)) !important; + } + + .sm\:divide-blue-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(147, 197, 253, var(--tw-divide-opacity)) !important; + } + + .sm\:divide-blue-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(96, 165, 250, var(--tw-divide-opacity)) !important; + } + + .sm\:divide-blue-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(59, 130, 246, var(--tw-divide-opacity)) !important; + } + + .sm\:divide-blue-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(37, 99, 235, var(--tw-divide-opacity)) !important; + } + + .sm\:divide-blue-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(29, 78, 216, var(--tw-divide-opacity)) !important; + } + + .sm\:divide-blue-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(30, 64, 175, var(--tw-divide-opacity)) !important; + } + + .sm\:divide-blue-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(30, 58, 138, var(--tw-divide-opacity)) !important; + } + + .sm\:divide-indigo-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(238, 242, 255, var(--tw-divide-opacity)) !important; + } + + .sm\:divide-indigo-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(224, 231, 255, var(--tw-divide-opacity)) !important; + } + + .sm\:divide-indigo-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(199, 210, 254, var(--tw-divide-opacity)) !important; + } + + .sm\:divide-indigo-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(165, 180, 252, var(--tw-divide-opacity)) !important; + } + + .sm\:divide-indigo-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(129, 140, 248, var(--tw-divide-opacity)) !important; + } + + .sm\:divide-indigo-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(99, 102, 241, var(--tw-divide-opacity)) !important; + } + + .sm\:divide-indigo-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(79, 70, 229, var(--tw-divide-opacity)) !important; + } + + .sm\:divide-indigo-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(67, 56, 202, var(--tw-divide-opacity)) !important; + } + + .sm\:divide-indigo-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(55, 48, 163, var(--tw-divide-opacity)) !important; + } + + .sm\:divide-indigo-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(49, 46, 129, var(--tw-divide-opacity)) !important; + } + + .sm\:divide-purple-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(245, 243, 255, var(--tw-divide-opacity)) !important; + } + + .sm\:divide-purple-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(237, 233, 254, var(--tw-divide-opacity)) !important; + } + + .sm\:divide-purple-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(221, 214, 254, var(--tw-divide-opacity)) !important; + } + + .sm\:divide-purple-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(196, 181, 253, var(--tw-divide-opacity)) !important; + } + + .sm\:divide-purple-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(167, 139, 250, var(--tw-divide-opacity)) !important; + } + + .sm\:divide-purple-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(139, 92, 246, var(--tw-divide-opacity)) !important; + } + + .sm\:divide-purple-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(124, 58, 237, var(--tw-divide-opacity)) !important; + } + + .sm\:divide-purple-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(109, 40, 217, var(--tw-divide-opacity)) !important; + } + + .sm\:divide-purple-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(91, 33, 182, var(--tw-divide-opacity)) !important; + } + + .sm\:divide-purple-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(76, 29, 149, var(--tw-divide-opacity)) !important; + } + + .sm\:divide-pink-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(253, 242, 248, var(--tw-divide-opacity)) !important; + } + + .sm\:divide-pink-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(252, 231, 243, var(--tw-divide-opacity)) !important; + } + + .sm\:divide-pink-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(251, 207, 232, var(--tw-divide-opacity)) !important; + } + + .sm\:divide-pink-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(249, 168, 212, var(--tw-divide-opacity)) !important; + } + + .sm\:divide-pink-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(244, 114, 182, var(--tw-divide-opacity)) !important; + } + + .sm\:divide-pink-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(236, 72, 153, var(--tw-divide-opacity)) !important; + } + + .sm\:divide-pink-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(219, 39, 119, var(--tw-divide-opacity)) !important; + } + + .sm\:divide-pink-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(190, 24, 93, var(--tw-divide-opacity)) !important; + } + + .sm\:divide-pink-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(157, 23, 77, var(--tw-divide-opacity)) !important; + } + + .sm\:divide-pink-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(131, 24, 67, var(--tw-divide-opacity)) !important; + } + + .sm\:divide-primary > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(0, 49, 151, var(--tw-divide-opacity)) !important; + } + + .sm\:divide-solid > :not([hidden]) ~ :not([hidden]) { + border-style: solid !important; + } + + .sm\:divide-dashed > :not([hidden]) ~ :not([hidden]) { + border-style: dashed !important; + } + + .sm\:divide-dotted > :not([hidden]) ~ :not([hidden]) { + border-style: dotted !important; + } + + .sm\:divide-double > :not([hidden]) ~ :not([hidden]) { + border-style: double !important; + } + + .sm\:divide-none > :not([hidden]) ~ :not([hidden]) { + border-style: none !important; + } + + .sm\:divide-opacity-0 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0 !important; + } + + .sm\:divide-opacity-5 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.05 !important; + } + + .sm\:divide-opacity-10 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.1 !important; + } + + .sm\:divide-opacity-20 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.2 !important; + } + + .sm\:divide-opacity-25 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.25 !important; + } + + .sm\:divide-opacity-30 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.3 !important; + } + + .sm\:divide-opacity-40 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.4 !important; + } + + .sm\:divide-opacity-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.5 !important; + } + + .sm\:divide-opacity-60 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.6 !important; + } + + .sm\:divide-opacity-70 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.7 !important; + } + + .sm\:divide-opacity-75 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.75 !important; + } + + .sm\:divide-opacity-80 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.8 !important; + } + + .sm\:divide-opacity-90 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.9 !important; + } + + .sm\:divide-opacity-95 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.95 !important; + } + + .sm\:divide-opacity-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + } + + .sm\:sr-only { + position: absolute !important; + width: 1px !important; + height: 1px !important; + padding: 0 !important; + margin: -1px !important; + overflow: hidden !important; + clip: rect(0, 0, 0, 0) !important; + white-space: nowrap !important; + border-width: 0 !important; + } + + .sm\:not-sr-only { + position: static !important; + width: auto !important; + height: auto !important; + padding: 0 !important; + margin: 0 !important; + overflow: visible !important; + clip: auto !important; + white-space: normal !important; + } + + .sm\:focus-within\:sr-only:focus-within { + position: absolute !important; + width: 1px !important; + height: 1px !important; + padding: 0 !important; + margin: -1px !important; + overflow: hidden !important; + clip: rect(0, 0, 0, 0) !important; + white-space: nowrap !important; + border-width: 0 !important; + } + + .sm\:focus-within\:not-sr-only:focus-within { + position: static !important; + width: auto !important; + height: auto !important; + padding: 0 !important; + margin: 0 !important; + overflow: visible !important; + clip: auto !important; + white-space: normal !important; + } + + .sm\:focus\:sr-only:focus { + position: absolute !important; + width: 1px !important; + height: 1px !important; + padding: 0 !important; + margin: -1px !important; + overflow: hidden !important; + clip: rect(0, 0, 0, 0) !important; + white-space: nowrap !important; + border-width: 0 !important; + } + + .sm\:focus\:not-sr-only:focus { + position: static !important; + width: auto !important; + height: auto !important; + padding: 0 !important; + margin: 0 !important; + overflow: visible !important; + clip: auto !important; + white-space: normal !important; + } + + .sm\:appearance-none { + -webkit-appearance: none !important; + -moz-appearance: none !important; + appearance: none !important; + } + + .sm\:bg-fixed { + background-attachment: fixed !important; + } + + .sm\:bg-local { + background-attachment: local !important; + } + + .sm\:bg-scroll { + background-attachment: scroll !important; + } + + .sm\:bg-clip-border { + background-clip: border-box !important; + } + + .sm\:bg-clip-padding { + background-clip: padding-box !important; + } + + .sm\:bg-clip-content { + background-clip: content-box !important; + } + + .sm\:bg-clip-text { + -webkit-background-clip: text !important; + background-clip: text !important; + } + + .sm\:bg-transparent { + background-color: transparent !important; + } + + .sm\:bg-current { + background-color: currentColor !important; + } + + .sm\:bg-black { + --tw-bg-opacity: 1 !important; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important; + } + + .sm\:bg-white { + --tw-bg-opacity: 1 !important; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important; + } + + .sm\:bg-gray-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)) !important; + } + + .sm\:bg-gray-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)) !important; + } + + .sm\:bg-gray-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)) !important; + } + + .sm\:bg-gray-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)) !important; + } + + .sm\:bg-gray-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)) !important; + } + + .sm\:bg-gray-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)) !important; + } + + .sm\:bg-gray-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)) !important; + } + + .sm\:bg-gray-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)) !important; + } + + .sm\:bg-gray-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)) !important; + } + + .sm\:bg-gray-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)) !important; + } + + .sm\:bg-red-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 242, 242, var(--tw-bg-opacity)) !important; + } + + .sm\:bg-red-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 226, 226, var(--tw-bg-opacity)) !important; + } + + .sm\:bg-red-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 202, 202, var(--tw-bg-opacity)) !important; + } + + .sm\:bg-red-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 165, 165, var(--tw-bg-opacity)) !important; + } + + .sm\:bg-red-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(248, 113, 113, var(--tw-bg-opacity)) !important; + } + + .sm\:bg-red-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(239, 68, 68, var(--tw-bg-opacity)) !important; + } + + .sm\:bg-red-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(220, 38, 38, var(--tw-bg-opacity)) !important; + } + + .sm\:bg-red-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(185, 28, 28, var(--tw-bg-opacity)) !important; + } + + .sm\:bg-red-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(153, 27, 27, var(--tw-bg-opacity)) !important; + } + + .sm\:bg-red-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(127, 29, 29, var(--tw-bg-opacity)) !important; + } + + .sm\:bg-yellow-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(255, 251, 235, var(--tw-bg-opacity)) !important; + } + + .sm\:bg-yellow-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 243, 199, var(--tw-bg-opacity)) !important; + } + + .sm\:bg-yellow-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(253, 230, 138, var(--tw-bg-opacity)) !important; + } + + .sm\:bg-yellow-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 211, 77, var(--tw-bg-opacity)) !important; + } + + .sm\:bg-yellow-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(251, 191, 36, var(--tw-bg-opacity)) !important; + } + + .sm\:bg-yellow-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)) !important; + } + + .sm\:bg-yellow-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(217, 119, 6, var(--tw-bg-opacity)) !important; + } + + .sm\:bg-yellow-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(180, 83, 9, var(--tw-bg-opacity)) !important; + } + + .sm\:bg-yellow-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(146, 64, 14, var(--tw-bg-opacity)) !important; + } + + .sm\:bg-yellow-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(120, 53, 15, var(--tw-bg-opacity)) !important; + } + + .sm\:bg-green-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(236, 253, 245, var(--tw-bg-opacity)) !important; + } + + .sm\:bg-green-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(209, 250, 229, var(--tw-bg-opacity)) !important; + } + + .sm\:bg-green-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(167, 243, 208, var(--tw-bg-opacity)) !important; + } + + .sm\:bg-green-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(110, 231, 183, var(--tw-bg-opacity)) !important; + } + + .sm\:bg-green-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(52, 211, 153, var(--tw-bg-opacity)) !important; + } + + .sm\:bg-green-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(16, 185, 129, var(--tw-bg-opacity)) !important; + } + + .sm\:bg-green-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(5, 150, 105, var(--tw-bg-opacity)) !important; + } + + .sm\:bg-green-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(4, 120, 87, var(--tw-bg-opacity)) !important; + } + + .sm\:bg-green-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(6, 95, 70, var(--tw-bg-opacity)) !important; + } + + .sm\:bg-green-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(6, 78, 59, var(--tw-bg-opacity)) !important; + } + + .sm\:bg-blue-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(239, 246, 255, var(--tw-bg-opacity)) !important; + } + + .sm\:bg-blue-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(219, 234, 254, var(--tw-bg-opacity)) !important; + } + + .sm\:bg-blue-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(191, 219, 254, var(--tw-bg-opacity)) !important; + } + + .sm\:bg-blue-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(147, 197, 253, var(--tw-bg-opacity)) !important; + } + + .sm\:bg-blue-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(96, 165, 250, var(--tw-bg-opacity)) !important; + } + + .sm\:bg-blue-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)) !important; + } + + .sm\:bg-blue-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(37, 99, 235, var(--tw-bg-opacity)) !important; + } + + .sm\:bg-blue-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(29, 78, 216, var(--tw-bg-opacity)) !important; + } + + .sm\:bg-blue-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(30, 64, 175, var(--tw-bg-opacity)) !important; + } + + .sm\:bg-blue-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(30, 58, 138, var(--tw-bg-opacity)) !important; + } + + .sm\:bg-indigo-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(238, 242, 255, var(--tw-bg-opacity)) !important; + } + + .sm\:bg-indigo-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(224, 231, 255, var(--tw-bg-opacity)) !important; + } + + .sm\:bg-indigo-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(199, 210, 254, var(--tw-bg-opacity)) !important; + } + + .sm\:bg-indigo-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(165, 180, 252, var(--tw-bg-opacity)) !important; + } + + .sm\:bg-indigo-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(129, 140, 248, var(--tw-bg-opacity)) !important; + } + + .sm\:bg-indigo-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(99, 102, 241, var(--tw-bg-opacity)) !important; + } + + .sm\:bg-indigo-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(79, 70, 229, var(--tw-bg-opacity)) !important; + } + + .sm\:bg-indigo-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(67, 56, 202, var(--tw-bg-opacity)) !important; + } + + .sm\:bg-indigo-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(55, 48, 163, var(--tw-bg-opacity)) !important; + } + + .sm\:bg-indigo-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(49, 46, 129, var(--tw-bg-opacity)) !important; + } + + .sm\:bg-purple-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(245, 243, 255, var(--tw-bg-opacity)) !important; + } + + .sm\:bg-purple-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(237, 233, 254, var(--tw-bg-opacity)) !important; + } + + .sm\:bg-purple-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(221, 214, 254, var(--tw-bg-opacity)) !important; + } + + .sm\:bg-purple-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(196, 181, 253, var(--tw-bg-opacity)) !important; + } + + .sm\:bg-purple-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(167, 139, 250, var(--tw-bg-opacity)) !important; + } + + .sm\:bg-purple-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(139, 92, 246, var(--tw-bg-opacity)) !important; + } + + .sm\:bg-purple-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(124, 58, 237, var(--tw-bg-opacity)) !important; + } + + .sm\:bg-purple-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(109, 40, 217, var(--tw-bg-opacity)) !important; + } + + .sm\:bg-purple-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(91, 33, 182, var(--tw-bg-opacity)) !important; + } + + .sm\:bg-purple-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(76, 29, 149, var(--tw-bg-opacity)) !important; + } + + .sm\:bg-pink-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(253, 242, 248, var(--tw-bg-opacity)) !important; + } + + .sm\:bg-pink-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 231, 243, var(--tw-bg-opacity)) !important; + } + + .sm\:bg-pink-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(251, 207, 232, var(--tw-bg-opacity)) !important; + } + + .sm\:bg-pink-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(249, 168, 212, var(--tw-bg-opacity)) !important; + } + + .sm\:bg-pink-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(244, 114, 182, var(--tw-bg-opacity)) !important; + } + + .sm\:bg-pink-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(236, 72, 153, var(--tw-bg-opacity)) !important; + } + + .sm\:bg-pink-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(219, 39, 119, var(--tw-bg-opacity)) !important; + } + + .sm\:bg-pink-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(190, 24, 93, var(--tw-bg-opacity)) !important; + } + + .sm\:bg-pink-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(157, 23, 77, var(--tw-bg-opacity)) !important; + } + + .sm\:bg-pink-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(131, 24, 67, var(--tw-bg-opacity)) !important; + } + + .sm\:bg-primary { + --tw-bg-opacity: 1 !important; + background-color: rgba(0, 49, 151, var(--tw-bg-opacity)) !important; + } + + .group:hover .sm\:group-hover\:bg-transparent { + background-color: transparent !important; + } + + .group:hover .sm\:group-hover\:bg-current { + background-color: currentColor !important; + } + + .group:hover .sm\:group-hover\:bg-black { + --tw-bg-opacity: 1 !important; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important; + } + + .group:hover .sm\:group-hover\:bg-white { + --tw-bg-opacity: 1 !important; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important; + } + + .group:hover .sm\:group-hover\:bg-gray-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)) !important; + } + + .group:hover .sm\:group-hover\:bg-gray-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)) !important; + } + + .group:hover .sm\:group-hover\:bg-gray-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)) !important; + } + + .group:hover .sm\:group-hover\:bg-gray-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)) !important; + } + + .group:hover .sm\:group-hover\:bg-gray-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)) !important; + } + + .group:hover .sm\:group-hover\:bg-gray-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)) !important; + } + + .group:hover .sm\:group-hover\:bg-gray-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)) !important; + } + + .group:hover .sm\:group-hover\:bg-gray-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)) !important; + } + + .group:hover .sm\:group-hover\:bg-gray-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)) !important; + } + + .group:hover .sm\:group-hover\:bg-gray-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)) !important; + } + + .group:hover .sm\:group-hover\:bg-red-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 242, 242, var(--tw-bg-opacity)) !important; + } + + .group:hover .sm\:group-hover\:bg-red-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 226, 226, var(--tw-bg-opacity)) !important; + } + + .group:hover .sm\:group-hover\:bg-red-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 202, 202, var(--tw-bg-opacity)) !important; + } + + .group:hover .sm\:group-hover\:bg-red-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 165, 165, var(--tw-bg-opacity)) !important; + } + + .group:hover .sm\:group-hover\:bg-red-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(248, 113, 113, var(--tw-bg-opacity)) !important; + } + + .group:hover .sm\:group-hover\:bg-red-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(239, 68, 68, var(--tw-bg-opacity)) !important; + } + + .group:hover .sm\:group-hover\:bg-red-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(220, 38, 38, var(--tw-bg-opacity)) !important; + } + + .group:hover .sm\:group-hover\:bg-red-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(185, 28, 28, var(--tw-bg-opacity)) !important; + } + + .group:hover .sm\:group-hover\:bg-red-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(153, 27, 27, var(--tw-bg-opacity)) !important; + } + + .group:hover .sm\:group-hover\:bg-red-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(127, 29, 29, var(--tw-bg-opacity)) !important; + } + + .group:hover .sm\:group-hover\:bg-yellow-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(255, 251, 235, var(--tw-bg-opacity)) !important; + } + + .group:hover .sm\:group-hover\:bg-yellow-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 243, 199, var(--tw-bg-opacity)) !important; + } + + .group:hover .sm\:group-hover\:bg-yellow-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(253, 230, 138, var(--tw-bg-opacity)) !important; + } + + .group:hover .sm\:group-hover\:bg-yellow-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 211, 77, var(--tw-bg-opacity)) !important; + } + + .group:hover .sm\:group-hover\:bg-yellow-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(251, 191, 36, var(--tw-bg-opacity)) !important; + } + + .group:hover .sm\:group-hover\:bg-yellow-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)) !important; + } + + .group:hover .sm\:group-hover\:bg-yellow-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(217, 119, 6, var(--tw-bg-opacity)) !important; + } + + .group:hover .sm\:group-hover\:bg-yellow-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(180, 83, 9, var(--tw-bg-opacity)) !important; + } + + .group:hover .sm\:group-hover\:bg-yellow-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(146, 64, 14, var(--tw-bg-opacity)) !important; + } + + .group:hover .sm\:group-hover\:bg-yellow-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(120, 53, 15, var(--tw-bg-opacity)) !important; + } + + .group:hover .sm\:group-hover\:bg-green-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(236, 253, 245, var(--tw-bg-opacity)) !important; + } + + .group:hover .sm\:group-hover\:bg-green-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(209, 250, 229, var(--tw-bg-opacity)) !important; + } + + .group:hover .sm\:group-hover\:bg-green-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(167, 243, 208, var(--tw-bg-opacity)) !important; + } + + .group:hover .sm\:group-hover\:bg-green-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(110, 231, 183, var(--tw-bg-opacity)) !important; + } + + .group:hover .sm\:group-hover\:bg-green-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(52, 211, 153, var(--tw-bg-opacity)) !important; + } + + .group:hover .sm\:group-hover\:bg-green-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(16, 185, 129, var(--tw-bg-opacity)) !important; + } + + .group:hover .sm\:group-hover\:bg-green-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(5, 150, 105, var(--tw-bg-opacity)) !important; + } + + .group:hover .sm\:group-hover\:bg-green-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(4, 120, 87, var(--tw-bg-opacity)) !important; + } + + .group:hover .sm\:group-hover\:bg-green-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(6, 95, 70, var(--tw-bg-opacity)) !important; + } + + .group:hover .sm\:group-hover\:bg-green-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(6, 78, 59, var(--tw-bg-opacity)) !important; + } + + .group:hover .sm\:group-hover\:bg-blue-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(239, 246, 255, var(--tw-bg-opacity)) !important; + } + + .group:hover .sm\:group-hover\:bg-blue-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(219, 234, 254, var(--tw-bg-opacity)) !important; + } + + .group:hover .sm\:group-hover\:bg-blue-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(191, 219, 254, var(--tw-bg-opacity)) !important; + } + + .group:hover .sm\:group-hover\:bg-blue-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(147, 197, 253, var(--tw-bg-opacity)) !important; + } + + .group:hover .sm\:group-hover\:bg-blue-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(96, 165, 250, var(--tw-bg-opacity)) !important; + } + + .group:hover .sm\:group-hover\:bg-blue-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)) !important; + } + + .group:hover .sm\:group-hover\:bg-blue-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(37, 99, 235, var(--tw-bg-opacity)) !important; + } + + .group:hover .sm\:group-hover\:bg-blue-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(29, 78, 216, var(--tw-bg-opacity)) !important; + } + + .group:hover .sm\:group-hover\:bg-blue-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(30, 64, 175, var(--tw-bg-opacity)) !important; + } + + .group:hover .sm\:group-hover\:bg-blue-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(30, 58, 138, var(--tw-bg-opacity)) !important; + } + + .group:hover .sm\:group-hover\:bg-indigo-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(238, 242, 255, var(--tw-bg-opacity)) !important; + } + + .group:hover .sm\:group-hover\:bg-indigo-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(224, 231, 255, var(--tw-bg-opacity)) !important; + } + + .group:hover .sm\:group-hover\:bg-indigo-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(199, 210, 254, var(--tw-bg-opacity)) !important; + } + + .group:hover .sm\:group-hover\:bg-indigo-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(165, 180, 252, var(--tw-bg-opacity)) !important; + } + + .group:hover .sm\:group-hover\:bg-indigo-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(129, 140, 248, var(--tw-bg-opacity)) !important; + } + + .group:hover .sm\:group-hover\:bg-indigo-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(99, 102, 241, var(--tw-bg-opacity)) !important; + } + + .group:hover .sm\:group-hover\:bg-indigo-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(79, 70, 229, var(--tw-bg-opacity)) !important; + } + + .group:hover .sm\:group-hover\:bg-indigo-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(67, 56, 202, var(--tw-bg-opacity)) !important; + } + + .group:hover .sm\:group-hover\:bg-indigo-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(55, 48, 163, var(--tw-bg-opacity)) !important; + } + + .group:hover .sm\:group-hover\:bg-indigo-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(49, 46, 129, var(--tw-bg-opacity)) !important; + } + + .group:hover .sm\:group-hover\:bg-purple-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(245, 243, 255, var(--tw-bg-opacity)) !important; + } + + .group:hover .sm\:group-hover\:bg-purple-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(237, 233, 254, var(--tw-bg-opacity)) !important; + } + + .group:hover .sm\:group-hover\:bg-purple-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(221, 214, 254, var(--tw-bg-opacity)) !important; + } + + .group:hover .sm\:group-hover\:bg-purple-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(196, 181, 253, var(--tw-bg-opacity)) !important; + } + + .group:hover .sm\:group-hover\:bg-purple-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(167, 139, 250, var(--tw-bg-opacity)) !important; + } + + .group:hover .sm\:group-hover\:bg-purple-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(139, 92, 246, var(--tw-bg-opacity)) !important; + } + + .group:hover .sm\:group-hover\:bg-purple-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(124, 58, 237, var(--tw-bg-opacity)) !important; + } + + .group:hover .sm\:group-hover\:bg-purple-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(109, 40, 217, var(--tw-bg-opacity)) !important; + } + + .group:hover .sm\:group-hover\:bg-purple-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(91, 33, 182, var(--tw-bg-opacity)) !important; + } + + .group:hover .sm\:group-hover\:bg-purple-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(76, 29, 149, var(--tw-bg-opacity)) !important; + } + + .group:hover .sm\:group-hover\:bg-pink-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(253, 242, 248, var(--tw-bg-opacity)) !important; + } + + .group:hover .sm\:group-hover\:bg-pink-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 231, 243, var(--tw-bg-opacity)) !important; + } + + .group:hover .sm\:group-hover\:bg-pink-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(251, 207, 232, var(--tw-bg-opacity)) !important; + } + + .group:hover .sm\:group-hover\:bg-pink-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(249, 168, 212, var(--tw-bg-opacity)) !important; + } + + .group:hover .sm\:group-hover\:bg-pink-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(244, 114, 182, var(--tw-bg-opacity)) !important; + } + + .group:hover .sm\:group-hover\:bg-pink-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(236, 72, 153, var(--tw-bg-opacity)) !important; + } + + .group:hover .sm\:group-hover\:bg-pink-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(219, 39, 119, var(--tw-bg-opacity)) !important; + } + + .group:hover .sm\:group-hover\:bg-pink-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(190, 24, 93, var(--tw-bg-opacity)) !important; + } + + .group:hover .sm\:group-hover\:bg-pink-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(157, 23, 77, var(--tw-bg-opacity)) !important; + } + + .group:hover .sm\:group-hover\:bg-pink-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(131, 24, 67, var(--tw-bg-opacity)) !important; + } + + .group:hover .sm\:group-hover\:bg-primary { + --tw-bg-opacity: 1 !important; + background-color: rgba(0, 49, 151, var(--tw-bg-opacity)) !important; + } + + .sm\:focus-within\:bg-transparent:focus-within { + background-color: transparent !important; + } + + .sm\:focus-within\:bg-current:focus-within { + background-color: currentColor !important; + } + + .sm\:focus-within\:bg-black:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important; + } + + .sm\:focus-within\:bg-white:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important; + } + + .sm\:focus-within\:bg-gray-50:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)) !important; + } + + .sm\:focus-within\:bg-gray-100:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)) !important; + } + + .sm\:focus-within\:bg-gray-200:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)) !important; + } + + .sm\:focus-within\:bg-gray-300:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)) !important; + } + + .sm\:focus-within\:bg-gray-400:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)) !important; + } + + .sm\:focus-within\:bg-gray-500:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)) !important; + } + + .sm\:focus-within\:bg-gray-600:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)) !important; + } + + .sm\:focus-within\:bg-gray-700:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)) !important; + } + + .sm\:focus-within\:bg-gray-800:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)) !important; + } + + .sm\:focus-within\:bg-gray-900:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)) !important; + } + + .sm\:focus-within\:bg-red-50:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 242, 242, var(--tw-bg-opacity)) !important; + } + + .sm\:focus-within\:bg-red-100:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 226, 226, var(--tw-bg-opacity)) !important; + } + + .sm\:focus-within\:bg-red-200:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 202, 202, var(--tw-bg-opacity)) !important; + } + + .sm\:focus-within\:bg-red-300:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 165, 165, var(--tw-bg-opacity)) !important; + } + + .sm\:focus-within\:bg-red-400:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(248, 113, 113, var(--tw-bg-opacity)) !important; + } + + .sm\:focus-within\:bg-red-500:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(239, 68, 68, var(--tw-bg-opacity)) !important; + } + + .sm\:focus-within\:bg-red-600:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(220, 38, 38, var(--tw-bg-opacity)) !important; + } + + .sm\:focus-within\:bg-red-700:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(185, 28, 28, var(--tw-bg-opacity)) !important; + } + + .sm\:focus-within\:bg-red-800:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(153, 27, 27, var(--tw-bg-opacity)) !important; + } + + .sm\:focus-within\:bg-red-900:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(127, 29, 29, var(--tw-bg-opacity)) !important; + } + + .sm\:focus-within\:bg-yellow-50:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(255, 251, 235, var(--tw-bg-opacity)) !important; + } + + .sm\:focus-within\:bg-yellow-100:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 243, 199, var(--tw-bg-opacity)) !important; + } + + .sm\:focus-within\:bg-yellow-200:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(253, 230, 138, var(--tw-bg-opacity)) !important; + } + + .sm\:focus-within\:bg-yellow-300:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 211, 77, var(--tw-bg-opacity)) !important; + } + + .sm\:focus-within\:bg-yellow-400:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(251, 191, 36, var(--tw-bg-opacity)) !important; + } + + .sm\:focus-within\:bg-yellow-500:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)) !important; + } + + .sm\:focus-within\:bg-yellow-600:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(217, 119, 6, var(--tw-bg-opacity)) !important; + } + + .sm\:focus-within\:bg-yellow-700:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(180, 83, 9, var(--tw-bg-opacity)) !important; + } + + .sm\:focus-within\:bg-yellow-800:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(146, 64, 14, var(--tw-bg-opacity)) !important; + } + + .sm\:focus-within\:bg-yellow-900:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(120, 53, 15, var(--tw-bg-opacity)) !important; + } + + .sm\:focus-within\:bg-green-50:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(236, 253, 245, var(--tw-bg-opacity)) !important; + } + + .sm\:focus-within\:bg-green-100:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(209, 250, 229, var(--tw-bg-opacity)) !important; + } + + .sm\:focus-within\:bg-green-200:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(167, 243, 208, var(--tw-bg-opacity)) !important; + } + + .sm\:focus-within\:bg-green-300:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(110, 231, 183, var(--tw-bg-opacity)) !important; + } + + .sm\:focus-within\:bg-green-400:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(52, 211, 153, var(--tw-bg-opacity)) !important; + } + + .sm\:focus-within\:bg-green-500:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(16, 185, 129, var(--tw-bg-opacity)) !important; + } + + .sm\:focus-within\:bg-green-600:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(5, 150, 105, var(--tw-bg-opacity)) !important; + } + + .sm\:focus-within\:bg-green-700:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(4, 120, 87, var(--tw-bg-opacity)) !important; + } + + .sm\:focus-within\:bg-green-800:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(6, 95, 70, var(--tw-bg-opacity)) !important; + } + + .sm\:focus-within\:bg-green-900:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(6, 78, 59, var(--tw-bg-opacity)) !important; + } + + .sm\:focus-within\:bg-blue-50:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(239, 246, 255, var(--tw-bg-opacity)) !important; + } + + .sm\:focus-within\:bg-blue-100:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(219, 234, 254, var(--tw-bg-opacity)) !important; + } + + .sm\:focus-within\:bg-blue-200:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(191, 219, 254, var(--tw-bg-opacity)) !important; + } + + .sm\:focus-within\:bg-blue-300:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(147, 197, 253, var(--tw-bg-opacity)) !important; + } + + .sm\:focus-within\:bg-blue-400:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(96, 165, 250, var(--tw-bg-opacity)) !important; + } + + .sm\:focus-within\:bg-blue-500:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)) !important; + } + + .sm\:focus-within\:bg-blue-600:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(37, 99, 235, var(--tw-bg-opacity)) !important; + } + + .sm\:focus-within\:bg-blue-700:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(29, 78, 216, var(--tw-bg-opacity)) !important; + } + + .sm\:focus-within\:bg-blue-800:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(30, 64, 175, var(--tw-bg-opacity)) !important; + } + + .sm\:focus-within\:bg-blue-900:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(30, 58, 138, var(--tw-bg-opacity)) !important; + } + + .sm\:focus-within\:bg-indigo-50:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(238, 242, 255, var(--tw-bg-opacity)) !important; + } + + .sm\:focus-within\:bg-indigo-100:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(224, 231, 255, var(--tw-bg-opacity)) !important; + } + + .sm\:focus-within\:bg-indigo-200:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(199, 210, 254, var(--tw-bg-opacity)) !important; + } + + .sm\:focus-within\:bg-indigo-300:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(165, 180, 252, var(--tw-bg-opacity)) !important; + } + + .sm\:focus-within\:bg-indigo-400:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(129, 140, 248, var(--tw-bg-opacity)) !important; + } + + .sm\:focus-within\:bg-indigo-500:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(99, 102, 241, var(--tw-bg-opacity)) !important; + } + + .sm\:focus-within\:bg-indigo-600:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(79, 70, 229, var(--tw-bg-opacity)) !important; + } + + .sm\:focus-within\:bg-indigo-700:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(67, 56, 202, var(--tw-bg-opacity)) !important; + } + + .sm\:focus-within\:bg-indigo-800:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(55, 48, 163, var(--tw-bg-opacity)) !important; + } + + .sm\:focus-within\:bg-indigo-900:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(49, 46, 129, var(--tw-bg-opacity)) !important; + } + + .sm\:focus-within\:bg-purple-50:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(245, 243, 255, var(--tw-bg-opacity)) !important; + } + + .sm\:focus-within\:bg-purple-100:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(237, 233, 254, var(--tw-bg-opacity)) !important; + } + + .sm\:focus-within\:bg-purple-200:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(221, 214, 254, var(--tw-bg-opacity)) !important; + } + + .sm\:focus-within\:bg-purple-300:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(196, 181, 253, var(--tw-bg-opacity)) !important; + } + + .sm\:focus-within\:bg-purple-400:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(167, 139, 250, var(--tw-bg-opacity)) !important; + } + + .sm\:focus-within\:bg-purple-500:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(139, 92, 246, var(--tw-bg-opacity)) !important; + } + + .sm\:focus-within\:bg-purple-600:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(124, 58, 237, var(--tw-bg-opacity)) !important; + } + + .sm\:focus-within\:bg-purple-700:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(109, 40, 217, var(--tw-bg-opacity)) !important; + } + + .sm\:focus-within\:bg-purple-800:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(91, 33, 182, var(--tw-bg-opacity)) !important; + } + + .sm\:focus-within\:bg-purple-900:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(76, 29, 149, var(--tw-bg-opacity)) !important; + } + + .sm\:focus-within\:bg-pink-50:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(253, 242, 248, var(--tw-bg-opacity)) !important; + } + + .sm\:focus-within\:bg-pink-100:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 231, 243, var(--tw-bg-opacity)) !important; + } + + .sm\:focus-within\:bg-pink-200:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(251, 207, 232, var(--tw-bg-opacity)) !important; + } + + .sm\:focus-within\:bg-pink-300:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(249, 168, 212, var(--tw-bg-opacity)) !important; + } + + .sm\:focus-within\:bg-pink-400:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(244, 114, 182, var(--tw-bg-opacity)) !important; + } + + .sm\:focus-within\:bg-pink-500:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(236, 72, 153, var(--tw-bg-opacity)) !important; + } + + .sm\:focus-within\:bg-pink-600:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(219, 39, 119, var(--tw-bg-opacity)) !important; + } + + .sm\:focus-within\:bg-pink-700:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(190, 24, 93, var(--tw-bg-opacity)) !important; + } + + .sm\:focus-within\:bg-pink-800:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(157, 23, 77, var(--tw-bg-opacity)) !important; + } + + .sm\:focus-within\:bg-pink-900:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(131, 24, 67, var(--tw-bg-opacity)) !important; + } + + .sm\:focus-within\:bg-primary:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(0, 49, 151, var(--tw-bg-opacity)) !important; + } + + .sm\:hover\:bg-transparent:hover { + background-color: transparent !important; + } + + .sm\:hover\:bg-current:hover { + background-color: currentColor !important; + } + + .sm\:hover\:bg-black:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important; + } + + .sm\:hover\:bg-white:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important; + } + + .sm\:hover\:bg-gray-50:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)) !important; + } + + .sm\:hover\:bg-gray-100:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)) !important; + } + + .sm\:hover\:bg-gray-200:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)) !important; + } + + .sm\:hover\:bg-gray-300:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)) !important; + } + + .sm\:hover\:bg-gray-400:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)) !important; + } + + .sm\:hover\:bg-gray-500:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)) !important; + } + + .sm\:hover\:bg-gray-600:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)) !important; + } + + .sm\:hover\:bg-gray-700:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)) !important; + } + + .sm\:hover\:bg-gray-800:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)) !important; + } + + .sm\:hover\:bg-gray-900:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)) !important; + } + + .sm\:hover\:bg-red-50:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 242, 242, var(--tw-bg-opacity)) !important; + } + + .sm\:hover\:bg-red-100:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 226, 226, var(--tw-bg-opacity)) !important; + } + + .sm\:hover\:bg-red-200:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 202, 202, var(--tw-bg-opacity)) !important; + } + + .sm\:hover\:bg-red-300:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 165, 165, var(--tw-bg-opacity)) !important; + } + + .sm\:hover\:bg-red-400:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(248, 113, 113, var(--tw-bg-opacity)) !important; + } + + .sm\:hover\:bg-red-500:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(239, 68, 68, var(--tw-bg-opacity)) !important; + } + + .sm\:hover\:bg-red-600:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(220, 38, 38, var(--tw-bg-opacity)) !important; + } + + .sm\:hover\:bg-red-700:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(185, 28, 28, var(--tw-bg-opacity)) !important; + } + + .sm\:hover\:bg-red-800:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(153, 27, 27, var(--tw-bg-opacity)) !important; + } + + .sm\:hover\:bg-red-900:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(127, 29, 29, var(--tw-bg-opacity)) !important; + } + + .sm\:hover\:bg-yellow-50:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(255, 251, 235, var(--tw-bg-opacity)) !important; + } + + .sm\:hover\:bg-yellow-100:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 243, 199, var(--tw-bg-opacity)) !important; + } + + .sm\:hover\:bg-yellow-200:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(253, 230, 138, var(--tw-bg-opacity)) !important; + } + + .sm\:hover\:bg-yellow-300:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 211, 77, var(--tw-bg-opacity)) !important; + } + + .sm\:hover\:bg-yellow-400:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(251, 191, 36, var(--tw-bg-opacity)) !important; + } + + .sm\:hover\:bg-yellow-500:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)) !important; + } + + .sm\:hover\:bg-yellow-600:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(217, 119, 6, var(--tw-bg-opacity)) !important; + } + + .sm\:hover\:bg-yellow-700:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(180, 83, 9, var(--tw-bg-opacity)) !important; + } + + .sm\:hover\:bg-yellow-800:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(146, 64, 14, var(--tw-bg-opacity)) !important; + } + + .sm\:hover\:bg-yellow-900:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(120, 53, 15, var(--tw-bg-opacity)) !important; + } + + .sm\:hover\:bg-green-50:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(236, 253, 245, var(--tw-bg-opacity)) !important; + } + + .sm\:hover\:bg-green-100:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(209, 250, 229, var(--tw-bg-opacity)) !important; + } + + .sm\:hover\:bg-green-200:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(167, 243, 208, var(--tw-bg-opacity)) !important; + } + + .sm\:hover\:bg-green-300:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(110, 231, 183, var(--tw-bg-opacity)) !important; + } + + .sm\:hover\:bg-green-400:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(52, 211, 153, var(--tw-bg-opacity)) !important; + } + + .sm\:hover\:bg-green-500:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(16, 185, 129, var(--tw-bg-opacity)) !important; + } + + .sm\:hover\:bg-green-600:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(5, 150, 105, var(--tw-bg-opacity)) !important; + } + + .sm\:hover\:bg-green-700:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(4, 120, 87, var(--tw-bg-opacity)) !important; + } + + .sm\:hover\:bg-green-800:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(6, 95, 70, var(--tw-bg-opacity)) !important; + } + + .sm\:hover\:bg-green-900:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(6, 78, 59, var(--tw-bg-opacity)) !important; + } + + .sm\:hover\:bg-blue-50:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(239, 246, 255, var(--tw-bg-opacity)) !important; + } + + .sm\:hover\:bg-blue-100:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(219, 234, 254, var(--tw-bg-opacity)) !important; + } + + .sm\:hover\:bg-blue-200:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(191, 219, 254, var(--tw-bg-opacity)) !important; + } + + .sm\:hover\:bg-blue-300:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(147, 197, 253, var(--tw-bg-opacity)) !important; + } + + .sm\:hover\:bg-blue-400:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(96, 165, 250, var(--tw-bg-opacity)) !important; + } + + .sm\:hover\:bg-blue-500:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)) !important; + } + + .sm\:hover\:bg-blue-600:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(37, 99, 235, var(--tw-bg-opacity)) !important; + } + + .sm\:hover\:bg-blue-700:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(29, 78, 216, var(--tw-bg-opacity)) !important; + } + + .sm\:hover\:bg-blue-800:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(30, 64, 175, var(--tw-bg-opacity)) !important; + } + + .sm\:hover\:bg-blue-900:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(30, 58, 138, var(--tw-bg-opacity)) !important; + } + + .sm\:hover\:bg-indigo-50:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(238, 242, 255, var(--tw-bg-opacity)) !important; + } + + .sm\:hover\:bg-indigo-100:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(224, 231, 255, var(--tw-bg-opacity)) !important; + } + + .sm\:hover\:bg-indigo-200:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(199, 210, 254, var(--tw-bg-opacity)) !important; + } + + .sm\:hover\:bg-indigo-300:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(165, 180, 252, var(--tw-bg-opacity)) !important; + } + + .sm\:hover\:bg-indigo-400:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(129, 140, 248, var(--tw-bg-opacity)) !important; + } + + .sm\:hover\:bg-indigo-500:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(99, 102, 241, var(--tw-bg-opacity)) !important; + } + + .sm\:hover\:bg-indigo-600:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(79, 70, 229, var(--tw-bg-opacity)) !important; + } + + .sm\:hover\:bg-indigo-700:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(67, 56, 202, var(--tw-bg-opacity)) !important; + } + + .sm\:hover\:bg-indigo-800:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(55, 48, 163, var(--tw-bg-opacity)) !important; + } + + .sm\:hover\:bg-indigo-900:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(49, 46, 129, var(--tw-bg-opacity)) !important; + } + + .sm\:hover\:bg-purple-50:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(245, 243, 255, var(--tw-bg-opacity)) !important; + } + + .sm\:hover\:bg-purple-100:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(237, 233, 254, var(--tw-bg-opacity)) !important; + } + + .sm\:hover\:bg-purple-200:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(221, 214, 254, var(--tw-bg-opacity)) !important; + } + + .sm\:hover\:bg-purple-300:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(196, 181, 253, var(--tw-bg-opacity)) !important; + } + + .sm\:hover\:bg-purple-400:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(167, 139, 250, var(--tw-bg-opacity)) !important; + } + + .sm\:hover\:bg-purple-500:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(139, 92, 246, var(--tw-bg-opacity)) !important; + } + + .sm\:hover\:bg-purple-600:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(124, 58, 237, var(--tw-bg-opacity)) !important; + } + + .sm\:hover\:bg-purple-700:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(109, 40, 217, var(--tw-bg-opacity)) !important; + } + + .sm\:hover\:bg-purple-800:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(91, 33, 182, var(--tw-bg-opacity)) !important; + } + + .sm\:hover\:bg-purple-900:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(76, 29, 149, var(--tw-bg-opacity)) !important; + } + + .sm\:hover\:bg-pink-50:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(253, 242, 248, var(--tw-bg-opacity)) !important; + } + + .sm\:hover\:bg-pink-100:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 231, 243, var(--tw-bg-opacity)) !important; + } + + .sm\:hover\:bg-pink-200:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(251, 207, 232, var(--tw-bg-opacity)) !important; + } + + .sm\:hover\:bg-pink-300:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(249, 168, 212, var(--tw-bg-opacity)) !important; + } + + .sm\:hover\:bg-pink-400:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(244, 114, 182, var(--tw-bg-opacity)) !important; + } + + .sm\:hover\:bg-pink-500:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(236, 72, 153, var(--tw-bg-opacity)) !important; + } + + .sm\:hover\:bg-pink-600:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(219, 39, 119, var(--tw-bg-opacity)) !important; + } + + .sm\:hover\:bg-pink-700:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(190, 24, 93, var(--tw-bg-opacity)) !important; + } + + .sm\:hover\:bg-pink-800:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(157, 23, 77, var(--tw-bg-opacity)) !important; + } + + .sm\:hover\:bg-pink-900:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(131, 24, 67, var(--tw-bg-opacity)) !important; + } + + .sm\:hover\:bg-primary:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(0, 49, 151, var(--tw-bg-opacity)) !important; + } + + .sm\:focus\:bg-transparent:focus { + background-color: transparent !important; + } + + .sm\:focus\:bg-current:focus { + background-color: currentColor !important; + } + + .sm\:focus\:bg-black:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important; + } + + .sm\:focus\:bg-white:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important; + } + + .sm\:focus\:bg-gray-50:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)) !important; + } + + .sm\:focus\:bg-gray-100:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)) !important; + } + + .sm\:focus\:bg-gray-200:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)) !important; + } + + .sm\:focus\:bg-gray-300:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)) !important; + } + + .sm\:focus\:bg-gray-400:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)) !important; + } + + .sm\:focus\:bg-gray-500:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)) !important; + } + + .sm\:focus\:bg-gray-600:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)) !important; + } + + .sm\:focus\:bg-gray-700:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)) !important; + } + + .sm\:focus\:bg-gray-800:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)) !important; + } + + .sm\:focus\:bg-gray-900:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)) !important; + } + + .sm\:focus\:bg-red-50:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 242, 242, var(--tw-bg-opacity)) !important; + } + + .sm\:focus\:bg-red-100:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 226, 226, var(--tw-bg-opacity)) !important; + } + + .sm\:focus\:bg-red-200:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 202, 202, var(--tw-bg-opacity)) !important; + } + + .sm\:focus\:bg-red-300:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 165, 165, var(--tw-bg-opacity)) !important; + } + + .sm\:focus\:bg-red-400:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(248, 113, 113, var(--tw-bg-opacity)) !important; + } + + .sm\:focus\:bg-red-500:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(239, 68, 68, var(--tw-bg-opacity)) !important; + } + + .sm\:focus\:bg-red-600:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(220, 38, 38, var(--tw-bg-opacity)) !important; + } + + .sm\:focus\:bg-red-700:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(185, 28, 28, var(--tw-bg-opacity)) !important; + } + + .sm\:focus\:bg-red-800:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(153, 27, 27, var(--tw-bg-opacity)) !important; + } + + .sm\:focus\:bg-red-900:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(127, 29, 29, var(--tw-bg-opacity)) !important; + } + + .sm\:focus\:bg-yellow-50:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(255, 251, 235, var(--tw-bg-opacity)) !important; + } + + .sm\:focus\:bg-yellow-100:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 243, 199, var(--tw-bg-opacity)) !important; + } + + .sm\:focus\:bg-yellow-200:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(253, 230, 138, var(--tw-bg-opacity)) !important; + } + + .sm\:focus\:bg-yellow-300:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 211, 77, var(--tw-bg-opacity)) !important; + } + + .sm\:focus\:bg-yellow-400:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(251, 191, 36, var(--tw-bg-opacity)) !important; + } + + .sm\:focus\:bg-yellow-500:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)) !important; + } + + .sm\:focus\:bg-yellow-600:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(217, 119, 6, var(--tw-bg-opacity)) !important; + } + + .sm\:focus\:bg-yellow-700:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(180, 83, 9, var(--tw-bg-opacity)) !important; + } + + .sm\:focus\:bg-yellow-800:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(146, 64, 14, var(--tw-bg-opacity)) !important; + } + + .sm\:focus\:bg-yellow-900:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(120, 53, 15, var(--tw-bg-opacity)) !important; + } + + .sm\:focus\:bg-green-50:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(236, 253, 245, var(--tw-bg-opacity)) !important; + } + + .sm\:focus\:bg-green-100:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(209, 250, 229, var(--tw-bg-opacity)) !important; + } + + .sm\:focus\:bg-green-200:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(167, 243, 208, var(--tw-bg-opacity)) !important; + } + + .sm\:focus\:bg-green-300:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(110, 231, 183, var(--tw-bg-opacity)) !important; + } + + .sm\:focus\:bg-green-400:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(52, 211, 153, var(--tw-bg-opacity)) !important; + } + + .sm\:focus\:bg-green-500:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(16, 185, 129, var(--tw-bg-opacity)) !important; + } + + .sm\:focus\:bg-green-600:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(5, 150, 105, var(--tw-bg-opacity)) !important; + } + + .sm\:focus\:bg-green-700:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(4, 120, 87, var(--tw-bg-opacity)) !important; + } + + .sm\:focus\:bg-green-800:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(6, 95, 70, var(--tw-bg-opacity)) !important; + } + + .sm\:focus\:bg-green-900:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(6, 78, 59, var(--tw-bg-opacity)) !important; + } + + .sm\:focus\:bg-blue-50:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(239, 246, 255, var(--tw-bg-opacity)) !important; + } + + .sm\:focus\:bg-blue-100:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(219, 234, 254, var(--tw-bg-opacity)) !important; + } + + .sm\:focus\:bg-blue-200:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(191, 219, 254, var(--tw-bg-opacity)) !important; + } + + .sm\:focus\:bg-blue-300:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(147, 197, 253, var(--tw-bg-opacity)) !important; + } + + .sm\:focus\:bg-blue-400:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(96, 165, 250, var(--tw-bg-opacity)) !important; + } + + .sm\:focus\:bg-blue-500:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)) !important; + } + + .sm\:focus\:bg-blue-600:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(37, 99, 235, var(--tw-bg-opacity)) !important; + } + + .sm\:focus\:bg-blue-700:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(29, 78, 216, var(--tw-bg-opacity)) !important; + } + + .sm\:focus\:bg-blue-800:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(30, 64, 175, var(--tw-bg-opacity)) !important; + } + + .sm\:focus\:bg-blue-900:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(30, 58, 138, var(--tw-bg-opacity)) !important; + } + + .sm\:focus\:bg-indigo-50:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(238, 242, 255, var(--tw-bg-opacity)) !important; + } + + .sm\:focus\:bg-indigo-100:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(224, 231, 255, var(--tw-bg-opacity)) !important; + } + + .sm\:focus\:bg-indigo-200:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(199, 210, 254, var(--tw-bg-opacity)) !important; + } + + .sm\:focus\:bg-indigo-300:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(165, 180, 252, var(--tw-bg-opacity)) !important; + } + + .sm\:focus\:bg-indigo-400:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(129, 140, 248, var(--tw-bg-opacity)) !important; + } + + .sm\:focus\:bg-indigo-500:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(99, 102, 241, var(--tw-bg-opacity)) !important; + } + + .sm\:focus\:bg-indigo-600:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(79, 70, 229, var(--tw-bg-opacity)) !important; + } + + .sm\:focus\:bg-indigo-700:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(67, 56, 202, var(--tw-bg-opacity)) !important; + } + + .sm\:focus\:bg-indigo-800:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(55, 48, 163, var(--tw-bg-opacity)) !important; + } + + .sm\:focus\:bg-indigo-900:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(49, 46, 129, var(--tw-bg-opacity)) !important; + } + + .sm\:focus\:bg-purple-50:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(245, 243, 255, var(--tw-bg-opacity)) !important; + } + + .sm\:focus\:bg-purple-100:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(237, 233, 254, var(--tw-bg-opacity)) !important; + } + + .sm\:focus\:bg-purple-200:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(221, 214, 254, var(--tw-bg-opacity)) !important; + } + + .sm\:focus\:bg-purple-300:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(196, 181, 253, var(--tw-bg-opacity)) !important; + } + + .sm\:focus\:bg-purple-400:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(167, 139, 250, var(--tw-bg-opacity)) !important; + } + + .sm\:focus\:bg-purple-500:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(139, 92, 246, var(--tw-bg-opacity)) !important; + } + + .sm\:focus\:bg-purple-600:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(124, 58, 237, var(--tw-bg-opacity)) !important; + } + + .sm\:focus\:bg-purple-700:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(109, 40, 217, var(--tw-bg-opacity)) !important; + } + + .sm\:focus\:bg-purple-800:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(91, 33, 182, var(--tw-bg-opacity)) !important; + } + + .sm\:focus\:bg-purple-900:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(76, 29, 149, var(--tw-bg-opacity)) !important; + } + + .sm\:focus\:bg-pink-50:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(253, 242, 248, var(--tw-bg-opacity)) !important; + } + + .sm\:focus\:bg-pink-100:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 231, 243, var(--tw-bg-opacity)) !important; + } + + .sm\:focus\:bg-pink-200:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(251, 207, 232, var(--tw-bg-opacity)) !important; + } + + .sm\:focus\:bg-pink-300:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(249, 168, 212, var(--tw-bg-opacity)) !important; + } + + .sm\:focus\:bg-pink-400:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(244, 114, 182, var(--tw-bg-opacity)) !important; + } + + .sm\:focus\:bg-pink-500:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(236, 72, 153, var(--tw-bg-opacity)) !important; + } + + .sm\:focus\:bg-pink-600:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(219, 39, 119, var(--tw-bg-opacity)) !important; + } + + .sm\:focus\:bg-pink-700:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(190, 24, 93, var(--tw-bg-opacity)) !important; + } + + .sm\:focus\:bg-pink-800:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(157, 23, 77, var(--tw-bg-opacity)) !important; + } + + .sm\:focus\:bg-pink-900:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(131, 24, 67, var(--tw-bg-opacity)) !important; + } + + .sm\:focus\:bg-primary:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(0, 49, 151, var(--tw-bg-opacity)) !important; + } + + .sm\:bg-none { + background-image: none !important; + } + + .sm\:bg-gradient-to-t { + background-image: linear-gradient(to top, var(--tw-gradient-stops)) !important; + } + + .sm\:bg-gradient-to-tr { + background-image: linear-gradient(to top right, var(--tw-gradient-stops)) !important; + } + + .sm\:bg-gradient-to-r { + background-image: linear-gradient(to right, var(--tw-gradient-stops)) !important; + } + + .sm\:bg-gradient-to-br { + background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)) !important; + } + + .sm\:bg-gradient-to-b { + background-image: linear-gradient(to bottom, var(--tw-gradient-stops)) !important; + } + + .sm\:bg-gradient-to-bl { + background-image: linear-gradient(to bottom left, var(--tw-gradient-stops)) !important; + } + + .sm\:bg-gradient-to-l { + background-image: linear-gradient(to left, var(--tw-gradient-stops)) !important; + } + + .sm\:bg-gradient-to-tl { + background-image: linear-gradient(to top left, var(--tw-gradient-stops)) !important; + } + + .sm\:from-transparent { + --tw-gradient-from: transparent !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; + } + + .sm\:from-current { + --tw-gradient-from: currentColor !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; + } + + .sm\:from-black { + --tw-gradient-from: #000 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; + } + + .sm\:from-white { + --tw-gradient-from: #fff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; + } + + .sm\:from-gray-50 { + --tw-gradient-from: #f9fafb !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)) !important; + } + + .sm\:from-gray-100 { + --tw-gradient-from: #f3f4f6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)) !important; + } + + .sm\:from-gray-200 { + --tw-gradient-from: #e5e7eb !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)) !important; + } + + .sm\:from-gray-300 { + --tw-gradient-from: #d1d5db !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)) !important; + } + + .sm\:from-gray-400 { + --tw-gradient-from: #9ca3af !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)) !important; + } + + .sm\:from-gray-500 { + --tw-gradient-from: #6b7280 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)) !important; + } + + .sm\:from-gray-600 { + --tw-gradient-from: #4b5563 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)) !important; + } + + .sm\:from-gray-700 { + --tw-gradient-from: #374151 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)) !important; + } + + .sm\:from-gray-800 { + --tw-gradient-from: #1f2937 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)) !important; + } + + .sm\:from-gray-900 { + --tw-gradient-from: #111827 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)) !important; + } + + .sm\:from-red-50 { + --tw-gradient-from: #fef2f2 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)) !important; + } + + .sm\:from-red-100 { + --tw-gradient-from: #fee2e2 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)) !important; + } + + .sm\:from-red-200 { + --tw-gradient-from: #fecaca !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)) !important; + } + + .sm\:from-red-300 { + --tw-gradient-from: #fca5a5 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)) !important; + } + + .sm\:from-red-400 { + --tw-gradient-from: #f87171 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)) !important; + } + + .sm\:from-red-500 { + --tw-gradient-from: #ef4444 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)) !important; + } + + .sm\:from-red-600 { + --tw-gradient-from: #dc2626 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)) !important; + } + + .sm\:from-red-700 { + --tw-gradient-from: #b91c1c !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)) !important; + } + + .sm\:from-red-800 { + --tw-gradient-from: #991b1b !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)) !important; + } + + .sm\:from-red-900 { + --tw-gradient-from: #7f1d1d !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important; + } + + .sm\:from-yellow-50 { + --tw-gradient-from: #fffbeb !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)) !important; + } + + .sm\:from-yellow-100 { + --tw-gradient-from: #fef3c7 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)) !important; + } + + .sm\:from-yellow-200 { + --tw-gradient-from: #fde68a !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)) !important; + } + + .sm\:from-yellow-300 { + --tw-gradient-from: #fcd34d !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)) !important; + } + + .sm\:from-yellow-400 { + --tw-gradient-from: #fbbf24 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)) !important; + } + + .sm\:from-yellow-500 { + --tw-gradient-from: #f59e0b !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)) !important; + } + + .sm\:from-yellow-600 { + --tw-gradient-from: #d97706 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)) !important; + } + + .sm\:from-yellow-700 { + --tw-gradient-from: #b45309 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)) !important; + } + + .sm\:from-yellow-800 { + --tw-gradient-from: #92400e !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)) !important; + } + + .sm\:from-yellow-900 { + --tw-gradient-from: #78350f !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)) !important; + } + + .sm\:from-green-50 { + --tw-gradient-from: #ecfdf5 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)) !important; + } + + .sm\:from-green-100 { + --tw-gradient-from: #d1fae5 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)) !important; + } + + .sm\:from-green-200 { + --tw-gradient-from: #a7f3d0 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)) !important; + } + + .sm\:from-green-300 { + --tw-gradient-from: #6ee7b7 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)) !important; + } + + .sm\:from-green-400 { + --tw-gradient-from: #34d399 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)) !important; + } + + .sm\:from-green-500 { + --tw-gradient-from: #10b981 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)) !important; + } + + .sm\:from-green-600 { + --tw-gradient-from: #059669 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)) !important; + } + + .sm\:from-green-700 { + --tw-gradient-from: #047857 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)) !important; + } + + .sm\:from-green-800 { + --tw-gradient-from: #065f46 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)) !important; + } + + .sm\:from-green-900 { + --tw-gradient-from: #064e3b !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)) !important; + } + + .sm\:from-blue-50 { + --tw-gradient-from: #eff6ff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)) !important; + } + + .sm\:from-blue-100 { + --tw-gradient-from: #dbeafe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)) !important; + } + + .sm\:from-blue-200 { + --tw-gradient-from: #bfdbfe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)) !important; + } + + .sm\:from-blue-300 { + --tw-gradient-from: #93c5fd !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)) !important; + } + + .sm\:from-blue-400 { + --tw-gradient-from: #60a5fa !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)) !important; + } + + .sm\:from-blue-500 { + --tw-gradient-from: #3b82f6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)) !important; + } + + .sm\:from-blue-600 { + --tw-gradient-from: #2563eb !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)) !important; + } + + .sm\:from-blue-700 { + --tw-gradient-from: #1d4ed8 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)) !important; + } + + .sm\:from-blue-800 { + --tw-gradient-from: #1e40af !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)) !important; + } + + .sm\:from-blue-900 { + --tw-gradient-from: #1e3a8a !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)) !important; + } + + .sm\:from-indigo-50 { + --tw-gradient-from: #eef2ff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)) !important; + } + + .sm\:from-indigo-100 { + --tw-gradient-from: #e0e7ff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)) !important; + } + + .sm\:from-indigo-200 { + --tw-gradient-from: #c7d2fe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)) !important; + } + + .sm\:from-indigo-300 { + --tw-gradient-from: #a5b4fc !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)) !important; + } + + .sm\:from-indigo-400 { + --tw-gradient-from: #818cf8 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)) !important; + } + + .sm\:from-indigo-500 { + --tw-gradient-from: #6366f1 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)) !important; + } + + .sm\:from-indigo-600 { + --tw-gradient-from: #4f46e5 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)) !important; + } + + .sm\:from-indigo-700 { + --tw-gradient-from: #4338ca !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)) !important; + } + + .sm\:from-indigo-800 { + --tw-gradient-from: #3730a3 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)) !important; + } + + .sm\:from-indigo-900 { + --tw-gradient-from: #312e81 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)) !important; + } + + .sm\:from-purple-50 { + --tw-gradient-from: #f5f3ff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)) !important; + } + + .sm\:from-purple-100 { + --tw-gradient-from: #ede9fe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)) !important; + } + + .sm\:from-purple-200 { + --tw-gradient-from: #ddd6fe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)) !important; + } + + .sm\:from-purple-300 { + --tw-gradient-from: #c4b5fd !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)) !important; + } + + .sm\:from-purple-400 { + --tw-gradient-from: #a78bfa !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)) !important; + } + + .sm\:from-purple-500 { + --tw-gradient-from: #8b5cf6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)) !important; + } + + .sm\:from-purple-600 { + --tw-gradient-from: #7c3aed !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)) !important; + } + + .sm\:from-purple-700 { + --tw-gradient-from: #6d28d9 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)) !important; + } + + .sm\:from-purple-800 { + --tw-gradient-from: #5b21b6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)) !important; + } + + .sm\:from-purple-900 { + --tw-gradient-from: #4c1d95 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)) !important; + } + + .sm\:from-pink-50 { + --tw-gradient-from: #fdf2f8 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)) !important; + } + + .sm\:from-pink-100 { + --tw-gradient-from: #fce7f3 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)) !important; + } + + .sm\:from-pink-200 { + --tw-gradient-from: #fbcfe8 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)) !important; + } + + .sm\:from-pink-300 { + --tw-gradient-from: #f9a8d4 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)) !important; + } + + .sm\:from-pink-400 { + --tw-gradient-from: #f472b6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)) !important; + } + + .sm\:from-pink-500 { + --tw-gradient-from: #ec4899 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)) !important; + } + + .sm\:from-pink-600 { + --tw-gradient-from: #db2777 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)) !important; + } + + .sm\:from-pink-700 { + --tw-gradient-from: #be185d !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)) !important; + } + + .sm\:from-pink-800 { + --tw-gradient-from: #9d174d !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)) !important; + } + + .sm\:from-pink-900 { + --tw-gradient-from: #831843 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)) !important; + } + + .sm\:from-primary { + --tw-gradient-from: #003197 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 49, 151, 0)) !important; + } + + .sm\:via-transparent { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; + } + + .sm\:via-current { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; + } + + .sm\:via-black { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; + } + + .sm\:via-white { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; + } + + .sm\:via-gray-50 { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)) !important; + } + + .sm\:via-gray-100 { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)) !important; + } + + .sm\:via-gray-200 { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)) !important; + } + + .sm\:via-gray-300 { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)) !important; + } + + .sm\:via-gray-400 { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)) !important; + } + + .sm\:via-gray-500 { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)) !important; + } + + .sm\:via-gray-600 { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)) !important; + } + + .sm\:via-gray-700 { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)) !important; + } + + .sm\:via-gray-800 { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)) !important; + } + + .sm\:via-gray-900 { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)) !important; + } + + .sm\:via-red-50 { + --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)) !important; + } + + .sm\:via-red-100 { + --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)) !important; + } + + .sm\:via-red-200 { + --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)) !important; + } + + .sm\:via-red-300 { + --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)) !important; + } + + .sm\:via-red-400 { + --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)) !important; + } + + .sm\:via-red-500 { + --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)) !important; + } + + .sm\:via-red-600 { + --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)) !important; + } + + .sm\:via-red-700 { + --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)) !important; + } + + .sm\:via-red-800 { + --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)) !important; + } + + .sm\:via-red-900 { + --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important; + } + + .sm\:via-yellow-50 { + --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)) !important; + } + + .sm\:via-yellow-100 { + --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)) !important; + } + + .sm\:via-yellow-200 { + --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)) !important; + } + + .sm\:via-yellow-300 { + --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)) !important; + } + + .sm\:via-yellow-400 { + --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)) !important; + } + + .sm\:via-yellow-500 { + --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)) !important; + } + + .sm\:via-yellow-600 { + --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)) !important; + } + + .sm\:via-yellow-700 { + --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)) !important; + } + + .sm\:via-yellow-800 { + --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)) !important; + } + + .sm\:via-yellow-900 { + --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)) !important; + } + + .sm\:via-green-50 { + --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)) !important; + } + + .sm\:via-green-100 { + --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)) !important; + } + + .sm\:via-green-200 { + --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)) !important; + } + + .sm\:via-green-300 { + --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)) !important; + } + + .sm\:via-green-400 { + --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)) !important; + } + + .sm\:via-green-500 { + --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)) !important; + } + + .sm\:via-green-600 { + --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)) !important; + } + + .sm\:via-green-700 { + --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)) !important; + } + + .sm\:via-green-800 { + --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)) !important; + } + + .sm\:via-green-900 { + --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)) !important; + } + + .sm\:via-blue-50 { + --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)) !important; + } + + .sm\:via-blue-100 { + --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)) !important; + } + + .sm\:via-blue-200 { + --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)) !important; + } + + .sm\:via-blue-300 { + --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)) !important; + } + + .sm\:via-blue-400 { + --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)) !important; + } + + .sm\:via-blue-500 { + --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)) !important; + } + + .sm\:via-blue-600 { + --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)) !important; + } + + .sm\:via-blue-700 { + --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)) !important; + } + + .sm\:via-blue-800 { + --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)) !important; + } + + .sm\:via-blue-900 { + --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)) !important; + } + + .sm\:via-indigo-50 { + --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)) !important; + } + + .sm\:via-indigo-100 { + --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)) !important; + } + + .sm\:via-indigo-200 { + --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)) !important; + } + + .sm\:via-indigo-300 { + --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)) !important; + } + + .sm\:via-indigo-400 { + --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)) !important; + } + + .sm\:via-indigo-500 { + --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)) !important; + } + + .sm\:via-indigo-600 { + --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)) !important; + } + + .sm\:via-indigo-700 { + --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)) !important; + } + + .sm\:via-indigo-800 { + --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)) !important; + } + + .sm\:via-indigo-900 { + --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)) !important; + } + + .sm\:via-purple-50 { + --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)) !important; + } + + .sm\:via-purple-100 { + --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)) !important; + } + + .sm\:via-purple-200 { + --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)) !important; + } + + .sm\:via-purple-300 { + --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)) !important; + } + + .sm\:via-purple-400 { + --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)) !important; + } + + .sm\:via-purple-500 { + --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)) !important; + } + + .sm\:via-purple-600 { + --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)) !important; + } + + .sm\:via-purple-700 { + --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)) !important; + } + + .sm\:via-purple-800 { + --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)) !important; + } + + .sm\:via-purple-900 { + --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)) !important; + } + + .sm\:via-pink-50 { + --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)) !important; + } + + .sm\:via-pink-100 { + --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)) !important; + } + + .sm\:via-pink-200 { + --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)) !important; + } + + .sm\:via-pink-300 { + --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)) !important; + } + + .sm\:via-pink-400 { + --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)) !important; + } + + .sm\:via-pink-500 { + --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)) !important; + } + + .sm\:via-pink-600 { + --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)) !important; + } + + .sm\:via-pink-700 { + --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)) !important; + } + + .sm\:via-pink-800 { + --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)) !important; + } + + .sm\:via-pink-900 { + --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)) !important; + } + + .sm\:via-primary { + --tw-gradient-stops: var(--tw-gradient-from), #003197, var(--tw-gradient-to, rgba(0, 49, 151, 0)) !important; + } + + .sm\:to-transparent { + --tw-gradient-to: transparent !important; + } + + .sm\:to-current { + --tw-gradient-to: currentColor !important; + } + + .sm\:to-black { + --tw-gradient-to: #000 !important; + } + + .sm\:to-white { + --tw-gradient-to: #fff !important; + } + + .sm\:to-gray-50 { + --tw-gradient-to: #f9fafb !important; + } + + .sm\:to-gray-100 { + --tw-gradient-to: #f3f4f6 !important; + } + + .sm\:to-gray-200 { + --tw-gradient-to: #e5e7eb !important; + } + + .sm\:to-gray-300 { + --tw-gradient-to: #d1d5db !important; + } + + .sm\:to-gray-400 { + --tw-gradient-to: #9ca3af !important; + } + + .sm\:to-gray-500 { + --tw-gradient-to: #6b7280 !important; + } + + .sm\:to-gray-600 { + --tw-gradient-to: #4b5563 !important; + } + + .sm\:to-gray-700 { + --tw-gradient-to: #374151 !important; + } + + .sm\:to-gray-800 { + --tw-gradient-to: #1f2937 !important; + } + + .sm\:to-gray-900 { + --tw-gradient-to: #111827 !important; + } + + .sm\:to-red-50 { + --tw-gradient-to: #fef2f2 !important; + } + + .sm\:to-red-100 { + --tw-gradient-to: #fee2e2 !important; + } + + .sm\:to-red-200 { + --tw-gradient-to: #fecaca !important; + } + + .sm\:to-red-300 { + --tw-gradient-to: #fca5a5 !important; + } + + .sm\:to-red-400 { + --tw-gradient-to: #f87171 !important; + } + + .sm\:to-red-500 { + --tw-gradient-to: #ef4444 !important; + } + + .sm\:to-red-600 { + --tw-gradient-to: #dc2626 !important; + } + + .sm\:to-red-700 { + --tw-gradient-to: #b91c1c !important; + } + + .sm\:to-red-800 { + --tw-gradient-to: #991b1b !important; + } + + .sm\:to-red-900 { + --tw-gradient-to: #7f1d1d !important; + } + + .sm\:to-yellow-50 { + --tw-gradient-to: #fffbeb !important; + } + + .sm\:to-yellow-100 { + --tw-gradient-to: #fef3c7 !important; + } + + .sm\:to-yellow-200 { + --tw-gradient-to: #fde68a !important; + } + + .sm\:to-yellow-300 { + --tw-gradient-to: #fcd34d !important; + } + + .sm\:to-yellow-400 { + --tw-gradient-to: #fbbf24 !important; + } + + .sm\:to-yellow-500 { + --tw-gradient-to: #f59e0b !important; + } + + .sm\:to-yellow-600 { + --tw-gradient-to: #d97706 !important; + } + + .sm\:to-yellow-700 { + --tw-gradient-to: #b45309 !important; + } + + .sm\:to-yellow-800 { + --tw-gradient-to: #92400e !important; + } + + .sm\:to-yellow-900 { + --tw-gradient-to: #78350f !important; + } + + .sm\:to-green-50 { + --tw-gradient-to: #ecfdf5 !important; + } + + .sm\:to-green-100 { + --tw-gradient-to: #d1fae5 !important; + } + + .sm\:to-green-200 { + --tw-gradient-to: #a7f3d0 !important; + } + + .sm\:to-green-300 { + --tw-gradient-to: #6ee7b7 !important; + } + + .sm\:to-green-400 { + --tw-gradient-to: #34d399 !important; + } + + .sm\:to-green-500 { + --tw-gradient-to: #10b981 !important; + } + + .sm\:to-green-600 { + --tw-gradient-to: #059669 !important; + } + + .sm\:to-green-700 { + --tw-gradient-to: #047857 !important; + } + + .sm\:to-green-800 { + --tw-gradient-to: #065f46 !important; + } + + .sm\:to-green-900 { + --tw-gradient-to: #064e3b !important; + } + + .sm\:to-blue-50 { + --tw-gradient-to: #eff6ff !important; + } + + .sm\:to-blue-100 { + --tw-gradient-to: #dbeafe !important; + } + + .sm\:to-blue-200 { + --tw-gradient-to: #bfdbfe !important; + } + + .sm\:to-blue-300 { + --tw-gradient-to: #93c5fd !important; + } + + .sm\:to-blue-400 { + --tw-gradient-to: #60a5fa !important; + } + + .sm\:to-blue-500 { + --tw-gradient-to: #3b82f6 !important; + } + + .sm\:to-blue-600 { + --tw-gradient-to: #2563eb !important; + } + + .sm\:to-blue-700 { + --tw-gradient-to: #1d4ed8 !important; + } + + .sm\:to-blue-800 { + --tw-gradient-to: #1e40af !important; + } + + .sm\:to-blue-900 { + --tw-gradient-to: #1e3a8a !important; + } + + .sm\:to-indigo-50 { + --tw-gradient-to: #eef2ff !important; + } + + .sm\:to-indigo-100 { + --tw-gradient-to: #e0e7ff !important; + } + + .sm\:to-indigo-200 { + --tw-gradient-to: #c7d2fe !important; + } + + .sm\:to-indigo-300 { + --tw-gradient-to: #a5b4fc !important; + } + + .sm\:to-indigo-400 { + --tw-gradient-to: #818cf8 !important; + } + + .sm\:to-indigo-500 { + --tw-gradient-to: #6366f1 !important; + } + + .sm\:to-indigo-600 { + --tw-gradient-to: #4f46e5 !important; + } + + .sm\:to-indigo-700 { + --tw-gradient-to: #4338ca !important; + } + + .sm\:to-indigo-800 { + --tw-gradient-to: #3730a3 !important; + } + + .sm\:to-indigo-900 { + --tw-gradient-to: #312e81 !important; + } + + .sm\:to-purple-50 { + --tw-gradient-to: #f5f3ff !important; + } + + .sm\:to-purple-100 { + --tw-gradient-to: #ede9fe !important; + } + + .sm\:to-purple-200 { + --tw-gradient-to: #ddd6fe !important; + } + + .sm\:to-purple-300 { + --tw-gradient-to: #c4b5fd !important; + } + + .sm\:to-purple-400 { + --tw-gradient-to: #a78bfa !important; + } + + .sm\:to-purple-500 { + --tw-gradient-to: #8b5cf6 !important; + } + + .sm\:to-purple-600 { + --tw-gradient-to: #7c3aed !important; + } + + .sm\:to-purple-700 { + --tw-gradient-to: #6d28d9 !important; + } + + .sm\:to-purple-800 { + --tw-gradient-to: #5b21b6 !important; + } + + .sm\:to-purple-900 { + --tw-gradient-to: #4c1d95 !important; + } + + .sm\:to-pink-50 { + --tw-gradient-to: #fdf2f8 !important; + } + + .sm\:to-pink-100 { + --tw-gradient-to: #fce7f3 !important; + } + + .sm\:to-pink-200 { + --tw-gradient-to: #fbcfe8 !important; + } + + .sm\:to-pink-300 { + --tw-gradient-to: #f9a8d4 !important; + } + + .sm\:to-pink-400 { + --tw-gradient-to: #f472b6 !important; + } + + .sm\:to-pink-500 { + --tw-gradient-to: #ec4899 !important; + } + + .sm\:to-pink-600 { + --tw-gradient-to: #db2777 !important; + } + + .sm\:to-pink-700 { + --tw-gradient-to: #be185d !important; + } + + .sm\:to-pink-800 { + --tw-gradient-to: #9d174d !important; + } + + .sm\:to-pink-900 { + --tw-gradient-to: #831843 !important; + } + + .sm\:to-primary { + --tw-gradient-to: #003197 !important; + } + + .sm\:hover\:from-transparent:hover { + --tw-gradient-from: transparent !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; + } + + .sm\:hover\:from-current:hover { + --tw-gradient-from: currentColor !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; + } + + .sm\:hover\:from-black:hover { + --tw-gradient-from: #000 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; + } + + .sm\:hover\:from-white:hover { + --tw-gradient-from: #fff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; + } + + .sm\:hover\:from-gray-50:hover { + --tw-gradient-from: #f9fafb !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)) !important; + } + + .sm\:hover\:from-gray-100:hover { + --tw-gradient-from: #f3f4f6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)) !important; + } + + .sm\:hover\:from-gray-200:hover { + --tw-gradient-from: #e5e7eb !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)) !important; + } + + .sm\:hover\:from-gray-300:hover { + --tw-gradient-from: #d1d5db !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)) !important; + } + + .sm\:hover\:from-gray-400:hover { + --tw-gradient-from: #9ca3af !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)) !important; + } + + .sm\:hover\:from-gray-500:hover { + --tw-gradient-from: #6b7280 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)) !important; + } + + .sm\:hover\:from-gray-600:hover { + --tw-gradient-from: #4b5563 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)) !important; + } + + .sm\:hover\:from-gray-700:hover { + --tw-gradient-from: #374151 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)) !important; + } + + .sm\:hover\:from-gray-800:hover { + --tw-gradient-from: #1f2937 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)) !important; + } + + .sm\:hover\:from-gray-900:hover { + --tw-gradient-from: #111827 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)) !important; + } + + .sm\:hover\:from-red-50:hover { + --tw-gradient-from: #fef2f2 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)) !important; + } + + .sm\:hover\:from-red-100:hover { + --tw-gradient-from: #fee2e2 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)) !important; + } + + .sm\:hover\:from-red-200:hover { + --tw-gradient-from: #fecaca !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)) !important; + } + + .sm\:hover\:from-red-300:hover { + --tw-gradient-from: #fca5a5 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)) !important; + } + + .sm\:hover\:from-red-400:hover { + --tw-gradient-from: #f87171 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)) !important; + } + + .sm\:hover\:from-red-500:hover { + --tw-gradient-from: #ef4444 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)) !important; + } + + .sm\:hover\:from-red-600:hover { + --tw-gradient-from: #dc2626 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)) !important; + } + + .sm\:hover\:from-red-700:hover { + --tw-gradient-from: #b91c1c !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)) !important; + } + + .sm\:hover\:from-red-800:hover { + --tw-gradient-from: #991b1b !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)) !important; + } + + .sm\:hover\:from-red-900:hover { + --tw-gradient-from: #7f1d1d !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important; + } + + .sm\:hover\:from-yellow-50:hover { + --tw-gradient-from: #fffbeb !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)) !important; + } + + .sm\:hover\:from-yellow-100:hover { + --tw-gradient-from: #fef3c7 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)) !important; + } + + .sm\:hover\:from-yellow-200:hover { + --tw-gradient-from: #fde68a !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)) !important; + } + + .sm\:hover\:from-yellow-300:hover { + --tw-gradient-from: #fcd34d !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)) !important; + } + + .sm\:hover\:from-yellow-400:hover { + --tw-gradient-from: #fbbf24 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)) !important; + } + + .sm\:hover\:from-yellow-500:hover { + --tw-gradient-from: #f59e0b !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)) !important; + } + + .sm\:hover\:from-yellow-600:hover { + --tw-gradient-from: #d97706 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)) !important; + } + + .sm\:hover\:from-yellow-700:hover { + --tw-gradient-from: #b45309 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)) !important; + } + + .sm\:hover\:from-yellow-800:hover { + --tw-gradient-from: #92400e !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)) !important; + } + + .sm\:hover\:from-yellow-900:hover { + --tw-gradient-from: #78350f !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)) !important; + } + + .sm\:hover\:from-green-50:hover { + --tw-gradient-from: #ecfdf5 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)) !important; + } + + .sm\:hover\:from-green-100:hover { + --tw-gradient-from: #d1fae5 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)) !important; + } + + .sm\:hover\:from-green-200:hover { + --tw-gradient-from: #a7f3d0 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)) !important; + } + + .sm\:hover\:from-green-300:hover { + --tw-gradient-from: #6ee7b7 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)) !important; + } + + .sm\:hover\:from-green-400:hover { + --tw-gradient-from: #34d399 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)) !important; + } + + .sm\:hover\:from-green-500:hover { + --tw-gradient-from: #10b981 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)) !important; + } + + .sm\:hover\:from-green-600:hover { + --tw-gradient-from: #059669 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)) !important; + } + + .sm\:hover\:from-green-700:hover { + --tw-gradient-from: #047857 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)) !important; + } + + .sm\:hover\:from-green-800:hover { + --tw-gradient-from: #065f46 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)) !important; + } + + .sm\:hover\:from-green-900:hover { + --tw-gradient-from: #064e3b !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)) !important; + } + + .sm\:hover\:from-blue-50:hover { + --tw-gradient-from: #eff6ff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)) !important; + } + + .sm\:hover\:from-blue-100:hover { + --tw-gradient-from: #dbeafe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)) !important; + } + + .sm\:hover\:from-blue-200:hover { + --tw-gradient-from: #bfdbfe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)) !important; + } + + .sm\:hover\:from-blue-300:hover { + --tw-gradient-from: #93c5fd !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)) !important; + } + + .sm\:hover\:from-blue-400:hover { + --tw-gradient-from: #60a5fa !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)) !important; + } + + .sm\:hover\:from-blue-500:hover { + --tw-gradient-from: #3b82f6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)) !important; + } + + .sm\:hover\:from-blue-600:hover { + --tw-gradient-from: #2563eb !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)) !important; + } + + .sm\:hover\:from-blue-700:hover { + --tw-gradient-from: #1d4ed8 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)) !important; + } + + .sm\:hover\:from-blue-800:hover { + --tw-gradient-from: #1e40af !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)) !important; + } + + .sm\:hover\:from-blue-900:hover { + --tw-gradient-from: #1e3a8a !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)) !important; + } + + .sm\:hover\:from-indigo-50:hover { + --tw-gradient-from: #eef2ff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)) !important; + } + + .sm\:hover\:from-indigo-100:hover { + --tw-gradient-from: #e0e7ff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)) !important; + } + + .sm\:hover\:from-indigo-200:hover { + --tw-gradient-from: #c7d2fe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)) !important; + } + + .sm\:hover\:from-indigo-300:hover { + --tw-gradient-from: #a5b4fc !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)) !important; + } + + .sm\:hover\:from-indigo-400:hover { + --tw-gradient-from: #818cf8 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)) !important; + } + + .sm\:hover\:from-indigo-500:hover { + --tw-gradient-from: #6366f1 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)) !important; + } + + .sm\:hover\:from-indigo-600:hover { + --tw-gradient-from: #4f46e5 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)) !important; + } + + .sm\:hover\:from-indigo-700:hover { + --tw-gradient-from: #4338ca !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)) !important; + } + + .sm\:hover\:from-indigo-800:hover { + --tw-gradient-from: #3730a3 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)) !important; + } + + .sm\:hover\:from-indigo-900:hover { + --tw-gradient-from: #312e81 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)) !important; + } + + .sm\:hover\:from-purple-50:hover { + --tw-gradient-from: #f5f3ff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)) !important; + } + + .sm\:hover\:from-purple-100:hover { + --tw-gradient-from: #ede9fe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)) !important; + } + + .sm\:hover\:from-purple-200:hover { + --tw-gradient-from: #ddd6fe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)) !important; + } + + .sm\:hover\:from-purple-300:hover { + --tw-gradient-from: #c4b5fd !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)) !important; + } + + .sm\:hover\:from-purple-400:hover { + --tw-gradient-from: #a78bfa !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)) !important; + } + + .sm\:hover\:from-purple-500:hover { + --tw-gradient-from: #8b5cf6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)) !important; + } + + .sm\:hover\:from-purple-600:hover { + --tw-gradient-from: #7c3aed !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)) !important; + } + + .sm\:hover\:from-purple-700:hover { + --tw-gradient-from: #6d28d9 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)) !important; + } + + .sm\:hover\:from-purple-800:hover { + --tw-gradient-from: #5b21b6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)) !important; + } + + .sm\:hover\:from-purple-900:hover { + --tw-gradient-from: #4c1d95 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)) !important; + } + + .sm\:hover\:from-pink-50:hover { + --tw-gradient-from: #fdf2f8 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)) !important; + } + + .sm\:hover\:from-pink-100:hover { + --tw-gradient-from: #fce7f3 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)) !important; + } + + .sm\:hover\:from-pink-200:hover { + --tw-gradient-from: #fbcfe8 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)) !important; + } + + .sm\:hover\:from-pink-300:hover { + --tw-gradient-from: #f9a8d4 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)) !important; + } + + .sm\:hover\:from-pink-400:hover { + --tw-gradient-from: #f472b6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)) !important; + } + + .sm\:hover\:from-pink-500:hover { + --tw-gradient-from: #ec4899 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)) !important; + } + + .sm\:hover\:from-pink-600:hover { + --tw-gradient-from: #db2777 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)) !important; + } + + .sm\:hover\:from-pink-700:hover { + --tw-gradient-from: #be185d !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)) !important; + } + + .sm\:hover\:from-pink-800:hover { + --tw-gradient-from: #9d174d !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)) !important; + } + + .sm\:hover\:from-pink-900:hover { + --tw-gradient-from: #831843 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)) !important; + } + + .sm\:hover\:from-primary:hover { + --tw-gradient-from: #003197 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 49, 151, 0)) !important; + } + + .sm\:hover\:via-transparent:hover { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; + } + + .sm\:hover\:via-current:hover { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; + } + + .sm\:hover\:via-black:hover { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; + } + + .sm\:hover\:via-white:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; + } + + .sm\:hover\:via-gray-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)) !important; + } + + .sm\:hover\:via-gray-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)) !important; + } + + .sm\:hover\:via-gray-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)) !important; + } + + .sm\:hover\:via-gray-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)) !important; + } + + .sm\:hover\:via-gray-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)) !important; + } + + .sm\:hover\:via-gray-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)) !important; + } + + .sm\:hover\:via-gray-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)) !important; + } + + .sm\:hover\:via-gray-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)) !important; + } + + .sm\:hover\:via-gray-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)) !important; + } + + .sm\:hover\:via-gray-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)) !important; + } + + .sm\:hover\:via-red-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)) !important; + } + + .sm\:hover\:via-red-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)) !important; + } + + .sm\:hover\:via-red-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)) !important; + } + + .sm\:hover\:via-red-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)) !important; + } + + .sm\:hover\:via-red-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)) !important; + } + + .sm\:hover\:via-red-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)) !important; + } + + .sm\:hover\:via-red-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)) !important; + } + + .sm\:hover\:via-red-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)) !important; + } + + .sm\:hover\:via-red-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)) !important; + } + + .sm\:hover\:via-red-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important; + } + + .sm\:hover\:via-yellow-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)) !important; + } + + .sm\:hover\:via-yellow-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)) !important; + } + + .sm\:hover\:via-yellow-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)) !important; + } + + .sm\:hover\:via-yellow-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)) !important; + } + + .sm\:hover\:via-yellow-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)) !important; + } + + .sm\:hover\:via-yellow-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)) !important; + } + + .sm\:hover\:via-yellow-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)) !important; + } + + .sm\:hover\:via-yellow-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)) !important; + } + + .sm\:hover\:via-yellow-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)) !important; + } + + .sm\:hover\:via-yellow-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)) !important; + } + + .sm\:hover\:via-green-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)) !important; + } + + .sm\:hover\:via-green-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)) !important; + } + + .sm\:hover\:via-green-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)) !important; + } + + .sm\:hover\:via-green-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)) !important; + } + + .sm\:hover\:via-green-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)) !important; + } + + .sm\:hover\:via-green-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)) !important; + } + + .sm\:hover\:via-green-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)) !important; + } + + .sm\:hover\:via-green-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)) !important; + } + + .sm\:hover\:via-green-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)) !important; + } + + .sm\:hover\:via-green-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)) !important; + } + + .sm\:hover\:via-blue-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)) !important; + } + + .sm\:hover\:via-blue-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)) !important; + } + + .sm\:hover\:via-blue-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)) !important; + } + + .sm\:hover\:via-blue-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)) !important; + } + + .sm\:hover\:via-blue-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)) !important; + } + + .sm\:hover\:via-blue-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)) !important; + } + + .sm\:hover\:via-blue-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)) !important; + } + + .sm\:hover\:via-blue-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)) !important; + } + + .sm\:hover\:via-blue-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)) !important; + } + + .sm\:hover\:via-blue-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)) !important; + } + + .sm\:hover\:via-indigo-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)) !important; + } + + .sm\:hover\:via-indigo-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)) !important; + } + + .sm\:hover\:via-indigo-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)) !important; + } + + .sm\:hover\:via-indigo-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)) !important; + } + + .sm\:hover\:via-indigo-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)) !important; + } + + .sm\:hover\:via-indigo-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)) !important; + } + + .sm\:hover\:via-indigo-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)) !important; + } + + .sm\:hover\:via-indigo-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)) !important; + } + + .sm\:hover\:via-indigo-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)) !important; + } + + .sm\:hover\:via-indigo-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)) !important; + } + + .sm\:hover\:via-purple-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)) !important; + } + + .sm\:hover\:via-purple-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)) !important; + } + + .sm\:hover\:via-purple-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)) !important; + } + + .sm\:hover\:via-purple-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)) !important; + } + + .sm\:hover\:via-purple-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)) !important; + } + + .sm\:hover\:via-purple-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)) !important; + } + + .sm\:hover\:via-purple-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)) !important; + } + + .sm\:hover\:via-purple-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)) !important; + } + + .sm\:hover\:via-purple-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)) !important; + } + + .sm\:hover\:via-purple-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)) !important; + } + + .sm\:hover\:via-pink-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)) !important; + } + + .sm\:hover\:via-pink-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)) !important; + } + + .sm\:hover\:via-pink-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)) !important; + } + + .sm\:hover\:via-pink-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)) !important; + } + + .sm\:hover\:via-pink-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)) !important; + } + + .sm\:hover\:via-pink-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)) !important; + } + + .sm\:hover\:via-pink-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)) !important; + } + + .sm\:hover\:via-pink-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)) !important; + } + + .sm\:hover\:via-pink-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)) !important; + } + + .sm\:hover\:via-pink-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)) !important; + } + + .sm\:hover\:via-primary:hover { + --tw-gradient-stops: var(--tw-gradient-from), #003197, var(--tw-gradient-to, rgba(0, 49, 151, 0)) !important; + } + + .sm\:hover\:to-transparent:hover { + --tw-gradient-to: transparent !important; + } + + .sm\:hover\:to-current:hover { + --tw-gradient-to: currentColor !important; + } + + .sm\:hover\:to-black:hover { + --tw-gradient-to: #000 !important; + } + + .sm\:hover\:to-white:hover { + --tw-gradient-to: #fff !important; + } + + .sm\:hover\:to-gray-50:hover { + --tw-gradient-to: #f9fafb !important; + } + + .sm\:hover\:to-gray-100:hover { + --tw-gradient-to: #f3f4f6 !important; + } + + .sm\:hover\:to-gray-200:hover { + --tw-gradient-to: #e5e7eb !important; + } + + .sm\:hover\:to-gray-300:hover { + --tw-gradient-to: #d1d5db !important; + } + + .sm\:hover\:to-gray-400:hover { + --tw-gradient-to: #9ca3af !important; + } + + .sm\:hover\:to-gray-500:hover { + --tw-gradient-to: #6b7280 !important; + } + + .sm\:hover\:to-gray-600:hover { + --tw-gradient-to: #4b5563 !important; + } + + .sm\:hover\:to-gray-700:hover { + --tw-gradient-to: #374151 !important; + } + + .sm\:hover\:to-gray-800:hover { + --tw-gradient-to: #1f2937 !important; + } + + .sm\:hover\:to-gray-900:hover { + --tw-gradient-to: #111827 !important; + } + + .sm\:hover\:to-red-50:hover { + --tw-gradient-to: #fef2f2 !important; + } + + .sm\:hover\:to-red-100:hover { + --tw-gradient-to: #fee2e2 !important; + } + + .sm\:hover\:to-red-200:hover { + --tw-gradient-to: #fecaca !important; + } + + .sm\:hover\:to-red-300:hover { + --tw-gradient-to: #fca5a5 !important; + } + + .sm\:hover\:to-red-400:hover { + --tw-gradient-to: #f87171 !important; + } + + .sm\:hover\:to-red-500:hover { + --tw-gradient-to: #ef4444 !important; + } + + .sm\:hover\:to-red-600:hover { + --tw-gradient-to: #dc2626 !important; + } + + .sm\:hover\:to-red-700:hover { + --tw-gradient-to: #b91c1c !important; + } + + .sm\:hover\:to-red-800:hover { + --tw-gradient-to: #991b1b !important; + } + + .sm\:hover\:to-red-900:hover { + --tw-gradient-to: #7f1d1d !important; + } + + .sm\:hover\:to-yellow-50:hover { + --tw-gradient-to: #fffbeb !important; + } + + .sm\:hover\:to-yellow-100:hover { + --tw-gradient-to: #fef3c7 !important; + } + + .sm\:hover\:to-yellow-200:hover { + --tw-gradient-to: #fde68a !important; + } + + .sm\:hover\:to-yellow-300:hover { + --tw-gradient-to: #fcd34d !important; + } + + .sm\:hover\:to-yellow-400:hover { + --tw-gradient-to: #fbbf24 !important; + } + + .sm\:hover\:to-yellow-500:hover { + --tw-gradient-to: #f59e0b !important; + } + + .sm\:hover\:to-yellow-600:hover { + --tw-gradient-to: #d97706 !important; + } + + .sm\:hover\:to-yellow-700:hover { + --tw-gradient-to: #b45309 !important; + } + + .sm\:hover\:to-yellow-800:hover { + --tw-gradient-to: #92400e !important; + } + + .sm\:hover\:to-yellow-900:hover { + --tw-gradient-to: #78350f !important; + } + + .sm\:hover\:to-green-50:hover { + --tw-gradient-to: #ecfdf5 !important; + } + + .sm\:hover\:to-green-100:hover { + --tw-gradient-to: #d1fae5 !important; + } + + .sm\:hover\:to-green-200:hover { + --tw-gradient-to: #a7f3d0 !important; + } + + .sm\:hover\:to-green-300:hover { + --tw-gradient-to: #6ee7b7 !important; + } + + .sm\:hover\:to-green-400:hover { + --tw-gradient-to: #34d399 !important; + } + + .sm\:hover\:to-green-500:hover { + --tw-gradient-to: #10b981 !important; + } + + .sm\:hover\:to-green-600:hover { + --tw-gradient-to: #059669 !important; + } + + .sm\:hover\:to-green-700:hover { + --tw-gradient-to: #047857 !important; + } + + .sm\:hover\:to-green-800:hover { + --tw-gradient-to: #065f46 !important; + } + + .sm\:hover\:to-green-900:hover { + --tw-gradient-to: #064e3b !important; + } + + .sm\:hover\:to-blue-50:hover { + --tw-gradient-to: #eff6ff !important; + } + + .sm\:hover\:to-blue-100:hover { + --tw-gradient-to: #dbeafe !important; + } + + .sm\:hover\:to-blue-200:hover { + --tw-gradient-to: #bfdbfe !important; + } + + .sm\:hover\:to-blue-300:hover { + --tw-gradient-to: #93c5fd !important; + } + + .sm\:hover\:to-blue-400:hover { + --tw-gradient-to: #60a5fa !important; + } + + .sm\:hover\:to-blue-500:hover { + --tw-gradient-to: #3b82f6 !important; + } + + .sm\:hover\:to-blue-600:hover { + --tw-gradient-to: #2563eb !important; + } + + .sm\:hover\:to-blue-700:hover { + --tw-gradient-to: #1d4ed8 !important; + } + + .sm\:hover\:to-blue-800:hover { + --tw-gradient-to: #1e40af !important; + } + + .sm\:hover\:to-blue-900:hover { + --tw-gradient-to: #1e3a8a !important; + } + + .sm\:hover\:to-indigo-50:hover { + --tw-gradient-to: #eef2ff !important; + } + + .sm\:hover\:to-indigo-100:hover { + --tw-gradient-to: #e0e7ff !important; + } + + .sm\:hover\:to-indigo-200:hover { + --tw-gradient-to: #c7d2fe !important; + } + + .sm\:hover\:to-indigo-300:hover { + --tw-gradient-to: #a5b4fc !important; + } + + .sm\:hover\:to-indigo-400:hover { + --tw-gradient-to: #818cf8 !important; + } + + .sm\:hover\:to-indigo-500:hover { + --tw-gradient-to: #6366f1 !important; + } + + .sm\:hover\:to-indigo-600:hover { + --tw-gradient-to: #4f46e5 !important; + } + + .sm\:hover\:to-indigo-700:hover { + --tw-gradient-to: #4338ca !important; + } + + .sm\:hover\:to-indigo-800:hover { + --tw-gradient-to: #3730a3 !important; + } + + .sm\:hover\:to-indigo-900:hover { + --tw-gradient-to: #312e81 !important; + } + + .sm\:hover\:to-purple-50:hover { + --tw-gradient-to: #f5f3ff !important; + } + + .sm\:hover\:to-purple-100:hover { + --tw-gradient-to: #ede9fe !important; + } + + .sm\:hover\:to-purple-200:hover { + --tw-gradient-to: #ddd6fe !important; + } + + .sm\:hover\:to-purple-300:hover { + --tw-gradient-to: #c4b5fd !important; + } + + .sm\:hover\:to-purple-400:hover { + --tw-gradient-to: #a78bfa !important; + } + + .sm\:hover\:to-purple-500:hover { + --tw-gradient-to: #8b5cf6 !important; + } + + .sm\:hover\:to-purple-600:hover { + --tw-gradient-to: #7c3aed !important; + } + + .sm\:hover\:to-purple-700:hover { + --tw-gradient-to: #6d28d9 !important; + } + + .sm\:hover\:to-purple-800:hover { + --tw-gradient-to: #5b21b6 !important; + } + + .sm\:hover\:to-purple-900:hover { + --tw-gradient-to: #4c1d95 !important; + } + + .sm\:hover\:to-pink-50:hover { + --tw-gradient-to: #fdf2f8 !important; + } + + .sm\:hover\:to-pink-100:hover { + --tw-gradient-to: #fce7f3 !important; + } + + .sm\:hover\:to-pink-200:hover { + --tw-gradient-to: #fbcfe8 !important; + } + + .sm\:hover\:to-pink-300:hover { + --tw-gradient-to: #f9a8d4 !important; + } + + .sm\:hover\:to-pink-400:hover { + --tw-gradient-to: #f472b6 !important; + } + + .sm\:hover\:to-pink-500:hover { + --tw-gradient-to: #ec4899 !important; + } + + .sm\:hover\:to-pink-600:hover { + --tw-gradient-to: #db2777 !important; + } + + .sm\:hover\:to-pink-700:hover { + --tw-gradient-to: #be185d !important; + } + + .sm\:hover\:to-pink-800:hover { + --tw-gradient-to: #9d174d !important; + } + + .sm\:hover\:to-pink-900:hover { + --tw-gradient-to: #831843 !important; + } + + .sm\:hover\:to-primary:hover { + --tw-gradient-to: #003197 !important; + } + + .sm\:focus\:from-transparent:focus { + --tw-gradient-from: transparent !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; + } + + .sm\:focus\:from-current:focus { + --tw-gradient-from: currentColor !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; + } + + .sm\:focus\:from-black:focus { + --tw-gradient-from: #000 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; + } + + .sm\:focus\:from-white:focus { + --tw-gradient-from: #fff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; + } + + .sm\:focus\:from-gray-50:focus { + --tw-gradient-from: #f9fafb !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)) !important; + } + + .sm\:focus\:from-gray-100:focus { + --tw-gradient-from: #f3f4f6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)) !important; + } + + .sm\:focus\:from-gray-200:focus { + --tw-gradient-from: #e5e7eb !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)) !important; + } + + .sm\:focus\:from-gray-300:focus { + --tw-gradient-from: #d1d5db !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)) !important; + } + + .sm\:focus\:from-gray-400:focus { + --tw-gradient-from: #9ca3af !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)) !important; + } + + .sm\:focus\:from-gray-500:focus { + --tw-gradient-from: #6b7280 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)) !important; + } + + .sm\:focus\:from-gray-600:focus { + --tw-gradient-from: #4b5563 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)) !important; + } + + .sm\:focus\:from-gray-700:focus { + --tw-gradient-from: #374151 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)) !important; + } + + .sm\:focus\:from-gray-800:focus { + --tw-gradient-from: #1f2937 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)) !important; + } + + .sm\:focus\:from-gray-900:focus { + --tw-gradient-from: #111827 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)) !important; + } + + .sm\:focus\:from-red-50:focus { + --tw-gradient-from: #fef2f2 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)) !important; + } + + .sm\:focus\:from-red-100:focus { + --tw-gradient-from: #fee2e2 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)) !important; + } + + .sm\:focus\:from-red-200:focus { + --tw-gradient-from: #fecaca !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)) !important; + } + + .sm\:focus\:from-red-300:focus { + --tw-gradient-from: #fca5a5 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)) !important; + } + + .sm\:focus\:from-red-400:focus { + --tw-gradient-from: #f87171 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)) !important; + } + + .sm\:focus\:from-red-500:focus { + --tw-gradient-from: #ef4444 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)) !important; + } + + .sm\:focus\:from-red-600:focus { + --tw-gradient-from: #dc2626 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)) !important; + } + + .sm\:focus\:from-red-700:focus { + --tw-gradient-from: #b91c1c !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)) !important; + } + + .sm\:focus\:from-red-800:focus { + --tw-gradient-from: #991b1b !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)) !important; + } + + .sm\:focus\:from-red-900:focus { + --tw-gradient-from: #7f1d1d !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important; + } + + .sm\:focus\:from-yellow-50:focus { + --tw-gradient-from: #fffbeb !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)) !important; + } + + .sm\:focus\:from-yellow-100:focus { + --tw-gradient-from: #fef3c7 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)) !important; + } + + .sm\:focus\:from-yellow-200:focus { + --tw-gradient-from: #fde68a !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)) !important; + } + + .sm\:focus\:from-yellow-300:focus { + --tw-gradient-from: #fcd34d !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)) !important; + } + + .sm\:focus\:from-yellow-400:focus { + --tw-gradient-from: #fbbf24 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)) !important; + } + + .sm\:focus\:from-yellow-500:focus { + --tw-gradient-from: #f59e0b !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)) !important; + } + + .sm\:focus\:from-yellow-600:focus { + --tw-gradient-from: #d97706 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)) !important; + } + + .sm\:focus\:from-yellow-700:focus { + --tw-gradient-from: #b45309 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)) !important; + } + + .sm\:focus\:from-yellow-800:focus { + --tw-gradient-from: #92400e !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)) !important; + } + + .sm\:focus\:from-yellow-900:focus { + --tw-gradient-from: #78350f !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)) !important; + } + + .sm\:focus\:from-green-50:focus { + --tw-gradient-from: #ecfdf5 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)) !important; + } + + .sm\:focus\:from-green-100:focus { + --tw-gradient-from: #d1fae5 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)) !important; + } + + .sm\:focus\:from-green-200:focus { + --tw-gradient-from: #a7f3d0 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)) !important; + } + + .sm\:focus\:from-green-300:focus { + --tw-gradient-from: #6ee7b7 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)) !important; + } + + .sm\:focus\:from-green-400:focus { + --tw-gradient-from: #34d399 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)) !important; + } + + .sm\:focus\:from-green-500:focus { + --tw-gradient-from: #10b981 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)) !important; + } + + .sm\:focus\:from-green-600:focus { + --tw-gradient-from: #059669 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)) !important; + } + + .sm\:focus\:from-green-700:focus { + --tw-gradient-from: #047857 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)) !important; + } + + .sm\:focus\:from-green-800:focus { + --tw-gradient-from: #065f46 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)) !important; + } + + .sm\:focus\:from-green-900:focus { + --tw-gradient-from: #064e3b !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)) !important; + } + + .sm\:focus\:from-blue-50:focus { + --tw-gradient-from: #eff6ff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)) !important; + } + + .sm\:focus\:from-blue-100:focus { + --tw-gradient-from: #dbeafe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)) !important; + } + + .sm\:focus\:from-blue-200:focus { + --tw-gradient-from: #bfdbfe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)) !important; + } + + .sm\:focus\:from-blue-300:focus { + --tw-gradient-from: #93c5fd !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)) !important; + } + + .sm\:focus\:from-blue-400:focus { + --tw-gradient-from: #60a5fa !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)) !important; + } + + .sm\:focus\:from-blue-500:focus { + --tw-gradient-from: #3b82f6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)) !important; + } + + .sm\:focus\:from-blue-600:focus { + --tw-gradient-from: #2563eb !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)) !important; + } + + .sm\:focus\:from-blue-700:focus { + --tw-gradient-from: #1d4ed8 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)) !important; + } + + .sm\:focus\:from-blue-800:focus { + --tw-gradient-from: #1e40af !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)) !important; + } + + .sm\:focus\:from-blue-900:focus { + --tw-gradient-from: #1e3a8a !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)) !important; + } + + .sm\:focus\:from-indigo-50:focus { + --tw-gradient-from: #eef2ff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)) !important; + } + + .sm\:focus\:from-indigo-100:focus { + --tw-gradient-from: #e0e7ff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)) !important; + } + + .sm\:focus\:from-indigo-200:focus { + --tw-gradient-from: #c7d2fe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)) !important; + } + + .sm\:focus\:from-indigo-300:focus { + --tw-gradient-from: #a5b4fc !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)) !important; + } + + .sm\:focus\:from-indigo-400:focus { + --tw-gradient-from: #818cf8 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)) !important; + } + + .sm\:focus\:from-indigo-500:focus { + --tw-gradient-from: #6366f1 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)) !important; + } + + .sm\:focus\:from-indigo-600:focus { + --tw-gradient-from: #4f46e5 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)) !important; + } + + .sm\:focus\:from-indigo-700:focus { + --tw-gradient-from: #4338ca !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)) !important; + } + + .sm\:focus\:from-indigo-800:focus { + --tw-gradient-from: #3730a3 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)) !important; + } + + .sm\:focus\:from-indigo-900:focus { + --tw-gradient-from: #312e81 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)) !important; + } + + .sm\:focus\:from-purple-50:focus { + --tw-gradient-from: #f5f3ff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)) !important; + } + + .sm\:focus\:from-purple-100:focus { + --tw-gradient-from: #ede9fe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)) !important; + } + + .sm\:focus\:from-purple-200:focus { + --tw-gradient-from: #ddd6fe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)) !important; + } + + .sm\:focus\:from-purple-300:focus { + --tw-gradient-from: #c4b5fd !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)) !important; + } + + .sm\:focus\:from-purple-400:focus { + --tw-gradient-from: #a78bfa !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)) !important; + } + + .sm\:focus\:from-purple-500:focus { + --tw-gradient-from: #8b5cf6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)) !important; + } + + .sm\:focus\:from-purple-600:focus { + --tw-gradient-from: #7c3aed !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)) !important; + } + + .sm\:focus\:from-purple-700:focus { + --tw-gradient-from: #6d28d9 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)) !important; + } + + .sm\:focus\:from-purple-800:focus { + --tw-gradient-from: #5b21b6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)) !important; + } + + .sm\:focus\:from-purple-900:focus { + --tw-gradient-from: #4c1d95 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)) !important; + } + + .sm\:focus\:from-pink-50:focus { + --tw-gradient-from: #fdf2f8 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)) !important; + } + + .sm\:focus\:from-pink-100:focus { + --tw-gradient-from: #fce7f3 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)) !important; + } + + .sm\:focus\:from-pink-200:focus { + --tw-gradient-from: #fbcfe8 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)) !important; + } + + .sm\:focus\:from-pink-300:focus { + --tw-gradient-from: #f9a8d4 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)) !important; + } + + .sm\:focus\:from-pink-400:focus { + --tw-gradient-from: #f472b6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)) !important; + } + + .sm\:focus\:from-pink-500:focus { + --tw-gradient-from: #ec4899 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)) !important; + } + + .sm\:focus\:from-pink-600:focus { + --tw-gradient-from: #db2777 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)) !important; + } + + .sm\:focus\:from-pink-700:focus { + --tw-gradient-from: #be185d !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)) !important; + } + + .sm\:focus\:from-pink-800:focus { + --tw-gradient-from: #9d174d !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)) !important; + } + + .sm\:focus\:from-pink-900:focus { + --tw-gradient-from: #831843 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)) !important; + } + + .sm\:focus\:from-primary:focus { + --tw-gradient-from: #003197 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 49, 151, 0)) !important; + } + + .sm\:focus\:via-transparent:focus { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; + } + + .sm\:focus\:via-current:focus { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; + } + + .sm\:focus\:via-black:focus { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; + } + + .sm\:focus\:via-white:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; + } + + .sm\:focus\:via-gray-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)) !important; + } + + .sm\:focus\:via-gray-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)) !important; + } + + .sm\:focus\:via-gray-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)) !important; + } + + .sm\:focus\:via-gray-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)) !important; + } + + .sm\:focus\:via-gray-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)) !important; + } + + .sm\:focus\:via-gray-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)) !important; + } + + .sm\:focus\:via-gray-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)) !important; + } + + .sm\:focus\:via-gray-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)) !important; + } + + .sm\:focus\:via-gray-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)) !important; + } + + .sm\:focus\:via-gray-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)) !important; + } + + .sm\:focus\:via-red-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)) !important; + } + + .sm\:focus\:via-red-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)) !important; + } + + .sm\:focus\:via-red-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)) !important; + } + + .sm\:focus\:via-red-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)) !important; + } + + .sm\:focus\:via-red-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)) !important; + } + + .sm\:focus\:via-red-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)) !important; + } + + .sm\:focus\:via-red-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)) !important; + } + + .sm\:focus\:via-red-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)) !important; + } + + .sm\:focus\:via-red-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)) !important; + } + + .sm\:focus\:via-red-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important; + } + + .sm\:focus\:via-yellow-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)) !important; + } + + .sm\:focus\:via-yellow-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)) !important; + } + + .sm\:focus\:via-yellow-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)) !important; + } + + .sm\:focus\:via-yellow-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)) !important; + } + + .sm\:focus\:via-yellow-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)) !important; + } + + .sm\:focus\:via-yellow-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)) !important; + } + + .sm\:focus\:via-yellow-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)) !important; + } + + .sm\:focus\:via-yellow-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)) !important; + } + + .sm\:focus\:via-yellow-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)) !important; + } + + .sm\:focus\:via-yellow-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)) !important; + } + + .sm\:focus\:via-green-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)) !important; + } + + .sm\:focus\:via-green-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)) !important; + } + + .sm\:focus\:via-green-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)) !important; + } + + .sm\:focus\:via-green-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)) !important; + } + + .sm\:focus\:via-green-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)) !important; + } + + .sm\:focus\:via-green-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)) !important; + } + + .sm\:focus\:via-green-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)) !important; + } + + .sm\:focus\:via-green-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)) !important; + } + + .sm\:focus\:via-green-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)) !important; + } + + .sm\:focus\:via-green-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)) !important; + } + + .sm\:focus\:via-blue-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)) !important; + } + + .sm\:focus\:via-blue-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)) !important; + } + + .sm\:focus\:via-blue-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)) !important; + } + + .sm\:focus\:via-blue-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)) !important; + } + + .sm\:focus\:via-blue-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)) !important; + } + + .sm\:focus\:via-blue-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)) !important; + } + + .sm\:focus\:via-blue-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)) !important; + } + + .sm\:focus\:via-blue-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)) !important; + } + + .sm\:focus\:via-blue-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)) !important; + } + + .sm\:focus\:via-blue-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)) !important; + } + + .sm\:focus\:via-indigo-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)) !important; + } + + .sm\:focus\:via-indigo-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)) !important; + } + + .sm\:focus\:via-indigo-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)) !important; + } + + .sm\:focus\:via-indigo-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)) !important; + } + + .sm\:focus\:via-indigo-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)) !important; + } + + .sm\:focus\:via-indigo-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)) !important; + } + + .sm\:focus\:via-indigo-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)) !important; + } + + .sm\:focus\:via-indigo-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)) !important; + } + + .sm\:focus\:via-indigo-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)) !important; + } + + .sm\:focus\:via-indigo-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)) !important; + } + + .sm\:focus\:via-purple-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)) !important; + } + + .sm\:focus\:via-purple-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)) !important; + } + + .sm\:focus\:via-purple-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)) !important; + } + + .sm\:focus\:via-purple-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)) !important; + } + + .sm\:focus\:via-purple-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)) !important; + } + + .sm\:focus\:via-purple-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)) !important; + } + + .sm\:focus\:via-purple-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)) !important; + } + + .sm\:focus\:via-purple-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)) !important; + } + + .sm\:focus\:via-purple-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)) !important; + } + + .sm\:focus\:via-purple-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)) !important; + } + + .sm\:focus\:via-pink-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)) !important; + } + + .sm\:focus\:via-pink-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)) !important; + } + + .sm\:focus\:via-pink-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)) !important; + } + + .sm\:focus\:via-pink-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)) !important; + } + + .sm\:focus\:via-pink-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)) !important; + } + + .sm\:focus\:via-pink-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)) !important; + } + + .sm\:focus\:via-pink-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)) !important; + } + + .sm\:focus\:via-pink-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)) !important; + } + + .sm\:focus\:via-pink-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)) !important; + } + + .sm\:focus\:via-pink-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)) !important; + } + + .sm\:focus\:via-primary:focus { + --tw-gradient-stops: var(--tw-gradient-from), #003197, var(--tw-gradient-to, rgba(0, 49, 151, 0)) !important; + } + + .sm\:focus\:to-transparent:focus { + --tw-gradient-to: transparent !important; + } + + .sm\:focus\:to-current:focus { + --tw-gradient-to: currentColor !important; + } + + .sm\:focus\:to-black:focus { + --tw-gradient-to: #000 !important; + } + + .sm\:focus\:to-white:focus { + --tw-gradient-to: #fff !important; + } + + .sm\:focus\:to-gray-50:focus { + --tw-gradient-to: #f9fafb !important; + } + + .sm\:focus\:to-gray-100:focus { + --tw-gradient-to: #f3f4f6 !important; + } + + .sm\:focus\:to-gray-200:focus { + --tw-gradient-to: #e5e7eb !important; + } + + .sm\:focus\:to-gray-300:focus { + --tw-gradient-to: #d1d5db !important; + } + + .sm\:focus\:to-gray-400:focus { + --tw-gradient-to: #9ca3af !important; + } + + .sm\:focus\:to-gray-500:focus { + --tw-gradient-to: #6b7280 !important; + } + + .sm\:focus\:to-gray-600:focus { + --tw-gradient-to: #4b5563 !important; + } + + .sm\:focus\:to-gray-700:focus { + --tw-gradient-to: #374151 !important; + } + + .sm\:focus\:to-gray-800:focus { + --tw-gradient-to: #1f2937 !important; + } + + .sm\:focus\:to-gray-900:focus { + --tw-gradient-to: #111827 !important; + } + + .sm\:focus\:to-red-50:focus { + --tw-gradient-to: #fef2f2 !important; + } + + .sm\:focus\:to-red-100:focus { + --tw-gradient-to: #fee2e2 !important; + } + + .sm\:focus\:to-red-200:focus { + --tw-gradient-to: #fecaca !important; + } + + .sm\:focus\:to-red-300:focus { + --tw-gradient-to: #fca5a5 !important; + } + + .sm\:focus\:to-red-400:focus { + --tw-gradient-to: #f87171 !important; + } + + .sm\:focus\:to-red-500:focus { + --tw-gradient-to: #ef4444 !important; + } + + .sm\:focus\:to-red-600:focus { + --tw-gradient-to: #dc2626 !important; + } + + .sm\:focus\:to-red-700:focus { + --tw-gradient-to: #b91c1c !important; + } + + .sm\:focus\:to-red-800:focus { + --tw-gradient-to: #991b1b !important; + } + + .sm\:focus\:to-red-900:focus { + --tw-gradient-to: #7f1d1d !important; + } + + .sm\:focus\:to-yellow-50:focus { + --tw-gradient-to: #fffbeb !important; + } + + .sm\:focus\:to-yellow-100:focus { + --tw-gradient-to: #fef3c7 !important; + } + + .sm\:focus\:to-yellow-200:focus { + --tw-gradient-to: #fde68a !important; + } + + .sm\:focus\:to-yellow-300:focus { + --tw-gradient-to: #fcd34d !important; + } + + .sm\:focus\:to-yellow-400:focus { + --tw-gradient-to: #fbbf24 !important; + } + + .sm\:focus\:to-yellow-500:focus { + --tw-gradient-to: #f59e0b !important; + } + + .sm\:focus\:to-yellow-600:focus { + --tw-gradient-to: #d97706 !important; + } + + .sm\:focus\:to-yellow-700:focus { + --tw-gradient-to: #b45309 !important; + } + + .sm\:focus\:to-yellow-800:focus { + --tw-gradient-to: #92400e !important; + } + + .sm\:focus\:to-yellow-900:focus { + --tw-gradient-to: #78350f !important; + } + + .sm\:focus\:to-green-50:focus { + --tw-gradient-to: #ecfdf5 !important; + } + + .sm\:focus\:to-green-100:focus { + --tw-gradient-to: #d1fae5 !important; + } + + .sm\:focus\:to-green-200:focus { + --tw-gradient-to: #a7f3d0 !important; + } + + .sm\:focus\:to-green-300:focus { + --tw-gradient-to: #6ee7b7 !important; + } + + .sm\:focus\:to-green-400:focus { + --tw-gradient-to: #34d399 !important; + } + + .sm\:focus\:to-green-500:focus { + --tw-gradient-to: #10b981 !important; + } + + .sm\:focus\:to-green-600:focus { + --tw-gradient-to: #059669 !important; + } + + .sm\:focus\:to-green-700:focus { + --tw-gradient-to: #047857 !important; + } + + .sm\:focus\:to-green-800:focus { + --tw-gradient-to: #065f46 !important; + } + + .sm\:focus\:to-green-900:focus { + --tw-gradient-to: #064e3b !important; + } + + .sm\:focus\:to-blue-50:focus { + --tw-gradient-to: #eff6ff !important; + } + + .sm\:focus\:to-blue-100:focus { + --tw-gradient-to: #dbeafe !important; + } + + .sm\:focus\:to-blue-200:focus { + --tw-gradient-to: #bfdbfe !important; + } + + .sm\:focus\:to-blue-300:focus { + --tw-gradient-to: #93c5fd !important; + } + + .sm\:focus\:to-blue-400:focus { + --tw-gradient-to: #60a5fa !important; + } + + .sm\:focus\:to-blue-500:focus { + --tw-gradient-to: #3b82f6 !important; + } + + .sm\:focus\:to-blue-600:focus { + --tw-gradient-to: #2563eb !important; + } + + .sm\:focus\:to-blue-700:focus { + --tw-gradient-to: #1d4ed8 !important; + } + + .sm\:focus\:to-blue-800:focus { + --tw-gradient-to: #1e40af !important; + } + + .sm\:focus\:to-blue-900:focus { + --tw-gradient-to: #1e3a8a !important; + } + + .sm\:focus\:to-indigo-50:focus { + --tw-gradient-to: #eef2ff !important; + } + + .sm\:focus\:to-indigo-100:focus { + --tw-gradient-to: #e0e7ff !important; + } + + .sm\:focus\:to-indigo-200:focus { + --tw-gradient-to: #c7d2fe !important; + } + + .sm\:focus\:to-indigo-300:focus { + --tw-gradient-to: #a5b4fc !important; + } + + .sm\:focus\:to-indigo-400:focus { + --tw-gradient-to: #818cf8 !important; + } + + .sm\:focus\:to-indigo-500:focus { + --tw-gradient-to: #6366f1 !important; + } + + .sm\:focus\:to-indigo-600:focus { + --tw-gradient-to: #4f46e5 !important; + } + + .sm\:focus\:to-indigo-700:focus { + --tw-gradient-to: #4338ca !important; + } + + .sm\:focus\:to-indigo-800:focus { + --tw-gradient-to: #3730a3 !important; + } + + .sm\:focus\:to-indigo-900:focus { + --tw-gradient-to: #312e81 !important; + } + + .sm\:focus\:to-purple-50:focus { + --tw-gradient-to: #f5f3ff !important; + } + + .sm\:focus\:to-purple-100:focus { + --tw-gradient-to: #ede9fe !important; + } + + .sm\:focus\:to-purple-200:focus { + --tw-gradient-to: #ddd6fe !important; + } + + .sm\:focus\:to-purple-300:focus { + --tw-gradient-to: #c4b5fd !important; + } + + .sm\:focus\:to-purple-400:focus { + --tw-gradient-to: #a78bfa !important; + } + + .sm\:focus\:to-purple-500:focus { + --tw-gradient-to: #8b5cf6 !important; + } + + .sm\:focus\:to-purple-600:focus { + --tw-gradient-to: #7c3aed !important; + } + + .sm\:focus\:to-purple-700:focus { + --tw-gradient-to: #6d28d9 !important; + } + + .sm\:focus\:to-purple-800:focus { + --tw-gradient-to: #5b21b6 !important; + } + + .sm\:focus\:to-purple-900:focus { + --tw-gradient-to: #4c1d95 !important; + } + + .sm\:focus\:to-pink-50:focus { + --tw-gradient-to: #fdf2f8 !important; + } + + .sm\:focus\:to-pink-100:focus { + --tw-gradient-to: #fce7f3 !important; + } + + .sm\:focus\:to-pink-200:focus { + --tw-gradient-to: #fbcfe8 !important; + } + + .sm\:focus\:to-pink-300:focus { + --tw-gradient-to: #f9a8d4 !important; + } + + .sm\:focus\:to-pink-400:focus { + --tw-gradient-to: #f472b6 !important; + } + + .sm\:focus\:to-pink-500:focus { + --tw-gradient-to: #ec4899 !important; + } + + .sm\:focus\:to-pink-600:focus { + --tw-gradient-to: #db2777 !important; + } + + .sm\:focus\:to-pink-700:focus { + --tw-gradient-to: #be185d !important; + } + + .sm\:focus\:to-pink-800:focus { + --tw-gradient-to: #9d174d !important; + } + + .sm\:focus\:to-pink-900:focus { + --tw-gradient-to: #831843 !important; + } + + .sm\:focus\:to-primary:focus { + --tw-gradient-to: #003197 !important; + } + + .sm\:bg-opacity-0 { + --tw-bg-opacity: 0 !important; + } + + .sm\:bg-opacity-5 { + --tw-bg-opacity: 0.05 !important; + } + + .sm\:bg-opacity-10 { + --tw-bg-opacity: 0.1 !important; + } + + .sm\:bg-opacity-20 { + --tw-bg-opacity: 0.2 !important; + } + + .sm\:bg-opacity-25 { + --tw-bg-opacity: 0.25 !important; + } + + .sm\:bg-opacity-30 { + --tw-bg-opacity: 0.3 !important; + } + + .sm\:bg-opacity-40 { + --tw-bg-opacity: 0.4 !important; + } + + .sm\:bg-opacity-50 { + --tw-bg-opacity: 0.5 !important; + } + + .sm\:bg-opacity-60 { + --tw-bg-opacity: 0.6 !important; + } + + .sm\:bg-opacity-70 { + --tw-bg-opacity: 0.7 !important; + } + + .sm\:bg-opacity-75 { + --tw-bg-opacity: 0.75 !important; + } + + .sm\:bg-opacity-80 { + --tw-bg-opacity: 0.8 !important; + } + + .sm\:bg-opacity-90 { + --tw-bg-opacity: 0.9 !important; + } + + .sm\:bg-opacity-95 { + --tw-bg-opacity: 0.95 !important; + } + + .sm\:bg-opacity-100 { + --tw-bg-opacity: 1 !important; + } + + .group:hover .sm\:group-hover\:bg-opacity-0 { + --tw-bg-opacity: 0 !important; + } + + .group:hover .sm\:group-hover\:bg-opacity-5 { + --tw-bg-opacity: 0.05 !important; + } + + .group:hover .sm\:group-hover\:bg-opacity-10 { + --tw-bg-opacity: 0.1 !important; + } + + .group:hover .sm\:group-hover\:bg-opacity-20 { + --tw-bg-opacity: 0.2 !important; + } + + .group:hover .sm\:group-hover\:bg-opacity-25 { + --tw-bg-opacity: 0.25 !important; + } + + .group:hover .sm\:group-hover\:bg-opacity-30 { + --tw-bg-opacity: 0.3 !important; + } + + .group:hover .sm\:group-hover\:bg-opacity-40 { + --tw-bg-opacity: 0.4 !important; + } + + .group:hover .sm\:group-hover\:bg-opacity-50 { + --tw-bg-opacity: 0.5 !important; + } + + .group:hover .sm\:group-hover\:bg-opacity-60 { + --tw-bg-opacity: 0.6 !important; + } + + .group:hover .sm\:group-hover\:bg-opacity-70 { + --tw-bg-opacity: 0.7 !important; + } + + .group:hover .sm\:group-hover\:bg-opacity-75 { + --tw-bg-opacity: 0.75 !important; + } + + .group:hover .sm\:group-hover\:bg-opacity-80 { + --tw-bg-opacity: 0.8 !important; + } + + .group:hover .sm\:group-hover\:bg-opacity-90 { + --tw-bg-opacity: 0.9 !important; + } + + .group:hover .sm\:group-hover\:bg-opacity-95 { + --tw-bg-opacity: 0.95 !important; + } + + .group:hover .sm\:group-hover\:bg-opacity-100 { + --tw-bg-opacity: 1 !important; + } + + .sm\:focus-within\:bg-opacity-0:focus-within { + --tw-bg-opacity: 0 !important; + } + + .sm\:focus-within\:bg-opacity-5:focus-within { + --tw-bg-opacity: 0.05 !important; + } + + .sm\:focus-within\:bg-opacity-10:focus-within { + --tw-bg-opacity: 0.1 !important; + } + + .sm\:focus-within\:bg-opacity-20:focus-within { + --tw-bg-opacity: 0.2 !important; + } + + .sm\:focus-within\:bg-opacity-25:focus-within { + --tw-bg-opacity: 0.25 !important; + } + + .sm\:focus-within\:bg-opacity-30:focus-within { + --tw-bg-opacity: 0.3 !important; + } + + .sm\:focus-within\:bg-opacity-40:focus-within { + --tw-bg-opacity: 0.4 !important; + } + + .sm\:focus-within\:bg-opacity-50:focus-within { + --tw-bg-opacity: 0.5 !important; + } + + .sm\:focus-within\:bg-opacity-60:focus-within { + --tw-bg-opacity: 0.6 !important; + } + + .sm\:focus-within\:bg-opacity-70:focus-within { + --tw-bg-opacity: 0.7 !important; + } + + .sm\:focus-within\:bg-opacity-75:focus-within { + --tw-bg-opacity: 0.75 !important; + } + + .sm\:focus-within\:bg-opacity-80:focus-within { + --tw-bg-opacity: 0.8 !important; + } + + .sm\:focus-within\:bg-opacity-90:focus-within { + --tw-bg-opacity: 0.9 !important; + } + + .sm\:focus-within\:bg-opacity-95:focus-within { + --tw-bg-opacity: 0.95 !important; + } + + .sm\:focus-within\:bg-opacity-100:focus-within { + --tw-bg-opacity: 1 !important; + } + + .sm\:hover\:bg-opacity-0:hover { + --tw-bg-opacity: 0 !important; + } + + .sm\:hover\:bg-opacity-5:hover { + --tw-bg-opacity: 0.05 !important; + } + + .sm\:hover\:bg-opacity-10:hover { + --tw-bg-opacity: 0.1 !important; + } + + .sm\:hover\:bg-opacity-20:hover { + --tw-bg-opacity: 0.2 !important; + } + + .sm\:hover\:bg-opacity-25:hover { + --tw-bg-opacity: 0.25 !important; + } + + .sm\:hover\:bg-opacity-30:hover { + --tw-bg-opacity: 0.3 !important; + } + + .sm\:hover\:bg-opacity-40:hover { + --tw-bg-opacity: 0.4 !important; + } + + .sm\:hover\:bg-opacity-50:hover { + --tw-bg-opacity: 0.5 !important; + } + + .sm\:hover\:bg-opacity-60:hover { + --tw-bg-opacity: 0.6 !important; + } + + .sm\:hover\:bg-opacity-70:hover { + --tw-bg-opacity: 0.7 !important; + } + + .sm\:hover\:bg-opacity-75:hover { + --tw-bg-opacity: 0.75 !important; + } + + .sm\:hover\:bg-opacity-80:hover { + --tw-bg-opacity: 0.8 !important; + } + + .sm\:hover\:bg-opacity-90:hover { + --tw-bg-opacity: 0.9 !important; + } + + .sm\:hover\:bg-opacity-95:hover { + --tw-bg-opacity: 0.95 !important; + } + + .sm\:hover\:bg-opacity-100:hover { + --tw-bg-opacity: 1 !important; + } + + .sm\:focus\:bg-opacity-0:focus { + --tw-bg-opacity: 0 !important; + } + + .sm\:focus\:bg-opacity-5:focus { + --tw-bg-opacity: 0.05 !important; + } + + .sm\:focus\:bg-opacity-10:focus { + --tw-bg-opacity: 0.1 !important; + } + + .sm\:focus\:bg-opacity-20:focus { + --tw-bg-opacity: 0.2 !important; + } + + .sm\:focus\:bg-opacity-25:focus { + --tw-bg-opacity: 0.25 !important; + } + + .sm\:focus\:bg-opacity-30:focus { + --tw-bg-opacity: 0.3 !important; + } + + .sm\:focus\:bg-opacity-40:focus { + --tw-bg-opacity: 0.4 !important; + } + + .sm\:focus\:bg-opacity-50:focus { + --tw-bg-opacity: 0.5 !important; + } + + .sm\:focus\:bg-opacity-60:focus { + --tw-bg-opacity: 0.6 !important; + } + + .sm\:focus\:bg-opacity-70:focus { + --tw-bg-opacity: 0.7 !important; + } + + .sm\:focus\:bg-opacity-75:focus { + --tw-bg-opacity: 0.75 !important; + } + + .sm\:focus\:bg-opacity-80:focus { + --tw-bg-opacity: 0.8 !important; + } + + .sm\:focus\:bg-opacity-90:focus { + --tw-bg-opacity: 0.9 !important; + } + + .sm\:focus\:bg-opacity-95:focus { + --tw-bg-opacity: 0.95 !important; + } + + .sm\:focus\:bg-opacity-100:focus { + --tw-bg-opacity: 1 !important; + } + + .sm\:bg-bottom { + background-position: bottom !important; + } + + .sm\:bg-center { + background-position: center !important; + } + + .sm\:bg-left { + background-position: left !important; + } + + .sm\:bg-left-bottom { + background-position: left bottom !important; + } + + .sm\:bg-left-top { + background-position: left top !important; + } + + .sm\:bg-right { + background-position: right !important; + } + + .sm\:bg-right-bottom { + background-position: right bottom !important; + } + + .sm\:bg-right-top { + background-position: right top !important; + } + + .sm\:bg-top { + background-position: top !important; + } + + .sm\:bg-repeat { + background-repeat: repeat !important; + } + + .sm\:bg-no-repeat { + background-repeat: no-repeat !important; + } + + .sm\:bg-repeat-x { + background-repeat: repeat-x !important; + } + + .sm\:bg-repeat-y { + background-repeat: repeat-y !important; + } + + .sm\:bg-repeat-round { + background-repeat: round !important; + } + + .sm\:bg-repeat-space { + background-repeat: space !important; + } + + .sm\:bg-auto { + background-size: auto !important; + } + + .sm\:bg-cover { + background-size: cover !important; + } + + .sm\:bg-contain { + background-size: contain !important; + } + + .sm\:border-collapse { + border-collapse: collapse !important; + } + + .sm\:border-separate { + border-collapse: separate !important; + } + + .sm\:border-transparent { + border-color: transparent !important; + } + + .sm\:border-current { + border-color: currentColor !important; + } + + .sm\:border-black { + --tw-border-opacity: 1 !important; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important; + } + + .sm\:border-white { + --tw-border-opacity: 1 !important; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important; + } + + .sm\:border-gray-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)) !important; + } + + .sm\:border-gray-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)) !important; + } + + .sm\:border-gray-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)) !important; + } + + .sm\:border-gray-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)) !important; + } + + .sm\:border-gray-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)) !important; + } + + .sm\:border-gray-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)) !important; + } + + .sm\:border-gray-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)) !important; + } + + .sm\:border-gray-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)) !important; + } + + .sm\:border-gray-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)) !important; + } + + .sm\:border-gray-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)) !important; + } + + .sm\:border-red-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 242, 242, var(--tw-border-opacity)) !important; + } + + .sm\:border-red-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 226, 226, var(--tw-border-opacity)) !important; + } + + .sm\:border-red-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 202, 202, var(--tw-border-opacity)) !important; + } + + .sm\:border-red-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 165, 165, var(--tw-border-opacity)) !important; + } + + .sm\:border-red-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(248, 113, 113, var(--tw-border-opacity)) !important; + } + + .sm\:border-red-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(239, 68, 68, var(--tw-border-opacity)) !important; + } + + .sm\:border-red-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(220, 38, 38, var(--tw-border-opacity)) !important; + } + + .sm\:border-red-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(185, 28, 28, var(--tw-border-opacity)) !important; + } + + .sm\:border-red-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(153, 27, 27, var(--tw-border-opacity)) !important; + } + + .sm\:border-red-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(127, 29, 29, var(--tw-border-opacity)) !important; + } + + .sm\:border-yellow-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(255, 251, 235, var(--tw-border-opacity)) !important; + } + + .sm\:border-yellow-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 243, 199, var(--tw-border-opacity)) !important; + } + + .sm\:border-yellow-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(253, 230, 138, var(--tw-border-opacity)) !important; + } + + .sm\:border-yellow-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 211, 77, var(--tw-border-opacity)) !important; + } + + .sm\:border-yellow-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(251, 191, 36, var(--tw-border-opacity)) !important; + } + + .sm\:border-yellow-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)) !important; + } + + .sm\:border-yellow-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(217, 119, 6, var(--tw-border-opacity)) !important; + } + + .sm\:border-yellow-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(180, 83, 9, var(--tw-border-opacity)) !important; + } + + .sm\:border-yellow-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(146, 64, 14, var(--tw-border-opacity)) !important; + } + + .sm\:border-yellow-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(120, 53, 15, var(--tw-border-opacity)) !important; + } + + .sm\:border-green-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(236, 253, 245, var(--tw-border-opacity)) !important; + } + + .sm\:border-green-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(209, 250, 229, var(--tw-border-opacity)) !important; + } + + .sm\:border-green-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(167, 243, 208, var(--tw-border-opacity)) !important; + } + + .sm\:border-green-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(110, 231, 183, var(--tw-border-opacity)) !important; + } + + .sm\:border-green-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(52, 211, 153, var(--tw-border-opacity)) !important; + } + + .sm\:border-green-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(16, 185, 129, var(--tw-border-opacity)) !important; + } + + .sm\:border-green-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(5, 150, 105, var(--tw-border-opacity)) !important; + } + + .sm\:border-green-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(4, 120, 87, var(--tw-border-opacity)) !important; + } + + .sm\:border-green-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(6, 95, 70, var(--tw-border-opacity)) !important; + } + + .sm\:border-green-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(6, 78, 59, var(--tw-border-opacity)) !important; + } + + .sm\:border-blue-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(239, 246, 255, var(--tw-border-opacity)) !important; + } + + .sm\:border-blue-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(219, 234, 254, var(--tw-border-opacity)) !important; + } + + .sm\:border-blue-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(191, 219, 254, var(--tw-border-opacity)) !important; + } + + .sm\:border-blue-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(147, 197, 253, var(--tw-border-opacity)) !important; + } + + .sm\:border-blue-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(96, 165, 250, var(--tw-border-opacity)) !important; + } + + .sm\:border-blue-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)) !important; + } + + .sm\:border-blue-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(37, 99, 235, var(--tw-border-opacity)) !important; + } + + .sm\:border-blue-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(29, 78, 216, var(--tw-border-opacity)) !important; + } + + .sm\:border-blue-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(30, 64, 175, var(--tw-border-opacity)) !important; + } + + .sm\:border-blue-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(30, 58, 138, var(--tw-border-opacity)) !important; + } + + .sm\:border-indigo-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(238, 242, 255, var(--tw-border-opacity)) !important; + } + + .sm\:border-indigo-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(224, 231, 255, var(--tw-border-opacity)) !important; + } + + .sm\:border-indigo-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(199, 210, 254, var(--tw-border-opacity)) !important; + } + + .sm\:border-indigo-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(165, 180, 252, var(--tw-border-opacity)) !important; + } + + .sm\:border-indigo-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(129, 140, 248, var(--tw-border-opacity)) !important; + } + + .sm\:border-indigo-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(99, 102, 241, var(--tw-border-opacity)) !important; + } + + .sm\:border-indigo-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(79, 70, 229, var(--tw-border-opacity)) !important; + } + + .sm\:border-indigo-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(67, 56, 202, var(--tw-border-opacity)) !important; + } + + .sm\:border-indigo-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(55, 48, 163, var(--tw-border-opacity)) !important; + } + + .sm\:border-indigo-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(49, 46, 129, var(--tw-border-opacity)) !important; + } + + .sm\:border-purple-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(245, 243, 255, var(--tw-border-opacity)) !important; + } + + .sm\:border-purple-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(237, 233, 254, var(--tw-border-opacity)) !important; + } + + .sm\:border-purple-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(221, 214, 254, var(--tw-border-opacity)) !important; + } + + .sm\:border-purple-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(196, 181, 253, var(--tw-border-opacity)) !important; + } + + .sm\:border-purple-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(167, 139, 250, var(--tw-border-opacity)) !important; + } + + .sm\:border-purple-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(139, 92, 246, var(--tw-border-opacity)) !important; + } + + .sm\:border-purple-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(124, 58, 237, var(--tw-border-opacity)) !important; + } + + .sm\:border-purple-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(109, 40, 217, var(--tw-border-opacity)) !important; + } + + .sm\:border-purple-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(91, 33, 182, var(--tw-border-opacity)) !important; + } + + .sm\:border-purple-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(76, 29, 149, var(--tw-border-opacity)) !important; + } + + .sm\:border-pink-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(253, 242, 248, var(--tw-border-opacity)) !important; + } + + .sm\:border-pink-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 231, 243, var(--tw-border-opacity)) !important; + } + + .sm\:border-pink-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(251, 207, 232, var(--tw-border-opacity)) !important; + } + + .sm\:border-pink-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(249, 168, 212, var(--tw-border-opacity)) !important; + } + + .sm\:border-pink-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(244, 114, 182, var(--tw-border-opacity)) !important; + } + + .sm\:border-pink-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(236, 72, 153, var(--tw-border-opacity)) !important; + } + + .sm\:border-pink-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(219, 39, 119, var(--tw-border-opacity)) !important; + } + + .sm\:border-pink-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(190, 24, 93, var(--tw-border-opacity)) !important; + } + + .sm\:border-pink-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(157, 23, 77, var(--tw-border-opacity)) !important; + } + + .sm\:border-pink-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(131, 24, 67, var(--tw-border-opacity)) !important; + } + + .sm\:border-primary { + --tw-border-opacity: 1 !important; + border-color: rgba(0, 49, 151, var(--tw-border-opacity)) !important; + } + + .group:hover .sm\:group-hover\:border-transparent { + border-color: transparent !important; + } + + .group:hover .sm\:group-hover\:border-current { + border-color: currentColor !important; + } + + .group:hover .sm\:group-hover\:border-black { + --tw-border-opacity: 1 !important; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important; + } + + .group:hover .sm\:group-hover\:border-white { + --tw-border-opacity: 1 !important; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important; + } + + .group:hover .sm\:group-hover\:border-gray-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)) !important; + } + + .group:hover .sm\:group-hover\:border-gray-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)) !important; + } + + .group:hover .sm\:group-hover\:border-gray-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)) !important; + } + + .group:hover .sm\:group-hover\:border-gray-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)) !important; + } + + .group:hover .sm\:group-hover\:border-gray-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)) !important; + } + + .group:hover .sm\:group-hover\:border-gray-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)) !important; + } + + .group:hover .sm\:group-hover\:border-gray-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)) !important; + } + + .group:hover .sm\:group-hover\:border-gray-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)) !important; + } + + .group:hover .sm\:group-hover\:border-gray-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)) !important; + } + + .group:hover .sm\:group-hover\:border-gray-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)) !important; + } + + .group:hover .sm\:group-hover\:border-red-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 242, 242, var(--tw-border-opacity)) !important; + } + + .group:hover .sm\:group-hover\:border-red-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 226, 226, var(--tw-border-opacity)) !important; + } + + .group:hover .sm\:group-hover\:border-red-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 202, 202, var(--tw-border-opacity)) !important; + } + + .group:hover .sm\:group-hover\:border-red-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 165, 165, var(--tw-border-opacity)) !important; + } + + .group:hover .sm\:group-hover\:border-red-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(248, 113, 113, var(--tw-border-opacity)) !important; + } + + .group:hover .sm\:group-hover\:border-red-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(239, 68, 68, var(--tw-border-opacity)) !important; + } + + .group:hover .sm\:group-hover\:border-red-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(220, 38, 38, var(--tw-border-opacity)) !important; + } + + .group:hover .sm\:group-hover\:border-red-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(185, 28, 28, var(--tw-border-opacity)) !important; + } + + .group:hover .sm\:group-hover\:border-red-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(153, 27, 27, var(--tw-border-opacity)) !important; + } + + .group:hover .sm\:group-hover\:border-red-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(127, 29, 29, var(--tw-border-opacity)) !important; + } + + .group:hover .sm\:group-hover\:border-yellow-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(255, 251, 235, var(--tw-border-opacity)) !important; + } + + .group:hover .sm\:group-hover\:border-yellow-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 243, 199, var(--tw-border-opacity)) !important; + } + + .group:hover .sm\:group-hover\:border-yellow-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(253, 230, 138, var(--tw-border-opacity)) !important; + } + + .group:hover .sm\:group-hover\:border-yellow-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 211, 77, var(--tw-border-opacity)) !important; + } + + .group:hover .sm\:group-hover\:border-yellow-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(251, 191, 36, var(--tw-border-opacity)) !important; + } + + .group:hover .sm\:group-hover\:border-yellow-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)) !important; + } + + .group:hover .sm\:group-hover\:border-yellow-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(217, 119, 6, var(--tw-border-opacity)) !important; + } + + .group:hover .sm\:group-hover\:border-yellow-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(180, 83, 9, var(--tw-border-opacity)) !important; + } + + .group:hover .sm\:group-hover\:border-yellow-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(146, 64, 14, var(--tw-border-opacity)) !important; + } + + .group:hover .sm\:group-hover\:border-yellow-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(120, 53, 15, var(--tw-border-opacity)) !important; + } + + .group:hover .sm\:group-hover\:border-green-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(236, 253, 245, var(--tw-border-opacity)) !important; + } + + .group:hover .sm\:group-hover\:border-green-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(209, 250, 229, var(--tw-border-opacity)) !important; + } + + .group:hover .sm\:group-hover\:border-green-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(167, 243, 208, var(--tw-border-opacity)) !important; + } + + .group:hover .sm\:group-hover\:border-green-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(110, 231, 183, var(--tw-border-opacity)) !important; + } + + .group:hover .sm\:group-hover\:border-green-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(52, 211, 153, var(--tw-border-opacity)) !important; + } + + .group:hover .sm\:group-hover\:border-green-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(16, 185, 129, var(--tw-border-opacity)) !important; + } + + .group:hover .sm\:group-hover\:border-green-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(5, 150, 105, var(--tw-border-opacity)) !important; + } + + .group:hover .sm\:group-hover\:border-green-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(4, 120, 87, var(--tw-border-opacity)) !important; + } + + .group:hover .sm\:group-hover\:border-green-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(6, 95, 70, var(--tw-border-opacity)) !important; + } + + .group:hover .sm\:group-hover\:border-green-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(6, 78, 59, var(--tw-border-opacity)) !important; + } + + .group:hover .sm\:group-hover\:border-blue-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(239, 246, 255, var(--tw-border-opacity)) !important; + } + + .group:hover .sm\:group-hover\:border-blue-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(219, 234, 254, var(--tw-border-opacity)) !important; + } + + .group:hover .sm\:group-hover\:border-blue-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(191, 219, 254, var(--tw-border-opacity)) !important; + } + + .group:hover .sm\:group-hover\:border-blue-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(147, 197, 253, var(--tw-border-opacity)) !important; + } + + .group:hover .sm\:group-hover\:border-blue-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(96, 165, 250, var(--tw-border-opacity)) !important; + } + + .group:hover .sm\:group-hover\:border-blue-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)) !important; + } + + .group:hover .sm\:group-hover\:border-blue-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(37, 99, 235, var(--tw-border-opacity)) !important; + } + + .group:hover .sm\:group-hover\:border-blue-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(29, 78, 216, var(--tw-border-opacity)) !important; + } + + .group:hover .sm\:group-hover\:border-blue-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(30, 64, 175, var(--tw-border-opacity)) !important; + } + + .group:hover .sm\:group-hover\:border-blue-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(30, 58, 138, var(--tw-border-opacity)) !important; + } + + .group:hover .sm\:group-hover\:border-indigo-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(238, 242, 255, var(--tw-border-opacity)) !important; + } + + .group:hover .sm\:group-hover\:border-indigo-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(224, 231, 255, var(--tw-border-opacity)) !important; + } + + .group:hover .sm\:group-hover\:border-indigo-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(199, 210, 254, var(--tw-border-opacity)) !important; + } + + .group:hover .sm\:group-hover\:border-indigo-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(165, 180, 252, var(--tw-border-opacity)) !important; + } + + .group:hover .sm\:group-hover\:border-indigo-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(129, 140, 248, var(--tw-border-opacity)) !important; + } + + .group:hover .sm\:group-hover\:border-indigo-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(99, 102, 241, var(--tw-border-opacity)) !important; + } + + .group:hover .sm\:group-hover\:border-indigo-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(79, 70, 229, var(--tw-border-opacity)) !important; + } + + .group:hover .sm\:group-hover\:border-indigo-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(67, 56, 202, var(--tw-border-opacity)) !important; + } + + .group:hover .sm\:group-hover\:border-indigo-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(55, 48, 163, var(--tw-border-opacity)) !important; + } + + .group:hover .sm\:group-hover\:border-indigo-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(49, 46, 129, var(--tw-border-opacity)) !important; + } + + .group:hover .sm\:group-hover\:border-purple-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(245, 243, 255, var(--tw-border-opacity)) !important; + } + + .group:hover .sm\:group-hover\:border-purple-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(237, 233, 254, var(--tw-border-opacity)) !important; + } + + .group:hover .sm\:group-hover\:border-purple-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(221, 214, 254, var(--tw-border-opacity)) !important; + } + + .group:hover .sm\:group-hover\:border-purple-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(196, 181, 253, var(--tw-border-opacity)) !important; + } + + .group:hover .sm\:group-hover\:border-purple-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(167, 139, 250, var(--tw-border-opacity)) !important; + } + + .group:hover .sm\:group-hover\:border-purple-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(139, 92, 246, var(--tw-border-opacity)) !important; + } + + .group:hover .sm\:group-hover\:border-purple-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(124, 58, 237, var(--tw-border-opacity)) !important; + } + + .group:hover .sm\:group-hover\:border-purple-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(109, 40, 217, var(--tw-border-opacity)) !important; + } + + .group:hover .sm\:group-hover\:border-purple-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(91, 33, 182, var(--tw-border-opacity)) !important; + } + + .group:hover .sm\:group-hover\:border-purple-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(76, 29, 149, var(--tw-border-opacity)) !important; + } + + .group:hover .sm\:group-hover\:border-pink-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(253, 242, 248, var(--tw-border-opacity)) !important; + } + + .group:hover .sm\:group-hover\:border-pink-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 231, 243, var(--tw-border-opacity)) !important; + } + + .group:hover .sm\:group-hover\:border-pink-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(251, 207, 232, var(--tw-border-opacity)) !important; + } + + .group:hover .sm\:group-hover\:border-pink-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(249, 168, 212, var(--tw-border-opacity)) !important; + } + + .group:hover .sm\:group-hover\:border-pink-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(244, 114, 182, var(--tw-border-opacity)) !important; + } + + .group:hover .sm\:group-hover\:border-pink-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(236, 72, 153, var(--tw-border-opacity)) !important; + } + + .group:hover .sm\:group-hover\:border-pink-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(219, 39, 119, var(--tw-border-opacity)) !important; + } + + .group:hover .sm\:group-hover\:border-pink-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(190, 24, 93, var(--tw-border-opacity)) !important; + } + + .group:hover .sm\:group-hover\:border-pink-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(157, 23, 77, var(--tw-border-opacity)) !important; + } + + .group:hover .sm\:group-hover\:border-pink-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(131, 24, 67, var(--tw-border-opacity)) !important; + } + + .group:hover .sm\:group-hover\:border-primary { + --tw-border-opacity: 1 !important; + border-color: rgba(0, 49, 151, var(--tw-border-opacity)) !important; + } + + .sm\:focus-within\:border-transparent:focus-within { + border-color: transparent !important; + } + + .sm\:focus-within\:border-current:focus-within { + border-color: currentColor !important; + } + + .sm\:focus-within\:border-black:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important; + } + + .sm\:focus-within\:border-white:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important; + } + + .sm\:focus-within\:border-gray-50:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)) !important; + } + + .sm\:focus-within\:border-gray-100:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)) !important; + } + + .sm\:focus-within\:border-gray-200:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)) !important; + } + + .sm\:focus-within\:border-gray-300:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)) !important; + } + + .sm\:focus-within\:border-gray-400:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)) !important; + } + + .sm\:focus-within\:border-gray-500:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)) !important; + } + + .sm\:focus-within\:border-gray-600:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)) !important; + } + + .sm\:focus-within\:border-gray-700:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)) !important; + } + + .sm\:focus-within\:border-gray-800:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)) !important; + } + + .sm\:focus-within\:border-gray-900:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)) !important; + } + + .sm\:focus-within\:border-red-50:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 242, 242, var(--tw-border-opacity)) !important; + } + + .sm\:focus-within\:border-red-100:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 226, 226, var(--tw-border-opacity)) !important; + } + + .sm\:focus-within\:border-red-200:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 202, 202, var(--tw-border-opacity)) !important; + } + + .sm\:focus-within\:border-red-300:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 165, 165, var(--tw-border-opacity)) !important; + } + + .sm\:focus-within\:border-red-400:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(248, 113, 113, var(--tw-border-opacity)) !important; + } + + .sm\:focus-within\:border-red-500:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(239, 68, 68, var(--tw-border-opacity)) !important; + } + + .sm\:focus-within\:border-red-600:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(220, 38, 38, var(--tw-border-opacity)) !important; + } + + .sm\:focus-within\:border-red-700:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(185, 28, 28, var(--tw-border-opacity)) !important; + } + + .sm\:focus-within\:border-red-800:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(153, 27, 27, var(--tw-border-opacity)) !important; + } + + .sm\:focus-within\:border-red-900:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(127, 29, 29, var(--tw-border-opacity)) !important; + } + + .sm\:focus-within\:border-yellow-50:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(255, 251, 235, var(--tw-border-opacity)) !important; + } + + .sm\:focus-within\:border-yellow-100:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 243, 199, var(--tw-border-opacity)) !important; + } + + .sm\:focus-within\:border-yellow-200:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(253, 230, 138, var(--tw-border-opacity)) !important; + } + + .sm\:focus-within\:border-yellow-300:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 211, 77, var(--tw-border-opacity)) !important; + } + + .sm\:focus-within\:border-yellow-400:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(251, 191, 36, var(--tw-border-opacity)) !important; + } + + .sm\:focus-within\:border-yellow-500:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)) !important; + } + + .sm\:focus-within\:border-yellow-600:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(217, 119, 6, var(--tw-border-opacity)) !important; + } + + .sm\:focus-within\:border-yellow-700:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(180, 83, 9, var(--tw-border-opacity)) !important; + } + + .sm\:focus-within\:border-yellow-800:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(146, 64, 14, var(--tw-border-opacity)) !important; + } + + .sm\:focus-within\:border-yellow-900:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(120, 53, 15, var(--tw-border-opacity)) !important; + } + + .sm\:focus-within\:border-green-50:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(236, 253, 245, var(--tw-border-opacity)) !important; + } + + .sm\:focus-within\:border-green-100:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(209, 250, 229, var(--tw-border-opacity)) !important; + } + + .sm\:focus-within\:border-green-200:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(167, 243, 208, var(--tw-border-opacity)) !important; + } + + .sm\:focus-within\:border-green-300:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(110, 231, 183, var(--tw-border-opacity)) !important; + } + + .sm\:focus-within\:border-green-400:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(52, 211, 153, var(--tw-border-opacity)) !important; + } + + .sm\:focus-within\:border-green-500:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(16, 185, 129, var(--tw-border-opacity)) !important; + } + + .sm\:focus-within\:border-green-600:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(5, 150, 105, var(--tw-border-opacity)) !important; + } + + .sm\:focus-within\:border-green-700:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(4, 120, 87, var(--tw-border-opacity)) !important; + } + + .sm\:focus-within\:border-green-800:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(6, 95, 70, var(--tw-border-opacity)) !important; + } + + .sm\:focus-within\:border-green-900:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(6, 78, 59, var(--tw-border-opacity)) !important; + } + + .sm\:focus-within\:border-blue-50:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(239, 246, 255, var(--tw-border-opacity)) !important; + } + + .sm\:focus-within\:border-blue-100:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(219, 234, 254, var(--tw-border-opacity)) !important; + } + + .sm\:focus-within\:border-blue-200:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(191, 219, 254, var(--tw-border-opacity)) !important; + } + + .sm\:focus-within\:border-blue-300:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(147, 197, 253, var(--tw-border-opacity)) !important; + } + + .sm\:focus-within\:border-blue-400:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(96, 165, 250, var(--tw-border-opacity)) !important; + } + + .sm\:focus-within\:border-blue-500:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)) !important; + } + + .sm\:focus-within\:border-blue-600:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(37, 99, 235, var(--tw-border-opacity)) !important; + } + + .sm\:focus-within\:border-blue-700:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(29, 78, 216, var(--tw-border-opacity)) !important; + } + + .sm\:focus-within\:border-blue-800:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(30, 64, 175, var(--tw-border-opacity)) !important; + } + + .sm\:focus-within\:border-blue-900:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(30, 58, 138, var(--tw-border-opacity)) !important; + } + + .sm\:focus-within\:border-indigo-50:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(238, 242, 255, var(--tw-border-opacity)) !important; + } + + .sm\:focus-within\:border-indigo-100:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(224, 231, 255, var(--tw-border-opacity)) !important; + } + + .sm\:focus-within\:border-indigo-200:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(199, 210, 254, var(--tw-border-opacity)) !important; + } + + .sm\:focus-within\:border-indigo-300:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(165, 180, 252, var(--tw-border-opacity)) !important; + } + + .sm\:focus-within\:border-indigo-400:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(129, 140, 248, var(--tw-border-opacity)) !important; + } + + .sm\:focus-within\:border-indigo-500:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(99, 102, 241, var(--tw-border-opacity)) !important; + } + + .sm\:focus-within\:border-indigo-600:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(79, 70, 229, var(--tw-border-opacity)) !important; + } + + .sm\:focus-within\:border-indigo-700:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(67, 56, 202, var(--tw-border-opacity)) !important; + } + + .sm\:focus-within\:border-indigo-800:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(55, 48, 163, var(--tw-border-opacity)) !important; + } + + .sm\:focus-within\:border-indigo-900:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(49, 46, 129, var(--tw-border-opacity)) !important; + } + + .sm\:focus-within\:border-purple-50:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(245, 243, 255, var(--tw-border-opacity)) !important; + } + + .sm\:focus-within\:border-purple-100:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(237, 233, 254, var(--tw-border-opacity)) !important; + } + + .sm\:focus-within\:border-purple-200:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(221, 214, 254, var(--tw-border-opacity)) !important; + } + + .sm\:focus-within\:border-purple-300:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(196, 181, 253, var(--tw-border-opacity)) !important; + } + + .sm\:focus-within\:border-purple-400:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(167, 139, 250, var(--tw-border-opacity)) !important; + } + + .sm\:focus-within\:border-purple-500:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(139, 92, 246, var(--tw-border-opacity)) !important; + } + + .sm\:focus-within\:border-purple-600:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(124, 58, 237, var(--tw-border-opacity)) !important; + } + + .sm\:focus-within\:border-purple-700:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(109, 40, 217, var(--tw-border-opacity)) !important; + } + + .sm\:focus-within\:border-purple-800:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(91, 33, 182, var(--tw-border-opacity)) !important; + } + + .sm\:focus-within\:border-purple-900:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(76, 29, 149, var(--tw-border-opacity)) !important; + } + + .sm\:focus-within\:border-pink-50:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(253, 242, 248, var(--tw-border-opacity)) !important; + } + + .sm\:focus-within\:border-pink-100:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 231, 243, var(--tw-border-opacity)) !important; + } + + .sm\:focus-within\:border-pink-200:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(251, 207, 232, var(--tw-border-opacity)) !important; + } + + .sm\:focus-within\:border-pink-300:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(249, 168, 212, var(--tw-border-opacity)) !important; + } + + .sm\:focus-within\:border-pink-400:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(244, 114, 182, var(--tw-border-opacity)) !important; + } + + .sm\:focus-within\:border-pink-500:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(236, 72, 153, var(--tw-border-opacity)) !important; + } + + .sm\:focus-within\:border-pink-600:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(219, 39, 119, var(--tw-border-opacity)) !important; + } + + .sm\:focus-within\:border-pink-700:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(190, 24, 93, var(--tw-border-opacity)) !important; + } + + .sm\:focus-within\:border-pink-800:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(157, 23, 77, var(--tw-border-opacity)) !important; + } + + .sm\:focus-within\:border-pink-900:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(131, 24, 67, var(--tw-border-opacity)) !important; + } + + .sm\:focus-within\:border-primary:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(0, 49, 151, var(--tw-border-opacity)) !important; + } + + .sm\:hover\:border-transparent:hover { + border-color: transparent !important; + } + + .sm\:hover\:border-current:hover { + border-color: currentColor !important; + } + + .sm\:hover\:border-black:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important; + } + + .sm\:hover\:border-white:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important; + } + + .sm\:hover\:border-gray-50:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)) !important; + } + + .sm\:hover\:border-gray-100:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)) !important; + } + + .sm\:hover\:border-gray-200:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)) !important; + } + + .sm\:hover\:border-gray-300:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)) !important; + } + + .sm\:hover\:border-gray-400:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)) !important; + } + + .sm\:hover\:border-gray-500:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)) !important; + } + + .sm\:hover\:border-gray-600:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)) !important; + } + + .sm\:hover\:border-gray-700:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)) !important; + } + + .sm\:hover\:border-gray-800:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)) !important; + } + + .sm\:hover\:border-gray-900:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)) !important; + } + + .sm\:hover\:border-red-50:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 242, 242, var(--tw-border-opacity)) !important; + } + + .sm\:hover\:border-red-100:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 226, 226, var(--tw-border-opacity)) !important; + } + + .sm\:hover\:border-red-200:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 202, 202, var(--tw-border-opacity)) !important; + } + + .sm\:hover\:border-red-300:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 165, 165, var(--tw-border-opacity)) !important; + } + + .sm\:hover\:border-red-400:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(248, 113, 113, var(--tw-border-opacity)) !important; + } + + .sm\:hover\:border-red-500:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(239, 68, 68, var(--tw-border-opacity)) !important; + } + + .sm\:hover\:border-red-600:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(220, 38, 38, var(--tw-border-opacity)) !important; + } + + .sm\:hover\:border-red-700:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(185, 28, 28, var(--tw-border-opacity)) !important; + } + + .sm\:hover\:border-red-800:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(153, 27, 27, var(--tw-border-opacity)) !important; + } + + .sm\:hover\:border-red-900:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(127, 29, 29, var(--tw-border-opacity)) !important; + } + + .sm\:hover\:border-yellow-50:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(255, 251, 235, var(--tw-border-opacity)) !important; + } + + .sm\:hover\:border-yellow-100:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 243, 199, var(--tw-border-opacity)) !important; + } + + .sm\:hover\:border-yellow-200:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(253, 230, 138, var(--tw-border-opacity)) !important; + } + + .sm\:hover\:border-yellow-300:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 211, 77, var(--tw-border-opacity)) !important; + } + + .sm\:hover\:border-yellow-400:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(251, 191, 36, var(--tw-border-opacity)) !important; + } + + .sm\:hover\:border-yellow-500:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)) !important; + } + + .sm\:hover\:border-yellow-600:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(217, 119, 6, var(--tw-border-opacity)) !important; + } + + .sm\:hover\:border-yellow-700:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(180, 83, 9, var(--tw-border-opacity)) !important; + } + + .sm\:hover\:border-yellow-800:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(146, 64, 14, var(--tw-border-opacity)) !important; + } + + .sm\:hover\:border-yellow-900:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(120, 53, 15, var(--tw-border-opacity)) !important; + } + + .sm\:hover\:border-green-50:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(236, 253, 245, var(--tw-border-opacity)) !important; + } + + .sm\:hover\:border-green-100:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(209, 250, 229, var(--tw-border-opacity)) !important; + } + + .sm\:hover\:border-green-200:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(167, 243, 208, var(--tw-border-opacity)) !important; + } + + .sm\:hover\:border-green-300:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(110, 231, 183, var(--tw-border-opacity)) !important; + } + + .sm\:hover\:border-green-400:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(52, 211, 153, var(--tw-border-opacity)) !important; + } + + .sm\:hover\:border-green-500:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(16, 185, 129, var(--tw-border-opacity)) !important; + } + + .sm\:hover\:border-green-600:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(5, 150, 105, var(--tw-border-opacity)) !important; + } + + .sm\:hover\:border-green-700:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(4, 120, 87, var(--tw-border-opacity)) !important; + } + + .sm\:hover\:border-green-800:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(6, 95, 70, var(--tw-border-opacity)) !important; + } + + .sm\:hover\:border-green-900:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(6, 78, 59, var(--tw-border-opacity)) !important; + } + + .sm\:hover\:border-blue-50:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(239, 246, 255, var(--tw-border-opacity)) !important; + } + + .sm\:hover\:border-blue-100:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(219, 234, 254, var(--tw-border-opacity)) !important; + } + + .sm\:hover\:border-blue-200:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(191, 219, 254, var(--tw-border-opacity)) !important; + } + + .sm\:hover\:border-blue-300:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(147, 197, 253, var(--tw-border-opacity)) !important; + } + + .sm\:hover\:border-blue-400:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(96, 165, 250, var(--tw-border-opacity)) !important; + } + + .sm\:hover\:border-blue-500:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)) !important; + } + + .sm\:hover\:border-blue-600:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(37, 99, 235, var(--tw-border-opacity)) !important; + } + + .sm\:hover\:border-blue-700:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(29, 78, 216, var(--tw-border-opacity)) !important; + } + + .sm\:hover\:border-blue-800:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(30, 64, 175, var(--tw-border-opacity)) !important; + } + + .sm\:hover\:border-blue-900:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(30, 58, 138, var(--tw-border-opacity)) !important; + } + + .sm\:hover\:border-indigo-50:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(238, 242, 255, var(--tw-border-opacity)) !important; + } + + .sm\:hover\:border-indigo-100:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(224, 231, 255, var(--tw-border-opacity)) !important; + } + + .sm\:hover\:border-indigo-200:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(199, 210, 254, var(--tw-border-opacity)) !important; + } + + .sm\:hover\:border-indigo-300:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(165, 180, 252, var(--tw-border-opacity)) !important; + } + + .sm\:hover\:border-indigo-400:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(129, 140, 248, var(--tw-border-opacity)) !important; + } + + .sm\:hover\:border-indigo-500:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(99, 102, 241, var(--tw-border-opacity)) !important; + } + + .sm\:hover\:border-indigo-600:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(79, 70, 229, var(--tw-border-opacity)) !important; + } + + .sm\:hover\:border-indigo-700:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(67, 56, 202, var(--tw-border-opacity)) !important; + } + + .sm\:hover\:border-indigo-800:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(55, 48, 163, var(--tw-border-opacity)) !important; + } + + .sm\:hover\:border-indigo-900:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(49, 46, 129, var(--tw-border-opacity)) !important; + } + + .sm\:hover\:border-purple-50:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(245, 243, 255, var(--tw-border-opacity)) !important; + } + + .sm\:hover\:border-purple-100:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(237, 233, 254, var(--tw-border-opacity)) !important; + } + + .sm\:hover\:border-purple-200:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(221, 214, 254, var(--tw-border-opacity)) !important; + } + + .sm\:hover\:border-purple-300:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(196, 181, 253, var(--tw-border-opacity)) !important; + } + + .sm\:hover\:border-purple-400:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(167, 139, 250, var(--tw-border-opacity)) !important; + } + + .sm\:hover\:border-purple-500:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(139, 92, 246, var(--tw-border-opacity)) !important; + } + + .sm\:hover\:border-purple-600:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(124, 58, 237, var(--tw-border-opacity)) !important; + } + + .sm\:hover\:border-purple-700:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(109, 40, 217, var(--tw-border-opacity)) !important; + } + + .sm\:hover\:border-purple-800:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(91, 33, 182, var(--tw-border-opacity)) !important; + } + + .sm\:hover\:border-purple-900:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(76, 29, 149, var(--tw-border-opacity)) !important; + } + + .sm\:hover\:border-pink-50:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(253, 242, 248, var(--tw-border-opacity)) !important; + } + + .sm\:hover\:border-pink-100:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 231, 243, var(--tw-border-opacity)) !important; + } + + .sm\:hover\:border-pink-200:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(251, 207, 232, var(--tw-border-opacity)) !important; + } + + .sm\:hover\:border-pink-300:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(249, 168, 212, var(--tw-border-opacity)) !important; + } + + .sm\:hover\:border-pink-400:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(244, 114, 182, var(--tw-border-opacity)) !important; + } + + .sm\:hover\:border-pink-500:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(236, 72, 153, var(--tw-border-opacity)) !important; + } + + .sm\:hover\:border-pink-600:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(219, 39, 119, var(--tw-border-opacity)) !important; + } + + .sm\:hover\:border-pink-700:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(190, 24, 93, var(--tw-border-opacity)) !important; + } + + .sm\:hover\:border-pink-800:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(157, 23, 77, var(--tw-border-opacity)) !important; + } + + .sm\:hover\:border-pink-900:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(131, 24, 67, var(--tw-border-opacity)) !important; + } + + .sm\:hover\:border-primary:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(0, 49, 151, var(--tw-border-opacity)) !important; + } + + .sm\:focus\:border-transparent:focus { + border-color: transparent !important; + } + + .sm\:focus\:border-current:focus { + border-color: currentColor !important; + } + + .sm\:focus\:border-black:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important; + } + + .sm\:focus\:border-white:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important; + } + + .sm\:focus\:border-gray-50:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)) !important; + } + + .sm\:focus\:border-gray-100:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)) !important; + } + + .sm\:focus\:border-gray-200:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)) !important; + } + + .sm\:focus\:border-gray-300:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)) !important; + } + + .sm\:focus\:border-gray-400:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)) !important; + } + + .sm\:focus\:border-gray-500:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)) !important; + } + + .sm\:focus\:border-gray-600:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)) !important; + } + + .sm\:focus\:border-gray-700:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)) !important; + } + + .sm\:focus\:border-gray-800:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)) !important; + } + + .sm\:focus\:border-gray-900:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)) !important; + } + + .sm\:focus\:border-red-50:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 242, 242, var(--tw-border-opacity)) !important; + } + + .sm\:focus\:border-red-100:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 226, 226, var(--tw-border-opacity)) !important; + } + + .sm\:focus\:border-red-200:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 202, 202, var(--tw-border-opacity)) !important; + } + + .sm\:focus\:border-red-300:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 165, 165, var(--tw-border-opacity)) !important; + } + + .sm\:focus\:border-red-400:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(248, 113, 113, var(--tw-border-opacity)) !important; + } + + .sm\:focus\:border-red-500:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(239, 68, 68, var(--tw-border-opacity)) !important; + } + + .sm\:focus\:border-red-600:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(220, 38, 38, var(--tw-border-opacity)) !important; + } + + .sm\:focus\:border-red-700:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(185, 28, 28, var(--tw-border-opacity)) !important; + } + + .sm\:focus\:border-red-800:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(153, 27, 27, var(--tw-border-opacity)) !important; + } + + .sm\:focus\:border-red-900:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(127, 29, 29, var(--tw-border-opacity)) !important; + } + + .sm\:focus\:border-yellow-50:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(255, 251, 235, var(--tw-border-opacity)) !important; + } + + .sm\:focus\:border-yellow-100:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 243, 199, var(--tw-border-opacity)) !important; + } + + .sm\:focus\:border-yellow-200:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(253, 230, 138, var(--tw-border-opacity)) !important; + } + + .sm\:focus\:border-yellow-300:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 211, 77, var(--tw-border-opacity)) !important; + } + + .sm\:focus\:border-yellow-400:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(251, 191, 36, var(--tw-border-opacity)) !important; + } + + .sm\:focus\:border-yellow-500:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)) !important; + } + + .sm\:focus\:border-yellow-600:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(217, 119, 6, var(--tw-border-opacity)) !important; + } + + .sm\:focus\:border-yellow-700:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(180, 83, 9, var(--tw-border-opacity)) !important; + } + + .sm\:focus\:border-yellow-800:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(146, 64, 14, var(--tw-border-opacity)) !important; + } + + .sm\:focus\:border-yellow-900:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(120, 53, 15, var(--tw-border-opacity)) !important; + } + + .sm\:focus\:border-green-50:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(236, 253, 245, var(--tw-border-opacity)) !important; + } + + .sm\:focus\:border-green-100:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(209, 250, 229, var(--tw-border-opacity)) !important; + } + + .sm\:focus\:border-green-200:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(167, 243, 208, var(--tw-border-opacity)) !important; + } + + .sm\:focus\:border-green-300:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(110, 231, 183, var(--tw-border-opacity)) !important; + } + + .sm\:focus\:border-green-400:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(52, 211, 153, var(--tw-border-opacity)) !important; + } + + .sm\:focus\:border-green-500:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(16, 185, 129, var(--tw-border-opacity)) !important; + } + + .sm\:focus\:border-green-600:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(5, 150, 105, var(--tw-border-opacity)) !important; + } + + .sm\:focus\:border-green-700:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(4, 120, 87, var(--tw-border-opacity)) !important; + } + + .sm\:focus\:border-green-800:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(6, 95, 70, var(--tw-border-opacity)) !important; + } + + .sm\:focus\:border-green-900:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(6, 78, 59, var(--tw-border-opacity)) !important; + } + + .sm\:focus\:border-blue-50:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(239, 246, 255, var(--tw-border-opacity)) !important; + } + + .sm\:focus\:border-blue-100:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(219, 234, 254, var(--tw-border-opacity)) !important; + } + + .sm\:focus\:border-blue-200:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(191, 219, 254, var(--tw-border-opacity)) !important; + } + + .sm\:focus\:border-blue-300:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(147, 197, 253, var(--tw-border-opacity)) !important; + } + + .sm\:focus\:border-blue-400:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(96, 165, 250, var(--tw-border-opacity)) !important; + } + + .sm\:focus\:border-blue-500:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)) !important; + } + + .sm\:focus\:border-blue-600:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(37, 99, 235, var(--tw-border-opacity)) !important; + } + + .sm\:focus\:border-blue-700:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(29, 78, 216, var(--tw-border-opacity)) !important; + } + + .sm\:focus\:border-blue-800:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(30, 64, 175, var(--tw-border-opacity)) !important; + } + + .sm\:focus\:border-blue-900:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(30, 58, 138, var(--tw-border-opacity)) !important; + } + + .sm\:focus\:border-indigo-50:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(238, 242, 255, var(--tw-border-opacity)) !important; + } + + .sm\:focus\:border-indigo-100:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(224, 231, 255, var(--tw-border-opacity)) !important; + } + + .sm\:focus\:border-indigo-200:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(199, 210, 254, var(--tw-border-opacity)) !important; + } + + .sm\:focus\:border-indigo-300:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(165, 180, 252, var(--tw-border-opacity)) !important; + } + + .sm\:focus\:border-indigo-400:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(129, 140, 248, var(--tw-border-opacity)) !important; + } + + .sm\:focus\:border-indigo-500:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(99, 102, 241, var(--tw-border-opacity)) !important; + } + + .sm\:focus\:border-indigo-600:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(79, 70, 229, var(--tw-border-opacity)) !important; + } + + .sm\:focus\:border-indigo-700:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(67, 56, 202, var(--tw-border-opacity)) !important; + } + + .sm\:focus\:border-indigo-800:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(55, 48, 163, var(--tw-border-opacity)) !important; + } + + .sm\:focus\:border-indigo-900:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(49, 46, 129, var(--tw-border-opacity)) !important; + } + + .sm\:focus\:border-purple-50:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(245, 243, 255, var(--tw-border-opacity)) !important; + } + + .sm\:focus\:border-purple-100:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(237, 233, 254, var(--tw-border-opacity)) !important; + } + + .sm\:focus\:border-purple-200:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(221, 214, 254, var(--tw-border-opacity)) !important; + } + + .sm\:focus\:border-purple-300:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(196, 181, 253, var(--tw-border-opacity)) !important; + } + + .sm\:focus\:border-purple-400:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(167, 139, 250, var(--tw-border-opacity)) !important; + } + + .sm\:focus\:border-purple-500:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(139, 92, 246, var(--tw-border-opacity)) !important; + } + + .sm\:focus\:border-purple-600:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(124, 58, 237, var(--tw-border-opacity)) !important; + } + + .sm\:focus\:border-purple-700:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(109, 40, 217, var(--tw-border-opacity)) !important; + } + + .sm\:focus\:border-purple-800:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(91, 33, 182, var(--tw-border-opacity)) !important; + } + + .sm\:focus\:border-purple-900:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(76, 29, 149, var(--tw-border-opacity)) !important; + } + + .sm\:focus\:border-pink-50:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(253, 242, 248, var(--tw-border-opacity)) !important; + } + + .sm\:focus\:border-pink-100:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 231, 243, var(--tw-border-opacity)) !important; + } + + .sm\:focus\:border-pink-200:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(251, 207, 232, var(--tw-border-opacity)) !important; + } + + .sm\:focus\:border-pink-300:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(249, 168, 212, var(--tw-border-opacity)) !important; + } + + .sm\:focus\:border-pink-400:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(244, 114, 182, var(--tw-border-opacity)) !important; + } + + .sm\:focus\:border-pink-500:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(236, 72, 153, var(--tw-border-opacity)) !important; + } + + .sm\:focus\:border-pink-600:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(219, 39, 119, var(--tw-border-opacity)) !important; + } + + .sm\:focus\:border-pink-700:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(190, 24, 93, var(--tw-border-opacity)) !important; + } + + .sm\:focus\:border-pink-800:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(157, 23, 77, var(--tw-border-opacity)) !important; + } + + .sm\:focus\:border-pink-900:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(131, 24, 67, var(--tw-border-opacity)) !important; + } + + .sm\:focus\:border-primary:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(0, 49, 151, var(--tw-border-opacity)) !important; + } + + .sm\:border-opacity-0 { + --tw-border-opacity: 0 !important; + } + + .sm\:border-opacity-5 { + --tw-border-opacity: 0.05 !important; + } + + .sm\:border-opacity-10 { + --tw-border-opacity: 0.1 !important; + } + + .sm\:border-opacity-20 { + --tw-border-opacity: 0.2 !important; + } + + .sm\:border-opacity-25 { + --tw-border-opacity: 0.25 !important; + } + + .sm\:border-opacity-30 { + --tw-border-opacity: 0.3 !important; + } + + .sm\:border-opacity-40 { + --tw-border-opacity: 0.4 !important; + } + + .sm\:border-opacity-50 { + --tw-border-opacity: 0.5 !important; + } + + .sm\:border-opacity-60 { + --tw-border-opacity: 0.6 !important; + } + + .sm\:border-opacity-70 { + --tw-border-opacity: 0.7 !important; + } + + .sm\:border-opacity-75 { + --tw-border-opacity: 0.75 !important; + } + + .sm\:border-opacity-80 { + --tw-border-opacity: 0.8 !important; + } + + .sm\:border-opacity-90 { + --tw-border-opacity: 0.9 !important; + } + + .sm\:border-opacity-95 { + --tw-border-opacity: 0.95 !important; + } + + .sm\:border-opacity-100 { + --tw-border-opacity: 1 !important; + } + + .group:hover .sm\:group-hover\:border-opacity-0 { + --tw-border-opacity: 0 !important; + } + + .group:hover .sm\:group-hover\:border-opacity-5 { + --tw-border-opacity: 0.05 !important; + } + + .group:hover .sm\:group-hover\:border-opacity-10 { + --tw-border-opacity: 0.1 !important; + } + + .group:hover .sm\:group-hover\:border-opacity-20 { + --tw-border-opacity: 0.2 !important; + } + + .group:hover .sm\:group-hover\:border-opacity-25 { + --tw-border-opacity: 0.25 !important; + } + + .group:hover .sm\:group-hover\:border-opacity-30 { + --tw-border-opacity: 0.3 !important; + } + + .group:hover .sm\:group-hover\:border-opacity-40 { + --tw-border-opacity: 0.4 !important; + } + + .group:hover .sm\:group-hover\:border-opacity-50 { + --tw-border-opacity: 0.5 !important; + } + + .group:hover .sm\:group-hover\:border-opacity-60 { + --tw-border-opacity: 0.6 !important; + } + + .group:hover .sm\:group-hover\:border-opacity-70 { + --tw-border-opacity: 0.7 !important; + } + + .group:hover .sm\:group-hover\:border-opacity-75 { + --tw-border-opacity: 0.75 !important; + } + + .group:hover .sm\:group-hover\:border-opacity-80 { + --tw-border-opacity: 0.8 !important; + } + + .group:hover .sm\:group-hover\:border-opacity-90 { + --tw-border-opacity: 0.9 !important; + } + + .group:hover .sm\:group-hover\:border-opacity-95 { + --tw-border-opacity: 0.95 !important; + } + + .group:hover .sm\:group-hover\:border-opacity-100 { + --tw-border-opacity: 1 !important; + } + + .sm\:focus-within\:border-opacity-0:focus-within { + --tw-border-opacity: 0 !important; + } + + .sm\:focus-within\:border-opacity-5:focus-within { + --tw-border-opacity: 0.05 !important; + } + + .sm\:focus-within\:border-opacity-10:focus-within { + --tw-border-opacity: 0.1 !important; + } + + .sm\:focus-within\:border-opacity-20:focus-within { + --tw-border-opacity: 0.2 !important; + } + + .sm\:focus-within\:border-opacity-25:focus-within { + --tw-border-opacity: 0.25 !important; + } + + .sm\:focus-within\:border-opacity-30:focus-within { + --tw-border-opacity: 0.3 !important; + } + + .sm\:focus-within\:border-opacity-40:focus-within { + --tw-border-opacity: 0.4 !important; + } + + .sm\:focus-within\:border-opacity-50:focus-within { + --tw-border-opacity: 0.5 !important; + } + + .sm\:focus-within\:border-opacity-60:focus-within { + --tw-border-opacity: 0.6 !important; + } + + .sm\:focus-within\:border-opacity-70:focus-within { + --tw-border-opacity: 0.7 !important; + } + + .sm\:focus-within\:border-opacity-75:focus-within { + --tw-border-opacity: 0.75 !important; + } + + .sm\:focus-within\:border-opacity-80:focus-within { + --tw-border-opacity: 0.8 !important; + } + + .sm\:focus-within\:border-opacity-90:focus-within { + --tw-border-opacity: 0.9 !important; + } + + .sm\:focus-within\:border-opacity-95:focus-within { + --tw-border-opacity: 0.95 !important; + } + + .sm\:focus-within\:border-opacity-100:focus-within { + --tw-border-opacity: 1 !important; + } + + .sm\:hover\:border-opacity-0:hover { + --tw-border-opacity: 0 !important; + } + + .sm\:hover\:border-opacity-5:hover { + --tw-border-opacity: 0.05 !important; + } + + .sm\:hover\:border-opacity-10:hover { + --tw-border-opacity: 0.1 !important; + } + + .sm\:hover\:border-opacity-20:hover { + --tw-border-opacity: 0.2 !important; + } + + .sm\:hover\:border-opacity-25:hover { + --tw-border-opacity: 0.25 !important; + } + + .sm\:hover\:border-opacity-30:hover { + --tw-border-opacity: 0.3 !important; + } + + .sm\:hover\:border-opacity-40:hover { + --tw-border-opacity: 0.4 !important; + } + + .sm\:hover\:border-opacity-50:hover { + --tw-border-opacity: 0.5 !important; + } + + .sm\:hover\:border-opacity-60:hover { + --tw-border-opacity: 0.6 !important; + } + + .sm\:hover\:border-opacity-70:hover { + --tw-border-opacity: 0.7 !important; + } + + .sm\:hover\:border-opacity-75:hover { + --tw-border-opacity: 0.75 !important; + } + + .sm\:hover\:border-opacity-80:hover { + --tw-border-opacity: 0.8 !important; + } + + .sm\:hover\:border-opacity-90:hover { + --tw-border-opacity: 0.9 !important; + } + + .sm\:hover\:border-opacity-95:hover { + --tw-border-opacity: 0.95 !important; + } + + .sm\:hover\:border-opacity-100:hover { + --tw-border-opacity: 1 !important; + } + + .sm\:focus\:border-opacity-0:focus { + --tw-border-opacity: 0 !important; + } + + .sm\:focus\:border-opacity-5:focus { + --tw-border-opacity: 0.05 !important; + } + + .sm\:focus\:border-opacity-10:focus { + --tw-border-opacity: 0.1 !important; + } + + .sm\:focus\:border-opacity-20:focus { + --tw-border-opacity: 0.2 !important; + } + + .sm\:focus\:border-opacity-25:focus { + --tw-border-opacity: 0.25 !important; + } + + .sm\:focus\:border-opacity-30:focus { + --tw-border-opacity: 0.3 !important; + } + + .sm\:focus\:border-opacity-40:focus { + --tw-border-opacity: 0.4 !important; + } + + .sm\:focus\:border-opacity-50:focus { + --tw-border-opacity: 0.5 !important; + } + + .sm\:focus\:border-opacity-60:focus { + --tw-border-opacity: 0.6 !important; + } + + .sm\:focus\:border-opacity-70:focus { + --tw-border-opacity: 0.7 !important; + } + + .sm\:focus\:border-opacity-75:focus { + --tw-border-opacity: 0.75 !important; + } + + .sm\:focus\:border-opacity-80:focus { + --tw-border-opacity: 0.8 !important; + } + + .sm\:focus\:border-opacity-90:focus { + --tw-border-opacity: 0.9 !important; + } + + .sm\:focus\:border-opacity-95:focus { + --tw-border-opacity: 0.95 !important; + } + + .sm\:focus\:border-opacity-100:focus { + --tw-border-opacity: 1 !important; + } + + .sm\:rounded-none { + border-radius: 0px !important; + } + + .sm\:rounded-sm { + border-radius: 0.125rem !important; + } + + .sm\:rounded { + border-radius: 0.25rem !important; + } + + .sm\:rounded-md { + border-radius: 0.375rem !important; + } + + .sm\:rounded-lg { + border-radius: 0.5rem !important; + } + + .sm\:rounded-xl { + border-radius: 0.75rem !important; + } + + .sm\:rounded-2xl { + border-radius: 1rem !important; + } + + .sm\:rounded-3xl { + border-radius: 1.5rem !important; + } + + .sm\:rounded-full { + border-radius: 9999px !important; + } + + .sm\:rounded-t-none { + border-top-left-radius: 0px !important; + border-top-right-radius: 0px !important; + } + + .sm\:rounded-r-none { + border-top-right-radius: 0px !important; + border-bottom-right-radius: 0px !important; + } + + .sm\:rounded-b-none { + border-bottom-right-radius: 0px !important; + border-bottom-left-radius: 0px !important; + } + + .sm\:rounded-l-none { + border-top-left-radius: 0px !important; + border-bottom-left-radius: 0px !important; + } + + .sm\:rounded-t-sm { + border-top-left-radius: 0.125rem !important; + border-top-right-radius: 0.125rem !important; + } + + .sm\:rounded-r-sm { + border-top-right-radius: 0.125rem !important; + border-bottom-right-radius: 0.125rem !important; + } + + .sm\:rounded-b-sm { + border-bottom-right-radius: 0.125rem !important; + border-bottom-left-radius: 0.125rem !important; + } + + .sm\:rounded-l-sm { + border-top-left-radius: 0.125rem !important; + border-bottom-left-radius: 0.125rem !important; + } + + .sm\:rounded-t { + border-top-left-radius: 0.25rem !important; + border-top-right-radius: 0.25rem !important; + } + + .sm\:rounded-r { + border-top-right-radius: 0.25rem !important; + border-bottom-right-radius: 0.25rem !important; + } + + .sm\:rounded-b { + border-bottom-right-radius: 0.25rem !important; + border-bottom-left-radius: 0.25rem !important; + } + + .sm\:rounded-l { + border-top-left-radius: 0.25rem !important; + border-bottom-left-radius: 0.25rem !important; + } + + .sm\:rounded-t-md { + border-top-left-radius: 0.375rem !important; + border-top-right-radius: 0.375rem !important; + } + + .sm\:rounded-r-md { + border-top-right-radius: 0.375rem !important; + border-bottom-right-radius: 0.375rem !important; + } + + .sm\:rounded-b-md { + border-bottom-right-radius: 0.375rem !important; + border-bottom-left-radius: 0.375rem !important; + } + + .sm\:rounded-l-md { + border-top-left-radius: 0.375rem !important; + border-bottom-left-radius: 0.375rem !important; + } + + .sm\:rounded-t-lg { + border-top-left-radius: 0.5rem !important; + border-top-right-radius: 0.5rem !important; + } + + .sm\:rounded-r-lg { + border-top-right-radius: 0.5rem !important; + border-bottom-right-radius: 0.5rem !important; + } + + .sm\:rounded-b-lg { + border-bottom-right-radius: 0.5rem !important; + border-bottom-left-radius: 0.5rem !important; + } + + .sm\:rounded-l-lg { + border-top-left-radius: 0.5rem !important; + border-bottom-left-radius: 0.5rem !important; + } + + .sm\:rounded-t-xl { + border-top-left-radius: 0.75rem !important; + border-top-right-radius: 0.75rem !important; + } + + .sm\:rounded-r-xl { + border-top-right-radius: 0.75rem !important; + border-bottom-right-radius: 0.75rem !important; + } + + .sm\:rounded-b-xl { + border-bottom-right-radius: 0.75rem !important; + border-bottom-left-radius: 0.75rem !important; + } + + .sm\:rounded-l-xl { + border-top-left-radius: 0.75rem !important; + border-bottom-left-radius: 0.75rem !important; + } + + .sm\:rounded-t-2xl { + border-top-left-radius: 1rem !important; + border-top-right-radius: 1rem !important; + } + + .sm\:rounded-r-2xl { + border-top-right-radius: 1rem !important; + border-bottom-right-radius: 1rem !important; + } + + .sm\:rounded-b-2xl { + border-bottom-right-radius: 1rem !important; + border-bottom-left-radius: 1rem !important; + } + + .sm\:rounded-l-2xl { + border-top-left-radius: 1rem !important; + border-bottom-left-radius: 1rem !important; + } + + .sm\:rounded-t-3xl { + border-top-left-radius: 1.5rem !important; + border-top-right-radius: 1.5rem !important; + } + + .sm\:rounded-r-3xl { + border-top-right-radius: 1.5rem !important; + border-bottom-right-radius: 1.5rem !important; + } + + .sm\:rounded-b-3xl { + border-bottom-right-radius: 1.5rem !important; + border-bottom-left-radius: 1.5rem !important; + } + + .sm\:rounded-l-3xl { + border-top-left-radius: 1.5rem !important; + border-bottom-left-radius: 1.5rem !important; + } + + .sm\:rounded-t-full { + border-top-left-radius: 9999px !important; + border-top-right-radius: 9999px !important; + } + + .sm\:rounded-r-full { + border-top-right-radius: 9999px !important; + border-bottom-right-radius: 9999px !important; + } + + .sm\:rounded-b-full { + border-bottom-right-radius: 9999px !important; + border-bottom-left-radius: 9999px !important; + } + + .sm\:rounded-l-full { + border-top-left-radius: 9999px !important; + border-bottom-left-radius: 9999px !important; + } + + .sm\:rounded-tl-none { + border-top-left-radius: 0px !important; + } + + .sm\:rounded-tr-none { + border-top-right-radius: 0px !important; + } + + .sm\:rounded-br-none { + border-bottom-right-radius: 0px !important; + } + + .sm\:rounded-bl-none { + border-bottom-left-radius: 0px !important; + } + + .sm\:rounded-tl-sm { + border-top-left-radius: 0.125rem !important; + } + + .sm\:rounded-tr-sm { + border-top-right-radius: 0.125rem !important; + } + + .sm\:rounded-br-sm { + border-bottom-right-radius: 0.125rem !important; + } + + .sm\:rounded-bl-sm { + border-bottom-left-radius: 0.125rem !important; + } + + .sm\:rounded-tl { + border-top-left-radius: 0.25rem !important; + } + + .sm\:rounded-tr { + border-top-right-radius: 0.25rem !important; + } + + .sm\:rounded-br { + border-bottom-right-radius: 0.25rem !important; + } + + .sm\:rounded-bl { + border-bottom-left-radius: 0.25rem !important; + } + + .sm\:rounded-tl-md { + border-top-left-radius: 0.375rem !important; + } + + .sm\:rounded-tr-md { + border-top-right-radius: 0.375rem !important; + } + + .sm\:rounded-br-md { + border-bottom-right-radius: 0.375rem !important; + } + + .sm\:rounded-bl-md { + border-bottom-left-radius: 0.375rem !important; + } + + .sm\:rounded-tl-lg { + border-top-left-radius: 0.5rem !important; + } + + .sm\:rounded-tr-lg { + border-top-right-radius: 0.5rem !important; + } + + .sm\:rounded-br-lg { + border-bottom-right-radius: 0.5rem !important; + } + + .sm\:rounded-bl-lg { + border-bottom-left-radius: 0.5rem !important; + } + + .sm\:rounded-tl-xl { + border-top-left-radius: 0.75rem !important; + } + + .sm\:rounded-tr-xl { + border-top-right-radius: 0.75rem !important; + } + + .sm\:rounded-br-xl { + border-bottom-right-radius: 0.75rem !important; + } + + .sm\:rounded-bl-xl { + border-bottom-left-radius: 0.75rem !important; + } + + .sm\:rounded-tl-2xl { + border-top-left-radius: 1rem !important; + } + + .sm\:rounded-tr-2xl { + border-top-right-radius: 1rem !important; + } + + .sm\:rounded-br-2xl { + border-bottom-right-radius: 1rem !important; + } + + .sm\:rounded-bl-2xl { + border-bottom-left-radius: 1rem !important; + } + + .sm\:rounded-tl-3xl { + border-top-left-radius: 1.5rem !important; + } + + .sm\:rounded-tr-3xl { + border-top-right-radius: 1.5rem !important; + } + + .sm\:rounded-br-3xl { + border-bottom-right-radius: 1.5rem !important; + } + + .sm\:rounded-bl-3xl { + border-bottom-left-radius: 1.5rem !important; + } + + .sm\:rounded-tl-full { + border-top-left-radius: 9999px !important; + } + + .sm\:rounded-tr-full { + border-top-right-radius: 9999px !important; + } + + .sm\:rounded-br-full { + border-bottom-right-radius: 9999px !important; + } + + .sm\:rounded-bl-full { + border-bottom-left-radius: 9999px !important; + } + + .sm\:border-solid { + border-style: solid !important; + } + + .sm\:border-dashed { + border-style: dashed !important; + } + + .sm\:border-dotted { + border-style: dotted !important; + } + + .sm\:border-double { + border-style: double !important; + } + + .sm\:border-none { + border-style: none !important; + } + + .sm\:border-0 { + border-width: 0px !important; + } + + .sm\:border-2 { + border-width: 2px !important; + } + + .sm\:border-4 { + border-width: 4px !important; + } + + .sm\:border-8 { + border-width: 8px !important; + } + + .sm\:border { + border-width: 1px !important; + } + + .sm\:border-t-0 { + border-top-width: 0px !important; + } + + .sm\:border-r-0 { + border-right-width: 0px !important; + } + + .sm\:border-b-0 { + border-bottom-width: 0px !important; + } + + .sm\:border-l-0 { + border-left-width: 0px !important; + } + + .sm\:border-t-2 { + border-top-width: 2px !important; + } + + .sm\:border-r-2 { + border-right-width: 2px !important; + } + + .sm\:border-b-2 { + border-bottom-width: 2px !important; + } + + .sm\:border-l-2 { + border-left-width: 2px !important; + } + + .sm\:border-t-4 { + border-top-width: 4px !important; + } + + .sm\:border-r-4 { + border-right-width: 4px !important; + } + + .sm\:border-b-4 { + border-bottom-width: 4px !important; + } + + .sm\:border-l-4 { + border-left-width: 4px !important; + } + + .sm\:border-t-8 { + border-top-width: 8px !important; + } + + .sm\:border-r-8 { + border-right-width: 8px !important; + } + + .sm\:border-b-8 { + border-bottom-width: 8px !important; + } + + .sm\:border-l-8 { + border-left-width: 8px !important; + } + + .sm\:border-t { + border-top-width: 1px !important; + } + + .sm\:border-r { + border-right-width: 1px !important; + } + + .sm\:border-b { + border-bottom-width: 1px !important; + } + + .sm\:border-l { + border-left-width: 1px !important; + } + + .sm\:decoration-slice { + -webkit-box-decoration-break: slice !important; + box-decoration-break: slice !important; + } + + .sm\:decoration-clone { + -webkit-box-decoration-break: clone !important; + box-decoration-break: clone !important; + } + + .sm\:box-border { + box-sizing: border-box !important; + } + + .sm\:box-content { + box-sizing: content-box !important; + } + + .sm\:cursor-auto { + cursor: auto !important; + } + + .sm\:cursor-default { + cursor: default !important; + } + + .sm\:cursor-pointer { + cursor: pointer !important; + } + + .sm\:cursor-wait { + cursor: wait !important; + } + + .sm\:cursor-text { + cursor: text !important; + } + + .sm\:cursor-move { + cursor: move !important; + } + + .sm\:cursor-help { + cursor: help !important; + } + + .sm\:cursor-not-allowed { + cursor: not-allowed !important; + } + + .sm\:block { + display: block !important; + } + + .sm\:inline-block { + display: inline-block !important; + } + + .sm\:inline { + display: inline !important; + } + + .sm\:flex { + display: flex !important; + } + + .sm\:inline-flex { + display: inline-flex !important; + } + + .sm\:table { + display: table !important; + } + + .sm\:inline-table { + display: inline-table !important; + } + + .sm\:table-caption { + display: table-caption !important; + } + + .sm\:table-cell { + display: table-cell !important; + } + + .sm\:table-column { + display: table-column !important; + } + + .sm\:table-column-group { + display: table-column-group !important; + } + + .sm\:table-footer-group { + display: table-footer-group !important; + } + + .sm\:table-header-group { + display: table-header-group !important; + } + + .sm\:table-row-group { + display: table-row-group !important; + } + + .sm\:table-row { + display: table-row !important; + } + + .sm\:flow-root { + display: flow-root !important; + } + + .sm\:grid { + display: grid !important; + } + + .sm\:inline-grid { + display: inline-grid !important; + } + + .sm\:contents { + display: contents !important; + } + + .sm\:list-item { + display: list-item !important; + } + + .sm\:hidden { + display: none !important; + } + + .sm\:flex-row { + flex-direction: row !important; + } + + .sm\:flex-row-reverse { + flex-direction: row-reverse !important; + } + + .sm\:flex-col { + flex-direction: column !important; + } + + .sm\:flex-col-reverse { + flex-direction: column-reverse !important; + } + + .sm\:flex-wrap { + flex-wrap: wrap !important; + } + + .sm\:flex-wrap-reverse { + flex-wrap: wrap-reverse !important; + } + + .sm\:flex-nowrap { + flex-wrap: nowrap !important; + } + + .sm\:place-items-start { + place-items: start !important; + } + + .sm\:place-items-end { + place-items: end !important; + } + + .sm\:place-items-center { + place-items: center !important; + } + + .sm\:place-items-stretch { + place-items: stretch !important; + } + + .sm\:place-content-center { + place-content: center !important; + } + + .sm\:place-content-start { + place-content: start !important; + } + + .sm\:place-content-end { + place-content: end !important; + } + + .sm\:place-content-between { + place-content: space-between !important; + } + + .sm\:place-content-around { + place-content: space-around !important; + } + + .sm\:place-content-evenly { + place-content: space-evenly !important; + } + + .sm\:place-content-stretch { + place-content: stretch !important; + } + + .sm\:place-self-auto { + place-self: auto !important; + } + + .sm\:place-self-start { + place-self: start !important; + } + + .sm\:place-self-end { + place-self: end !important; + } + + .sm\:place-self-center { + place-self: center !important; + } + + .sm\:place-self-stretch { + place-self: stretch !important; + } + + .sm\:items-start { + align-items: flex-start !important; + } + + .sm\:items-end { + align-items: flex-end !important; + } + + .sm\:items-center { + align-items: center !important; + } + + .sm\:items-baseline { + align-items: baseline !important; + } + + .sm\:items-stretch { + align-items: stretch !important; + } + + .sm\:content-center { + align-content: center !important; + } + + .sm\:content-start { + align-content: flex-start !important; + } + + .sm\:content-end { + align-content: flex-end !important; + } + + .sm\:content-between { + align-content: space-between !important; + } + + .sm\:content-around { + align-content: space-around !important; + } + + .sm\:content-evenly { + align-content: space-evenly !important; + } + + .sm\:self-auto { + align-self: auto !important; + } + + .sm\:self-start { + align-self: flex-start !important; + } + + .sm\:self-end { + align-self: flex-end !important; + } + + .sm\:self-center { + align-self: center !important; + } + + .sm\:self-stretch { + align-self: stretch !important; + } + + .sm\:justify-items-start { + justify-items: start !important; + } + + .sm\:justify-items-end { + justify-items: end !important; + } + + .sm\:justify-items-center { + justify-items: center !important; + } + + .sm\:justify-items-stretch { + justify-items: stretch !important; + } + + .sm\:justify-start { + justify-content: flex-start !important; + } + + .sm\:justify-end { + justify-content: flex-end !important; + } + + .sm\:justify-center { + justify-content: center !important; + } + + .sm\:justify-between { + justify-content: space-between !important; + } + + .sm\:justify-around { + justify-content: space-around !important; + } + + .sm\:justify-evenly { + justify-content: space-evenly !important; + } + + .sm\:justify-self-auto { + justify-self: auto !important; + } + + .sm\:justify-self-start { + justify-self: start !important; + } + + .sm\:justify-self-end { + justify-self: end !important; + } + + .sm\:justify-self-center { + justify-self: center !important; + } + + .sm\:justify-self-stretch { + justify-self: stretch !important; + } + + .sm\:flex-1 { + flex: 1 1 0% !important; + } + + .sm\:flex-auto { + flex: 1 1 auto !important; + } + + .sm\:flex-initial { + flex: 0 1 auto !important; + } + + .sm\:flex-none { + flex: none !important; + } + + .sm\:flex-grow-0 { + flex-grow: 0 !important; + } + + .sm\:flex-grow { + flex-grow: 1 !important; + } + + .sm\:flex-shrink-0 { + flex-shrink: 0 !important; + } + + .sm\:flex-shrink { + flex-shrink: 1 !important; + } + + .sm\:order-1 { + order: 1 !important; + } + + .sm\:order-2 { + order: 2 !important; + } + + .sm\:order-3 { + order: 3 !important; + } + + .sm\:order-4 { + order: 4 !important; + } + + .sm\:order-5 { + order: 5 !important; + } + + .sm\:order-6 { + order: 6 !important; + } + + .sm\:order-7 { + order: 7 !important; + } + + .sm\:order-8 { + order: 8 !important; + } + + .sm\:order-9 { + order: 9 !important; + } + + .sm\:order-10 { + order: 10 !important; + } + + .sm\:order-11 { + order: 11 !important; + } + + .sm\:order-12 { + order: 12 !important; + } + + .sm\:order-first { + order: -9999 !important; + } + + .sm\:order-last { + order: 9999 !important; + } + + .sm\:order-none { + order: 0 !important; + } + + .sm\:float-right { + float: right !important; + } + + .sm\:float-left { + float: left !important; + } + + .sm\:float-none { + float: none !important; + } + + .sm\:clear-left { + clear: left !important; + } + + .sm\:clear-right { + clear: right !important; + } + + .sm\:clear-both { + clear: both !important; + } + + .sm\:clear-none { + clear: none !important; + } + + .sm\:font-sans { + font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important; + } + + .sm\:font-serif { + font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif !important; + } + + .sm\:font-mono { + font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important; + } + + .sm\:font-thin { + font-weight: 100 !important; + } + + .sm\:font-extralight { + font-weight: 200 !important; + } + + .sm\:font-light { + font-weight: 300 !important; + } + + .sm\:font-normal { + font-weight: 400 !important; + } + + .sm\:font-medium { + font-weight: 500 !important; + } + + .sm\:font-semibold { + font-weight: 600 !important; + } + + .sm\:font-bold { + font-weight: 700 !important; + } + + .sm\:font-extrabold { + font-weight: 800 !important; + } + + .sm\:font-black { + font-weight: 900 !important; + } + + .sm\:h-0 { + height: 0px !important; + } + + .sm\:h-1 { + height: 0.25rem !important; + } + + .sm\:h-2 { + height: 0.5rem !important; + } + + .sm\:h-3 { + height: 0.75rem !important; + } + + .sm\:h-4 { + height: 1rem !important; + } + + .sm\:h-5 { + height: 1.25rem !important; + } + + .sm\:h-6 { + height: 1.5rem !important; + } + + .sm\:h-7 { + height: 1.75rem !important; + } + + .sm\:h-8 { + height: 2rem !important; + } + + .sm\:h-9 { + height: 2.25rem !important; + } + + .sm\:h-10 { + height: 2.5rem !important; + } + + .sm\:h-11 { + height: 2.75rem !important; + } + + .sm\:h-12 { + height: 3rem !important; + } + + .sm\:h-14 { + height: 3.5rem !important; + } + + .sm\:h-16 { + height: 4rem !important; + } + + .sm\:h-20 { + height: 5rem !important; + } + + .sm\:h-24 { + height: 6rem !important; + } + + .sm\:h-28 { + height: 7rem !important; + } + + .sm\:h-32 { + height: 8rem !important; + } + + .sm\:h-36 { + height: 9rem !important; + } + + .sm\:h-40 { + height: 10rem !important; + } + + .sm\:h-44 { + height: 11rem !important; + } + + .sm\:h-48 { + height: 12rem !important; + } + + .sm\:h-52 { + height: 13rem !important; + } + + .sm\:h-56 { + height: 14rem !important; + } + + .sm\:h-60 { + height: 15rem !important; + } + + .sm\:h-64 { + height: 16rem !important; + } + + .sm\:h-72 { + height: 18rem !important; + } + + .sm\:h-80 { + height: 20rem !important; + } + + .sm\:h-96 { + height: 24rem !important; + } + + .sm\:h-auto { + height: auto !important; + } + + .sm\:h-px { + height: 1px !important; + } + + .sm\:h-0\.5 { + height: 0.125rem !important; + } + + .sm\:h-1\.5 { + height: 0.375rem !important; + } + + .sm\:h-2\.5 { + height: 0.625rem !important; + } + + .sm\:h-3\.5 { + height: 0.875rem !important; + } + + .sm\:h-1\/2 { + height: 50% !important; + } + + .sm\:h-1\/3 { + height: 33.333333% !important; + } + + .sm\:h-2\/3 { + height: 66.666667% !important; + } + + .sm\:h-1\/4 { + height: 25% !important; + } + + .sm\:h-2\/4 { + height: 50% !important; + } + + .sm\:h-3\/4 { + height: 75% !important; + } + + .sm\:h-1\/5 { + height: 20% !important; + } + + .sm\:h-2\/5 { + height: 40% !important; + } + + .sm\:h-3\/5 { + height: 60% !important; + } + + .sm\:h-4\/5 { + height: 80% !important; + } + + .sm\:h-1\/6 { + height: 16.666667% !important; + } + + .sm\:h-2\/6 { + height: 33.333333% !important; + } + + .sm\:h-3\/6 { + height: 50% !important; + } + + .sm\:h-4\/6 { + height: 66.666667% !important; + } + + .sm\:h-5\/6 { + height: 83.333333% !important; + } + + .sm\:h-full { + height: 100% !important; + } + + .sm\:h-screen { + height: 100vh !important; + } + + .sm\:text-xs { + font-size: 0.75rem !important; + line-height: 1rem !important; + } + + .sm\:text-sm { + font-size: 0.875rem !important; + line-height: 1.25rem !important; + } + + .sm\:text-base { + font-size: 1rem !important; + line-height: 1.5rem !important; + } + + .sm\:text-lg { + font-size: 1.125rem !important; + line-height: 1.75rem !important; + } + + .sm\:text-xl { + font-size: 1.25rem !important; + line-height: 1.75rem !important; + } + + .sm\:text-2xl { + font-size: 1.5rem !important; + line-height: 2rem !important; + } + + .sm\:text-3xl { + font-size: 1.875rem !important; + line-height: 2.25rem !important; + } + + .sm\:text-4xl { + font-size: 2.25rem !important; + line-height: 2.5rem !important; + } + + .sm\:text-5xl { + font-size: 3rem !important; + line-height: 1 !important; + } + + .sm\:text-6xl { + font-size: 3.75rem !important; + line-height: 1 !important; + } + + .sm\:text-7xl { + font-size: 4.5rem !important; + line-height: 1 !important; + } + + .sm\:text-8xl { + font-size: 6rem !important; + line-height: 1 !important; + } + + .sm\:text-9xl { + font-size: 8rem !important; + line-height: 1 !important; + } + + .sm\:leading-3 { + line-height: .75rem !important; + } + + .sm\:leading-4 { + line-height: 1rem !important; + } + + .sm\:leading-5 { + line-height: 1.25rem !important; + } + + .sm\:leading-6 { + line-height: 1.5rem !important; + } + + .sm\:leading-7 { + line-height: 1.75rem !important; + } + + .sm\:leading-8 { + line-height: 2rem !important; + } + + .sm\:leading-9 { + line-height: 2.25rem !important; + } + + .sm\:leading-10 { + line-height: 2.5rem !important; + } + + .sm\:leading-none { + line-height: 1 !important; + } + + .sm\:leading-tight { + line-height: 1.25 !important; + } + + .sm\:leading-snug { + line-height: 1.375 !important; + } + + .sm\:leading-normal { + line-height: 1.5 !important; + } + + .sm\:leading-relaxed { + line-height: 1.625 !important; + } + + .sm\:leading-loose { + line-height: 2 !important; + } + + .sm\:list-inside { + list-style-position: inside !important; + } + + .sm\:list-outside { + list-style-position: outside !important; + } + + .sm\:list-none { + list-style-type: none !important; + } + + .sm\:list-disc { + list-style-type: disc !important; + } + + .sm\:list-decimal { + list-style-type: decimal !important; + } + + .sm\:m-0 { + margin: 0px !important; + } + + .sm\:m-1 { + margin: 0.25rem !important; + } + + .sm\:m-2 { + margin: 0.5rem !important; + } + + .sm\:m-3 { + margin: 0.75rem !important; + } + + .sm\:m-4 { + margin: 1rem !important; + } + + .sm\:m-5 { + margin: 1.25rem !important; + } + + .sm\:m-6 { + margin: 1.5rem !important; + } + + .sm\:m-7 { + margin: 1.75rem !important; + } + + .sm\:m-8 { + margin: 2rem !important; + } + + .sm\:m-9 { + margin: 2.25rem !important; + } + + .sm\:m-10 { + margin: 2.5rem !important; + } + + .sm\:m-11 { + margin: 2.75rem !important; + } + + .sm\:m-12 { + margin: 3rem !important; + } + + .sm\:m-14 { + margin: 3.5rem !important; + } + + .sm\:m-16 { + margin: 4rem !important; + } + + .sm\:m-20 { + margin: 5rem !important; + } + + .sm\:m-24 { + margin: 6rem !important; + } + + .sm\:m-28 { + margin: 7rem !important; + } + + .sm\:m-32 { + margin: 8rem !important; + } + + .sm\:m-36 { + margin: 9rem !important; + } + + .sm\:m-40 { + margin: 10rem !important; + } + + .sm\:m-44 { + margin: 11rem !important; + } + + .sm\:m-48 { + margin: 12rem !important; + } + + .sm\:m-52 { + margin: 13rem !important; + } + + .sm\:m-56 { + margin: 14rem !important; + } + + .sm\:m-60 { + margin: 15rem !important; + } + + .sm\:m-64 { + margin: 16rem !important; + } + + .sm\:m-72 { + margin: 18rem !important; + } + + .sm\:m-80 { + margin: 20rem !important; + } + + .sm\:m-96 { + margin: 24rem !important; + } + + .sm\:m-auto { + margin: auto !important; + } + + .sm\:m-px { + margin: 1px !important; + } + + .sm\:m-0\.5 { + margin: 0.125rem !important; + } + + .sm\:m-1\.5 { + margin: 0.375rem !important; + } + + .sm\:m-2\.5 { + margin: 0.625rem !important; + } + + .sm\:m-3\.5 { + margin: 0.875rem !important; + } + + .sm\:-m-0 { + margin: 0px !important; + } + + .sm\:-m-1 { + margin: -0.25rem !important; + } + + .sm\:-m-2 { + margin: -0.5rem !important; + } + + .sm\:-m-3 { + margin: -0.75rem !important; + } + + .sm\:-m-4 { + margin: -1rem !important; + } + + .sm\:-m-5 { + margin: -1.25rem !important; + } + + .sm\:-m-6 { + margin: -1.5rem !important; + } + + .sm\:-m-7 { + margin: -1.75rem !important; + } + + .sm\:-m-8 { + margin: -2rem !important; + } + + .sm\:-m-9 { + margin: -2.25rem !important; + } + + .sm\:-m-10 { + margin: -2.5rem !important; + } + + .sm\:-m-11 { + margin: -2.75rem !important; + } + + .sm\:-m-12 { + margin: -3rem !important; + } + + .sm\:-m-14 { + margin: -3.5rem !important; + } + + .sm\:-m-16 { + margin: -4rem !important; + } + + .sm\:-m-20 { + margin: -5rem !important; + } + + .sm\:-m-24 { + margin: -6rem !important; + } + + .sm\:-m-28 { + margin: -7rem !important; + } + + .sm\:-m-32 { + margin: -8rem !important; + } + + .sm\:-m-36 { + margin: -9rem !important; + } + + .sm\:-m-40 { + margin: -10rem !important; + } + + .sm\:-m-44 { + margin: -11rem !important; + } + + .sm\:-m-48 { + margin: -12rem !important; + } + + .sm\:-m-52 { + margin: -13rem !important; + } + + .sm\:-m-56 { + margin: -14rem !important; + } + + .sm\:-m-60 { + margin: -15rem !important; + } + + .sm\:-m-64 { + margin: -16rem !important; + } + + .sm\:-m-72 { + margin: -18rem !important; + } + + .sm\:-m-80 { + margin: -20rem !important; + } + + .sm\:-m-96 { + margin: -24rem !important; + } + + .sm\:-m-px { + margin: -1px !important; + } + + .sm\:-m-0\.5 { + margin: -0.125rem !important; + } + + .sm\:-m-1\.5 { + margin: -0.375rem !important; + } + + .sm\:-m-2\.5 { + margin: -0.625rem !important; + } + + .sm\:-m-3\.5 { + margin: -0.875rem !important; + } + + .sm\:my-0 { + margin-top: 0px !important; + margin-bottom: 0px !important; + } + + .sm\:mx-0 { + margin-left: 0px !important; + margin-right: 0px !important; + } + + .sm\:my-1 { + margin-top: 0.25rem !important; + margin-bottom: 0.25rem !important; + } + + .sm\:mx-1 { + margin-left: 0.25rem !important; + margin-right: 0.25rem !important; + } + + .sm\:my-2 { + margin-top: 0.5rem !important; + margin-bottom: 0.5rem !important; + } + + .sm\:mx-2 { + margin-left: 0.5rem !important; + margin-right: 0.5rem !important; + } + + .sm\:my-3 { + margin-top: 0.75rem !important; + margin-bottom: 0.75rem !important; + } + + .sm\:mx-3 { + margin-left: 0.75rem !important; + margin-right: 0.75rem !important; + } + + .sm\:my-4 { + margin-top: 1rem !important; + margin-bottom: 1rem !important; + } + + .sm\:mx-4 { + margin-left: 1rem !important; + margin-right: 1rem !important; + } + + .sm\:my-5 { + margin-top: 1.25rem !important; + margin-bottom: 1.25rem !important; + } + + .sm\:mx-5 { + margin-left: 1.25rem !important; + margin-right: 1.25rem !important; + } + + .sm\:my-6 { + margin-top: 1.5rem !important; + margin-bottom: 1.5rem !important; + } + + .sm\:mx-6 { + margin-left: 1.5rem !important; + margin-right: 1.5rem !important; + } + + .sm\:my-7 { + margin-top: 1.75rem !important; + margin-bottom: 1.75rem !important; + } + + .sm\:mx-7 { + margin-left: 1.75rem !important; + margin-right: 1.75rem !important; + } + + .sm\:my-8 { + margin-top: 2rem !important; + margin-bottom: 2rem !important; + } + + .sm\:mx-8 { + margin-left: 2rem !important; + margin-right: 2rem !important; + } + + .sm\:my-9 { + margin-top: 2.25rem !important; + margin-bottom: 2.25rem !important; + } + + .sm\:mx-9 { + margin-left: 2.25rem !important; + margin-right: 2.25rem !important; + } + + .sm\:my-10 { + margin-top: 2.5rem !important; + margin-bottom: 2.5rem !important; + } + + .sm\:mx-10 { + margin-left: 2.5rem !important; + margin-right: 2.5rem !important; + } + + .sm\:my-11 { + margin-top: 2.75rem !important; + margin-bottom: 2.75rem !important; + } + + .sm\:mx-11 { + margin-left: 2.75rem !important; + margin-right: 2.75rem !important; + } + + .sm\:my-12 { + margin-top: 3rem !important; + margin-bottom: 3rem !important; + } + + .sm\:mx-12 { + margin-left: 3rem !important; + margin-right: 3rem !important; + } + + .sm\:my-14 { + margin-top: 3.5rem !important; + margin-bottom: 3.5rem !important; + } + + .sm\:mx-14 { + margin-left: 3.5rem !important; + margin-right: 3.5rem !important; + } + + .sm\:my-16 { + margin-top: 4rem !important; + margin-bottom: 4rem !important; + } + + .sm\:mx-16 { + margin-left: 4rem !important; + margin-right: 4rem !important; + } + + .sm\:my-20 { + margin-top: 5rem !important; + margin-bottom: 5rem !important; + } + + .sm\:mx-20 { + margin-left: 5rem !important; + margin-right: 5rem !important; + } + + .sm\:my-24 { + margin-top: 6rem !important; + margin-bottom: 6rem !important; + } + + .sm\:mx-24 { + margin-left: 6rem !important; + margin-right: 6rem !important; + } + + .sm\:my-28 { + margin-top: 7rem !important; + margin-bottom: 7rem !important; + } + + .sm\:mx-28 { + margin-left: 7rem !important; + margin-right: 7rem !important; + } + + .sm\:my-32 { + margin-top: 8rem !important; + margin-bottom: 8rem !important; + } + + .sm\:mx-32 { + margin-left: 8rem !important; + margin-right: 8rem !important; + } + + .sm\:my-36 { + margin-top: 9rem !important; + margin-bottom: 9rem !important; + } + + .sm\:mx-36 { + margin-left: 9rem !important; + margin-right: 9rem !important; + } + + .sm\:my-40 { + margin-top: 10rem !important; + margin-bottom: 10rem !important; + } + + .sm\:mx-40 { + margin-left: 10rem !important; + margin-right: 10rem !important; + } + + .sm\:my-44 { + margin-top: 11rem !important; + margin-bottom: 11rem !important; + } + + .sm\:mx-44 { + margin-left: 11rem !important; + margin-right: 11rem !important; + } + + .sm\:my-48 { + margin-top: 12rem !important; + margin-bottom: 12rem !important; + } + + .sm\:mx-48 { + margin-left: 12rem !important; + margin-right: 12rem !important; + } + + .sm\:my-52 { + margin-top: 13rem !important; + margin-bottom: 13rem !important; + } + + .sm\:mx-52 { + margin-left: 13rem !important; + margin-right: 13rem !important; + } + + .sm\:my-56 { + margin-top: 14rem !important; + margin-bottom: 14rem !important; + } + + .sm\:mx-56 { + margin-left: 14rem !important; + margin-right: 14rem !important; + } + + .sm\:my-60 { + margin-top: 15rem !important; + margin-bottom: 15rem !important; + } + + .sm\:mx-60 { + margin-left: 15rem !important; + margin-right: 15rem !important; + } + + .sm\:my-64 { + margin-top: 16rem !important; + margin-bottom: 16rem !important; + } + + .sm\:mx-64 { + margin-left: 16rem !important; + margin-right: 16rem !important; + } + + .sm\:my-72 { + margin-top: 18rem !important; + margin-bottom: 18rem !important; + } + + .sm\:mx-72 { + margin-left: 18rem !important; + margin-right: 18rem !important; + } + + .sm\:my-80 { + margin-top: 20rem !important; + margin-bottom: 20rem !important; + } + + .sm\:mx-80 { + margin-left: 20rem !important; + margin-right: 20rem !important; + } + + .sm\:my-96 { + margin-top: 24rem !important; + margin-bottom: 24rem !important; + } + + .sm\:mx-96 { + margin-left: 24rem !important; + margin-right: 24rem !important; + } + + .sm\:my-auto { + margin-top: auto !important; + margin-bottom: auto !important; + } + + .sm\:mx-auto { + margin-left: auto !important; + margin-right: auto !important; + } + + .sm\:my-px { + margin-top: 1px !important; + margin-bottom: 1px !important; + } + + .sm\:mx-px { + margin-left: 1px !important; + margin-right: 1px !important; + } + + .sm\:my-0\.5 { + margin-top: 0.125rem !important; + margin-bottom: 0.125rem !important; + } + + .sm\:mx-0\.5 { + margin-left: 0.125rem !important; + margin-right: 0.125rem !important; + } + + .sm\:my-1\.5 { + margin-top: 0.375rem !important; + margin-bottom: 0.375rem !important; + } + + .sm\:mx-1\.5 { + margin-left: 0.375rem !important; + margin-right: 0.375rem !important; + } + + .sm\:my-2\.5 { + margin-top: 0.625rem !important; + margin-bottom: 0.625rem !important; + } + + .sm\:mx-2\.5 { + margin-left: 0.625rem !important; + margin-right: 0.625rem !important; + } + + .sm\:my-3\.5 { + margin-top: 0.875rem !important; + margin-bottom: 0.875rem !important; + } + + .sm\:mx-3\.5 { + margin-left: 0.875rem !important; + margin-right: 0.875rem !important; + } + + .sm\:-my-0 { + margin-top: 0px !important; + margin-bottom: 0px !important; + } + + .sm\:-mx-0 { + margin-left: 0px !important; + margin-right: 0px !important; + } + + .sm\:-my-1 { + margin-top: -0.25rem !important; + margin-bottom: -0.25rem !important; + } + + .sm\:-mx-1 { + margin-left: -0.25rem !important; + margin-right: -0.25rem !important; + } + + .sm\:-my-2 { + margin-top: -0.5rem !important; + margin-bottom: -0.5rem !important; + } + + .sm\:-mx-2 { + margin-left: -0.5rem !important; + margin-right: -0.5rem !important; + } + + .sm\:-my-3 { + margin-top: -0.75rem !important; + margin-bottom: -0.75rem !important; + } + + .sm\:-mx-3 { + margin-left: -0.75rem !important; + margin-right: -0.75rem !important; + } + + .sm\:-my-4 { + margin-top: -1rem !important; + margin-bottom: -1rem !important; + } + + .sm\:-mx-4 { + margin-left: -1rem !important; + margin-right: -1rem !important; + } + + .sm\:-my-5 { + margin-top: -1.25rem !important; + margin-bottom: -1.25rem !important; + } + + .sm\:-mx-5 { + margin-left: -1.25rem !important; + margin-right: -1.25rem !important; + } + + .sm\:-my-6 { + margin-top: -1.5rem !important; + margin-bottom: -1.5rem !important; + } + + .sm\:-mx-6 { + margin-left: -1.5rem !important; + margin-right: -1.5rem !important; + } + + .sm\:-my-7 { + margin-top: -1.75rem !important; + margin-bottom: -1.75rem !important; + } + + .sm\:-mx-7 { + margin-left: -1.75rem !important; + margin-right: -1.75rem !important; + } + + .sm\:-my-8 { + margin-top: -2rem !important; + margin-bottom: -2rem !important; + } + + .sm\:-mx-8 { + margin-left: -2rem !important; + margin-right: -2rem !important; + } + + .sm\:-my-9 { + margin-top: -2.25rem !important; + margin-bottom: -2.25rem !important; + } + + .sm\:-mx-9 { + margin-left: -2.25rem !important; + margin-right: -2.25rem !important; + } + + .sm\:-my-10 { + margin-top: -2.5rem !important; + margin-bottom: -2.5rem !important; + } + + .sm\:-mx-10 { + margin-left: -2.5rem !important; + margin-right: -2.5rem !important; + } + + .sm\:-my-11 { + margin-top: -2.75rem !important; + margin-bottom: -2.75rem !important; + } + + .sm\:-mx-11 { + margin-left: -2.75rem !important; + margin-right: -2.75rem !important; + } + + .sm\:-my-12 { + margin-top: -3rem !important; + margin-bottom: -3rem !important; + } + + .sm\:-mx-12 { + margin-left: -3rem !important; + margin-right: -3rem !important; + } + + .sm\:-my-14 { + margin-top: -3.5rem !important; + margin-bottom: -3.5rem !important; + } + + .sm\:-mx-14 { + margin-left: -3.5rem !important; + margin-right: -3.5rem !important; + } + + .sm\:-my-16 { + margin-top: -4rem !important; + margin-bottom: -4rem !important; + } + + .sm\:-mx-16 { + margin-left: -4rem !important; + margin-right: -4rem !important; + } + + .sm\:-my-20 { + margin-top: -5rem !important; + margin-bottom: -5rem !important; + } + + .sm\:-mx-20 { + margin-left: -5rem !important; + margin-right: -5rem !important; + } + + .sm\:-my-24 { + margin-top: -6rem !important; + margin-bottom: -6rem !important; + } + + .sm\:-mx-24 { + margin-left: -6rem !important; + margin-right: -6rem !important; + } + + .sm\:-my-28 { + margin-top: -7rem !important; + margin-bottom: -7rem !important; + } + + .sm\:-mx-28 { + margin-left: -7rem !important; + margin-right: -7rem !important; + } + + .sm\:-my-32 { + margin-top: -8rem !important; + margin-bottom: -8rem !important; + } + + .sm\:-mx-32 { + margin-left: -8rem !important; + margin-right: -8rem !important; + } + + .sm\:-my-36 { + margin-top: -9rem !important; + margin-bottom: -9rem !important; + } + + .sm\:-mx-36 { + margin-left: -9rem !important; + margin-right: -9rem !important; + } + + .sm\:-my-40 { + margin-top: -10rem !important; + margin-bottom: -10rem !important; + } + + .sm\:-mx-40 { + margin-left: -10rem !important; + margin-right: -10rem !important; + } + + .sm\:-my-44 { + margin-top: -11rem !important; + margin-bottom: -11rem !important; + } + + .sm\:-mx-44 { + margin-left: -11rem !important; + margin-right: -11rem !important; + } + + .sm\:-my-48 { + margin-top: -12rem !important; + margin-bottom: -12rem !important; + } + + .sm\:-mx-48 { + margin-left: -12rem !important; + margin-right: -12rem !important; + } + + .sm\:-my-52 { + margin-top: -13rem !important; + margin-bottom: -13rem !important; + } + + .sm\:-mx-52 { + margin-left: -13rem !important; + margin-right: -13rem !important; + } + + .sm\:-my-56 { + margin-top: -14rem !important; + margin-bottom: -14rem !important; + } + + .sm\:-mx-56 { + margin-left: -14rem !important; + margin-right: -14rem !important; + } + + .sm\:-my-60 { + margin-top: -15rem !important; + margin-bottom: -15rem !important; + } + + .sm\:-mx-60 { + margin-left: -15rem !important; + margin-right: -15rem !important; + } + + .sm\:-my-64 { + margin-top: -16rem !important; + margin-bottom: -16rem !important; + } + + .sm\:-mx-64 { + margin-left: -16rem !important; + margin-right: -16rem !important; + } + + .sm\:-my-72 { + margin-top: -18rem !important; + margin-bottom: -18rem !important; + } + + .sm\:-mx-72 { + margin-left: -18rem !important; + margin-right: -18rem !important; + } + + .sm\:-my-80 { + margin-top: -20rem !important; + margin-bottom: -20rem !important; + } + + .sm\:-mx-80 { + margin-left: -20rem !important; + margin-right: -20rem !important; + } + + .sm\:-my-96 { + margin-top: -24rem !important; + margin-bottom: -24rem !important; + } + + .sm\:-mx-96 { + margin-left: -24rem !important; + margin-right: -24rem !important; + } + + .sm\:-my-px { + margin-top: -1px !important; + margin-bottom: -1px !important; + } + + .sm\:-mx-px { + margin-left: -1px !important; + margin-right: -1px !important; + } + + .sm\:-my-0\.5 { + margin-top: -0.125rem !important; + margin-bottom: -0.125rem !important; + } + + .sm\:-mx-0\.5 { + margin-left: -0.125rem !important; + margin-right: -0.125rem !important; + } + + .sm\:-my-1\.5 { + margin-top: -0.375rem !important; + margin-bottom: -0.375rem !important; + } + + .sm\:-mx-1\.5 { + margin-left: -0.375rem !important; + margin-right: -0.375rem !important; + } + + .sm\:-my-2\.5 { + margin-top: -0.625rem !important; + margin-bottom: -0.625rem !important; + } + + .sm\:-mx-2\.5 { + margin-left: -0.625rem !important; + margin-right: -0.625rem !important; + } + + .sm\:-my-3\.5 { + margin-top: -0.875rem !important; + margin-bottom: -0.875rem !important; + } + + .sm\:-mx-3\.5 { + margin-left: -0.875rem !important; + margin-right: -0.875rem !important; + } + + .sm\:mt-0 { + margin-top: 0px !important; + } + + .sm\:mr-0 { + margin-right: 0px !important; + } + + .sm\:mb-0 { + margin-bottom: 0px !important; + } + + .sm\:ml-0 { + margin-left: 0px !important; + } + + .sm\:mt-1 { + margin-top: 0.25rem !important; + } + + .sm\:mr-1 { + margin-right: 0.25rem !important; + } + + .sm\:mb-1 { + margin-bottom: 0.25rem !important; + } + + .sm\:ml-1 { + margin-left: 0.25rem !important; + } + + .sm\:mt-2 { + margin-top: 0.5rem !important; + } + + .sm\:mr-2 { + margin-right: 0.5rem !important; + } + + .sm\:mb-2 { + margin-bottom: 0.5rem !important; + } + + .sm\:ml-2 { + margin-left: 0.5rem !important; + } + + .sm\:mt-3 { + margin-top: 0.75rem !important; + } + + .sm\:mr-3 { + margin-right: 0.75rem !important; + } + + .sm\:mb-3 { + margin-bottom: 0.75rem !important; + } + + .sm\:ml-3 { + margin-left: 0.75rem !important; + } + + .sm\:mt-4 { + margin-top: 1rem !important; + } + + .sm\:mr-4 { + margin-right: 1rem !important; + } + + .sm\:mb-4 { + margin-bottom: 1rem !important; + } + + .sm\:ml-4 { + margin-left: 1rem !important; + } + + .sm\:mt-5 { + margin-top: 1.25rem !important; + } + + .sm\:mr-5 { + margin-right: 1.25rem !important; + } + + .sm\:mb-5 { + margin-bottom: 1.25rem !important; + } + + .sm\:ml-5 { + margin-left: 1.25rem !important; + } + + .sm\:mt-6 { + margin-top: 1.5rem !important; + } + + .sm\:mr-6 { + margin-right: 1.5rem !important; + } + + .sm\:mb-6 { + margin-bottom: 1.5rem !important; + } + + .sm\:ml-6 { + margin-left: 1.5rem !important; + } + + .sm\:mt-7 { + margin-top: 1.75rem !important; + } + + .sm\:mr-7 { + margin-right: 1.75rem !important; + } + + .sm\:mb-7 { + margin-bottom: 1.75rem !important; + } + + .sm\:ml-7 { + margin-left: 1.75rem !important; + } + + .sm\:mt-8 { + margin-top: 2rem !important; + } + + .sm\:mr-8 { + margin-right: 2rem !important; + } + + .sm\:mb-8 { + margin-bottom: 2rem !important; + } + + .sm\:ml-8 { + margin-left: 2rem !important; + } + + .sm\:mt-9 { + margin-top: 2.25rem !important; + } + + .sm\:mr-9 { + margin-right: 2.25rem !important; + } + + .sm\:mb-9 { + margin-bottom: 2.25rem !important; + } + + .sm\:ml-9 { + margin-left: 2.25rem !important; + } + + .sm\:mt-10 { + margin-top: 2.5rem !important; + } + + .sm\:mr-10 { + margin-right: 2.5rem !important; + } + + .sm\:mb-10 { + margin-bottom: 2.5rem !important; + } + + .sm\:ml-10 { + margin-left: 2.5rem !important; + } + + .sm\:mt-11 { + margin-top: 2.75rem !important; + } + + .sm\:mr-11 { + margin-right: 2.75rem !important; + } + + .sm\:mb-11 { + margin-bottom: 2.75rem !important; + } + + .sm\:ml-11 { + margin-left: 2.75rem !important; + } + + .sm\:mt-12 { + margin-top: 3rem !important; + } + + .sm\:mr-12 { + margin-right: 3rem !important; + } + + .sm\:mb-12 { + margin-bottom: 3rem !important; + } + + .sm\:ml-12 { + margin-left: 3rem !important; + } + + .sm\:mt-14 { + margin-top: 3.5rem !important; + } + + .sm\:mr-14 { + margin-right: 3.5rem !important; + } + + .sm\:mb-14 { + margin-bottom: 3.5rem !important; + } + + .sm\:ml-14 { + margin-left: 3.5rem !important; + } + + .sm\:mt-16 { + margin-top: 4rem !important; + } + + .sm\:mr-16 { + margin-right: 4rem !important; + } + + .sm\:mb-16 { + margin-bottom: 4rem !important; + } + + .sm\:ml-16 { + margin-left: 4rem !important; + } + + .sm\:mt-20 { + margin-top: 5rem !important; + } + + .sm\:mr-20 { + margin-right: 5rem !important; + } + + .sm\:mb-20 { + margin-bottom: 5rem !important; + } + + .sm\:ml-20 { + margin-left: 5rem !important; + } + + .sm\:mt-24 { + margin-top: 6rem !important; + } + + .sm\:mr-24 { + margin-right: 6rem !important; + } + + .sm\:mb-24 { + margin-bottom: 6rem !important; + } + + .sm\:ml-24 { + margin-left: 6rem !important; + } + + .sm\:mt-28 { + margin-top: 7rem !important; + } + + .sm\:mr-28 { + margin-right: 7rem !important; + } + + .sm\:mb-28 { + margin-bottom: 7rem !important; + } + + .sm\:ml-28 { + margin-left: 7rem !important; + } + + .sm\:mt-32 { + margin-top: 8rem !important; + } + + .sm\:mr-32 { + margin-right: 8rem !important; + } + + .sm\:mb-32 { + margin-bottom: 8rem !important; + } + + .sm\:ml-32 { + margin-left: 8rem !important; + } + + .sm\:mt-36 { + margin-top: 9rem !important; + } + + .sm\:mr-36 { + margin-right: 9rem !important; + } + + .sm\:mb-36 { + margin-bottom: 9rem !important; + } + + .sm\:ml-36 { + margin-left: 9rem !important; + } + + .sm\:mt-40 { + margin-top: 10rem !important; + } + + .sm\:mr-40 { + margin-right: 10rem !important; + } + + .sm\:mb-40 { + margin-bottom: 10rem !important; + } + + .sm\:ml-40 { + margin-left: 10rem !important; + } + + .sm\:mt-44 { + margin-top: 11rem !important; + } + + .sm\:mr-44 { + margin-right: 11rem !important; + } + + .sm\:mb-44 { + margin-bottom: 11rem !important; + } + + .sm\:ml-44 { + margin-left: 11rem !important; + } + + .sm\:mt-48 { + margin-top: 12rem !important; + } + + .sm\:mr-48 { + margin-right: 12rem !important; + } + + .sm\:mb-48 { + margin-bottom: 12rem !important; + } + + .sm\:ml-48 { + margin-left: 12rem !important; + } + + .sm\:mt-52 { + margin-top: 13rem !important; + } + + .sm\:mr-52 { + margin-right: 13rem !important; + } + + .sm\:mb-52 { + margin-bottom: 13rem !important; + } + + .sm\:ml-52 { + margin-left: 13rem !important; + } + + .sm\:mt-56 { + margin-top: 14rem !important; + } + + .sm\:mr-56 { + margin-right: 14rem !important; + } + + .sm\:mb-56 { + margin-bottom: 14rem !important; + } + + .sm\:ml-56 { + margin-left: 14rem !important; + } + + .sm\:mt-60 { + margin-top: 15rem !important; + } + + .sm\:mr-60 { + margin-right: 15rem !important; + } + + .sm\:mb-60 { + margin-bottom: 15rem !important; + } + + .sm\:ml-60 { + margin-left: 15rem !important; + } + + .sm\:mt-64 { + margin-top: 16rem !important; + } + + .sm\:mr-64 { + margin-right: 16rem !important; + } + + .sm\:mb-64 { + margin-bottom: 16rem !important; + } + + .sm\:ml-64 { + margin-left: 16rem !important; + } + + .sm\:mt-72 { + margin-top: 18rem !important; + } + + .sm\:mr-72 { + margin-right: 18rem !important; + } + + .sm\:mb-72 { + margin-bottom: 18rem !important; + } + + .sm\:ml-72 { + margin-left: 18rem !important; + } + + .sm\:mt-80 { + margin-top: 20rem !important; + } + + .sm\:mr-80 { + margin-right: 20rem !important; + } + + .sm\:mb-80 { + margin-bottom: 20rem !important; + } + + .sm\:ml-80 { + margin-left: 20rem !important; + } + + .sm\:mt-96 { + margin-top: 24rem !important; + } + + .sm\:mr-96 { + margin-right: 24rem !important; + } + + .sm\:mb-96 { + margin-bottom: 24rem !important; + } + + .sm\:ml-96 { + margin-left: 24rem !important; + } + + .sm\:mt-auto { + margin-top: auto !important; + } + + .sm\:mr-auto { + margin-right: auto !important; + } + + .sm\:mb-auto { + margin-bottom: auto !important; + } + + .sm\:ml-auto { + margin-left: auto !important; + } + + .sm\:mt-px { + margin-top: 1px !important; + } + + .sm\:mr-px { + margin-right: 1px !important; + } + + .sm\:mb-px { + margin-bottom: 1px !important; + } + + .sm\:ml-px { + margin-left: 1px !important; + } + + .sm\:mt-0\.5 { + margin-top: 0.125rem !important; + } + + .sm\:mr-0\.5 { + margin-right: 0.125rem !important; + } + + .sm\:mb-0\.5 { + margin-bottom: 0.125rem !important; + } + + .sm\:ml-0\.5 { + margin-left: 0.125rem !important; + } + + .sm\:mt-1\.5 { + margin-top: 0.375rem !important; + } + + .sm\:mr-1\.5 { + margin-right: 0.375rem !important; + } + + .sm\:mb-1\.5 { + margin-bottom: 0.375rem !important; + } + + .sm\:ml-1\.5 { + margin-left: 0.375rem !important; + } + + .sm\:mt-2\.5 { + margin-top: 0.625rem !important; + } + + .sm\:mr-2\.5 { + margin-right: 0.625rem !important; + } + + .sm\:mb-2\.5 { + margin-bottom: 0.625rem !important; + } + + .sm\:ml-2\.5 { + margin-left: 0.625rem !important; + } + + .sm\:mt-3\.5 { + margin-top: 0.875rem !important; + } + + .sm\:mr-3\.5 { + margin-right: 0.875rem !important; + } + + .sm\:mb-3\.5 { + margin-bottom: 0.875rem !important; + } + + .sm\:ml-3\.5 { + margin-left: 0.875rem !important; + } + + .sm\:-mt-0 { + margin-top: 0px !important; + } + + .sm\:-mr-0 { + margin-right: 0px !important; + } + + .sm\:-mb-0 { + margin-bottom: 0px !important; + } + + .sm\:-ml-0 { + margin-left: 0px !important; + } + + .sm\:-mt-1 { + margin-top: -0.25rem !important; + } + + .sm\:-mr-1 { + margin-right: -0.25rem !important; + } + + .sm\:-mb-1 { + margin-bottom: -0.25rem !important; + } + + .sm\:-ml-1 { + margin-left: -0.25rem !important; + } + + .sm\:-mt-2 { + margin-top: -0.5rem !important; + } + + .sm\:-mr-2 { + margin-right: -0.5rem !important; + } + + .sm\:-mb-2 { + margin-bottom: -0.5rem !important; + } + + .sm\:-ml-2 { + margin-left: -0.5rem !important; + } + + .sm\:-mt-3 { + margin-top: -0.75rem !important; + } + + .sm\:-mr-3 { + margin-right: -0.75rem !important; + } + + .sm\:-mb-3 { + margin-bottom: -0.75rem !important; + } + + .sm\:-ml-3 { + margin-left: -0.75rem !important; + } + + .sm\:-mt-4 { + margin-top: -1rem !important; + } + + .sm\:-mr-4 { + margin-right: -1rem !important; + } + + .sm\:-mb-4 { + margin-bottom: -1rem !important; + } + + .sm\:-ml-4 { + margin-left: -1rem !important; + } + + .sm\:-mt-5 { + margin-top: -1.25rem !important; + } + + .sm\:-mr-5 { + margin-right: -1.25rem !important; + } + + .sm\:-mb-5 { + margin-bottom: -1.25rem !important; + } + + .sm\:-ml-5 { + margin-left: -1.25rem !important; + } + + .sm\:-mt-6 { + margin-top: -1.5rem !important; + } + + .sm\:-mr-6 { + margin-right: -1.5rem !important; + } + + .sm\:-mb-6 { + margin-bottom: -1.5rem !important; + } + + .sm\:-ml-6 { + margin-left: -1.5rem !important; + } + + .sm\:-mt-7 { + margin-top: -1.75rem !important; + } + + .sm\:-mr-7 { + margin-right: -1.75rem !important; + } + + .sm\:-mb-7 { + margin-bottom: -1.75rem !important; + } + + .sm\:-ml-7 { + margin-left: -1.75rem !important; + } + + .sm\:-mt-8 { + margin-top: -2rem !important; + } + + .sm\:-mr-8 { + margin-right: -2rem !important; + } + + .sm\:-mb-8 { + margin-bottom: -2rem !important; + } + + .sm\:-ml-8 { + margin-left: -2rem !important; + } + + .sm\:-mt-9 { + margin-top: -2.25rem !important; + } + + .sm\:-mr-9 { + margin-right: -2.25rem !important; + } + + .sm\:-mb-9 { + margin-bottom: -2.25rem !important; + } + + .sm\:-ml-9 { + margin-left: -2.25rem !important; + } + + .sm\:-mt-10 { + margin-top: -2.5rem !important; + } + + .sm\:-mr-10 { + margin-right: -2.5rem !important; + } + + .sm\:-mb-10 { + margin-bottom: -2.5rem !important; + } + + .sm\:-ml-10 { + margin-left: -2.5rem !important; + } + + .sm\:-mt-11 { + margin-top: -2.75rem !important; + } + + .sm\:-mr-11 { + margin-right: -2.75rem !important; + } + + .sm\:-mb-11 { + margin-bottom: -2.75rem !important; + } + + .sm\:-ml-11 { + margin-left: -2.75rem !important; + } + + .sm\:-mt-12 { + margin-top: -3rem !important; + } + + .sm\:-mr-12 { + margin-right: -3rem !important; + } + + .sm\:-mb-12 { + margin-bottom: -3rem !important; + } + + .sm\:-ml-12 { + margin-left: -3rem !important; + } + + .sm\:-mt-14 { + margin-top: -3.5rem !important; + } + + .sm\:-mr-14 { + margin-right: -3.5rem !important; + } + + .sm\:-mb-14 { + margin-bottom: -3.5rem !important; + } + + .sm\:-ml-14 { + margin-left: -3.5rem !important; + } + + .sm\:-mt-16 { + margin-top: -4rem !important; + } + + .sm\:-mr-16 { + margin-right: -4rem !important; + } + + .sm\:-mb-16 { + margin-bottom: -4rem !important; + } + + .sm\:-ml-16 { + margin-left: -4rem !important; + } + + .sm\:-mt-20 { + margin-top: -5rem !important; + } + + .sm\:-mr-20 { + margin-right: -5rem !important; + } + + .sm\:-mb-20 { + margin-bottom: -5rem !important; + } + + .sm\:-ml-20 { + margin-left: -5rem !important; + } + + .sm\:-mt-24 { + margin-top: -6rem !important; + } + + .sm\:-mr-24 { + margin-right: -6rem !important; + } + + .sm\:-mb-24 { + margin-bottom: -6rem !important; + } + + .sm\:-ml-24 { + margin-left: -6rem !important; + } + + .sm\:-mt-28 { + margin-top: -7rem !important; + } + + .sm\:-mr-28 { + margin-right: -7rem !important; + } + + .sm\:-mb-28 { + margin-bottom: -7rem !important; + } + + .sm\:-ml-28 { + margin-left: -7rem !important; + } + + .sm\:-mt-32 { + margin-top: -8rem !important; + } + + .sm\:-mr-32 { + margin-right: -8rem !important; + } + + .sm\:-mb-32 { + margin-bottom: -8rem !important; + } + + .sm\:-ml-32 { + margin-left: -8rem !important; + } + + .sm\:-mt-36 { + margin-top: -9rem !important; + } + + .sm\:-mr-36 { + margin-right: -9rem !important; + } + + .sm\:-mb-36 { + margin-bottom: -9rem !important; + } + + .sm\:-ml-36 { + margin-left: -9rem !important; + } + + .sm\:-mt-40 { + margin-top: -10rem !important; + } + + .sm\:-mr-40 { + margin-right: -10rem !important; + } + + .sm\:-mb-40 { + margin-bottom: -10rem !important; + } + + .sm\:-ml-40 { + margin-left: -10rem !important; + } + + .sm\:-mt-44 { + margin-top: -11rem !important; + } + + .sm\:-mr-44 { + margin-right: -11rem !important; + } + + .sm\:-mb-44 { + margin-bottom: -11rem !important; + } + + .sm\:-ml-44 { + margin-left: -11rem !important; + } + + .sm\:-mt-48 { + margin-top: -12rem !important; + } + + .sm\:-mr-48 { + margin-right: -12rem !important; + } + + .sm\:-mb-48 { + margin-bottom: -12rem !important; + } + + .sm\:-ml-48 { + margin-left: -12rem !important; + } + + .sm\:-mt-52 { + margin-top: -13rem !important; + } + + .sm\:-mr-52 { + margin-right: -13rem !important; + } + + .sm\:-mb-52 { + margin-bottom: -13rem !important; + } + + .sm\:-ml-52 { + margin-left: -13rem !important; + } + + .sm\:-mt-56 { + margin-top: -14rem !important; + } + + .sm\:-mr-56 { + margin-right: -14rem !important; + } + + .sm\:-mb-56 { + margin-bottom: -14rem !important; + } + + .sm\:-ml-56 { + margin-left: -14rem !important; + } + + .sm\:-mt-60 { + margin-top: -15rem !important; + } + + .sm\:-mr-60 { + margin-right: -15rem !important; + } + + .sm\:-mb-60 { + margin-bottom: -15rem !important; + } + + .sm\:-ml-60 { + margin-left: -15rem !important; + } + + .sm\:-mt-64 { + margin-top: -16rem !important; + } + + .sm\:-mr-64 { + margin-right: -16rem !important; + } + + .sm\:-mb-64 { + margin-bottom: -16rem !important; + } + + .sm\:-ml-64 { + margin-left: -16rem !important; + } + + .sm\:-mt-72 { + margin-top: -18rem !important; + } + + .sm\:-mr-72 { + margin-right: -18rem !important; + } + + .sm\:-mb-72 { + margin-bottom: -18rem !important; + } + + .sm\:-ml-72 { + margin-left: -18rem !important; + } + + .sm\:-mt-80 { + margin-top: -20rem !important; + } + + .sm\:-mr-80 { + margin-right: -20rem !important; + } + + .sm\:-mb-80 { + margin-bottom: -20rem !important; + } + + .sm\:-ml-80 { + margin-left: -20rem !important; + } + + .sm\:-mt-96 { + margin-top: -24rem !important; + } + + .sm\:-mr-96 { + margin-right: -24rem !important; + } + + .sm\:-mb-96 { + margin-bottom: -24rem !important; + } + + .sm\:-ml-96 { + margin-left: -24rem !important; + } + + .sm\:-mt-px { + margin-top: -1px !important; + } + + .sm\:-mr-px { + margin-right: -1px !important; + } + + .sm\:-mb-px { + margin-bottom: -1px !important; + } + + .sm\:-ml-px { + margin-left: -1px !important; + } + + .sm\:-mt-0\.5 { + margin-top: -0.125rem !important; + } + + .sm\:-mr-0\.5 { + margin-right: -0.125rem !important; + } + + .sm\:-mb-0\.5 { + margin-bottom: -0.125rem !important; + } + + .sm\:-ml-0\.5 { + margin-left: -0.125rem !important; + } + + .sm\:-mt-1\.5 { + margin-top: -0.375rem !important; + } + + .sm\:-mr-1\.5 { + margin-right: -0.375rem !important; + } + + .sm\:-mb-1\.5 { + margin-bottom: -0.375rem !important; + } + + .sm\:-ml-1\.5 { + margin-left: -0.375rem !important; + } + + .sm\:-mt-2\.5 { + margin-top: -0.625rem !important; + } + + .sm\:-mr-2\.5 { + margin-right: -0.625rem !important; + } + + .sm\:-mb-2\.5 { + margin-bottom: -0.625rem !important; + } + + .sm\:-ml-2\.5 { + margin-left: -0.625rem !important; + } + + .sm\:-mt-3\.5 { + margin-top: -0.875rem !important; + } + + .sm\:-mr-3\.5 { + margin-right: -0.875rem !important; + } + + .sm\:-mb-3\.5 { + margin-bottom: -0.875rem !important; + } + + .sm\:-ml-3\.5 { + margin-left: -0.875rem !important; + } + + .sm\:max-h-0 { + max-height: 0px !important; + } + + .sm\:max-h-1 { + max-height: 0.25rem !important; + } + + .sm\:max-h-2 { + max-height: 0.5rem !important; + } + + .sm\:max-h-3 { + max-height: 0.75rem !important; + } + + .sm\:max-h-4 { + max-height: 1rem !important; + } + + .sm\:max-h-5 { + max-height: 1.25rem !important; + } + + .sm\:max-h-6 { + max-height: 1.5rem !important; + } + + .sm\:max-h-7 { + max-height: 1.75rem !important; + } + + .sm\:max-h-8 { + max-height: 2rem !important; + } + + .sm\:max-h-9 { + max-height: 2.25rem !important; + } + + .sm\:max-h-10 { + max-height: 2.5rem !important; + } + + .sm\:max-h-11 { + max-height: 2.75rem !important; + } + + .sm\:max-h-12 { + max-height: 3rem !important; + } + + .sm\:max-h-14 { + max-height: 3.5rem !important; + } + + .sm\:max-h-16 { + max-height: 4rem !important; + } + + .sm\:max-h-20 { + max-height: 5rem !important; + } + + .sm\:max-h-24 { + max-height: 6rem !important; + } + + .sm\:max-h-28 { + max-height: 7rem !important; + } + + .sm\:max-h-32 { + max-height: 8rem !important; + } + + .sm\:max-h-36 { + max-height: 9rem !important; + } + + .sm\:max-h-40 { + max-height: 10rem !important; + } + + .sm\:max-h-44 { + max-height: 11rem !important; + } + + .sm\:max-h-48 { + max-height: 12rem !important; + } + + .sm\:max-h-52 { + max-height: 13rem !important; + } + + .sm\:max-h-56 { + max-height: 14rem !important; + } + + .sm\:max-h-60 { + max-height: 15rem !important; + } + + .sm\:max-h-64 { + max-height: 16rem !important; + } + + .sm\:max-h-72 { + max-height: 18rem !important; + } + + .sm\:max-h-80 { + max-height: 20rem !important; + } + + .sm\:max-h-96 { + max-height: 24rem !important; + } + + .sm\:max-h-px { + max-height: 1px !important; + } + + .sm\:max-h-0\.5 { + max-height: 0.125rem !important; + } + + .sm\:max-h-1\.5 { + max-height: 0.375rem !important; + } + + .sm\:max-h-2\.5 { + max-height: 0.625rem !important; + } + + .sm\:max-h-3\.5 { + max-height: 0.875rem !important; + } + + .sm\:max-h-full { + max-height: 100% !important; + } + + .sm\:max-h-screen { + max-height: 100vh !important; + } + + .sm\:max-w-0 { + max-width: 0rem !important; + } + + .sm\:max-w-none { + max-width: none !important; + } + + .sm\:max-w-xs { + max-width: 20rem !important; + } + + .sm\:max-w-sm { + max-width: 24rem !important; + } + + .sm\:max-w-md { + max-width: 28rem !important; + } + + .sm\:max-w-lg { + max-width: 32rem !important; + } + + .sm\:max-w-xl { + max-width: 36rem !important; + } + + .sm\:max-w-2xl { + max-width: 42rem !important; + } + + .sm\:max-w-3xl { + max-width: 48rem !important; + } + + .sm\:max-w-4xl { + max-width: 56rem !important; + } + + .sm\:max-w-5xl { + max-width: 64rem !important; + } + + .sm\:max-w-6xl { + max-width: 72rem !important; + } + + .sm\:max-w-7xl { + max-width: 80rem !important; + } + + .sm\:max-w-full { + max-width: 100% !important; + } + + .sm\:max-w-min { + max-width: -webkit-min-content !important; + max-width: -moz-min-content !important; + max-width: min-content !important; + } + + .sm\:max-w-max { + max-width: -webkit-max-content !important; + max-width: -moz-max-content !important; + max-width: max-content !important; + } + + .sm\:max-w-prose { + max-width: 65ch !important; + } + + .sm\:max-w-screen-sm { + max-width: 640px !important; + } + + .sm\:max-w-screen-md { + max-width: 768px !important; + } + + .sm\:max-w-screen-lg { + max-width: 1024px !important; + } + + .sm\:max-w-screen-xl { + max-width: 1280px !important; + } + + .sm\:max-w-screen-2xl { + max-width: 1536px !important; + } + + .sm\:min-h-0 { + min-height: 0px !important; + } + + .sm\:min-h-full { + min-height: 100% !important; + } + + .sm\:min-h-screen { + min-height: 100vh !important; + } + + .sm\:min-w-0 { + min-width: 0px !important; + } + + .sm\:min-w-full { + min-width: 100% !important; + } + + .sm\:min-w-min { + min-width: -webkit-min-content !important; + min-width: -moz-min-content !important; + min-width: min-content !important; + } + + .sm\:min-w-max { + min-width: -webkit-max-content !important; + min-width: -moz-max-content !important; + min-width: max-content !important; + } + + .sm\:object-contain { + -o-object-fit: contain !important; + object-fit: contain !important; + } + + .sm\:object-cover { + -o-object-fit: cover !important; + object-fit: cover !important; + } + + .sm\:object-fill { + -o-object-fit: fill !important; + object-fit: fill !important; + } + + .sm\:object-none { + -o-object-fit: none !important; + object-fit: none !important; + } + + .sm\:object-scale-down { + -o-object-fit: scale-down !important; + object-fit: scale-down !important; + } + + .sm\:object-bottom { + -o-object-position: bottom !important; + object-position: bottom !important; + } + + .sm\:object-center { + -o-object-position: center !important; + object-position: center !important; + } + + .sm\:object-left { + -o-object-position: left !important; + object-position: left !important; + } + + .sm\:object-left-bottom { + -o-object-position: left bottom !important; + object-position: left bottom !important; + } + + .sm\:object-left-top { + -o-object-position: left top !important; + object-position: left top !important; + } + + .sm\:object-right { + -o-object-position: right !important; + object-position: right !important; + } + + .sm\:object-right-bottom { + -o-object-position: right bottom !important; + object-position: right bottom !important; + } + + .sm\:object-right-top { + -o-object-position: right top !important; + object-position: right top !important; + } + + .sm\:object-top { + -o-object-position: top !important; + object-position: top !important; + } + + .sm\:opacity-0 { + opacity: 0 !important; + } + + .sm\:opacity-5 { + opacity: 0.05 !important; + } + + .sm\:opacity-10 { + opacity: 0.1 !important; + } + + .sm\:opacity-20 { + opacity: 0.2 !important; + } + + .sm\:opacity-25 { + opacity: 0.25 !important; + } + + .sm\:opacity-30 { + opacity: 0.3 !important; + } + + .sm\:opacity-40 { + opacity: 0.4 !important; + } + + .sm\:opacity-50 { + opacity: 0.5 !important; + } + + .sm\:opacity-60 { + opacity: 0.6 !important; + } + + .sm\:opacity-70 { + opacity: 0.7 !important; + } + + .sm\:opacity-75 { + opacity: 0.75 !important; + } + + .sm\:opacity-80 { + opacity: 0.8 !important; + } + + .sm\:opacity-90 { + opacity: 0.9 !important; + } + + .sm\:opacity-95 { + opacity: 0.95 !important; + } + + .sm\:opacity-100 { + opacity: 1 !important; + } + + .group:hover .sm\:group-hover\:opacity-0 { + opacity: 0 !important; + } + + .group:hover .sm\:group-hover\:opacity-5 { + opacity: 0.05 !important; + } + + .group:hover .sm\:group-hover\:opacity-10 { + opacity: 0.1 !important; + } + + .group:hover .sm\:group-hover\:opacity-20 { + opacity: 0.2 !important; + } + + .group:hover .sm\:group-hover\:opacity-25 { + opacity: 0.25 !important; + } + + .group:hover .sm\:group-hover\:opacity-30 { + opacity: 0.3 !important; + } + + .group:hover .sm\:group-hover\:opacity-40 { + opacity: 0.4 !important; + } + + .group:hover .sm\:group-hover\:opacity-50 { + opacity: 0.5 !important; + } + + .group:hover .sm\:group-hover\:opacity-60 { + opacity: 0.6 !important; + } + + .group:hover .sm\:group-hover\:opacity-70 { + opacity: 0.7 !important; + } + + .group:hover .sm\:group-hover\:opacity-75 { + opacity: 0.75 !important; + } + + .group:hover .sm\:group-hover\:opacity-80 { + opacity: 0.8 !important; + } + + .group:hover .sm\:group-hover\:opacity-90 { + opacity: 0.9 !important; + } + + .group:hover .sm\:group-hover\:opacity-95 { + opacity: 0.95 !important; + } + + .group:hover .sm\:group-hover\:opacity-100 { + opacity: 1 !important; + } + + .sm\:focus-within\:opacity-0:focus-within { + opacity: 0 !important; + } + + .sm\:focus-within\:opacity-5:focus-within { + opacity: 0.05 !important; + } + + .sm\:focus-within\:opacity-10:focus-within { + opacity: 0.1 !important; + } + + .sm\:focus-within\:opacity-20:focus-within { + opacity: 0.2 !important; + } + + .sm\:focus-within\:opacity-25:focus-within { + opacity: 0.25 !important; + } + + .sm\:focus-within\:opacity-30:focus-within { + opacity: 0.3 !important; + } + + .sm\:focus-within\:opacity-40:focus-within { + opacity: 0.4 !important; + } + + .sm\:focus-within\:opacity-50:focus-within { + opacity: 0.5 !important; + } + + .sm\:focus-within\:opacity-60:focus-within { + opacity: 0.6 !important; + } + + .sm\:focus-within\:opacity-70:focus-within { + opacity: 0.7 !important; + } + + .sm\:focus-within\:opacity-75:focus-within { + opacity: 0.75 !important; + } + + .sm\:focus-within\:opacity-80:focus-within { + opacity: 0.8 !important; + } + + .sm\:focus-within\:opacity-90:focus-within { + opacity: 0.9 !important; + } + + .sm\:focus-within\:opacity-95:focus-within { + opacity: 0.95 !important; + } + + .sm\:focus-within\:opacity-100:focus-within { + opacity: 1 !important; + } + + .sm\:hover\:opacity-0:hover { + opacity: 0 !important; + } + + .sm\:hover\:opacity-5:hover { + opacity: 0.05 !important; + } + + .sm\:hover\:opacity-10:hover { + opacity: 0.1 !important; + } + + .sm\:hover\:opacity-20:hover { + opacity: 0.2 !important; + } + + .sm\:hover\:opacity-25:hover { + opacity: 0.25 !important; + } + + .sm\:hover\:opacity-30:hover { + opacity: 0.3 !important; + } + + .sm\:hover\:opacity-40:hover { + opacity: 0.4 !important; + } + + .sm\:hover\:opacity-50:hover { + opacity: 0.5 !important; + } + + .sm\:hover\:opacity-60:hover { + opacity: 0.6 !important; + } + + .sm\:hover\:opacity-70:hover { + opacity: 0.7 !important; + } + + .sm\:hover\:opacity-75:hover { + opacity: 0.75 !important; + } + + .sm\:hover\:opacity-80:hover { + opacity: 0.8 !important; + } + + .sm\:hover\:opacity-90:hover { + opacity: 0.9 !important; + } + + .sm\:hover\:opacity-95:hover { + opacity: 0.95 !important; + } + + .sm\:hover\:opacity-100:hover { + opacity: 1 !important; + } + + .sm\:focus\:opacity-0:focus { + opacity: 0 !important; + } + + .sm\:focus\:opacity-5:focus { + opacity: 0.05 !important; + } + + .sm\:focus\:opacity-10:focus { + opacity: 0.1 !important; + } + + .sm\:focus\:opacity-20:focus { + opacity: 0.2 !important; + } + + .sm\:focus\:opacity-25:focus { + opacity: 0.25 !important; + } + + .sm\:focus\:opacity-30:focus { + opacity: 0.3 !important; + } + + .sm\:focus\:opacity-40:focus { + opacity: 0.4 !important; + } + + .sm\:focus\:opacity-50:focus { + opacity: 0.5 !important; + } + + .sm\:focus\:opacity-60:focus { + opacity: 0.6 !important; + } + + .sm\:focus\:opacity-70:focus { + opacity: 0.7 !important; + } + + .sm\:focus\:opacity-75:focus { + opacity: 0.75 !important; + } + + .sm\:focus\:opacity-80:focus { + opacity: 0.8 !important; + } + + .sm\:focus\:opacity-90:focus { + opacity: 0.9 !important; + } + + .sm\:focus\:opacity-95:focus { + opacity: 0.95 !important; + } + + .sm\:focus\:opacity-100:focus { + opacity: 1 !important; + } + + .sm\:disabled\:opacity-0:disabled { + opacity: 0 !important; + } + + .sm\:disabled\:opacity-5:disabled { + opacity: 0.05 !important; + } + + .sm\:disabled\:opacity-10:disabled { + opacity: 0.1 !important; + } + + .sm\:disabled\:opacity-20:disabled { + opacity: 0.2 !important; + } + + .sm\:disabled\:opacity-25:disabled { + opacity: 0.25 !important; + } + + .sm\:disabled\:opacity-30:disabled { + opacity: 0.3 !important; + } + + .sm\:disabled\:opacity-40:disabled { + opacity: 0.4 !important; + } + + .sm\:disabled\:opacity-50:disabled { + opacity: 0.5 !important; + } + + .sm\:disabled\:opacity-60:disabled { + opacity: 0.6 !important; + } + + .sm\:disabled\:opacity-70:disabled { + opacity: 0.7 !important; + } + + .sm\:disabled\:opacity-75:disabled { + opacity: 0.75 !important; + } + + .sm\:disabled\:opacity-80:disabled { + opacity: 0.8 !important; + } + + .sm\:disabled\:opacity-90:disabled { + opacity: 0.9 !important; + } + + .sm\:disabled\:opacity-95:disabled { + opacity: 0.95 !important; + } + + .sm\:disabled\:opacity-100:disabled { + opacity: 1 !important; + } + + .sm\:outline-none { + outline: 2px solid transparent !important; + outline-offset: 2px !important; + } + + .sm\:outline-white { + outline: 2px dotted white !important; + outline-offset: 2px !important; + } + + .sm\:outline-black { + outline: 2px dotted black !important; + outline-offset: 2px !important; + } + + .sm\:focus-within\:outline-none:focus-within { + outline: 2px solid transparent !important; + outline-offset: 2px !important; + } + + .sm\:focus-within\:outline-white:focus-within { + outline: 2px dotted white !important; + outline-offset: 2px !important; + } + + .sm\:focus-within\:outline-black:focus-within { + outline: 2px dotted black !important; + outline-offset: 2px !important; + } + + .sm\:focus\:outline-none:focus { + outline: 2px solid transparent !important; + outline-offset: 2px !important; + } + + .sm\:focus\:outline-white:focus { + outline: 2px dotted white !important; + outline-offset: 2px !important; + } + + .sm\:focus\:outline-black:focus { + outline: 2px dotted black !important; + outline-offset: 2px !important; + } + + .sm\:overflow-auto { + overflow: auto !important; + } + + .sm\:overflow-hidden { + overflow: hidden !important; + } + + .sm\:overflow-visible { + overflow: visible !important; + } + + .sm\:overflow-scroll { + overflow: scroll !important; + } + + .sm\:overflow-x-auto { + overflow-x: auto !important; + } + + .sm\:overflow-y-auto { + overflow-y: auto !important; + } + + .sm\:overflow-x-hidden { + overflow-x: hidden !important; + } + + .sm\:overflow-y-hidden { + overflow-y: hidden !important; + } + + .sm\:overflow-x-visible { + overflow-x: visible !important; + } + + .sm\:overflow-y-visible { + overflow-y: visible !important; + } + + .sm\:overflow-x-scroll { + overflow-x: scroll !important; + } + + .sm\:overflow-y-scroll { + overflow-y: scroll !important; + } + + .sm\:overscroll-auto { + -ms-scroll-chaining: chained !important; + overscroll-behavior: auto !important; + } + + .sm\:overscroll-contain { + -ms-scroll-chaining: none !important; + overscroll-behavior: contain !important; + } + + .sm\:overscroll-none { + -ms-scroll-chaining: none !important; + overscroll-behavior: none !important; + } + + .sm\:overscroll-y-auto { + overscroll-behavior-y: auto !important; + } + + .sm\:overscroll-y-contain { + overscroll-behavior-y: contain !important; + } + + .sm\:overscroll-y-none { + overscroll-behavior-y: none !important; + } + + .sm\:overscroll-x-auto { + overscroll-behavior-x: auto !important; + } + + .sm\:overscroll-x-contain { + overscroll-behavior-x: contain !important; + } + + .sm\:overscroll-x-none { + overscroll-behavior-x: none !important; + } + + .sm\:p-0 { + padding: 0px !important; + } + + .sm\:p-1 { + padding: 0.25rem !important; + } + + .sm\:p-2 { + padding: 0.5rem !important; + } + + .sm\:p-3 { + padding: 0.75rem !important; + } + + .sm\:p-4 { + padding: 1rem !important; + } + + .sm\:p-5 { + padding: 1.25rem !important; + } + + .sm\:p-6 { + padding: 1.5rem !important; + } + + .sm\:p-7 { + padding: 1.75rem !important; + } + + .sm\:p-8 { + padding: 2rem !important; + } + + .sm\:p-9 { + padding: 2.25rem !important; + } + + .sm\:p-10 { + padding: 2.5rem !important; + } + + .sm\:p-11 { + padding: 2.75rem !important; + } + + .sm\:p-12 { + padding: 3rem !important; + } + + .sm\:p-14 { + padding: 3.5rem !important; + } + + .sm\:p-16 { + padding: 4rem !important; + } + + .sm\:p-20 { + padding: 5rem !important; + } + + .sm\:p-24 { + padding: 6rem !important; + } + + .sm\:p-28 { + padding: 7rem !important; + } + + .sm\:p-32 { + padding: 8rem !important; + } + + .sm\:p-36 { + padding: 9rem !important; + } + + .sm\:p-40 { + padding: 10rem !important; + } + + .sm\:p-44 { + padding: 11rem !important; + } + + .sm\:p-48 { + padding: 12rem !important; + } + + .sm\:p-52 { + padding: 13rem !important; + } + + .sm\:p-56 { + padding: 14rem !important; + } + + .sm\:p-60 { + padding: 15rem !important; + } + + .sm\:p-64 { + padding: 16rem !important; + } + + .sm\:p-72 { + padding: 18rem !important; + } + + .sm\:p-80 { + padding: 20rem !important; + } + + .sm\:p-96 { + padding: 24rem !important; + } + + .sm\:p-px { + padding: 1px !important; + } + + .sm\:p-0\.5 { + padding: 0.125rem !important; + } + + .sm\:p-1\.5 { + padding: 0.375rem !important; + } + + .sm\:p-2\.5 { + padding: 0.625rem !important; + } + + .sm\:p-3\.5 { + padding: 0.875rem !important; + } + + .sm\:py-0 { + padding-top: 0px !important; + padding-bottom: 0px !important; + } + + .sm\:px-0 { + padding-left: 0px !important; + padding-right: 0px !important; + } + + .sm\:py-1 { + padding-top: 0.25rem !important; + padding-bottom: 0.25rem !important; + } + + .sm\:px-1 { + padding-left: 0.25rem !important; + padding-right: 0.25rem !important; + } + + .sm\:py-2 { + padding-top: 0.5rem !important; + padding-bottom: 0.5rem !important; + } + + .sm\:px-2 { + padding-left: 0.5rem !important; + padding-right: 0.5rem !important; + } + + .sm\:py-3 { + padding-top: 0.75rem !important; + padding-bottom: 0.75rem !important; + } + + .sm\:px-3 { + padding-left: 0.75rem !important; + padding-right: 0.75rem !important; + } + + .sm\:py-4 { + padding-top: 1rem !important; + padding-bottom: 1rem !important; + } + + .sm\:px-4 { + padding-left: 1rem !important; + padding-right: 1rem !important; + } + + .sm\:py-5 { + padding-top: 1.25rem !important; + padding-bottom: 1.25rem !important; + } + + .sm\:px-5 { + padding-left: 1.25rem !important; + padding-right: 1.25rem !important; + } + + .sm\:py-6 { + padding-top: 1.5rem !important; + padding-bottom: 1.5rem !important; + } + + .sm\:px-6 { + padding-left: 1.5rem !important; + padding-right: 1.5rem !important; + } + + .sm\:py-7 { + padding-top: 1.75rem !important; + padding-bottom: 1.75rem !important; + } + + .sm\:px-7 { + padding-left: 1.75rem !important; + padding-right: 1.75rem !important; + } + + .sm\:py-8 { + padding-top: 2rem !important; + padding-bottom: 2rem !important; + } + + .sm\:px-8 { + padding-left: 2rem !important; + padding-right: 2rem !important; + } + + .sm\:py-9 { + padding-top: 2.25rem !important; + padding-bottom: 2.25rem !important; + } + + .sm\:px-9 { + padding-left: 2.25rem !important; + padding-right: 2.25rem !important; + } + + .sm\:py-10 { + padding-top: 2.5rem !important; + padding-bottom: 2.5rem !important; + } + + .sm\:px-10 { + padding-left: 2.5rem !important; + padding-right: 2.5rem !important; + } + + .sm\:py-11 { + padding-top: 2.75rem !important; + padding-bottom: 2.75rem !important; + } + + .sm\:px-11 { + padding-left: 2.75rem !important; + padding-right: 2.75rem !important; + } + + .sm\:py-12 { + padding-top: 3rem !important; + padding-bottom: 3rem !important; + } + + .sm\:px-12 { + padding-left: 3rem !important; + padding-right: 3rem !important; + } + + .sm\:py-14 { + padding-top: 3.5rem !important; + padding-bottom: 3.5rem !important; + } + + .sm\:px-14 { + padding-left: 3.5rem !important; + padding-right: 3.5rem !important; + } + + .sm\:py-16 { + padding-top: 4rem !important; + padding-bottom: 4rem !important; + } + + .sm\:px-16 { + padding-left: 4rem !important; + padding-right: 4rem !important; + } + + .sm\:py-20 { + padding-top: 5rem !important; + padding-bottom: 5rem !important; + } + + .sm\:px-20 { + padding-left: 5rem !important; + padding-right: 5rem !important; + } + + .sm\:py-24 { + padding-top: 6rem !important; + padding-bottom: 6rem !important; + } + + .sm\:px-24 { + padding-left: 6rem !important; + padding-right: 6rem !important; + } + + .sm\:py-28 { + padding-top: 7rem !important; + padding-bottom: 7rem !important; + } + + .sm\:px-28 { + padding-left: 7rem !important; + padding-right: 7rem !important; + } + + .sm\:py-32 { + padding-top: 8rem !important; + padding-bottom: 8rem !important; + } + + .sm\:px-32 { + padding-left: 8rem !important; + padding-right: 8rem !important; + } + + .sm\:py-36 { + padding-top: 9rem !important; + padding-bottom: 9rem !important; + } + + .sm\:px-36 { + padding-left: 9rem !important; + padding-right: 9rem !important; + } + + .sm\:py-40 { + padding-top: 10rem !important; + padding-bottom: 10rem !important; + } + + .sm\:px-40 { + padding-left: 10rem !important; + padding-right: 10rem !important; + } + + .sm\:py-44 { + padding-top: 11rem !important; + padding-bottom: 11rem !important; + } + + .sm\:px-44 { + padding-left: 11rem !important; + padding-right: 11rem !important; + } + + .sm\:py-48 { + padding-top: 12rem !important; + padding-bottom: 12rem !important; + } + + .sm\:px-48 { + padding-left: 12rem !important; + padding-right: 12rem !important; + } + + .sm\:py-52 { + padding-top: 13rem !important; + padding-bottom: 13rem !important; + } + + .sm\:px-52 { + padding-left: 13rem !important; + padding-right: 13rem !important; + } + + .sm\:py-56 { + padding-top: 14rem !important; + padding-bottom: 14rem !important; + } + + .sm\:px-56 { + padding-left: 14rem !important; + padding-right: 14rem !important; + } + + .sm\:py-60 { + padding-top: 15rem !important; + padding-bottom: 15rem !important; + } + + .sm\:px-60 { + padding-left: 15rem !important; + padding-right: 15rem !important; + } + + .sm\:py-64 { + padding-top: 16rem !important; + padding-bottom: 16rem !important; + } + + .sm\:px-64 { + padding-left: 16rem !important; + padding-right: 16rem !important; + } + + .sm\:py-72 { + padding-top: 18rem !important; + padding-bottom: 18rem !important; + } + + .sm\:px-72 { + padding-left: 18rem !important; + padding-right: 18rem !important; + } + + .sm\:py-80 { + padding-top: 20rem !important; + padding-bottom: 20rem !important; + } + + .sm\:px-80 { + padding-left: 20rem !important; + padding-right: 20rem !important; + } + + .sm\:py-96 { + padding-top: 24rem !important; + padding-bottom: 24rem !important; + } + + .sm\:px-96 { + padding-left: 24rem !important; + padding-right: 24rem !important; + } + + .sm\:py-px { + padding-top: 1px !important; + padding-bottom: 1px !important; + } + + .sm\:px-px { + padding-left: 1px !important; + padding-right: 1px !important; + } + + .sm\:py-0\.5 { + padding-top: 0.125rem !important; + padding-bottom: 0.125rem !important; + } + + .sm\:px-0\.5 { + padding-left: 0.125rem !important; + padding-right: 0.125rem !important; + } + + .sm\:py-1\.5 { + padding-top: 0.375rem !important; + padding-bottom: 0.375rem !important; + } + + .sm\:px-1\.5 { + padding-left: 0.375rem !important; + padding-right: 0.375rem !important; + } + + .sm\:py-2\.5 { + padding-top: 0.625rem !important; + padding-bottom: 0.625rem !important; + } + + .sm\:px-2\.5 { + padding-left: 0.625rem !important; + padding-right: 0.625rem !important; + } + + .sm\:py-3\.5 { + padding-top: 0.875rem !important; + padding-bottom: 0.875rem !important; + } + + .sm\:px-3\.5 { + padding-left: 0.875rem !important; + padding-right: 0.875rem !important; + } + + .sm\:pt-0 { + padding-top: 0px !important; + } + + .sm\:pr-0 { + padding-right: 0px !important; + } + + .sm\:pb-0 { + padding-bottom: 0px !important; + } + + .sm\:pl-0 { + padding-left: 0px !important; + } + + .sm\:pt-1 { + padding-top: 0.25rem !important; + } + + .sm\:pr-1 { + padding-right: 0.25rem !important; + } + + .sm\:pb-1 { + padding-bottom: 0.25rem !important; + } + + .sm\:pl-1 { + padding-left: 0.25rem !important; + } + + .sm\:pt-2 { + padding-top: 0.5rem !important; + } + + .sm\:pr-2 { + padding-right: 0.5rem !important; + } + + .sm\:pb-2 { + padding-bottom: 0.5rem !important; + } + + .sm\:pl-2 { + padding-left: 0.5rem !important; + } + + .sm\:pt-3 { + padding-top: 0.75rem !important; + } + + .sm\:pr-3 { + padding-right: 0.75rem !important; + } + + .sm\:pb-3 { + padding-bottom: 0.75rem !important; + } + + .sm\:pl-3 { + padding-left: 0.75rem !important; + } + + .sm\:pt-4 { + padding-top: 1rem !important; + } + + .sm\:pr-4 { + padding-right: 1rem !important; + } + + .sm\:pb-4 { + padding-bottom: 1rem !important; + } + + .sm\:pl-4 { + padding-left: 1rem !important; + } + + .sm\:pt-5 { + padding-top: 1.25rem !important; + } + + .sm\:pr-5 { + padding-right: 1.25rem !important; + } + + .sm\:pb-5 { + padding-bottom: 1.25rem !important; + } + + .sm\:pl-5 { + padding-left: 1.25rem !important; + } + + .sm\:pt-6 { + padding-top: 1.5rem !important; + } + + .sm\:pr-6 { + padding-right: 1.5rem !important; + } + + .sm\:pb-6 { + padding-bottom: 1.5rem !important; + } + + .sm\:pl-6 { + padding-left: 1.5rem !important; + } + + .sm\:pt-7 { + padding-top: 1.75rem !important; + } + + .sm\:pr-7 { + padding-right: 1.75rem !important; + } + + .sm\:pb-7 { + padding-bottom: 1.75rem !important; + } + + .sm\:pl-7 { + padding-left: 1.75rem !important; + } + + .sm\:pt-8 { + padding-top: 2rem !important; + } + + .sm\:pr-8 { + padding-right: 2rem !important; + } + + .sm\:pb-8 { + padding-bottom: 2rem !important; + } + + .sm\:pl-8 { + padding-left: 2rem !important; + } + + .sm\:pt-9 { + padding-top: 2.25rem !important; + } + + .sm\:pr-9 { + padding-right: 2.25rem !important; + } + + .sm\:pb-9 { + padding-bottom: 2.25rem !important; + } + + .sm\:pl-9 { + padding-left: 2.25rem !important; + } + + .sm\:pt-10 { + padding-top: 2.5rem !important; + } + + .sm\:pr-10 { + padding-right: 2.5rem !important; + } + + .sm\:pb-10 { + padding-bottom: 2.5rem !important; + } + + .sm\:pl-10 { + padding-left: 2.5rem !important; + } + + .sm\:pt-11 { + padding-top: 2.75rem !important; + } + + .sm\:pr-11 { + padding-right: 2.75rem !important; + } + + .sm\:pb-11 { + padding-bottom: 2.75rem !important; + } + + .sm\:pl-11 { + padding-left: 2.75rem !important; + } + + .sm\:pt-12 { + padding-top: 3rem !important; + } + + .sm\:pr-12 { + padding-right: 3rem !important; + } + + .sm\:pb-12 { + padding-bottom: 3rem !important; + } + + .sm\:pl-12 { + padding-left: 3rem !important; + } + + .sm\:pt-14 { + padding-top: 3.5rem !important; + } + + .sm\:pr-14 { + padding-right: 3.5rem !important; + } + + .sm\:pb-14 { + padding-bottom: 3.5rem !important; + } + + .sm\:pl-14 { + padding-left: 3.5rem !important; + } + + .sm\:pt-16 { + padding-top: 4rem !important; + } + + .sm\:pr-16 { + padding-right: 4rem !important; + } + + .sm\:pb-16 { + padding-bottom: 4rem !important; + } + + .sm\:pl-16 { + padding-left: 4rem !important; + } + + .sm\:pt-20 { + padding-top: 5rem !important; + } + + .sm\:pr-20 { + padding-right: 5rem !important; + } + + .sm\:pb-20 { + padding-bottom: 5rem !important; + } + + .sm\:pl-20 { + padding-left: 5rem !important; + } + + .sm\:pt-24 { + padding-top: 6rem !important; + } + + .sm\:pr-24 { + padding-right: 6rem !important; + } + + .sm\:pb-24 { + padding-bottom: 6rem !important; + } + + .sm\:pl-24 { + padding-left: 6rem !important; + } + + .sm\:pt-28 { + padding-top: 7rem !important; + } + + .sm\:pr-28 { + padding-right: 7rem !important; + } + + .sm\:pb-28 { + padding-bottom: 7rem !important; + } + + .sm\:pl-28 { + padding-left: 7rem !important; + } + + .sm\:pt-32 { + padding-top: 8rem !important; + } + + .sm\:pr-32 { + padding-right: 8rem !important; + } + + .sm\:pb-32 { + padding-bottom: 8rem !important; + } + + .sm\:pl-32 { + padding-left: 8rem !important; + } + + .sm\:pt-36 { + padding-top: 9rem !important; + } + + .sm\:pr-36 { + padding-right: 9rem !important; + } + + .sm\:pb-36 { + padding-bottom: 9rem !important; + } + + .sm\:pl-36 { + padding-left: 9rem !important; + } + + .sm\:pt-40 { + padding-top: 10rem !important; + } + + .sm\:pr-40 { + padding-right: 10rem !important; + } + + .sm\:pb-40 { + padding-bottom: 10rem !important; + } + + .sm\:pl-40 { + padding-left: 10rem !important; + } + + .sm\:pt-44 { + padding-top: 11rem !important; + } + + .sm\:pr-44 { + padding-right: 11rem !important; + } + + .sm\:pb-44 { + padding-bottom: 11rem !important; + } + + .sm\:pl-44 { + padding-left: 11rem !important; + } + + .sm\:pt-48 { + padding-top: 12rem !important; + } + + .sm\:pr-48 { + padding-right: 12rem !important; + } + + .sm\:pb-48 { + padding-bottom: 12rem !important; + } + + .sm\:pl-48 { + padding-left: 12rem !important; + } + + .sm\:pt-52 { + padding-top: 13rem !important; + } + + .sm\:pr-52 { + padding-right: 13rem !important; + } + + .sm\:pb-52 { + padding-bottom: 13rem !important; + } + + .sm\:pl-52 { + padding-left: 13rem !important; + } + + .sm\:pt-56 { + padding-top: 14rem !important; + } + + .sm\:pr-56 { + padding-right: 14rem !important; + } + + .sm\:pb-56 { + padding-bottom: 14rem !important; + } + + .sm\:pl-56 { + padding-left: 14rem !important; + } + + .sm\:pt-60 { + padding-top: 15rem !important; + } + + .sm\:pr-60 { + padding-right: 15rem !important; + } + + .sm\:pb-60 { + padding-bottom: 15rem !important; + } + + .sm\:pl-60 { + padding-left: 15rem !important; + } + + .sm\:pt-64 { + padding-top: 16rem !important; + } + + .sm\:pr-64 { + padding-right: 16rem !important; + } + + .sm\:pb-64 { + padding-bottom: 16rem !important; + } + + .sm\:pl-64 { + padding-left: 16rem !important; + } + + .sm\:pt-72 { + padding-top: 18rem !important; + } + + .sm\:pr-72 { + padding-right: 18rem !important; + } + + .sm\:pb-72 { + padding-bottom: 18rem !important; + } + + .sm\:pl-72 { + padding-left: 18rem !important; + } + + .sm\:pt-80 { + padding-top: 20rem !important; + } + + .sm\:pr-80 { + padding-right: 20rem !important; + } + + .sm\:pb-80 { + padding-bottom: 20rem !important; + } + + .sm\:pl-80 { + padding-left: 20rem !important; + } + + .sm\:pt-96 { + padding-top: 24rem !important; + } + + .sm\:pr-96 { + padding-right: 24rem !important; + } + + .sm\:pb-96 { + padding-bottom: 24rem !important; + } + + .sm\:pl-96 { + padding-left: 24rem !important; + } + + .sm\:pt-px { + padding-top: 1px !important; + } + + .sm\:pr-px { + padding-right: 1px !important; + } + + .sm\:pb-px { + padding-bottom: 1px !important; + } + + .sm\:pl-px { + padding-left: 1px !important; + } + + .sm\:pt-0\.5 { + padding-top: 0.125rem !important; + } + + .sm\:pr-0\.5 { + padding-right: 0.125rem !important; + } + + .sm\:pb-0\.5 { + padding-bottom: 0.125rem !important; + } + + .sm\:pl-0\.5 { + padding-left: 0.125rem !important; + } + + .sm\:pt-1\.5 { + padding-top: 0.375rem !important; + } + + .sm\:pr-1\.5 { + padding-right: 0.375rem !important; + } + + .sm\:pb-1\.5 { + padding-bottom: 0.375rem !important; + } + + .sm\:pl-1\.5 { + padding-left: 0.375rem !important; + } + + .sm\:pt-2\.5 { + padding-top: 0.625rem !important; + } + + .sm\:pr-2\.5 { + padding-right: 0.625rem !important; + } + + .sm\:pb-2\.5 { + padding-bottom: 0.625rem !important; + } + + .sm\:pl-2\.5 { + padding-left: 0.625rem !important; + } + + .sm\:pt-3\.5 { + padding-top: 0.875rem !important; + } + + .sm\:pr-3\.5 { + padding-right: 0.875rem !important; + } + + .sm\:pb-3\.5 { + padding-bottom: 0.875rem !important; + } + + .sm\:pl-3\.5 { + padding-left: 0.875rem !important; + } + + .sm\:placeholder-transparent::-moz-placeholder { + color: transparent !important; + } + + .sm\:placeholder-transparent:-ms-input-placeholder { + color: transparent !important; + } + + .sm\:placeholder-transparent::placeholder { + color: transparent !important; + } + + .sm\:placeholder-current::-moz-placeholder { + color: currentColor !important; + } + + .sm\:placeholder-current:-ms-input-placeholder { + color: currentColor !important; + } + + .sm\:placeholder-current::placeholder { + color: currentColor !important; + } + + .sm\:placeholder-black::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-black:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-black::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-white::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-white:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-white::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-gray-50::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-gray-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-gray-50::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-gray-100::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-gray-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-gray-100::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-gray-200::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-gray-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-gray-200::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-gray-300::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-gray-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-gray-300::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-gray-400::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-gray-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-gray-400::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-gray-500::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-gray-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-gray-500::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-gray-600::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-gray-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-gray-600::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-gray-700::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-gray-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-gray-700::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-gray-800::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-gray-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-gray-800::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-gray-900::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-gray-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-gray-900::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-red-50::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 242, 242, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-red-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 242, 242, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-red-50::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 242, 242, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-red-100::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 226, 226, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-red-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 226, 226, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-red-100::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 226, 226, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-red-200::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 202, 202, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-red-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 202, 202, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-red-200::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 202, 202, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-red-300::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 165, 165, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-red-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 165, 165, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-red-300::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 165, 165, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-red-400::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(248, 113, 113, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-red-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(248, 113, 113, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-red-400::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(248, 113, 113, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-red-500::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(239, 68, 68, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-red-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(239, 68, 68, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-red-500::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(239, 68, 68, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-red-600::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(220, 38, 38, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-red-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(220, 38, 38, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-red-600::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(220, 38, 38, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-red-700::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(185, 28, 28, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-red-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(185, 28, 28, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-red-700::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(185, 28, 28, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-red-800::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(153, 27, 27, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-red-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(153, 27, 27, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-red-800::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(153, 27, 27, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-red-900::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(127, 29, 29, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-red-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(127, 29, 29, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-red-900::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(127, 29, 29, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-yellow-50::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(255, 251, 235, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-yellow-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(255, 251, 235, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-yellow-50::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(255, 251, 235, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-yellow-100::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 243, 199, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-yellow-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 243, 199, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-yellow-100::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 243, 199, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-yellow-200::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(253, 230, 138, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-yellow-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(253, 230, 138, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-yellow-200::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(253, 230, 138, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-yellow-300::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 211, 77, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-yellow-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 211, 77, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-yellow-300::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 211, 77, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-yellow-400::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(251, 191, 36, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-yellow-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(251, 191, 36, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-yellow-400::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(251, 191, 36, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-yellow-500::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-yellow-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-yellow-500::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-yellow-600::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(217, 119, 6, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-yellow-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(217, 119, 6, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-yellow-600::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(217, 119, 6, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-yellow-700::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(180, 83, 9, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-yellow-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(180, 83, 9, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-yellow-700::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(180, 83, 9, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-yellow-800::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(146, 64, 14, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-yellow-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(146, 64, 14, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-yellow-800::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(146, 64, 14, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-yellow-900::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(120, 53, 15, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-yellow-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(120, 53, 15, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-yellow-900::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(120, 53, 15, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-green-50::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(236, 253, 245, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-green-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(236, 253, 245, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-green-50::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(236, 253, 245, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-green-100::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(209, 250, 229, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-green-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(209, 250, 229, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-green-100::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(209, 250, 229, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-green-200::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(167, 243, 208, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-green-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(167, 243, 208, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-green-200::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(167, 243, 208, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-green-300::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(110, 231, 183, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-green-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(110, 231, 183, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-green-300::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(110, 231, 183, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-green-400::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(52, 211, 153, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-green-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(52, 211, 153, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-green-400::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(52, 211, 153, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-green-500::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(16, 185, 129, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-green-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(16, 185, 129, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-green-500::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(16, 185, 129, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-green-600::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(5, 150, 105, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-green-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(5, 150, 105, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-green-600::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(5, 150, 105, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-green-700::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(4, 120, 87, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-green-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(4, 120, 87, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-green-700::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(4, 120, 87, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-green-800::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(6, 95, 70, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-green-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(6, 95, 70, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-green-800::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(6, 95, 70, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-green-900::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(6, 78, 59, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-green-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(6, 78, 59, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-green-900::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(6, 78, 59, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-blue-50::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(239, 246, 255, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-blue-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(239, 246, 255, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-blue-50::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(239, 246, 255, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-blue-100::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(219, 234, 254, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-blue-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(219, 234, 254, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-blue-100::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(219, 234, 254, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-blue-200::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(191, 219, 254, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-blue-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(191, 219, 254, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-blue-200::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(191, 219, 254, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-blue-300::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(147, 197, 253, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-blue-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(147, 197, 253, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-blue-300::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(147, 197, 253, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-blue-400::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(96, 165, 250, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-blue-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(96, 165, 250, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-blue-400::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(96, 165, 250, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-blue-500::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-blue-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-blue-500::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-blue-600::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(37, 99, 235, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-blue-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(37, 99, 235, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-blue-600::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(37, 99, 235, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-blue-700::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(29, 78, 216, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-blue-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(29, 78, 216, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-blue-700::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(29, 78, 216, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-blue-800::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(30, 64, 175, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-blue-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(30, 64, 175, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-blue-800::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(30, 64, 175, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-blue-900::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(30, 58, 138, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-blue-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(30, 58, 138, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-blue-900::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(30, 58, 138, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-indigo-50::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(238, 242, 255, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-indigo-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(238, 242, 255, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-indigo-50::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(238, 242, 255, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-indigo-100::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(224, 231, 255, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-indigo-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(224, 231, 255, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-indigo-100::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(224, 231, 255, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-indigo-200::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(199, 210, 254, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-indigo-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(199, 210, 254, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-indigo-200::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(199, 210, 254, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-indigo-300::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(165, 180, 252, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-indigo-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(165, 180, 252, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-indigo-300::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(165, 180, 252, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-indigo-400::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(129, 140, 248, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-indigo-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(129, 140, 248, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-indigo-400::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(129, 140, 248, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-indigo-500::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(99, 102, 241, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-indigo-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(99, 102, 241, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-indigo-500::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(99, 102, 241, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-indigo-600::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(79, 70, 229, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-indigo-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(79, 70, 229, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-indigo-600::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(79, 70, 229, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-indigo-700::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(67, 56, 202, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-indigo-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(67, 56, 202, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-indigo-700::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(67, 56, 202, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-indigo-800::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(55, 48, 163, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-indigo-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(55, 48, 163, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-indigo-800::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(55, 48, 163, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-indigo-900::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(49, 46, 129, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-indigo-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(49, 46, 129, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-indigo-900::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(49, 46, 129, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-purple-50::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(245, 243, 255, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-purple-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(245, 243, 255, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-purple-50::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(245, 243, 255, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-purple-100::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(237, 233, 254, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-purple-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(237, 233, 254, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-purple-100::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(237, 233, 254, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-purple-200::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(221, 214, 254, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-purple-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(221, 214, 254, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-purple-200::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(221, 214, 254, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-purple-300::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(196, 181, 253, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-purple-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(196, 181, 253, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-purple-300::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(196, 181, 253, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-purple-400::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(167, 139, 250, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-purple-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(167, 139, 250, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-purple-400::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(167, 139, 250, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-purple-500::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(139, 92, 246, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-purple-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(139, 92, 246, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-purple-500::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(139, 92, 246, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-purple-600::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(124, 58, 237, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-purple-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(124, 58, 237, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-purple-600::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(124, 58, 237, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-purple-700::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(109, 40, 217, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-purple-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(109, 40, 217, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-purple-700::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(109, 40, 217, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-purple-800::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(91, 33, 182, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-purple-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(91, 33, 182, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-purple-800::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(91, 33, 182, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-purple-900::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(76, 29, 149, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-purple-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(76, 29, 149, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-purple-900::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(76, 29, 149, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-pink-50::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(253, 242, 248, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-pink-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(253, 242, 248, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-pink-50::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(253, 242, 248, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-pink-100::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 231, 243, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-pink-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 231, 243, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-pink-100::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 231, 243, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-pink-200::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(251, 207, 232, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-pink-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(251, 207, 232, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-pink-200::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(251, 207, 232, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-pink-300::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(249, 168, 212, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-pink-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(249, 168, 212, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-pink-300::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(249, 168, 212, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-pink-400::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(244, 114, 182, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-pink-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(244, 114, 182, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-pink-400::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(244, 114, 182, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-pink-500::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(236, 72, 153, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-pink-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(236, 72, 153, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-pink-500::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(236, 72, 153, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-pink-600::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(219, 39, 119, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-pink-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(219, 39, 119, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-pink-600::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(219, 39, 119, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-pink-700::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(190, 24, 93, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-pink-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(190, 24, 93, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-pink-700::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(190, 24, 93, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-pink-800::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(157, 23, 77, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-pink-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(157, 23, 77, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-pink-800::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(157, 23, 77, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-pink-900::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(131, 24, 67, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-pink-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(131, 24, 67, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-pink-900::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(131, 24, 67, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-primary::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(0, 49, 151, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-primary:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(0, 49, 151, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-primary::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(0, 49, 151, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-transparent:focus::-moz-placeholder { + color: transparent !important; + } + + .sm\:focus\:placeholder-transparent:focus:-ms-input-placeholder { + color: transparent !important; + } + + .sm\:focus\:placeholder-transparent:focus::placeholder { + color: transparent !important; + } + + .sm\:focus\:placeholder-current:focus::-moz-placeholder { + color: currentColor !important; + } + + .sm\:focus\:placeholder-current:focus:-ms-input-placeholder { + color: currentColor !important; + } + + .sm\:focus\:placeholder-current:focus::placeholder { + color: currentColor !important; + } + + .sm\:focus\:placeholder-black:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-black:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-black:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-white:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-white:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-white:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-gray-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-gray-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-gray-50:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-gray-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-gray-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-gray-100:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-gray-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-gray-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-gray-200:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-gray-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-gray-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-gray-300:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-gray-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-gray-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-gray-400:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-gray-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-gray-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-gray-500:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-gray-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-gray-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-gray-600:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-gray-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-gray-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-gray-700:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-gray-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-gray-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-gray-800:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-gray-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-gray-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-gray-900:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-red-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 242, 242, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-red-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 242, 242, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-red-50:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 242, 242, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-red-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 226, 226, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-red-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 226, 226, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-red-100:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 226, 226, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-red-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 202, 202, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-red-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 202, 202, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-red-200:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 202, 202, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-red-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 165, 165, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-red-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 165, 165, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-red-300:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 165, 165, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-red-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(248, 113, 113, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-red-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(248, 113, 113, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-red-400:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(248, 113, 113, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-red-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(239, 68, 68, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-red-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(239, 68, 68, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-red-500:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(239, 68, 68, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-red-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(220, 38, 38, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-red-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(220, 38, 38, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-red-600:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(220, 38, 38, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-red-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(185, 28, 28, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-red-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(185, 28, 28, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-red-700:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(185, 28, 28, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-red-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(153, 27, 27, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-red-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(153, 27, 27, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-red-800:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(153, 27, 27, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-red-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(127, 29, 29, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-red-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(127, 29, 29, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-red-900:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(127, 29, 29, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-yellow-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(255, 251, 235, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-yellow-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(255, 251, 235, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-yellow-50:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(255, 251, 235, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-yellow-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 243, 199, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-yellow-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 243, 199, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-yellow-100:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 243, 199, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-yellow-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(253, 230, 138, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-yellow-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(253, 230, 138, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-yellow-200:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(253, 230, 138, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-yellow-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 211, 77, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-yellow-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 211, 77, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-yellow-300:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 211, 77, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-yellow-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(251, 191, 36, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-yellow-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(251, 191, 36, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-yellow-400:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(251, 191, 36, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-yellow-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-yellow-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-yellow-500:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-yellow-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(217, 119, 6, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-yellow-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(217, 119, 6, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-yellow-600:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(217, 119, 6, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-yellow-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(180, 83, 9, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-yellow-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(180, 83, 9, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-yellow-700:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(180, 83, 9, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-yellow-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(146, 64, 14, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-yellow-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(146, 64, 14, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-yellow-800:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(146, 64, 14, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-yellow-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(120, 53, 15, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-yellow-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(120, 53, 15, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-yellow-900:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(120, 53, 15, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-green-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(236, 253, 245, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-green-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(236, 253, 245, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-green-50:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(236, 253, 245, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-green-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(209, 250, 229, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-green-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(209, 250, 229, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-green-100:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(209, 250, 229, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-green-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(167, 243, 208, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-green-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(167, 243, 208, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-green-200:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(167, 243, 208, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-green-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(110, 231, 183, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-green-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(110, 231, 183, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-green-300:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(110, 231, 183, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-green-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(52, 211, 153, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-green-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(52, 211, 153, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-green-400:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(52, 211, 153, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-green-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(16, 185, 129, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-green-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(16, 185, 129, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-green-500:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(16, 185, 129, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-green-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(5, 150, 105, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-green-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(5, 150, 105, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-green-600:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(5, 150, 105, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-green-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(4, 120, 87, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-green-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(4, 120, 87, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-green-700:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(4, 120, 87, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-green-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(6, 95, 70, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-green-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(6, 95, 70, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-green-800:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(6, 95, 70, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-green-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(6, 78, 59, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-green-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(6, 78, 59, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-green-900:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(6, 78, 59, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-blue-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(239, 246, 255, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-blue-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(239, 246, 255, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-blue-50:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(239, 246, 255, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-blue-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(219, 234, 254, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-blue-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(219, 234, 254, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-blue-100:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(219, 234, 254, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-blue-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(191, 219, 254, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-blue-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(191, 219, 254, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-blue-200:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(191, 219, 254, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-blue-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(147, 197, 253, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-blue-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(147, 197, 253, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-blue-300:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(147, 197, 253, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-blue-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(96, 165, 250, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-blue-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(96, 165, 250, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-blue-400:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(96, 165, 250, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-blue-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-blue-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-blue-500:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-blue-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(37, 99, 235, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-blue-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(37, 99, 235, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-blue-600:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(37, 99, 235, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-blue-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(29, 78, 216, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-blue-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(29, 78, 216, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-blue-700:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(29, 78, 216, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-blue-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(30, 64, 175, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-blue-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(30, 64, 175, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-blue-800:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(30, 64, 175, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-blue-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(30, 58, 138, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-blue-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(30, 58, 138, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-blue-900:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(30, 58, 138, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-indigo-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(238, 242, 255, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-indigo-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(238, 242, 255, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-indigo-50:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(238, 242, 255, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-indigo-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(224, 231, 255, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-indigo-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(224, 231, 255, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-indigo-100:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(224, 231, 255, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-indigo-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(199, 210, 254, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-indigo-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(199, 210, 254, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-indigo-200:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(199, 210, 254, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-indigo-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(165, 180, 252, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-indigo-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(165, 180, 252, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-indigo-300:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(165, 180, 252, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-indigo-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(129, 140, 248, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-indigo-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(129, 140, 248, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-indigo-400:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(129, 140, 248, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-indigo-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(99, 102, 241, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-indigo-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(99, 102, 241, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-indigo-500:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(99, 102, 241, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-indigo-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(79, 70, 229, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-indigo-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(79, 70, 229, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-indigo-600:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(79, 70, 229, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-indigo-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(67, 56, 202, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-indigo-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(67, 56, 202, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-indigo-700:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(67, 56, 202, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-indigo-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(55, 48, 163, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-indigo-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(55, 48, 163, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-indigo-800:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(55, 48, 163, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-indigo-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(49, 46, 129, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-indigo-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(49, 46, 129, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-indigo-900:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(49, 46, 129, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-purple-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(245, 243, 255, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-purple-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(245, 243, 255, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-purple-50:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(245, 243, 255, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-purple-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(237, 233, 254, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-purple-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(237, 233, 254, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-purple-100:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(237, 233, 254, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-purple-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(221, 214, 254, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-purple-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(221, 214, 254, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-purple-200:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(221, 214, 254, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-purple-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(196, 181, 253, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-purple-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(196, 181, 253, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-purple-300:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(196, 181, 253, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-purple-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(167, 139, 250, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-purple-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(167, 139, 250, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-purple-400:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(167, 139, 250, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-purple-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(139, 92, 246, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-purple-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(139, 92, 246, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-purple-500:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(139, 92, 246, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-purple-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(124, 58, 237, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-purple-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(124, 58, 237, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-purple-600:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(124, 58, 237, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-purple-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(109, 40, 217, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-purple-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(109, 40, 217, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-purple-700:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(109, 40, 217, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-purple-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(91, 33, 182, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-purple-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(91, 33, 182, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-purple-800:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(91, 33, 182, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-purple-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(76, 29, 149, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-purple-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(76, 29, 149, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-purple-900:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(76, 29, 149, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-pink-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(253, 242, 248, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-pink-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(253, 242, 248, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-pink-50:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(253, 242, 248, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-pink-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 231, 243, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-pink-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 231, 243, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-pink-100:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 231, 243, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-pink-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(251, 207, 232, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-pink-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(251, 207, 232, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-pink-200:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(251, 207, 232, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-pink-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(249, 168, 212, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-pink-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(249, 168, 212, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-pink-300:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(249, 168, 212, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-pink-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(244, 114, 182, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-pink-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(244, 114, 182, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-pink-400:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(244, 114, 182, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-pink-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(236, 72, 153, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-pink-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(236, 72, 153, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-pink-500:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(236, 72, 153, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-pink-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(219, 39, 119, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-pink-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(219, 39, 119, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-pink-600:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(219, 39, 119, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-pink-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(190, 24, 93, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-pink-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(190, 24, 93, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-pink-700:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(190, 24, 93, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-pink-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(157, 23, 77, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-pink-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(157, 23, 77, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-pink-800:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(157, 23, 77, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-pink-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(131, 24, 67, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-pink-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(131, 24, 67, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-pink-900:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(131, 24, 67, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-primary:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(0, 49, 151, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-primary:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(0, 49, 151, var(--tw-placeholder-opacity)) !important; + } + + .sm\:focus\:placeholder-primary:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(0, 49, 151, var(--tw-placeholder-opacity)) !important; + } + + .sm\:placeholder-opacity-0::-moz-placeholder { + --tw-placeholder-opacity: 0 !important; + } + + .sm\:placeholder-opacity-0:-ms-input-placeholder { + --tw-placeholder-opacity: 0 !important; + } + + .sm\:placeholder-opacity-0::placeholder { + --tw-placeholder-opacity: 0 !important; + } + + .sm\:placeholder-opacity-5::-moz-placeholder { + --tw-placeholder-opacity: 0.05 !important; + } + + .sm\:placeholder-opacity-5:-ms-input-placeholder { + --tw-placeholder-opacity: 0.05 !important; + } + + .sm\:placeholder-opacity-5::placeholder { + --tw-placeholder-opacity: 0.05 !important; + } + + .sm\:placeholder-opacity-10::-moz-placeholder { + --tw-placeholder-opacity: 0.1 !important; + } + + .sm\:placeholder-opacity-10:-ms-input-placeholder { + --tw-placeholder-opacity: 0.1 !important; + } + + .sm\:placeholder-opacity-10::placeholder { + --tw-placeholder-opacity: 0.1 !important; + } + + .sm\:placeholder-opacity-20::-moz-placeholder { + --tw-placeholder-opacity: 0.2 !important; + } + + .sm\:placeholder-opacity-20:-ms-input-placeholder { + --tw-placeholder-opacity: 0.2 !important; + } + + .sm\:placeholder-opacity-20::placeholder { + --tw-placeholder-opacity: 0.2 !important; + } + + .sm\:placeholder-opacity-25::-moz-placeholder { + --tw-placeholder-opacity: 0.25 !important; + } + + .sm\:placeholder-opacity-25:-ms-input-placeholder { + --tw-placeholder-opacity: 0.25 !important; + } + + .sm\:placeholder-opacity-25::placeholder { + --tw-placeholder-opacity: 0.25 !important; + } + + .sm\:placeholder-opacity-30::-moz-placeholder { + --tw-placeholder-opacity: 0.3 !important; + } + + .sm\:placeholder-opacity-30:-ms-input-placeholder { + --tw-placeholder-opacity: 0.3 !important; + } + + .sm\:placeholder-opacity-30::placeholder { + --tw-placeholder-opacity: 0.3 !important; + } + + .sm\:placeholder-opacity-40::-moz-placeholder { + --tw-placeholder-opacity: 0.4 !important; + } + + .sm\:placeholder-opacity-40:-ms-input-placeholder { + --tw-placeholder-opacity: 0.4 !important; + } + + .sm\:placeholder-opacity-40::placeholder { + --tw-placeholder-opacity: 0.4 !important; + } + + .sm\:placeholder-opacity-50::-moz-placeholder { + --tw-placeholder-opacity: 0.5 !important; + } + + .sm\:placeholder-opacity-50:-ms-input-placeholder { + --tw-placeholder-opacity: 0.5 !important; + } + + .sm\:placeholder-opacity-50::placeholder { + --tw-placeholder-opacity: 0.5 !important; + } + + .sm\:placeholder-opacity-60::-moz-placeholder { + --tw-placeholder-opacity: 0.6 !important; + } + + .sm\:placeholder-opacity-60:-ms-input-placeholder { + --tw-placeholder-opacity: 0.6 !important; + } + + .sm\:placeholder-opacity-60::placeholder { + --tw-placeholder-opacity: 0.6 !important; + } + + .sm\:placeholder-opacity-70::-moz-placeholder { + --tw-placeholder-opacity: 0.7 !important; + } + + .sm\:placeholder-opacity-70:-ms-input-placeholder { + --tw-placeholder-opacity: 0.7 !important; + } + + .sm\:placeholder-opacity-70::placeholder { + --tw-placeholder-opacity: 0.7 !important; + } + + .sm\:placeholder-opacity-75::-moz-placeholder { + --tw-placeholder-opacity: 0.75 !important; + } + + .sm\:placeholder-opacity-75:-ms-input-placeholder { + --tw-placeholder-opacity: 0.75 !important; + } + + .sm\:placeholder-opacity-75::placeholder { + --tw-placeholder-opacity: 0.75 !important; + } + + .sm\:placeholder-opacity-80::-moz-placeholder { + --tw-placeholder-opacity: 0.8 !important; + } + + .sm\:placeholder-opacity-80:-ms-input-placeholder { + --tw-placeholder-opacity: 0.8 !important; + } + + .sm\:placeholder-opacity-80::placeholder { + --tw-placeholder-opacity: 0.8 !important; + } + + .sm\:placeholder-opacity-90::-moz-placeholder { + --tw-placeholder-opacity: 0.9 !important; + } + + .sm\:placeholder-opacity-90:-ms-input-placeholder { + --tw-placeholder-opacity: 0.9 !important; + } + + .sm\:placeholder-opacity-90::placeholder { + --tw-placeholder-opacity: 0.9 !important; + } + + .sm\:placeholder-opacity-95::-moz-placeholder { + --tw-placeholder-opacity: 0.95 !important; + } + + .sm\:placeholder-opacity-95:-ms-input-placeholder { + --tw-placeholder-opacity: 0.95 !important; + } + + .sm\:placeholder-opacity-95::placeholder { + --tw-placeholder-opacity: 0.95 !important; + } + + .sm\:placeholder-opacity-100::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + } + + .sm\:placeholder-opacity-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + } + + .sm\:placeholder-opacity-100::placeholder { + --tw-placeholder-opacity: 1 !important; + } + + .sm\:focus\:placeholder-opacity-0:focus::-moz-placeholder { + --tw-placeholder-opacity: 0 !important; + } + + .sm\:focus\:placeholder-opacity-0:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0 !important; + } + + .sm\:focus\:placeholder-opacity-0:focus::placeholder { + --tw-placeholder-opacity: 0 !important; + } + + .sm\:focus\:placeholder-opacity-5:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.05 !important; + } + + .sm\:focus\:placeholder-opacity-5:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.05 !important; + } + + .sm\:focus\:placeholder-opacity-5:focus::placeholder { + --tw-placeholder-opacity: 0.05 !important; + } + + .sm\:focus\:placeholder-opacity-10:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.1 !important; + } + + .sm\:focus\:placeholder-opacity-10:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.1 !important; + } + + .sm\:focus\:placeholder-opacity-10:focus::placeholder { + --tw-placeholder-opacity: 0.1 !important; + } + + .sm\:focus\:placeholder-opacity-20:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.2 !important; + } + + .sm\:focus\:placeholder-opacity-20:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.2 !important; + } + + .sm\:focus\:placeholder-opacity-20:focus::placeholder { + --tw-placeholder-opacity: 0.2 !important; + } + + .sm\:focus\:placeholder-opacity-25:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.25 !important; + } + + .sm\:focus\:placeholder-opacity-25:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.25 !important; + } + + .sm\:focus\:placeholder-opacity-25:focus::placeholder { + --tw-placeholder-opacity: 0.25 !important; + } + + .sm\:focus\:placeholder-opacity-30:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.3 !important; + } + + .sm\:focus\:placeholder-opacity-30:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.3 !important; + } + + .sm\:focus\:placeholder-opacity-30:focus::placeholder { + --tw-placeholder-opacity: 0.3 !important; + } + + .sm\:focus\:placeholder-opacity-40:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.4 !important; + } + + .sm\:focus\:placeholder-opacity-40:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.4 !important; + } + + .sm\:focus\:placeholder-opacity-40:focus::placeholder { + --tw-placeholder-opacity: 0.4 !important; + } + + .sm\:focus\:placeholder-opacity-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.5 !important; + } + + .sm\:focus\:placeholder-opacity-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.5 !important; + } + + .sm\:focus\:placeholder-opacity-50:focus::placeholder { + --tw-placeholder-opacity: 0.5 !important; + } + + .sm\:focus\:placeholder-opacity-60:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.6 !important; + } + + .sm\:focus\:placeholder-opacity-60:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.6 !important; + } + + .sm\:focus\:placeholder-opacity-60:focus::placeholder { + --tw-placeholder-opacity: 0.6 !important; + } + + .sm\:focus\:placeholder-opacity-70:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.7 !important; + } + + .sm\:focus\:placeholder-opacity-70:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.7 !important; + } + + .sm\:focus\:placeholder-opacity-70:focus::placeholder { + --tw-placeholder-opacity: 0.7 !important; + } + + .sm\:focus\:placeholder-opacity-75:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.75 !important; + } + + .sm\:focus\:placeholder-opacity-75:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.75 !important; + } + + .sm\:focus\:placeholder-opacity-75:focus::placeholder { + --tw-placeholder-opacity: 0.75 !important; + } + + .sm\:focus\:placeholder-opacity-80:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.8 !important; + } + + .sm\:focus\:placeholder-opacity-80:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.8 !important; + } + + .sm\:focus\:placeholder-opacity-80:focus::placeholder { + --tw-placeholder-opacity: 0.8 !important; + } + + .sm\:focus\:placeholder-opacity-90:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.9 !important; + } + + .sm\:focus\:placeholder-opacity-90:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.9 !important; + } + + .sm\:focus\:placeholder-opacity-90:focus::placeholder { + --tw-placeholder-opacity: 0.9 !important; + } + + .sm\:focus\:placeholder-opacity-95:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.95 !important; + } + + .sm\:focus\:placeholder-opacity-95:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.95 !important; + } + + .sm\:focus\:placeholder-opacity-95:focus::placeholder { + --tw-placeholder-opacity: 0.95 !important; + } + + .sm\:focus\:placeholder-opacity-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + } + + .sm\:focus\:placeholder-opacity-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + } + + .sm\:focus\:placeholder-opacity-100:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + } + + .sm\:pointer-events-none { + pointer-events: none !important; + } + + .sm\:pointer-events-auto { + pointer-events: auto !important; + } + + .sm\:static { + position: static !important; + } + + .sm\:fixed { + position: fixed !important; + } + + .sm\:absolute { + position: absolute !important; + } + + .sm\:relative { + position: relative !important; + } + + .sm\:sticky { + position: sticky !important; + } + + .sm\:inset-0 { + top: 0px !important; + right: 0px !important; + bottom: 0px !important; + left: 0px !important; + } + + .sm\:inset-1 { + top: 0.25rem !important; + right: 0.25rem !important; + bottom: 0.25rem !important; + left: 0.25rem !important; + } + + .sm\:inset-2 { + top: 0.5rem !important; + right: 0.5rem !important; + bottom: 0.5rem !important; + left: 0.5rem !important; + } + + .sm\:inset-3 { + top: 0.75rem !important; + right: 0.75rem !important; + bottom: 0.75rem !important; + left: 0.75rem !important; + } + + .sm\:inset-4 { + top: 1rem !important; + right: 1rem !important; + bottom: 1rem !important; + left: 1rem !important; + } + + .sm\:inset-5 { + top: 1.25rem !important; + right: 1.25rem !important; + bottom: 1.25rem !important; + left: 1.25rem !important; + } + + .sm\:inset-6 { + top: 1.5rem !important; + right: 1.5rem !important; + bottom: 1.5rem !important; + left: 1.5rem !important; + } + + .sm\:inset-7 { + top: 1.75rem !important; + right: 1.75rem !important; + bottom: 1.75rem !important; + left: 1.75rem !important; + } + + .sm\:inset-8 { + top: 2rem !important; + right: 2rem !important; + bottom: 2rem !important; + left: 2rem !important; + } + + .sm\:inset-9 { + top: 2.25rem !important; + right: 2.25rem !important; + bottom: 2.25rem !important; + left: 2.25rem !important; + } + + .sm\:inset-10 { + top: 2.5rem !important; + right: 2.5rem !important; + bottom: 2.5rem !important; + left: 2.5rem !important; + } + + .sm\:inset-11 { + top: 2.75rem !important; + right: 2.75rem !important; + bottom: 2.75rem !important; + left: 2.75rem !important; + } + + .sm\:inset-12 { + top: 3rem !important; + right: 3rem !important; + bottom: 3rem !important; + left: 3rem !important; + } + + .sm\:inset-14 { + top: 3.5rem !important; + right: 3.5rem !important; + bottom: 3.5rem !important; + left: 3.5rem !important; + } + + .sm\:inset-16 { + top: 4rem !important; + right: 4rem !important; + bottom: 4rem !important; + left: 4rem !important; + } + + .sm\:inset-20 { + top: 5rem !important; + right: 5rem !important; + bottom: 5rem !important; + left: 5rem !important; + } + + .sm\:inset-24 { + top: 6rem !important; + right: 6rem !important; + bottom: 6rem !important; + left: 6rem !important; + } + + .sm\:inset-28 { + top: 7rem !important; + right: 7rem !important; + bottom: 7rem !important; + left: 7rem !important; + } + + .sm\:inset-32 { + top: 8rem !important; + right: 8rem !important; + bottom: 8rem !important; + left: 8rem !important; + } + + .sm\:inset-36 { + top: 9rem !important; + right: 9rem !important; + bottom: 9rem !important; + left: 9rem !important; + } + + .sm\:inset-40 { + top: 10rem !important; + right: 10rem !important; + bottom: 10rem !important; + left: 10rem !important; + } + + .sm\:inset-44 { + top: 11rem !important; + right: 11rem !important; + bottom: 11rem !important; + left: 11rem !important; + } + + .sm\:inset-48 { + top: 12rem !important; + right: 12rem !important; + bottom: 12rem !important; + left: 12rem !important; + } + + .sm\:inset-52 { + top: 13rem !important; + right: 13rem !important; + bottom: 13rem !important; + left: 13rem !important; + } + + .sm\:inset-56 { + top: 14rem !important; + right: 14rem !important; + bottom: 14rem !important; + left: 14rem !important; + } + + .sm\:inset-60 { + top: 15rem !important; + right: 15rem !important; + bottom: 15rem !important; + left: 15rem !important; + } + + .sm\:inset-64 { + top: 16rem !important; + right: 16rem !important; + bottom: 16rem !important; + left: 16rem !important; + } + + .sm\:inset-72 { + top: 18rem !important; + right: 18rem !important; + bottom: 18rem !important; + left: 18rem !important; + } + + .sm\:inset-80 { + top: 20rem !important; + right: 20rem !important; + bottom: 20rem !important; + left: 20rem !important; + } + + .sm\:inset-96 { + top: 24rem !important; + right: 24rem !important; + bottom: 24rem !important; + left: 24rem !important; + } + + .sm\:inset-auto { + top: auto !important; + right: auto !important; + bottom: auto !important; + left: auto !important; + } + + .sm\:inset-px { + top: 1px !important; + right: 1px !important; + bottom: 1px !important; + left: 1px !important; + } + + .sm\:inset-0\.5 { + top: 0.125rem !important; + right: 0.125rem !important; + bottom: 0.125rem !important; + left: 0.125rem !important; + } + + .sm\:inset-1\.5 { + top: 0.375rem !important; + right: 0.375rem !important; + bottom: 0.375rem !important; + left: 0.375rem !important; + } + + .sm\:inset-2\.5 { + top: 0.625rem !important; + right: 0.625rem !important; + bottom: 0.625rem !important; + left: 0.625rem !important; + } + + .sm\:inset-3\.5 { + top: 0.875rem !important; + right: 0.875rem !important; + bottom: 0.875rem !important; + left: 0.875rem !important; + } + + .sm\:-inset-0 { + top: 0px !important; + right: 0px !important; + bottom: 0px !important; + left: 0px !important; + } + + .sm\:-inset-1 { + top: -0.25rem !important; + right: -0.25rem !important; + bottom: -0.25rem !important; + left: -0.25rem !important; + } + + .sm\:-inset-2 { + top: -0.5rem !important; + right: -0.5rem !important; + bottom: -0.5rem !important; + left: -0.5rem !important; + } + + .sm\:-inset-3 { + top: -0.75rem !important; + right: -0.75rem !important; + bottom: -0.75rem !important; + left: -0.75rem !important; + } + + .sm\:-inset-4 { + top: -1rem !important; + right: -1rem !important; + bottom: -1rem !important; + left: -1rem !important; + } + + .sm\:-inset-5 { + top: -1.25rem !important; + right: -1.25rem !important; + bottom: -1.25rem !important; + left: -1.25rem !important; + } + + .sm\:-inset-6 { + top: -1.5rem !important; + right: -1.5rem !important; + bottom: -1.5rem !important; + left: -1.5rem !important; + } + + .sm\:-inset-7 { + top: -1.75rem !important; + right: -1.75rem !important; + bottom: -1.75rem !important; + left: -1.75rem !important; + } + + .sm\:-inset-8 { + top: -2rem !important; + right: -2rem !important; + bottom: -2rem !important; + left: -2rem !important; + } + + .sm\:-inset-9 { + top: -2.25rem !important; + right: -2.25rem !important; + bottom: -2.25rem !important; + left: -2.25rem !important; + } + + .sm\:-inset-10 { + top: -2.5rem !important; + right: -2.5rem !important; + bottom: -2.5rem !important; + left: -2.5rem !important; + } + + .sm\:-inset-11 { + top: -2.75rem !important; + right: -2.75rem !important; + bottom: -2.75rem !important; + left: -2.75rem !important; + } + + .sm\:-inset-12 { + top: -3rem !important; + right: -3rem !important; + bottom: -3rem !important; + left: -3rem !important; + } + + .sm\:-inset-14 { + top: -3.5rem !important; + right: -3.5rem !important; + bottom: -3.5rem !important; + left: -3.5rem !important; + } + + .sm\:-inset-16 { + top: -4rem !important; + right: -4rem !important; + bottom: -4rem !important; + left: -4rem !important; + } + + .sm\:-inset-20 { + top: -5rem !important; + right: -5rem !important; + bottom: -5rem !important; + left: -5rem !important; + } + + .sm\:-inset-24 { + top: -6rem !important; + right: -6rem !important; + bottom: -6rem !important; + left: -6rem !important; + } + + .sm\:-inset-28 { + top: -7rem !important; + right: -7rem !important; + bottom: -7rem !important; + left: -7rem !important; + } + + .sm\:-inset-32 { + top: -8rem !important; + right: -8rem !important; + bottom: -8rem !important; + left: -8rem !important; + } + + .sm\:-inset-36 { + top: -9rem !important; + right: -9rem !important; + bottom: -9rem !important; + left: -9rem !important; + } + + .sm\:-inset-40 { + top: -10rem !important; + right: -10rem !important; + bottom: -10rem !important; + left: -10rem !important; + } + + .sm\:-inset-44 { + top: -11rem !important; + right: -11rem !important; + bottom: -11rem !important; + left: -11rem !important; + } + + .sm\:-inset-48 { + top: -12rem !important; + right: -12rem !important; + bottom: -12rem !important; + left: -12rem !important; + } + + .sm\:-inset-52 { + top: -13rem !important; + right: -13rem !important; + bottom: -13rem !important; + left: -13rem !important; + } + + .sm\:-inset-56 { + top: -14rem !important; + right: -14rem !important; + bottom: -14rem !important; + left: -14rem !important; + } + + .sm\:-inset-60 { + top: -15rem !important; + right: -15rem !important; + bottom: -15rem !important; + left: -15rem !important; + } + + .sm\:-inset-64 { + top: -16rem !important; + right: -16rem !important; + bottom: -16rem !important; + left: -16rem !important; + } + + .sm\:-inset-72 { + top: -18rem !important; + right: -18rem !important; + bottom: -18rem !important; + left: -18rem !important; + } + + .sm\:-inset-80 { + top: -20rem !important; + right: -20rem !important; + bottom: -20rem !important; + left: -20rem !important; + } + + .sm\:-inset-96 { + top: -24rem !important; + right: -24rem !important; + bottom: -24rem !important; + left: -24rem !important; + } + + .sm\:-inset-px { + top: -1px !important; + right: -1px !important; + bottom: -1px !important; + left: -1px !important; + } + + .sm\:-inset-0\.5 { + top: -0.125rem !important; + right: -0.125rem !important; + bottom: -0.125rem !important; + left: -0.125rem !important; + } + + .sm\:-inset-1\.5 { + top: -0.375rem !important; + right: -0.375rem !important; + bottom: -0.375rem !important; + left: -0.375rem !important; + } + + .sm\:-inset-2\.5 { + top: -0.625rem !important; + right: -0.625rem !important; + bottom: -0.625rem !important; + left: -0.625rem !important; + } + + .sm\:-inset-3\.5 { + top: -0.875rem !important; + right: -0.875rem !important; + bottom: -0.875rem !important; + left: -0.875rem !important; + } + + .sm\:inset-1\/2 { + top: 50% !important; + right: 50% !important; + bottom: 50% !important; + left: 50% !important; + } + + .sm\:inset-1\/3 { + top: 33.333333% !important; + right: 33.333333% !important; + bottom: 33.333333% !important; + left: 33.333333% !important; + } + + .sm\:inset-2\/3 { + top: 66.666667% !important; + right: 66.666667% !important; + bottom: 66.666667% !important; + left: 66.666667% !important; + } + + .sm\:inset-1\/4 { + top: 25% !important; + right: 25% !important; + bottom: 25% !important; + left: 25% !important; + } + + .sm\:inset-2\/4 { + top: 50% !important; + right: 50% !important; + bottom: 50% !important; + left: 50% !important; + } + + .sm\:inset-3\/4 { + top: 75% !important; + right: 75% !important; + bottom: 75% !important; + left: 75% !important; + } + + .sm\:inset-full { + top: 100% !important; + right: 100% !important; + bottom: 100% !important; + left: 100% !important; + } + + .sm\:-inset-1\/2 { + top: -50% !important; + right: -50% !important; + bottom: -50% !important; + left: -50% !important; + } + + .sm\:-inset-1\/3 { + top: -33.333333% !important; + right: -33.333333% !important; + bottom: -33.333333% !important; + left: -33.333333% !important; + } + + .sm\:-inset-2\/3 { + top: -66.666667% !important; + right: -66.666667% !important; + bottom: -66.666667% !important; + left: -66.666667% !important; + } + + .sm\:-inset-1\/4 { + top: -25% !important; + right: -25% !important; + bottom: -25% !important; + left: -25% !important; + } + + .sm\:-inset-2\/4 { + top: -50% !important; + right: -50% !important; + bottom: -50% !important; + left: -50% !important; + } + + .sm\:-inset-3\/4 { + top: -75% !important; + right: -75% !important; + bottom: -75% !important; + left: -75% !important; + } + + .sm\:-inset-full { + top: -100% !important; + right: -100% !important; + bottom: -100% !important; + left: -100% !important; + } + + .sm\:inset-y-0 { + top: 0px !important; + bottom: 0px !important; + } + + .sm\:inset-x-0 { + right: 0px !important; + left: 0px !important; + } + + .sm\:inset-y-1 { + top: 0.25rem !important; + bottom: 0.25rem !important; + } + + .sm\:inset-x-1 { + right: 0.25rem !important; + left: 0.25rem !important; + } + + .sm\:inset-y-2 { + top: 0.5rem !important; + bottom: 0.5rem !important; + } + + .sm\:inset-x-2 { + right: 0.5rem !important; + left: 0.5rem !important; + } + + .sm\:inset-y-3 { + top: 0.75rem !important; + bottom: 0.75rem !important; + } + + .sm\:inset-x-3 { + right: 0.75rem !important; + left: 0.75rem !important; + } + + .sm\:inset-y-4 { + top: 1rem !important; + bottom: 1rem !important; + } + + .sm\:inset-x-4 { + right: 1rem !important; + left: 1rem !important; + } + + .sm\:inset-y-5 { + top: 1.25rem !important; + bottom: 1.25rem !important; + } + + .sm\:inset-x-5 { + right: 1.25rem !important; + left: 1.25rem !important; + } + + .sm\:inset-y-6 { + top: 1.5rem !important; + bottom: 1.5rem !important; + } + + .sm\:inset-x-6 { + right: 1.5rem !important; + left: 1.5rem !important; + } + + .sm\:inset-y-7 { + top: 1.75rem !important; + bottom: 1.75rem !important; + } + + .sm\:inset-x-7 { + right: 1.75rem !important; + left: 1.75rem !important; + } + + .sm\:inset-y-8 { + top: 2rem !important; + bottom: 2rem !important; + } + + .sm\:inset-x-8 { + right: 2rem !important; + left: 2rem !important; + } + + .sm\:inset-y-9 { + top: 2.25rem !important; + bottom: 2.25rem !important; + } + + .sm\:inset-x-9 { + right: 2.25rem !important; + left: 2.25rem !important; + } + + .sm\:inset-y-10 { + top: 2.5rem !important; + bottom: 2.5rem !important; + } + + .sm\:inset-x-10 { + right: 2.5rem !important; + left: 2.5rem !important; + } + + .sm\:inset-y-11 { + top: 2.75rem !important; + bottom: 2.75rem !important; + } + + .sm\:inset-x-11 { + right: 2.75rem !important; + left: 2.75rem !important; + } + + .sm\:inset-y-12 { + top: 3rem !important; + bottom: 3rem !important; + } + + .sm\:inset-x-12 { + right: 3rem !important; + left: 3rem !important; + } + + .sm\:inset-y-14 { + top: 3.5rem !important; + bottom: 3.5rem !important; + } + + .sm\:inset-x-14 { + right: 3.5rem !important; + left: 3.5rem !important; + } + + .sm\:inset-y-16 { + top: 4rem !important; + bottom: 4rem !important; + } + + .sm\:inset-x-16 { + right: 4rem !important; + left: 4rem !important; + } + + .sm\:inset-y-20 { + top: 5rem !important; + bottom: 5rem !important; + } + + .sm\:inset-x-20 { + right: 5rem !important; + left: 5rem !important; + } + + .sm\:inset-y-24 { + top: 6rem !important; + bottom: 6rem !important; + } + + .sm\:inset-x-24 { + right: 6rem !important; + left: 6rem !important; + } + + .sm\:inset-y-28 { + top: 7rem !important; + bottom: 7rem !important; + } + + .sm\:inset-x-28 { + right: 7rem !important; + left: 7rem !important; + } + + .sm\:inset-y-32 { + top: 8rem !important; + bottom: 8rem !important; + } + + .sm\:inset-x-32 { + right: 8rem !important; + left: 8rem !important; + } + + .sm\:inset-y-36 { + top: 9rem !important; + bottom: 9rem !important; + } + + .sm\:inset-x-36 { + right: 9rem !important; + left: 9rem !important; + } + + .sm\:inset-y-40 { + top: 10rem !important; + bottom: 10rem !important; + } + + .sm\:inset-x-40 { + right: 10rem !important; + left: 10rem !important; + } + + .sm\:inset-y-44 { + top: 11rem !important; + bottom: 11rem !important; + } + + .sm\:inset-x-44 { + right: 11rem !important; + left: 11rem !important; + } + + .sm\:inset-y-48 { + top: 12rem !important; + bottom: 12rem !important; + } + + .sm\:inset-x-48 { + right: 12rem !important; + left: 12rem !important; + } + + .sm\:inset-y-52 { + top: 13rem !important; + bottom: 13rem !important; + } + + .sm\:inset-x-52 { + right: 13rem !important; + left: 13rem !important; + } + + .sm\:inset-y-56 { + top: 14rem !important; + bottom: 14rem !important; + } + + .sm\:inset-x-56 { + right: 14rem !important; + left: 14rem !important; + } + + .sm\:inset-y-60 { + top: 15rem !important; + bottom: 15rem !important; + } + + .sm\:inset-x-60 { + right: 15rem !important; + left: 15rem !important; + } + + .sm\:inset-y-64 { + top: 16rem !important; + bottom: 16rem !important; + } + + .sm\:inset-x-64 { + right: 16rem !important; + left: 16rem !important; + } + + .sm\:inset-y-72 { + top: 18rem !important; + bottom: 18rem !important; + } + + .sm\:inset-x-72 { + right: 18rem !important; + left: 18rem !important; + } + + .sm\:inset-y-80 { + top: 20rem !important; + bottom: 20rem !important; + } + + .sm\:inset-x-80 { + right: 20rem !important; + left: 20rem !important; + } + + .sm\:inset-y-96 { + top: 24rem !important; + bottom: 24rem !important; + } + + .sm\:inset-x-96 { + right: 24rem !important; + left: 24rem !important; + } + + .sm\:inset-y-auto { + top: auto !important; + bottom: auto !important; + } + + .sm\:inset-x-auto { + right: auto !important; + left: auto !important; + } + + .sm\:inset-y-px { + top: 1px !important; + bottom: 1px !important; + } + + .sm\:inset-x-px { + right: 1px !important; + left: 1px !important; + } + + .sm\:inset-y-0\.5 { + top: 0.125rem !important; + bottom: 0.125rem !important; + } + + .sm\:inset-x-0\.5 { + right: 0.125rem !important; + left: 0.125rem !important; + } + + .sm\:inset-y-1\.5 { + top: 0.375rem !important; + bottom: 0.375rem !important; + } + + .sm\:inset-x-1\.5 { + right: 0.375rem !important; + left: 0.375rem !important; + } + + .sm\:inset-y-2\.5 { + top: 0.625rem !important; + bottom: 0.625rem !important; + } + + .sm\:inset-x-2\.5 { + right: 0.625rem !important; + left: 0.625rem !important; + } + + .sm\:inset-y-3\.5 { + top: 0.875rem !important; + bottom: 0.875rem !important; + } + + .sm\:inset-x-3\.5 { + right: 0.875rem !important; + left: 0.875rem !important; + } + + .sm\:-inset-y-0 { + top: 0px !important; + bottom: 0px !important; + } + + .sm\:-inset-x-0 { + right: 0px !important; + left: 0px !important; + } + + .sm\:-inset-y-1 { + top: -0.25rem !important; + bottom: -0.25rem !important; + } + + .sm\:-inset-x-1 { + right: -0.25rem !important; + left: -0.25rem !important; + } + + .sm\:-inset-y-2 { + top: -0.5rem !important; + bottom: -0.5rem !important; + } + + .sm\:-inset-x-2 { + right: -0.5rem !important; + left: -0.5rem !important; + } + + .sm\:-inset-y-3 { + top: -0.75rem !important; + bottom: -0.75rem !important; + } + + .sm\:-inset-x-3 { + right: -0.75rem !important; + left: -0.75rem !important; + } + + .sm\:-inset-y-4 { + top: -1rem !important; + bottom: -1rem !important; + } + + .sm\:-inset-x-4 { + right: -1rem !important; + left: -1rem !important; + } + + .sm\:-inset-y-5 { + top: -1.25rem !important; + bottom: -1.25rem !important; + } + + .sm\:-inset-x-5 { + right: -1.25rem !important; + left: -1.25rem !important; + } + + .sm\:-inset-y-6 { + top: -1.5rem !important; + bottom: -1.5rem !important; + } + + .sm\:-inset-x-6 { + right: -1.5rem !important; + left: -1.5rem !important; + } + + .sm\:-inset-y-7 { + top: -1.75rem !important; + bottom: -1.75rem !important; + } + + .sm\:-inset-x-7 { + right: -1.75rem !important; + left: -1.75rem !important; + } + + .sm\:-inset-y-8 { + top: -2rem !important; + bottom: -2rem !important; + } + + .sm\:-inset-x-8 { + right: -2rem !important; + left: -2rem !important; + } + + .sm\:-inset-y-9 { + top: -2.25rem !important; + bottom: -2.25rem !important; + } + + .sm\:-inset-x-9 { + right: -2.25rem !important; + left: -2.25rem !important; + } + + .sm\:-inset-y-10 { + top: -2.5rem !important; + bottom: -2.5rem !important; + } + + .sm\:-inset-x-10 { + right: -2.5rem !important; + left: -2.5rem !important; + } + + .sm\:-inset-y-11 { + top: -2.75rem !important; + bottom: -2.75rem !important; + } + + .sm\:-inset-x-11 { + right: -2.75rem !important; + left: -2.75rem !important; + } + + .sm\:-inset-y-12 { + top: -3rem !important; + bottom: -3rem !important; + } + + .sm\:-inset-x-12 { + right: -3rem !important; + left: -3rem !important; + } + + .sm\:-inset-y-14 { + top: -3.5rem !important; + bottom: -3.5rem !important; + } + + .sm\:-inset-x-14 { + right: -3.5rem !important; + left: -3.5rem !important; + } + + .sm\:-inset-y-16 { + top: -4rem !important; + bottom: -4rem !important; + } + + .sm\:-inset-x-16 { + right: -4rem !important; + left: -4rem !important; + } + + .sm\:-inset-y-20 { + top: -5rem !important; + bottom: -5rem !important; + } + + .sm\:-inset-x-20 { + right: -5rem !important; + left: -5rem !important; + } + + .sm\:-inset-y-24 { + top: -6rem !important; + bottom: -6rem !important; + } + + .sm\:-inset-x-24 { + right: -6rem !important; + left: -6rem !important; + } + + .sm\:-inset-y-28 { + top: -7rem !important; + bottom: -7rem !important; + } + + .sm\:-inset-x-28 { + right: -7rem !important; + left: -7rem !important; + } + + .sm\:-inset-y-32 { + top: -8rem !important; + bottom: -8rem !important; + } + + .sm\:-inset-x-32 { + right: -8rem !important; + left: -8rem !important; + } + + .sm\:-inset-y-36 { + top: -9rem !important; + bottom: -9rem !important; + } + + .sm\:-inset-x-36 { + right: -9rem !important; + left: -9rem !important; + } + + .sm\:-inset-y-40 { + top: -10rem !important; + bottom: -10rem !important; + } + + .sm\:-inset-x-40 { + right: -10rem !important; + left: -10rem !important; + } + + .sm\:-inset-y-44 { + top: -11rem !important; + bottom: -11rem !important; + } + + .sm\:-inset-x-44 { + right: -11rem !important; + left: -11rem !important; + } + + .sm\:-inset-y-48 { + top: -12rem !important; + bottom: -12rem !important; + } + + .sm\:-inset-x-48 { + right: -12rem !important; + left: -12rem !important; + } + + .sm\:-inset-y-52 { + top: -13rem !important; + bottom: -13rem !important; + } + + .sm\:-inset-x-52 { + right: -13rem !important; + left: -13rem !important; + } + + .sm\:-inset-y-56 { + top: -14rem !important; + bottom: -14rem !important; + } + + .sm\:-inset-x-56 { + right: -14rem !important; + left: -14rem !important; + } + + .sm\:-inset-y-60 { + top: -15rem !important; + bottom: -15rem !important; + } + + .sm\:-inset-x-60 { + right: -15rem !important; + left: -15rem !important; + } + + .sm\:-inset-y-64 { + top: -16rem !important; + bottom: -16rem !important; + } + + .sm\:-inset-x-64 { + right: -16rem !important; + left: -16rem !important; + } + + .sm\:-inset-y-72 { + top: -18rem !important; + bottom: -18rem !important; + } + + .sm\:-inset-x-72 { + right: -18rem !important; + left: -18rem !important; + } + + .sm\:-inset-y-80 { + top: -20rem !important; + bottom: -20rem !important; + } + + .sm\:-inset-x-80 { + right: -20rem !important; + left: -20rem !important; + } + + .sm\:-inset-y-96 { + top: -24rem !important; + bottom: -24rem !important; + } + + .sm\:-inset-x-96 { + right: -24rem !important; + left: -24rem !important; + } + + .sm\:-inset-y-px { + top: -1px !important; + bottom: -1px !important; + } + + .sm\:-inset-x-px { + right: -1px !important; + left: -1px !important; + } + + .sm\:-inset-y-0\.5 { + top: -0.125rem !important; + bottom: -0.125rem !important; + } + + .sm\:-inset-x-0\.5 { + right: -0.125rem !important; + left: -0.125rem !important; + } + + .sm\:-inset-y-1\.5 { + top: -0.375rem !important; + bottom: -0.375rem !important; + } + + .sm\:-inset-x-1\.5 { + right: -0.375rem !important; + left: -0.375rem !important; + } + + .sm\:-inset-y-2\.5 { + top: -0.625rem !important; + bottom: -0.625rem !important; + } + + .sm\:-inset-x-2\.5 { + right: -0.625rem !important; + left: -0.625rem !important; + } + + .sm\:-inset-y-3\.5 { + top: -0.875rem !important; + bottom: -0.875rem !important; + } + + .sm\:-inset-x-3\.5 { + right: -0.875rem !important; + left: -0.875rem !important; + } + + .sm\:inset-y-1\/2 { + top: 50% !important; + bottom: 50% !important; + } + + .sm\:inset-x-1\/2 { + right: 50% !important; + left: 50% !important; + } + + .sm\:inset-y-1\/3 { + top: 33.333333% !important; + bottom: 33.333333% !important; + } + + .sm\:inset-x-1\/3 { + right: 33.333333% !important; + left: 33.333333% !important; + } + + .sm\:inset-y-2\/3 { + top: 66.666667% !important; + bottom: 66.666667% !important; + } + + .sm\:inset-x-2\/3 { + right: 66.666667% !important; + left: 66.666667% !important; + } + + .sm\:inset-y-1\/4 { + top: 25% !important; + bottom: 25% !important; + } + + .sm\:inset-x-1\/4 { + right: 25% !important; + left: 25% !important; + } + + .sm\:inset-y-2\/4 { + top: 50% !important; + bottom: 50% !important; + } + + .sm\:inset-x-2\/4 { + right: 50% !important; + left: 50% !important; + } + + .sm\:inset-y-3\/4 { + top: 75% !important; + bottom: 75% !important; + } + + .sm\:inset-x-3\/4 { + right: 75% !important; + left: 75% !important; + } + + .sm\:inset-y-full { + top: 100% !important; + bottom: 100% !important; + } + + .sm\:inset-x-full { + right: 100% !important; + left: 100% !important; + } + + .sm\:-inset-y-1\/2 { + top: -50% !important; + bottom: -50% !important; + } + + .sm\:-inset-x-1\/2 { + right: -50% !important; + left: -50% !important; + } + + .sm\:-inset-y-1\/3 { + top: -33.333333% !important; + bottom: -33.333333% !important; + } + + .sm\:-inset-x-1\/3 { + right: -33.333333% !important; + left: -33.333333% !important; + } + + .sm\:-inset-y-2\/3 { + top: -66.666667% !important; + bottom: -66.666667% !important; + } + + .sm\:-inset-x-2\/3 { + right: -66.666667% !important; + left: -66.666667% !important; + } + + .sm\:-inset-y-1\/4 { + top: -25% !important; + bottom: -25% !important; + } + + .sm\:-inset-x-1\/4 { + right: -25% !important; + left: -25% !important; + } + + .sm\:-inset-y-2\/4 { + top: -50% !important; + bottom: -50% !important; + } + + .sm\:-inset-x-2\/4 { + right: -50% !important; + left: -50% !important; + } + + .sm\:-inset-y-3\/4 { + top: -75% !important; + bottom: -75% !important; + } + + .sm\:-inset-x-3\/4 { + right: -75% !important; + left: -75% !important; + } + + .sm\:-inset-y-full { + top: -100% !important; + bottom: -100% !important; + } + + .sm\:-inset-x-full { + right: -100% !important; + left: -100% !important; + } + + .sm\:top-0 { + top: 0px !important; + } + + .sm\:right-0 { + right: 0px !important; + } + + .sm\:bottom-0 { + bottom: 0px !important; + } + + .sm\:left-0 { + left: 0px !important; + } + + .sm\:top-1 { + top: 0.25rem !important; + } + + .sm\:right-1 { + right: 0.25rem !important; + } + + .sm\:bottom-1 { + bottom: 0.25rem !important; + } + + .sm\:left-1 { + left: 0.25rem !important; + } + + .sm\:top-2 { + top: 0.5rem !important; + } + + .sm\:right-2 { + right: 0.5rem !important; + } + + .sm\:bottom-2 { + bottom: 0.5rem !important; + } + + .sm\:left-2 { + left: 0.5rem !important; + } + + .sm\:top-3 { + top: 0.75rem !important; + } + + .sm\:right-3 { + right: 0.75rem !important; + } + + .sm\:bottom-3 { + bottom: 0.75rem !important; + } + + .sm\:left-3 { + left: 0.75rem !important; + } + + .sm\:top-4 { + top: 1rem !important; + } + + .sm\:right-4 { + right: 1rem !important; + } + + .sm\:bottom-4 { + bottom: 1rem !important; + } + + .sm\:left-4 { + left: 1rem !important; + } + + .sm\:top-5 { + top: 1.25rem !important; + } + + .sm\:right-5 { + right: 1.25rem !important; + } + + .sm\:bottom-5 { + bottom: 1.25rem !important; + } + + .sm\:left-5 { + left: 1.25rem !important; + } + + .sm\:top-6 { + top: 1.5rem !important; + } + + .sm\:right-6 { + right: 1.5rem !important; + } + + .sm\:bottom-6 { + bottom: 1.5rem !important; + } + + .sm\:left-6 { + left: 1.5rem !important; + } + + .sm\:top-7 { + top: 1.75rem !important; + } + + .sm\:right-7 { + right: 1.75rem !important; + } + + .sm\:bottom-7 { + bottom: 1.75rem !important; + } + + .sm\:left-7 { + left: 1.75rem !important; + } + + .sm\:top-8 { + top: 2rem !important; + } + + .sm\:right-8 { + right: 2rem !important; + } + + .sm\:bottom-8 { + bottom: 2rem !important; + } + + .sm\:left-8 { + left: 2rem !important; + } + + .sm\:top-9 { + top: 2.25rem !important; + } + + .sm\:right-9 { + right: 2.25rem !important; + } + + .sm\:bottom-9 { + bottom: 2.25rem !important; + } + + .sm\:left-9 { + left: 2.25rem !important; + } + + .sm\:top-10 { + top: 2.5rem !important; + } + + .sm\:right-10 { + right: 2.5rem !important; + } + + .sm\:bottom-10 { + bottom: 2.5rem !important; + } + + .sm\:left-10 { + left: 2.5rem !important; + } + + .sm\:top-11 { + top: 2.75rem !important; + } + + .sm\:right-11 { + right: 2.75rem !important; + } + + .sm\:bottom-11 { + bottom: 2.75rem !important; + } + + .sm\:left-11 { + left: 2.75rem !important; + } + + .sm\:top-12 { + top: 3rem !important; + } + + .sm\:right-12 { + right: 3rem !important; + } + + .sm\:bottom-12 { + bottom: 3rem !important; + } + + .sm\:left-12 { + left: 3rem !important; + } + + .sm\:top-14 { + top: 3.5rem !important; + } + + .sm\:right-14 { + right: 3.5rem !important; + } + + .sm\:bottom-14 { + bottom: 3.5rem !important; + } + + .sm\:left-14 { + left: 3.5rem !important; + } + + .sm\:top-16 { + top: 4rem !important; + } + + .sm\:right-16 { + right: 4rem !important; + } + + .sm\:bottom-16 { + bottom: 4rem !important; + } + + .sm\:left-16 { + left: 4rem !important; + } + + .sm\:top-20 { + top: 5rem !important; + } + + .sm\:right-20 { + right: 5rem !important; + } + + .sm\:bottom-20 { + bottom: 5rem !important; + } + + .sm\:left-20 { + left: 5rem !important; + } + + .sm\:top-24 { + top: 6rem !important; + } + + .sm\:right-24 { + right: 6rem !important; + } + + .sm\:bottom-24 { + bottom: 6rem !important; + } + + .sm\:left-24 { + left: 6rem !important; + } + + .sm\:top-28 { + top: 7rem !important; + } + + .sm\:right-28 { + right: 7rem !important; + } + + .sm\:bottom-28 { + bottom: 7rem !important; + } + + .sm\:left-28 { + left: 7rem !important; + } + + .sm\:top-32 { + top: 8rem !important; + } + + .sm\:right-32 { + right: 8rem !important; + } + + .sm\:bottom-32 { + bottom: 8rem !important; + } + + .sm\:left-32 { + left: 8rem !important; + } + + .sm\:top-36 { + top: 9rem !important; + } + + .sm\:right-36 { + right: 9rem !important; + } + + .sm\:bottom-36 { + bottom: 9rem !important; + } + + .sm\:left-36 { + left: 9rem !important; + } + + .sm\:top-40 { + top: 10rem !important; + } + + .sm\:right-40 { + right: 10rem !important; + } + + .sm\:bottom-40 { + bottom: 10rem !important; + } + + .sm\:left-40 { + left: 10rem !important; + } + + .sm\:top-44 { + top: 11rem !important; + } + + .sm\:right-44 { + right: 11rem !important; + } + + .sm\:bottom-44 { + bottom: 11rem !important; + } + + .sm\:left-44 { + left: 11rem !important; + } + + .sm\:top-48 { + top: 12rem !important; + } + + .sm\:right-48 { + right: 12rem !important; + } + + .sm\:bottom-48 { + bottom: 12rem !important; + } + + .sm\:left-48 { + left: 12rem !important; + } + + .sm\:top-52 { + top: 13rem !important; + } + + .sm\:right-52 { + right: 13rem !important; + } + + .sm\:bottom-52 { + bottom: 13rem !important; + } + + .sm\:left-52 { + left: 13rem !important; + } + + .sm\:top-56 { + top: 14rem !important; + } + + .sm\:right-56 { + right: 14rem !important; + } + + .sm\:bottom-56 { + bottom: 14rem !important; + } + + .sm\:left-56 { + left: 14rem !important; + } + + .sm\:top-60 { + top: 15rem !important; + } + + .sm\:right-60 { + right: 15rem !important; + } + + .sm\:bottom-60 { + bottom: 15rem !important; + } + + .sm\:left-60 { + left: 15rem !important; + } + + .sm\:top-64 { + top: 16rem !important; + } + + .sm\:right-64 { + right: 16rem !important; + } + + .sm\:bottom-64 { + bottom: 16rem !important; + } + + .sm\:left-64 { + left: 16rem !important; + } + + .sm\:top-72 { + top: 18rem !important; + } + + .sm\:right-72 { + right: 18rem !important; + } + + .sm\:bottom-72 { + bottom: 18rem !important; + } + + .sm\:left-72 { + left: 18rem !important; + } + + .sm\:top-80 { + top: 20rem !important; + } + + .sm\:right-80 { + right: 20rem !important; + } + + .sm\:bottom-80 { + bottom: 20rem !important; + } + + .sm\:left-80 { + left: 20rem !important; + } + + .sm\:top-96 { + top: 24rem !important; + } + + .sm\:right-96 { + right: 24rem !important; + } + + .sm\:bottom-96 { + bottom: 24rem !important; + } + + .sm\:left-96 { + left: 24rem !important; + } + + .sm\:top-auto { + top: auto !important; + } + + .sm\:right-auto { + right: auto !important; + } + + .sm\:bottom-auto { + bottom: auto !important; + } + + .sm\:left-auto { + left: auto !important; + } + + .sm\:top-px { + top: 1px !important; + } + + .sm\:right-px { + right: 1px !important; + } + + .sm\:bottom-px { + bottom: 1px !important; + } + + .sm\:left-px { + left: 1px !important; + } + + .sm\:top-0\.5 { + top: 0.125rem !important; + } + + .sm\:right-0\.5 { + right: 0.125rem !important; + } + + .sm\:bottom-0\.5 { + bottom: 0.125rem !important; + } + + .sm\:left-0\.5 { + left: 0.125rem !important; + } + + .sm\:top-1\.5 { + top: 0.375rem !important; + } + + .sm\:right-1\.5 { + right: 0.375rem !important; + } + + .sm\:bottom-1\.5 { + bottom: 0.375rem !important; + } + + .sm\:left-1\.5 { + left: 0.375rem !important; + } + + .sm\:top-2\.5 { + top: 0.625rem !important; + } + + .sm\:right-2\.5 { + right: 0.625rem !important; + } + + .sm\:bottom-2\.5 { + bottom: 0.625rem !important; + } + + .sm\:left-2\.5 { + left: 0.625rem !important; + } + + .sm\:top-3\.5 { + top: 0.875rem !important; + } + + .sm\:right-3\.5 { + right: 0.875rem !important; + } + + .sm\:bottom-3\.5 { + bottom: 0.875rem !important; + } + + .sm\:left-3\.5 { + left: 0.875rem !important; + } + + .sm\:-top-0 { + top: 0px !important; + } + + .sm\:-right-0 { + right: 0px !important; + } + + .sm\:-bottom-0 { + bottom: 0px !important; + } + + .sm\:-left-0 { + left: 0px !important; + } + + .sm\:-top-1 { + top: -0.25rem !important; + } + + .sm\:-right-1 { + right: -0.25rem !important; + } + + .sm\:-bottom-1 { + bottom: -0.25rem !important; + } + + .sm\:-left-1 { + left: -0.25rem !important; + } + + .sm\:-top-2 { + top: -0.5rem !important; + } + + .sm\:-right-2 { + right: -0.5rem !important; + } + + .sm\:-bottom-2 { + bottom: -0.5rem !important; + } + + .sm\:-left-2 { + left: -0.5rem !important; + } + + .sm\:-top-3 { + top: -0.75rem !important; + } + + .sm\:-right-3 { + right: -0.75rem !important; + } + + .sm\:-bottom-3 { + bottom: -0.75rem !important; + } + + .sm\:-left-3 { + left: -0.75rem !important; + } + + .sm\:-top-4 { + top: -1rem !important; + } + + .sm\:-right-4 { + right: -1rem !important; + } + + .sm\:-bottom-4 { + bottom: -1rem !important; + } + + .sm\:-left-4 { + left: -1rem !important; + } + + .sm\:-top-5 { + top: -1.25rem !important; + } + + .sm\:-right-5 { + right: -1.25rem !important; + } + + .sm\:-bottom-5 { + bottom: -1.25rem !important; + } + + .sm\:-left-5 { + left: -1.25rem !important; + } + + .sm\:-top-6 { + top: -1.5rem !important; + } + + .sm\:-right-6 { + right: -1.5rem !important; + } + + .sm\:-bottom-6 { + bottom: -1.5rem !important; + } + + .sm\:-left-6 { + left: -1.5rem !important; + } + + .sm\:-top-7 { + top: -1.75rem !important; + } + + .sm\:-right-7 { + right: -1.75rem !important; + } + + .sm\:-bottom-7 { + bottom: -1.75rem !important; + } + + .sm\:-left-7 { + left: -1.75rem !important; + } + + .sm\:-top-8 { + top: -2rem !important; + } + + .sm\:-right-8 { + right: -2rem !important; + } + + .sm\:-bottom-8 { + bottom: -2rem !important; + } + + .sm\:-left-8 { + left: -2rem !important; + } + + .sm\:-top-9 { + top: -2.25rem !important; + } + + .sm\:-right-9 { + right: -2.25rem !important; + } + + .sm\:-bottom-9 { + bottom: -2.25rem !important; + } + + .sm\:-left-9 { + left: -2.25rem !important; + } + + .sm\:-top-10 { + top: -2.5rem !important; + } + + .sm\:-right-10 { + right: -2.5rem !important; + } + + .sm\:-bottom-10 { + bottom: -2.5rem !important; + } + + .sm\:-left-10 { + left: -2.5rem !important; + } + + .sm\:-top-11 { + top: -2.75rem !important; + } + + .sm\:-right-11 { + right: -2.75rem !important; + } + + .sm\:-bottom-11 { + bottom: -2.75rem !important; + } + + .sm\:-left-11 { + left: -2.75rem !important; + } + + .sm\:-top-12 { + top: -3rem !important; + } + + .sm\:-right-12 { + right: -3rem !important; + } + + .sm\:-bottom-12 { + bottom: -3rem !important; + } + + .sm\:-left-12 { + left: -3rem !important; + } + + .sm\:-top-14 { + top: -3.5rem !important; + } + + .sm\:-right-14 { + right: -3.5rem !important; + } + + .sm\:-bottom-14 { + bottom: -3.5rem !important; + } + + .sm\:-left-14 { + left: -3.5rem !important; + } + + .sm\:-top-16 { + top: -4rem !important; + } + + .sm\:-right-16 { + right: -4rem !important; + } + + .sm\:-bottom-16 { + bottom: -4rem !important; + } + + .sm\:-left-16 { + left: -4rem !important; + } + + .sm\:-top-20 { + top: -5rem !important; + } + + .sm\:-right-20 { + right: -5rem !important; + } + + .sm\:-bottom-20 { + bottom: -5rem !important; + } + + .sm\:-left-20 { + left: -5rem !important; + } + + .sm\:-top-24 { + top: -6rem !important; + } + + .sm\:-right-24 { + right: -6rem !important; + } + + .sm\:-bottom-24 { + bottom: -6rem !important; + } + + .sm\:-left-24 { + left: -6rem !important; + } + + .sm\:-top-28 { + top: -7rem !important; + } + + .sm\:-right-28 { + right: -7rem !important; + } + + .sm\:-bottom-28 { + bottom: -7rem !important; + } + + .sm\:-left-28 { + left: -7rem !important; + } + + .sm\:-top-32 { + top: -8rem !important; + } + + .sm\:-right-32 { + right: -8rem !important; + } + + .sm\:-bottom-32 { + bottom: -8rem !important; + } + + .sm\:-left-32 { + left: -8rem !important; + } + + .sm\:-top-36 { + top: -9rem !important; + } + + .sm\:-right-36 { + right: -9rem !important; + } + + .sm\:-bottom-36 { + bottom: -9rem !important; + } + + .sm\:-left-36 { + left: -9rem !important; + } + + .sm\:-top-40 { + top: -10rem !important; + } + + .sm\:-right-40 { + right: -10rem !important; + } + + .sm\:-bottom-40 { + bottom: -10rem !important; + } + + .sm\:-left-40 { + left: -10rem !important; + } + + .sm\:-top-44 { + top: -11rem !important; + } + + .sm\:-right-44 { + right: -11rem !important; + } + + .sm\:-bottom-44 { + bottom: -11rem !important; + } + + .sm\:-left-44 { + left: -11rem !important; + } + + .sm\:-top-48 { + top: -12rem !important; + } + + .sm\:-right-48 { + right: -12rem !important; + } + + .sm\:-bottom-48 { + bottom: -12rem !important; + } + + .sm\:-left-48 { + left: -12rem !important; + } + + .sm\:-top-52 { + top: -13rem !important; + } + + .sm\:-right-52 { + right: -13rem !important; + } + + .sm\:-bottom-52 { + bottom: -13rem !important; + } + + .sm\:-left-52 { + left: -13rem !important; + } + + .sm\:-top-56 { + top: -14rem !important; + } + + .sm\:-right-56 { + right: -14rem !important; + } + + .sm\:-bottom-56 { + bottom: -14rem !important; + } + + .sm\:-left-56 { + left: -14rem !important; + } + + .sm\:-top-60 { + top: -15rem !important; + } + + .sm\:-right-60 { + right: -15rem !important; + } + + .sm\:-bottom-60 { + bottom: -15rem !important; + } + + .sm\:-left-60 { + left: -15rem !important; + } + + .sm\:-top-64 { + top: -16rem !important; + } + + .sm\:-right-64 { + right: -16rem !important; + } + + .sm\:-bottom-64 { + bottom: -16rem !important; + } + + .sm\:-left-64 { + left: -16rem !important; + } + + .sm\:-top-72 { + top: -18rem !important; + } + + .sm\:-right-72 { + right: -18rem !important; + } + + .sm\:-bottom-72 { + bottom: -18rem !important; + } + + .sm\:-left-72 { + left: -18rem !important; + } + + .sm\:-top-80 { + top: -20rem !important; + } + + .sm\:-right-80 { + right: -20rem !important; + } + + .sm\:-bottom-80 { + bottom: -20rem !important; + } + + .sm\:-left-80 { + left: -20rem !important; + } + + .sm\:-top-96 { + top: -24rem !important; + } + + .sm\:-right-96 { + right: -24rem !important; + } + + .sm\:-bottom-96 { + bottom: -24rem !important; + } + + .sm\:-left-96 { + left: -24rem !important; + } + + .sm\:-top-px { + top: -1px !important; + } + + .sm\:-right-px { + right: -1px !important; + } + + .sm\:-bottom-px { + bottom: -1px !important; + } + + .sm\:-left-px { + left: -1px !important; + } + + .sm\:-top-0\.5 { + top: -0.125rem !important; + } + + .sm\:-right-0\.5 { + right: -0.125rem !important; + } + + .sm\:-bottom-0\.5 { + bottom: -0.125rem !important; + } + + .sm\:-left-0\.5 { + left: -0.125rem !important; + } + + .sm\:-top-1\.5 { + top: -0.375rem !important; + } + + .sm\:-right-1\.5 { + right: -0.375rem !important; + } + + .sm\:-bottom-1\.5 { + bottom: -0.375rem !important; + } + + .sm\:-left-1\.5 { + left: -0.375rem !important; + } + + .sm\:-top-2\.5 { + top: -0.625rem !important; + } + + .sm\:-right-2\.5 { + right: -0.625rem !important; + } + + .sm\:-bottom-2\.5 { + bottom: -0.625rem !important; + } + + .sm\:-left-2\.5 { + left: -0.625rem !important; + } + + .sm\:-top-3\.5 { + top: -0.875rem !important; + } + + .sm\:-right-3\.5 { + right: -0.875rem !important; + } + + .sm\:-bottom-3\.5 { + bottom: -0.875rem !important; + } + + .sm\:-left-3\.5 { + left: -0.875rem !important; + } + + .sm\:top-1\/2 { + top: 50% !important; + } + + .sm\:right-1\/2 { + right: 50% !important; + } + + .sm\:bottom-1\/2 { + bottom: 50% !important; + } + + .sm\:left-1\/2 { + left: 50% !important; + } + + .sm\:top-1\/3 { + top: 33.333333% !important; + } + + .sm\:right-1\/3 { + right: 33.333333% !important; + } + + .sm\:bottom-1\/3 { + bottom: 33.333333% !important; + } + + .sm\:left-1\/3 { + left: 33.333333% !important; + } + + .sm\:top-2\/3 { + top: 66.666667% !important; + } + + .sm\:right-2\/3 { + right: 66.666667% !important; + } + + .sm\:bottom-2\/3 { + bottom: 66.666667% !important; + } + + .sm\:left-2\/3 { + left: 66.666667% !important; + } + + .sm\:top-1\/4 { + top: 25% !important; + } + + .sm\:right-1\/4 { + right: 25% !important; + } + + .sm\:bottom-1\/4 { + bottom: 25% !important; + } + + .sm\:left-1\/4 { + left: 25% !important; + } + + .sm\:top-2\/4 { + top: 50% !important; + } + + .sm\:right-2\/4 { + right: 50% !important; + } + + .sm\:bottom-2\/4 { + bottom: 50% !important; + } + + .sm\:left-2\/4 { + left: 50% !important; + } + + .sm\:top-3\/4 { + top: 75% !important; + } + + .sm\:right-3\/4 { + right: 75% !important; + } + + .sm\:bottom-3\/4 { + bottom: 75% !important; + } + + .sm\:left-3\/4 { + left: 75% !important; + } + + .sm\:top-full { + top: 100% !important; + } + + .sm\:right-full { + right: 100% !important; + } + + .sm\:bottom-full { + bottom: 100% !important; + } + + .sm\:left-full { + left: 100% !important; + } + + .sm\:-top-1\/2 { + top: -50% !important; + } + + .sm\:-right-1\/2 { + right: -50% !important; + } + + .sm\:-bottom-1\/2 { + bottom: -50% !important; + } + + .sm\:-left-1\/2 { + left: -50% !important; + } + + .sm\:-top-1\/3 { + top: -33.333333% !important; + } + + .sm\:-right-1\/3 { + right: -33.333333% !important; + } + + .sm\:-bottom-1\/3 { + bottom: -33.333333% !important; + } + + .sm\:-left-1\/3 { + left: -33.333333% !important; + } + + .sm\:-top-2\/3 { + top: -66.666667% !important; + } + + .sm\:-right-2\/3 { + right: -66.666667% !important; + } + + .sm\:-bottom-2\/3 { + bottom: -66.666667% !important; + } + + .sm\:-left-2\/3 { + left: -66.666667% !important; + } + + .sm\:-top-1\/4 { + top: -25% !important; + } + + .sm\:-right-1\/4 { + right: -25% !important; + } + + .sm\:-bottom-1\/4 { + bottom: -25% !important; + } + + .sm\:-left-1\/4 { + left: -25% !important; + } + + .sm\:-top-2\/4 { + top: -50% !important; + } + + .sm\:-right-2\/4 { + right: -50% !important; + } + + .sm\:-bottom-2\/4 { + bottom: -50% !important; + } + + .sm\:-left-2\/4 { + left: -50% !important; + } + + .sm\:-top-3\/4 { + top: -75% !important; + } + + .sm\:-right-3\/4 { + right: -75% !important; + } + + .sm\:-bottom-3\/4 { + bottom: -75% !important; + } + + .sm\:-left-3\/4 { + left: -75% !important; + } + + .sm\:-top-full { + top: -100% !important; + } + + .sm\:-right-full { + right: -100% !important; + } + + .sm\:-bottom-full { + bottom: -100% !important; + } + + .sm\:-left-full { + left: -100% !important; + } + + .sm\:resize-none { + resize: none !important; + } + + .sm\:resize-y { + resize: vertical !important; + } + + .sm\:resize-x { + resize: horizontal !important; + } + + .sm\:resize { + resize: both !important; + } + + .sm\:shadow-sm { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .sm\:shadow { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .sm\:shadow-md { + --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .sm\:shadow-lg { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .sm\:shadow-xl { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .sm\:shadow-2xl { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .sm\:shadow-inner { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .sm\:shadow-none { + --tw-shadow: 0 0 #0000 !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .group:hover .sm\:group-hover\:shadow-sm { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .group:hover .sm\:group-hover\:shadow { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .group:hover .sm\:group-hover\:shadow-md { + --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .group:hover .sm\:group-hover\:shadow-lg { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .group:hover .sm\:group-hover\:shadow-xl { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .group:hover .sm\:group-hover\:shadow-2xl { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .group:hover .sm\:group-hover\:shadow-inner { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .group:hover .sm\:group-hover\:shadow-none { + --tw-shadow: 0 0 #0000 !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .sm\:focus-within\:shadow-sm:focus-within { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .sm\:focus-within\:shadow:focus-within { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .sm\:focus-within\:shadow-md:focus-within { + --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .sm\:focus-within\:shadow-lg:focus-within { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .sm\:focus-within\:shadow-xl:focus-within { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .sm\:focus-within\:shadow-2xl:focus-within { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .sm\:focus-within\:shadow-inner:focus-within { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .sm\:focus-within\:shadow-none:focus-within { + --tw-shadow: 0 0 #0000 !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .sm\:hover\:shadow-sm:hover { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .sm\:hover\:shadow:hover { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .sm\:hover\:shadow-md:hover { + --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .sm\:hover\:shadow-lg:hover { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .sm\:hover\:shadow-xl:hover { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .sm\:hover\:shadow-2xl:hover { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .sm\:hover\:shadow-inner:hover { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .sm\:hover\:shadow-none:hover { + --tw-shadow: 0 0 #0000 !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .sm\:focus\:shadow-sm:focus { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .sm\:focus\:shadow:focus { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .sm\:focus\:shadow-md:focus { + --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .sm\:focus\:shadow-lg:focus { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .sm\:focus\:shadow-xl:focus { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .sm\:focus\:shadow-2xl:focus { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .sm\:focus\:shadow-inner:focus { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .sm\:focus\:shadow-none:focus { + --tw-shadow: 0 0 #0000 !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .sm\:ring-0 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; + } + + .sm\:ring-1 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; + } + + .sm\:ring-2 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; + } + + .sm\:ring-4 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; + } + + .sm\:ring-8 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; + } + + .sm\:ring { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; + } + + .sm\:ring-inset { + --tw-ring-inset: inset !important; + } + + .sm\:focus-within\:ring-0:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; + } + + .sm\:focus-within\:ring-1:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; + } + + .sm\: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) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; + } + + .sm\:focus-within\:ring-4:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; + } + + .sm\:focus-within\:ring-8:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; + } + + .sm\:focus-within\:ring:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; + } + + .sm\:focus-within\:ring-inset:focus-within { + --tw-ring-inset: inset !important; + } + + .sm\: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) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; + } + + .sm\: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) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; + } + + .sm\: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) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; + } + + .sm\:focus\:ring-4:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; + } + + .sm\:focus\:ring-8:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; + } + + .sm\:focus\:ring:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; + } + + .sm\:focus\:ring-inset:focus { + --tw-ring-inset: inset !important; + } + + .sm\:ring-offset-transparent { + --tw-ring-offset-color: transparent !important; + } + + .sm\:ring-offset-current { + --tw-ring-offset-color: currentColor !important; + } + + .sm\:ring-offset-black { + --tw-ring-offset-color: #000 !important; + } + + .sm\:ring-offset-white { + --tw-ring-offset-color: #fff !important; + } + + .sm\:ring-offset-gray-50 { + --tw-ring-offset-color: #f9fafb !important; + } + + .sm\:ring-offset-gray-100 { + --tw-ring-offset-color: #f3f4f6 !important; + } + + .sm\:ring-offset-gray-200 { + --tw-ring-offset-color: #e5e7eb !important; + } + + .sm\:ring-offset-gray-300 { + --tw-ring-offset-color: #d1d5db !important; + } + + .sm\:ring-offset-gray-400 { + --tw-ring-offset-color: #9ca3af !important; + } + + .sm\:ring-offset-gray-500 { + --tw-ring-offset-color: #6b7280 !important; + } + + .sm\:ring-offset-gray-600 { + --tw-ring-offset-color: #4b5563 !important; + } + + .sm\:ring-offset-gray-700 { + --tw-ring-offset-color: #374151 !important; + } + + .sm\:ring-offset-gray-800 { + --tw-ring-offset-color: #1f2937 !important; + } + + .sm\:ring-offset-gray-900 { + --tw-ring-offset-color: #111827 !important; + } + + .sm\:ring-offset-red-50 { + --tw-ring-offset-color: #fef2f2 !important; + } + + .sm\:ring-offset-red-100 { + --tw-ring-offset-color: #fee2e2 !important; + } + + .sm\:ring-offset-red-200 { + --tw-ring-offset-color: #fecaca !important; + } + + .sm\:ring-offset-red-300 { + --tw-ring-offset-color: #fca5a5 !important; + } + + .sm\:ring-offset-red-400 { + --tw-ring-offset-color: #f87171 !important; + } + + .sm\:ring-offset-red-500 { + --tw-ring-offset-color: #ef4444 !important; + } + + .sm\:ring-offset-red-600 { + --tw-ring-offset-color: #dc2626 !important; + } + + .sm\:ring-offset-red-700 { + --tw-ring-offset-color: #b91c1c !important; + } + + .sm\:ring-offset-red-800 { + --tw-ring-offset-color: #991b1b !important; + } + + .sm\:ring-offset-red-900 { + --tw-ring-offset-color: #7f1d1d !important; + } + + .sm\:ring-offset-yellow-50 { + --tw-ring-offset-color: #fffbeb !important; + } + + .sm\:ring-offset-yellow-100 { + --tw-ring-offset-color: #fef3c7 !important; + } + + .sm\:ring-offset-yellow-200 { + --tw-ring-offset-color: #fde68a !important; + } + + .sm\:ring-offset-yellow-300 { + --tw-ring-offset-color: #fcd34d !important; + } + + .sm\:ring-offset-yellow-400 { + --tw-ring-offset-color: #fbbf24 !important; + } + + .sm\:ring-offset-yellow-500 { + --tw-ring-offset-color: #f59e0b !important; + } + + .sm\:ring-offset-yellow-600 { + --tw-ring-offset-color: #d97706 !important; + } + + .sm\:ring-offset-yellow-700 { + --tw-ring-offset-color: #b45309 !important; + } + + .sm\:ring-offset-yellow-800 { + --tw-ring-offset-color: #92400e !important; + } + + .sm\:ring-offset-yellow-900 { + --tw-ring-offset-color: #78350f !important; + } + + .sm\:ring-offset-green-50 { + --tw-ring-offset-color: #ecfdf5 !important; + } + + .sm\:ring-offset-green-100 { + --tw-ring-offset-color: #d1fae5 !important; + } + + .sm\:ring-offset-green-200 { + --tw-ring-offset-color: #a7f3d0 !important; + } + + .sm\:ring-offset-green-300 { + --tw-ring-offset-color: #6ee7b7 !important; + } + + .sm\:ring-offset-green-400 { + --tw-ring-offset-color: #34d399 !important; + } + + .sm\:ring-offset-green-500 { + --tw-ring-offset-color: #10b981 !important; + } + + .sm\:ring-offset-green-600 { + --tw-ring-offset-color: #059669 !important; + } + + .sm\:ring-offset-green-700 { + --tw-ring-offset-color: #047857 !important; + } + + .sm\:ring-offset-green-800 { + --tw-ring-offset-color: #065f46 !important; + } + + .sm\:ring-offset-green-900 { + --tw-ring-offset-color: #064e3b !important; + } + + .sm\:ring-offset-blue-50 { + --tw-ring-offset-color: #eff6ff !important; + } + + .sm\:ring-offset-blue-100 { + --tw-ring-offset-color: #dbeafe !important; + } + + .sm\:ring-offset-blue-200 { + --tw-ring-offset-color: #bfdbfe !important; + } + + .sm\:ring-offset-blue-300 { + --tw-ring-offset-color: #93c5fd !important; + } + + .sm\:ring-offset-blue-400 { + --tw-ring-offset-color: #60a5fa !important; + } + + .sm\:ring-offset-blue-500 { + --tw-ring-offset-color: #3b82f6 !important; + } + + .sm\:ring-offset-blue-600 { + --tw-ring-offset-color: #2563eb !important; + } + + .sm\:ring-offset-blue-700 { + --tw-ring-offset-color: #1d4ed8 !important; + } + + .sm\:ring-offset-blue-800 { + --tw-ring-offset-color: #1e40af !important; + } + + .sm\:ring-offset-blue-900 { + --tw-ring-offset-color: #1e3a8a !important; + } + + .sm\:ring-offset-indigo-50 { + --tw-ring-offset-color: #eef2ff !important; + } + + .sm\:ring-offset-indigo-100 { + --tw-ring-offset-color: #e0e7ff !important; + } + + .sm\:ring-offset-indigo-200 { + --tw-ring-offset-color: #c7d2fe !important; + } + + .sm\:ring-offset-indigo-300 { + --tw-ring-offset-color: #a5b4fc !important; + } + + .sm\:ring-offset-indigo-400 { + --tw-ring-offset-color: #818cf8 !important; + } + + .sm\:ring-offset-indigo-500 { + --tw-ring-offset-color: #6366f1 !important; + } + + .sm\:ring-offset-indigo-600 { + --tw-ring-offset-color: #4f46e5 !important; + } + + .sm\:ring-offset-indigo-700 { + --tw-ring-offset-color: #4338ca !important; + } + + .sm\:ring-offset-indigo-800 { + --tw-ring-offset-color: #3730a3 !important; + } + + .sm\:ring-offset-indigo-900 { + --tw-ring-offset-color: #312e81 !important; + } + + .sm\:ring-offset-purple-50 { + --tw-ring-offset-color: #f5f3ff !important; + } + + .sm\:ring-offset-purple-100 { + --tw-ring-offset-color: #ede9fe !important; + } + + .sm\:ring-offset-purple-200 { + --tw-ring-offset-color: #ddd6fe !important; + } + + .sm\:ring-offset-purple-300 { + --tw-ring-offset-color: #c4b5fd !important; + } + + .sm\:ring-offset-purple-400 { + --tw-ring-offset-color: #a78bfa !important; + } + + .sm\:ring-offset-purple-500 { + --tw-ring-offset-color: #8b5cf6 !important; + } + + .sm\:ring-offset-purple-600 { + --tw-ring-offset-color: #7c3aed !important; + } + + .sm\:ring-offset-purple-700 { + --tw-ring-offset-color: #6d28d9 !important; + } + + .sm\:ring-offset-purple-800 { + --tw-ring-offset-color: #5b21b6 !important; + } + + .sm\:ring-offset-purple-900 { + --tw-ring-offset-color: #4c1d95 !important; + } + + .sm\:ring-offset-pink-50 { + --tw-ring-offset-color: #fdf2f8 !important; + } + + .sm\:ring-offset-pink-100 { + --tw-ring-offset-color: #fce7f3 !important; + } + + .sm\:ring-offset-pink-200 { + --tw-ring-offset-color: #fbcfe8 !important; + } + + .sm\:ring-offset-pink-300 { + --tw-ring-offset-color: #f9a8d4 !important; + } + + .sm\:ring-offset-pink-400 { + --tw-ring-offset-color: #f472b6 !important; + } + + .sm\:ring-offset-pink-500 { + --tw-ring-offset-color: #ec4899 !important; + } + + .sm\:ring-offset-pink-600 { + --tw-ring-offset-color: #db2777 !important; + } + + .sm\:ring-offset-pink-700 { + --tw-ring-offset-color: #be185d !important; + } + + .sm\:ring-offset-pink-800 { + --tw-ring-offset-color: #9d174d !important; + } + + .sm\:ring-offset-pink-900 { + --tw-ring-offset-color: #831843 !important; + } + + .sm\:ring-offset-primary { + --tw-ring-offset-color: #003197 !important; + } + + .sm\:focus-within\:ring-offset-transparent:focus-within { + --tw-ring-offset-color: transparent !important; + } + + .sm\:focus-within\:ring-offset-current:focus-within { + --tw-ring-offset-color: currentColor !important; + } + + .sm\:focus-within\:ring-offset-black:focus-within { + --tw-ring-offset-color: #000 !important; + } + + .sm\:focus-within\:ring-offset-white:focus-within { + --tw-ring-offset-color: #fff !important; + } + + .sm\:focus-within\:ring-offset-gray-50:focus-within { + --tw-ring-offset-color: #f9fafb !important; + } + + .sm\:focus-within\:ring-offset-gray-100:focus-within { + --tw-ring-offset-color: #f3f4f6 !important; + } + + .sm\:focus-within\:ring-offset-gray-200:focus-within { + --tw-ring-offset-color: #e5e7eb !important; + } + + .sm\:focus-within\:ring-offset-gray-300:focus-within { + --tw-ring-offset-color: #d1d5db !important; + } + + .sm\:focus-within\:ring-offset-gray-400:focus-within { + --tw-ring-offset-color: #9ca3af !important; + } + + .sm\:focus-within\:ring-offset-gray-500:focus-within { + --tw-ring-offset-color: #6b7280 !important; + } + + .sm\:focus-within\:ring-offset-gray-600:focus-within { + --tw-ring-offset-color: #4b5563 !important; + } + + .sm\:focus-within\:ring-offset-gray-700:focus-within { + --tw-ring-offset-color: #374151 !important; + } + + .sm\:focus-within\:ring-offset-gray-800:focus-within { + --tw-ring-offset-color: #1f2937 !important; + } + + .sm\:focus-within\:ring-offset-gray-900:focus-within { + --tw-ring-offset-color: #111827 !important; + } + + .sm\:focus-within\:ring-offset-red-50:focus-within { + --tw-ring-offset-color: #fef2f2 !important; + } + + .sm\:focus-within\:ring-offset-red-100:focus-within { + --tw-ring-offset-color: #fee2e2 !important; + } + + .sm\:focus-within\:ring-offset-red-200:focus-within { + --tw-ring-offset-color: #fecaca !important; + } + + .sm\:focus-within\:ring-offset-red-300:focus-within { + --tw-ring-offset-color: #fca5a5 !important; + } + + .sm\:focus-within\:ring-offset-red-400:focus-within { + --tw-ring-offset-color: #f87171 !important; + } + + .sm\:focus-within\:ring-offset-red-500:focus-within { + --tw-ring-offset-color: #ef4444 !important; + } + + .sm\:focus-within\:ring-offset-red-600:focus-within { + --tw-ring-offset-color: #dc2626 !important; + } + + .sm\:focus-within\:ring-offset-red-700:focus-within { + --tw-ring-offset-color: #b91c1c !important; + } + + .sm\:focus-within\:ring-offset-red-800:focus-within { + --tw-ring-offset-color: #991b1b !important; + } + + .sm\:focus-within\:ring-offset-red-900:focus-within { + --tw-ring-offset-color: #7f1d1d !important; + } + + .sm\:focus-within\:ring-offset-yellow-50:focus-within { + --tw-ring-offset-color: #fffbeb !important; + } + + .sm\:focus-within\:ring-offset-yellow-100:focus-within { + --tw-ring-offset-color: #fef3c7 !important; + } + + .sm\:focus-within\:ring-offset-yellow-200:focus-within { + --tw-ring-offset-color: #fde68a !important; + } + + .sm\:focus-within\:ring-offset-yellow-300:focus-within { + --tw-ring-offset-color: #fcd34d !important; + } + + .sm\:focus-within\:ring-offset-yellow-400:focus-within { + --tw-ring-offset-color: #fbbf24 !important; + } + + .sm\:focus-within\:ring-offset-yellow-500:focus-within { + --tw-ring-offset-color: #f59e0b !important; + } + + .sm\:focus-within\:ring-offset-yellow-600:focus-within { + --tw-ring-offset-color: #d97706 !important; + } + + .sm\:focus-within\:ring-offset-yellow-700:focus-within { + --tw-ring-offset-color: #b45309 !important; + } + + .sm\:focus-within\:ring-offset-yellow-800:focus-within { + --tw-ring-offset-color: #92400e !important; + } + + .sm\:focus-within\:ring-offset-yellow-900:focus-within { + --tw-ring-offset-color: #78350f !important; + } + + .sm\:focus-within\:ring-offset-green-50:focus-within { + --tw-ring-offset-color: #ecfdf5 !important; + } + + .sm\:focus-within\:ring-offset-green-100:focus-within { + --tw-ring-offset-color: #d1fae5 !important; + } + + .sm\:focus-within\:ring-offset-green-200:focus-within { + --tw-ring-offset-color: #a7f3d0 !important; + } + + .sm\:focus-within\:ring-offset-green-300:focus-within { + --tw-ring-offset-color: #6ee7b7 !important; + } + + .sm\:focus-within\:ring-offset-green-400:focus-within { + --tw-ring-offset-color: #34d399 !important; + } + + .sm\:focus-within\:ring-offset-green-500:focus-within { + --tw-ring-offset-color: #10b981 !important; + } + + .sm\:focus-within\:ring-offset-green-600:focus-within { + --tw-ring-offset-color: #059669 !important; + } + + .sm\:focus-within\:ring-offset-green-700:focus-within { + --tw-ring-offset-color: #047857 !important; + } + + .sm\:focus-within\:ring-offset-green-800:focus-within { + --tw-ring-offset-color: #065f46 !important; + } + + .sm\:focus-within\:ring-offset-green-900:focus-within { + --tw-ring-offset-color: #064e3b !important; + } + + .sm\:focus-within\:ring-offset-blue-50:focus-within { + --tw-ring-offset-color: #eff6ff !important; + } + + .sm\:focus-within\:ring-offset-blue-100:focus-within { + --tw-ring-offset-color: #dbeafe !important; + } + + .sm\:focus-within\:ring-offset-blue-200:focus-within { + --tw-ring-offset-color: #bfdbfe !important; + } + + .sm\:focus-within\:ring-offset-blue-300:focus-within { + --tw-ring-offset-color: #93c5fd !important; + } + + .sm\:focus-within\:ring-offset-blue-400:focus-within { + --tw-ring-offset-color: #60a5fa !important; + } + + .sm\:focus-within\:ring-offset-blue-500:focus-within { + --tw-ring-offset-color: #3b82f6 !important; + } + + .sm\:focus-within\:ring-offset-blue-600:focus-within { + --tw-ring-offset-color: #2563eb !important; + } + + .sm\:focus-within\:ring-offset-blue-700:focus-within { + --tw-ring-offset-color: #1d4ed8 !important; + } + + .sm\:focus-within\:ring-offset-blue-800:focus-within { + --tw-ring-offset-color: #1e40af !important; + } + + .sm\:focus-within\:ring-offset-blue-900:focus-within { + --tw-ring-offset-color: #1e3a8a !important; + } + + .sm\:focus-within\:ring-offset-indigo-50:focus-within { + --tw-ring-offset-color: #eef2ff !important; + } + + .sm\:focus-within\:ring-offset-indigo-100:focus-within { + --tw-ring-offset-color: #e0e7ff !important; + } + + .sm\:focus-within\:ring-offset-indigo-200:focus-within { + --tw-ring-offset-color: #c7d2fe !important; + } + + .sm\:focus-within\:ring-offset-indigo-300:focus-within { + --tw-ring-offset-color: #a5b4fc !important; + } + + .sm\:focus-within\:ring-offset-indigo-400:focus-within { + --tw-ring-offset-color: #818cf8 !important; + } + + .sm\:focus-within\:ring-offset-indigo-500:focus-within { + --tw-ring-offset-color: #6366f1 !important; + } + + .sm\:focus-within\:ring-offset-indigo-600:focus-within { + --tw-ring-offset-color: #4f46e5 !important; + } + + .sm\:focus-within\:ring-offset-indigo-700:focus-within { + --tw-ring-offset-color: #4338ca !important; + } + + .sm\:focus-within\:ring-offset-indigo-800:focus-within { + --tw-ring-offset-color: #3730a3 !important; + } + + .sm\:focus-within\:ring-offset-indigo-900:focus-within { + --tw-ring-offset-color: #312e81 !important; + } + + .sm\:focus-within\:ring-offset-purple-50:focus-within { + --tw-ring-offset-color: #f5f3ff !important; + } + + .sm\:focus-within\:ring-offset-purple-100:focus-within { + --tw-ring-offset-color: #ede9fe !important; + } + + .sm\:focus-within\:ring-offset-purple-200:focus-within { + --tw-ring-offset-color: #ddd6fe !important; + } + + .sm\:focus-within\:ring-offset-purple-300:focus-within { + --tw-ring-offset-color: #c4b5fd !important; + } + + .sm\:focus-within\:ring-offset-purple-400:focus-within { + --tw-ring-offset-color: #a78bfa !important; + } + + .sm\:focus-within\:ring-offset-purple-500:focus-within { + --tw-ring-offset-color: #8b5cf6 !important; + } + + .sm\:focus-within\:ring-offset-purple-600:focus-within { + --tw-ring-offset-color: #7c3aed !important; + } + + .sm\:focus-within\:ring-offset-purple-700:focus-within { + --tw-ring-offset-color: #6d28d9 !important; + } + + .sm\:focus-within\:ring-offset-purple-800:focus-within { + --tw-ring-offset-color: #5b21b6 !important; + } + + .sm\:focus-within\:ring-offset-purple-900:focus-within { + --tw-ring-offset-color: #4c1d95 !important; + } + + .sm\:focus-within\:ring-offset-pink-50:focus-within { + --tw-ring-offset-color: #fdf2f8 !important; + } + + .sm\:focus-within\:ring-offset-pink-100:focus-within { + --tw-ring-offset-color: #fce7f3 !important; + } + + .sm\:focus-within\:ring-offset-pink-200:focus-within { + --tw-ring-offset-color: #fbcfe8 !important; + } + + .sm\:focus-within\:ring-offset-pink-300:focus-within { + --tw-ring-offset-color: #f9a8d4 !important; + } + + .sm\:focus-within\:ring-offset-pink-400:focus-within { + --tw-ring-offset-color: #f472b6 !important; + } + + .sm\:focus-within\:ring-offset-pink-500:focus-within { + --tw-ring-offset-color: #ec4899 !important; + } + + .sm\:focus-within\:ring-offset-pink-600:focus-within { + --tw-ring-offset-color: #db2777 !important; + } + + .sm\:focus-within\:ring-offset-pink-700:focus-within { + --tw-ring-offset-color: #be185d !important; + } + + .sm\:focus-within\:ring-offset-pink-800:focus-within { + --tw-ring-offset-color: #9d174d !important; + } + + .sm\:focus-within\:ring-offset-pink-900:focus-within { + --tw-ring-offset-color: #831843 !important; + } + + .sm\:focus-within\:ring-offset-primary:focus-within { + --tw-ring-offset-color: #003197 !important; + } + + .sm\:focus\:ring-offset-transparent:focus { + --tw-ring-offset-color: transparent !important; + } + + .sm\:focus\:ring-offset-current:focus { + --tw-ring-offset-color: currentColor !important; + } + + .sm\:focus\:ring-offset-black:focus { + --tw-ring-offset-color: #000 !important; + } + + .sm\:focus\:ring-offset-white:focus { + --tw-ring-offset-color: #fff !important; + } + + .sm\:focus\:ring-offset-gray-50:focus { + --tw-ring-offset-color: #f9fafb !important; + } + + .sm\:focus\:ring-offset-gray-100:focus { + --tw-ring-offset-color: #f3f4f6 !important; + } + + .sm\:focus\:ring-offset-gray-200:focus { + --tw-ring-offset-color: #e5e7eb !important; + } + + .sm\:focus\:ring-offset-gray-300:focus { + --tw-ring-offset-color: #d1d5db !important; + } + + .sm\:focus\:ring-offset-gray-400:focus { + --tw-ring-offset-color: #9ca3af !important; + } + + .sm\:focus\:ring-offset-gray-500:focus { + --tw-ring-offset-color: #6b7280 !important; + } + + .sm\:focus\:ring-offset-gray-600:focus { + --tw-ring-offset-color: #4b5563 !important; + } + + .sm\:focus\:ring-offset-gray-700:focus { + --tw-ring-offset-color: #374151 !important; + } + + .sm\:focus\:ring-offset-gray-800:focus { + --tw-ring-offset-color: #1f2937 !important; + } + + .sm\:focus\:ring-offset-gray-900:focus { + --tw-ring-offset-color: #111827 !important; + } + + .sm\:focus\:ring-offset-red-50:focus { + --tw-ring-offset-color: #fef2f2 !important; + } + + .sm\:focus\:ring-offset-red-100:focus { + --tw-ring-offset-color: #fee2e2 !important; + } + + .sm\:focus\:ring-offset-red-200:focus { + --tw-ring-offset-color: #fecaca !important; + } + + .sm\:focus\:ring-offset-red-300:focus { + --tw-ring-offset-color: #fca5a5 !important; + } + + .sm\:focus\:ring-offset-red-400:focus { + --tw-ring-offset-color: #f87171 !important; + } + + .sm\:focus\:ring-offset-red-500:focus { + --tw-ring-offset-color: #ef4444 !important; + } + + .sm\:focus\:ring-offset-red-600:focus { + --tw-ring-offset-color: #dc2626 !important; + } + + .sm\:focus\:ring-offset-red-700:focus { + --tw-ring-offset-color: #b91c1c !important; + } + + .sm\:focus\:ring-offset-red-800:focus { + --tw-ring-offset-color: #991b1b !important; + } + + .sm\:focus\:ring-offset-red-900:focus { + --tw-ring-offset-color: #7f1d1d !important; + } + + .sm\:focus\:ring-offset-yellow-50:focus { + --tw-ring-offset-color: #fffbeb !important; + } + + .sm\:focus\:ring-offset-yellow-100:focus { + --tw-ring-offset-color: #fef3c7 !important; + } + + .sm\:focus\:ring-offset-yellow-200:focus { + --tw-ring-offset-color: #fde68a !important; + } + + .sm\:focus\:ring-offset-yellow-300:focus { + --tw-ring-offset-color: #fcd34d !important; + } + + .sm\:focus\:ring-offset-yellow-400:focus { + --tw-ring-offset-color: #fbbf24 !important; + } + + .sm\:focus\:ring-offset-yellow-500:focus { + --tw-ring-offset-color: #f59e0b !important; + } + + .sm\:focus\:ring-offset-yellow-600:focus { + --tw-ring-offset-color: #d97706 !important; + } + + .sm\:focus\:ring-offset-yellow-700:focus { + --tw-ring-offset-color: #b45309 !important; + } + + .sm\:focus\:ring-offset-yellow-800:focus { + --tw-ring-offset-color: #92400e !important; + } + + .sm\:focus\:ring-offset-yellow-900:focus { + --tw-ring-offset-color: #78350f !important; + } + + .sm\:focus\:ring-offset-green-50:focus { + --tw-ring-offset-color: #ecfdf5 !important; + } + + .sm\:focus\:ring-offset-green-100:focus { + --tw-ring-offset-color: #d1fae5 !important; + } + + .sm\:focus\:ring-offset-green-200:focus { + --tw-ring-offset-color: #a7f3d0 !important; + } + + .sm\:focus\:ring-offset-green-300:focus { + --tw-ring-offset-color: #6ee7b7 !important; + } + + .sm\:focus\:ring-offset-green-400:focus { + --tw-ring-offset-color: #34d399 !important; + } + + .sm\:focus\:ring-offset-green-500:focus { + --tw-ring-offset-color: #10b981 !important; + } + + .sm\:focus\:ring-offset-green-600:focus { + --tw-ring-offset-color: #059669 !important; + } + + .sm\:focus\:ring-offset-green-700:focus { + --tw-ring-offset-color: #047857 !important; + } + + .sm\:focus\:ring-offset-green-800:focus { + --tw-ring-offset-color: #065f46 !important; + } + + .sm\:focus\:ring-offset-green-900:focus { + --tw-ring-offset-color: #064e3b !important; + } + + .sm\:focus\:ring-offset-blue-50:focus { + --tw-ring-offset-color: #eff6ff !important; + } + + .sm\:focus\:ring-offset-blue-100:focus { + --tw-ring-offset-color: #dbeafe !important; + } + + .sm\:focus\:ring-offset-blue-200:focus { + --tw-ring-offset-color: #bfdbfe !important; + } + + .sm\:focus\:ring-offset-blue-300:focus { + --tw-ring-offset-color: #93c5fd !important; + } + + .sm\:focus\:ring-offset-blue-400:focus { + --tw-ring-offset-color: #60a5fa !important; + } + + .sm\:focus\:ring-offset-blue-500:focus { + --tw-ring-offset-color: #3b82f6 !important; + } + + .sm\:focus\:ring-offset-blue-600:focus { + --tw-ring-offset-color: #2563eb !important; + } + + .sm\:focus\:ring-offset-blue-700:focus { + --tw-ring-offset-color: #1d4ed8 !important; + } + + .sm\:focus\:ring-offset-blue-800:focus { + --tw-ring-offset-color: #1e40af !important; + } + + .sm\:focus\:ring-offset-blue-900:focus { + --tw-ring-offset-color: #1e3a8a !important; + } + + .sm\:focus\:ring-offset-indigo-50:focus { + --tw-ring-offset-color: #eef2ff !important; + } + + .sm\:focus\:ring-offset-indigo-100:focus { + --tw-ring-offset-color: #e0e7ff !important; + } + + .sm\:focus\:ring-offset-indigo-200:focus { + --tw-ring-offset-color: #c7d2fe !important; + } + + .sm\:focus\:ring-offset-indigo-300:focus { + --tw-ring-offset-color: #a5b4fc !important; + } + + .sm\:focus\:ring-offset-indigo-400:focus { + --tw-ring-offset-color: #818cf8 !important; + } + + .sm\:focus\:ring-offset-indigo-500:focus { + --tw-ring-offset-color: #6366f1 !important; + } + + .sm\:focus\:ring-offset-indigo-600:focus { + --tw-ring-offset-color: #4f46e5 !important; + } + + .sm\:focus\:ring-offset-indigo-700:focus { + --tw-ring-offset-color: #4338ca !important; + } + + .sm\:focus\:ring-offset-indigo-800:focus { + --tw-ring-offset-color: #3730a3 !important; + } + + .sm\:focus\:ring-offset-indigo-900:focus { + --tw-ring-offset-color: #312e81 !important; + } + + .sm\:focus\:ring-offset-purple-50:focus { + --tw-ring-offset-color: #f5f3ff !important; + } + + .sm\:focus\:ring-offset-purple-100:focus { + --tw-ring-offset-color: #ede9fe !important; + } + + .sm\:focus\:ring-offset-purple-200:focus { + --tw-ring-offset-color: #ddd6fe !important; + } + + .sm\:focus\:ring-offset-purple-300:focus { + --tw-ring-offset-color: #c4b5fd !important; + } + + .sm\:focus\:ring-offset-purple-400:focus { + --tw-ring-offset-color: #a78bfa !important; + } + + .sm\:focus\:ring-offset-purple-500:focus { + --tw-ring-offset-color: #8b5cf6 !important; + } + + .sm\:focus\:ring-offset-purple-600:focus { + --tw-ring-offset-color: #7c3aed !important; + } + + .sm\:focus\:ring-offset-purple-700:focus { + --tw-ring-offset-color: #6d28d9 !important; + } + + .sm\:focus\:ring-offset-purple-800:focus { + --tw-ring-offset-color: #5b21b6 !important; + } + + .sm\:focus\:ring-offset-purple-900:focus { + --tw-ring-offset-color: #4c1d95 !important; + } + + .sm\:focus\:ring-offset-pink-50:focus { + --tw-ring-offset-color: #fdf2f8 !important; + } + + .sm\:focus\:ring-offset-pink-100:focus { + --tw-ring-offset-color: #fce7f3 !important; + } + + .sm\:focus\:ring-offset-pink-200:focus { + --tw-ring-offset-color: #fbcfe8 !important; + } + + .sm\:focus\:ring-offset-pink-300:focus { + --tw-ring-offset-color: #f9a8d4 !important; + } + + .sm\:focus\:ring-offset-pink-400:focus { + --tw-ring-offset-color: #f472b6 !important; + } + + .sm\:focus\:ring-offset-pink-500:focus { + --tw-ring-offset-color: #ec4899 !important; + } + + .sm\:focus\:ring-offset-pink-600:focus { + --tw-ring-offset-color: #db2777 !important; + } + + .sm\:focus\:ring-offset-pink-700:focus { + --tw-ring-offset-color: #be185d !important; + } + + .sm\:focus\:ring-offset-pink-800:focus { + --tw-ring-offset-color: #9d174d !important; + } + + .sm\:focus\:ring-offset-pink-900:focus { + --tw-ring-offset-color: #831843 !important; + } + + .sm\:focus\:ring-offset-primary:focus { + --tw-ring-offset-color: #003197 !important; + } + + .sm\:ring-offset-0 { + --tw-ring-offset-width: 0px !important; + } + + .sm\:ring-offset-1 { + --tw-ring-offset-width: 1px !important; + } + + .sm\:ring-offset-2 { + --tw-ring-offset-width: 2px !important; + } + + .sm\:ring-offset-4 { + --tw-ring-offset-width: 4px !important; + } + + .sm\:ring-offset-8 { + --tw-ring-offset-width: 8px !important; + } + + .sm\:focus-within\:ring-offset-0:focus-within { + --tw-ring-offset-width: 0px !important; + } + + .sm\:focus-within\:ring-offset-1:focus-within { + --tw-ring-offset-width: 1px !important; + } + + .sm\:focus-within\:ring-offset-2:focus-within { + --tw-ring-offset-width: 2px !important; + } + + .sm\:focus-within\:ring-offset-4:focus-within { + --tw-ring-offset-width: 4px !important; + } + + .sm\:focus-within\:ring-offset-8:focus-within { + --tw-ring-offset-width: 8px !important; + } + + .sm\:focus\:ring-offset-0:focus { + --tw-ring-offset-width: 0px !important; + } + + .sm\:focus\:ring-offset-1:focus { + --tw-ring-offset-width: 1px !important; + } + + .sm\:focus\:ring-offset-2:focus { + --tw-ring-offset-width: 2px !important; + } + + .sm\:focus\:ring-offset-4:focus { + --tw-ring-offset-width: 4px !important; + } + + .sm\:focus\:ring-offset-8:focus { + --tw-ring-offset-width: 8px !important; + } + + .sm\:ring-transparent { + --tw-ring-color: transparent !important; + } + + .sm\:ring-current { + --tw-ring-color: currentColor !important; + } + + .sm\:ring-black { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important; + } + + .sm\:ring-white { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)) !important; + } + + .sm\:ring-gray-50 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)) !important; + } + + .sm\:ring-gray-100 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)) !important; + } + + .sm\:ring-gray-200 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)) !important; + } + + .sm\:ring-gray-300 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)) !important; + } + + .sm\:ring-gray-400 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)) !important; + } + + .sm\:ring-gray-500 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)) !important; + } + + .sm\:ring-gray-600 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)) !important; + } + + .sm\:ring-gray-700 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)) !important; + } + + .sm\:ring-gray-800 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)) !important; + } + + .sm\:ring-gray-900 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)) !important; + } + + .sm\:ring-red-50 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)) !important; + } + + .sm\:ring-red-100 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)) !important; + } + + .sm\:ring-red-200 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)) !important; + } + + .sm\:ring-red-300 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)) !important; + } + + .sm\:ring-red-400 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)) !important; + } + + .sm\:ring-red-500 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)) !important; + } + + .sm\:ring-red-600 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)) !important; + } + + .sm\:ring-red-700 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)) !important; + } + + .sm\:ring-red-800 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)) !important; + } + + .sm\:ring-red-900 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)) !important; + } + + .sm\:ring-yellow-50 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)) !important; + } + + .sm\:ring-yellow-100 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)) !important; + } + + .sm\:ring-yellow-200 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)) !important; + } + + .sm\:ring-yellow-300 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)) !important; + } + + .sm\:ring-yellow-400 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)) !important; + } + + .sm\:ring-yellow-500 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)) !important; + } + + .sm\:ring-yellow-600 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)) !important; + } + + .sm\:ring-yellow-700 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)) !important; + } + + .sm\:ring-yellow-800 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)) !important; + } + + .sm\:ring-yellow-900 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)) !important; + } + + .sm\:ring-green-50 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)) !important; + } + + .sm\:ring-green-100 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)) !important; + } + + .sm\:ring-green-200 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)) !important; + } + + .sm\:ring-green-300 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)) !important; + } + + .sm\:ring-green-400 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)) !important; + } + + .sm\:ring-green-500 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)) !important; + } + + .sm\:ring-green-600 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)) !important; + } + + .sm\:ring-green-700 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)) !important; + } + + .sm\:ring-green-800 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)) !important; + } + + .sm\:ring-green-900 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)) !important; + } + + .sm\:ring-blue-50 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)) !important; + } + + .sm\:ring-blue-100 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)) !important; + } + + .sm\:ring-blue-200 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)) !important; + } + + .sm\:ring-blue-300 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)) !important; + } + + .sm\:ring-blue-400 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)) !important; + } + + .sm\:ring-blue-500 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)) !important; + } + + .sm\:ring-blue-600 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)) !important; + } + + .sm\:ring-blue-700 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)) !important; + } + + .sm\:ring-blue-800 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)) !important; + } + + .sm\:ring-blue-900 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)) !important; + } + + .sm\:ring-indigo-50 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)) !important; + } + + .sm\:ring-indigo-100 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)) !important; + } + + .sm\:ring-indigo-200 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)) !important; + } + + .sm\:ring-indigo-300 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)) !important; + } + + .sm\:ring-indigo-400 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)) !important; + } + + .sm\:ring-indigo-500 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)) !important; + } + + .sm\:ring-indigo-600 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)) !important; + } + + .sm\:ring-indigo-700 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)) !important; + } + + .sm\:ring-indigo-800 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)) !important; + } + + .sm\:ring-indigo-900 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)) !important; + } + + .sm\:ring-purple-50 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)) !important; + } + + .sm\:ring-purple-100 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)) !important; + } + + .sm\:ring-purple-200 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)) !important; + } + + .sm\:ring-purple-300 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)) !important; + } + + .sm\:ring-purple-400 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)) !important; + } + + .sm\:ring-purple-500 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)) !important; + } + + .sm\:ring-purple-600 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)) !important; + } + + .sm\:ring-purple-700 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)) !important; + } + + .sm\:ring-purple-800 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)) !important; + } + + .sm\:ring-purple-900 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)) !important; + } + + .sm\:ring-pink-50 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)) !important; + } + + .sm\:ring-pink-100 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)) !important; + } + + .sm\:ring-pink-200 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)) !important; + } + + .sm\:ring-pink-300 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)) !important; + } + + .sm\:ring-pink-400 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)) !important; + } + + .sm\:ring-pink-500 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)) !important; + } + + .sm\:ring-pink-600 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)) !important; + } + + .sm\:ring-pink-700 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)) !important; + } + + .sm\:ring-pink-800 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)) !important; + } + + .sm\:ring-pink-900 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)) !important; + } + + .sm\:ring-primary { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(0, 49, 151, var(--tw-ring-opacity)) !important; + } + + .sm\:focus-within\:ring-transparent:focus-within { + --tw-ring-color: transparent !important; + } + + .sm\:focus-within\:ring-current:focus-within { + --tw-ring-color: currentColor !important; + } + + .sm\:focus-within\:ring-black:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important; + } + + .sm\:focus-within\:ring-white:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)) !important; + } + + .sm\:focus-within\:ring-gray-50:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)) !important; + } + + .sm\:focus-within\:ring-gray-100:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)) !important; + } + + .sm\:focus-within\:ring-gray-200:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)) !important; + } + + .sm\:focus-within\:ring-gray-300:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)) !important; + } + + .sm\:focus-within\:ring-gray-400:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)) !important; + } + + .sm\:focus-within\:ring-gray-500:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)) !important; + } + + .sm\:focus-within\:ring-gray-600:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)) !important; + } + + .sm\:focus-within\:ring-gray-700:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)) !important; + } + + .sm\:focus-within\:ring-gray-800:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)) !important; + } + + .sm\:focus-within\:ring-gray-900:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)) !important; + } + + .sm\:focus-within\:ring-red-50:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)) !important; + } + + .sm\:focus-within\:ring-red-100:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)) !important; + } + + .sm\:focus-within\:ring-red-200:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)) !important; + } + + .sm\:focus-within\:ring-red-300:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)) !important; + } + + .sm\:focus-within\:ring-red-400:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)) !important; + } + + .sm\:focus-within\:ring-red-500:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)) !important; + } + + .sm\:focus-within\:ring-red-600:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)) !important; + } + + .sm\:focus-within\:ring-red-700:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)) !important; + } + + .sm\:focus-within\:ring-red-800:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)) !important; + } + + .sm\:focus-within\:ring-red-900:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)) !important; + } + + .sm\:focus-within\:ring-yellow-50:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)) !important; + } + + .sm\:focus-within\:ring-yellow-100:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)) !important; + } + + .sm\:focus-within\:ring-yellow-200:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)) !important; + } + + .sm\:focus-within\:ring-yellow-300:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)) !important; + } + + .sm\:focus-within\:ring-yellow-400:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)) !important; + } + + .sm\:focus-within\:ring-yellow-500:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)) !important; + } + + .sm\:focus-within\:ring-yellow-600:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)) !important; + } + + .sm\:focus-within\:ring-yellow-700:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)) !important; + } + + .sm\:focus-within\:ring-yellow-800:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)) !important; + } + + .sm\:focus-within\:ring-yellow-900:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)) !important; + } + + .sm\:focus-within\:ring-green-50:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)) !important; + } + + .sm\:focus-within\:ring-green-100:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)) !important; + } + + .sm\:focus-within\:ring-green-200:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)) !important; + } + + .sm\:focus-within\:ring-green-300:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)) !important; + } + + .sm\:focus-within\:ring-green-400:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)) !important; + } + + .sm\:focus-within\:ring-green-500:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)) !important; + } + + .sm\:focus-within\:ring-green-600:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)) !important; + } + + .sm\:focus-within\:ring-green-700:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)) !important; + } + + .sm\:focus-within\:ring-green-800:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)) !important; + } + + .sm\:focus-within\:ring-green-900:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)) !important; + } + + .sm\:focus-within\:ring-blue-50:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)) !important; + } + + .sm\:focus-within\:ring-blue-100:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)) !important; + } + + .sm\:focus-within\:ring-blue-200:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)) !important; + } + + .sm\:focus-within\:ring-blue-300:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)) !important; + } + + .sm\:focus-within\:ring-blue-400:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)) !important; + } + + .sm\:focus-within\:ring-blue-500:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)) !important; + } + + .sm\:focus-within\:ring-blue-600:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)) !important; + } + + .sm\:focus-within\:ring-blue-700:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)) !important; + } + + .sm\:focus-within\:ring-blue-800:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)) !important; + } + + .sm\:focus-within\:ring-blue-900:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)) !important; + } + + .sm\:focus-within\:ring-indigo-50:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)) !important; + } + + .sm\:focus-within\:ring-indigo-100:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)) !important; + } + + .sm\:focus-within\:ring-indigo-200:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)) !important; + } + + .sm\:focus-within\:ring-indigo-300:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)) !important; + } + + .sm\:focus-within\:ring-indigo-400:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)) !important; + } + + .sm\:focus-within\:ring-indigo-500:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)) !important; + } + + .sm\:focus-within\:ring-indigo-600:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)) !important; + } + + .sm\:focus-within\:ring-indigo-700:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)) !important; + } + + .sm\:focus-within\:ring-indigo-800:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)) !important; + } + + .sm\:focus-within\:ring-indigo-900:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)) !important; + } + + .sm\:focus-within\:ring-purple-50:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)) !important; + } + + .sm\:focus-within\:ring-purple-100:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)) !important; + } + + .sm\:focus-within\:ring-purple-200:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)) !important; + } + + .sm\:focus-within\:ring-purple-300:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)) !important; + } + + .sm\:focus-within\:ring-purple-400:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)) !important; + } + + .sm\:focus-within\:ring-purple-500:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)) !important; + } + + .sm\:focus-within\:ring-purple-600:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)) !important; + } + + .sm\:focus-within\:ring-purple-700:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)) !important; + } + + .sm\:focus-within\:ring-purple-800:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)) !important; + } + + .sm\:focus-within\:ring-purple-900:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)) !important; + } + + .sm\:focus-within\:ring-pink-50:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)) !important; + } + + .sm\:focus-within\:ring-pink-100:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)) !important; + } + + .sm\:focus-within\:ring-pink-200:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)) !important; + } + + .sm\:focus-within\:ring-pink-300:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)) !important; + } + + .sm\:focus-within\:ring-pink-400:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)) !important; + } + + .sm\:focus-within\:ring-pink-500:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)) !important; + } + + .sm\:focus-within\:ring-pink-600:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)) !important; + } + + .sm\:focus-within\:ring-pink-700:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)) !important; + } + + .sm\:focus-within\:ring-pink-800:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)) !important; + } + + .sm\:focus-within\:ring-pink-900:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)) !important; + } + + .sm\:focus-within\:ring-primary:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(0, 49, 151, var(--tw-ring-opacity)) !important; + } + + .sm\:focus\:ring-transparent:focus { + --tw-ring-color: transparent !important; + } + + .sm\:focus\:ring-current:focus { + --tw-ring-color: currentColor !important; + } + + .sm\:focus\:ring-black:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important; + } + + .sm\:focus\:ring-white:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)) !important; + } + + .sm\:focus\:ring-gray-50:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)) !important; + } + + .sm\:focus\:ring-gray-100:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)) !important; + } + + .sm\:focus\:ring-gray-200:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)) !important; + } + + .sm\:focus\:ring-gray-300:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)) !important; + } + + .sm\:focus\:ring-gray-400:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)) !important; + } + + .sm\:focus\:ring-gray-500:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)) !important; + } + + .sm\:focus\:ring-gray-600:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)) !important; + } + + .sm\:focus\:ring-gray-700:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)) !important; + } + + .sm\:focus\:ring-gray-800:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)) !important; + } + + .sm\:focus\:ring-gray-900:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)) !important; + } + + .sm\:focus\:ring-red-50:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)) !important; + } + + .sm\:focus\:ring-red-100:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)) !important; + } + + .sm\:focus\:ring-red-200:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)) !important; + } + + .sm\:focus\:ring-red-300:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)) !important; + } + + .sm\:focus\:ring-red-400:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)) !important; + } + + .sm\:focus\:ring-red-500:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)) !important; + } + + .sm\:focus\:ring-red-600:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)) !important; + } + + .sm\:focus\:ring-red-700:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)) !important; + } + + .sm\:focus\:ring-red-800:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)) !important; + } + + .sm\:focus\:ring-red-900:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)) !important; + } + + .sm\:focus\:ring-yellow-50:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)) !important; + } + + .sm\:focus\:ring-yellow-100:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)) !important; + } + + .sm\:focus\:ring-yellow-200:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)) !important; + } + + .sm\:focus\:ring-yellow-300:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)) !important; + } + + .sm\:focus\:ring-yellow-400:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)) !important; + } + + .sm\:focus\:ring-yellow-500:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)) !important; + } + + .sm\:focus\:ring-yellow-600:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)) !important; + } + + .sm\:focus\:ring-yellow-700:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)) !important; + } + + .sm\:focus\:ring-yellow-800:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)) !important; + } + + .sm\:focus\:ring-yellow-900:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)) !important; + } + + .sm\:focus\:ring-green-50:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)) !important; + } + + .sm\:focus\:ring-green-100:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)) !important; + } + + .sm\:focus\:ring-green-200:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)) !important; + } + + .sm\:focus\:ring-green-300:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)) !important; + } + + .sm\:focus\:ring-green-400:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)) !important; + } + + .sm\:focus\:ring-green-500:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)) !important; + } + + .sm\:focus\:ring-green-600:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)) !important; + } + + .sm\:focus\:ring-green-700:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)) !important; + } + + .sm\:focus\:ring-green-800:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)) !important; + } + + .sm\:focus\:ring-green-900:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)) !important; + } + + .sm\:focus\:ring-blue-50:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)) !important; + } + + .sm\:focus\:ring-blue-100:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)) !important; + } + + .sm\:focus\:ring-blue-200:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)) !important; + } + + .sm\:focus\:ring-blue-300:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)) !important; + } + + .sm\:focus\:ring-blue-400:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)) !important; + } + + .sm\:focus\:ring-blue-500:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)) !important; + } + + .sm\:focus\:ring-blue-600:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)) !important; + } + + .sm\:focus\:ring-blue-700:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)) !important; + } + + .sm\:focus\:ring-blue-800:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)) !important; + } + + .sm\:focus\:ring-blue-900:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)) !important; + } + + .sm\:focus\:ring-indigo-50:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)) !important; + } + + .sm\:focus\:ring-indigo-100:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)) !important; + } + + .sm\:focus\:ring-indigo-200:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)) !important; + } + + .sm\:focus\:ring-indigo-300:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)) !important; + } + + .sm\:focus\:ring-indigo-400:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)) !important; + } + + .sm\:focus\:ring-indigo-500:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)) !important; + } + + .sm\:focus\:ring-indigo-600:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)) !important; + } + + .sm\:focus\:ring-indigo-700:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)) !important; + } + + .sm\:focus\:ring-indigo-800:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)) !important; + } + + .sm\:focus\:ring-indigo-900:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)) !important; + } + + .sm\:focus\:ring-purple-50:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)) !important; + } + + .sm\:focus\:ring-purple-100:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)) !important; + } + + .sm\:focus\:ring-purple-200:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)) !important; + } + + .sm\:focus\:ring-purple-300:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)) !important; + } + + .sm\:focus\:ring-purple-400:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)) !important; + } + + .sm\:focus\:ring-purple-500:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)) !important; + } + + .sm\:focus\:ring-purple-600:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)) !important; + } + + .sm\:focus\:ring-purple-700:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)) !important; + } + + .sm\:focus\:ring-purple-800:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)) !important; + } + + .sm\:focus\:ring-purple-900:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)) !important; + } + + .sm\:focus\:ring-pink-50:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)) !important; + } + + .sm\:focus\:ring-pink-100:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)) !important; + } + + .sm\:focus\:ring-pink-200:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)) !important; + } + + .sm\:focus\:ring-pink-300:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)) !important; + } + + .sm\:focus\:ring-pink-400:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)) !important; + } + + .sm\:focus\:ring-pink-500:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)) !important; + } + + .sm\:focus\:ring-pink-600:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)) !important; + } + + .sm\:focus\:ring-pink-700:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)) !important; + } + + .sm\:focus\:ring-pink-800:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)) !important; + } + + .sm\:focus\:ring-pink-900:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)) !important; + } + + .sm\:focus\:ring-primary:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(0, 49, 151, var(--tw-ring-opacity)) !important; + } + + .sm\:ring-opacity-0 { + --tw-ring-opacity: 0 !important; + } + + .sm\:ring-opacity-5 { + --tw-ring-opacity: 0.05 !important; + } + + .sm\:ring-opacity-10 { + --tw-ring-opacity: 0.1 !important; + } + + .sm\:ring-opacity-20 { + --tw-ring-opacity: 0.2 !important; + } + + .sm\:ring-opacity-25 { + --tw-ring-opacity: 0.25 !important; + } + + .sm\:ring-opacity-30 { + --tw-ring-opacity: 0.3 !important; + } + + .sm\:ring-opacity-40 { + --tw-ring-opacity: 0.4 !important; + } + + .sm\:ring-opacity-50 { + --tw-ring-opacity: 0.5 !important; + } + + .sm\:ring-opacity-60 { + --tw-ring-opacity: 0.6 !important; + } + + .sm\:ring-opacity-70 { + --tw-ring-opacity: 0.7 !important; + } + + .sm\:ring-opacity-75 { + --tw-ring-opacity: 0.75 !important; + } + + .sm\:ring-opacity-80 { + --tw-ring-opacity: 0.8 !important; + } + + .sm\:ring-opacity-90 { + --tw-ring-opacity: 0.9 !important; + } + + .sm\:ring-opacity-95 { + --tw-ring-opacity: 0.95 !important; + } + + .sm\:ring-opacity-100 { + --tw-ring-opacity: 1 !important; + } + + .sm\:focus-within\:ring-opacity-0:focus-within { + --tw-ring-opacity: 0 !important; + } + + .sm\:focus-within\:ring-opacity-5:focus-within { + --tw-ring-opacity: 0.05 !important; + } + + .sm\:focus-within\:ring-opacity-10:focus-within { + --tw-ring-opacity: 0.1 !important; + } + + .sm\:focus-within\:ring-opacity-20:focus-within { + --tw-ring-opacity: 0.2 !important; + } + + .sm\:focus-within\:ring-opacity-25:focus-within { + --tw-ring-opacity: 0.25 !important; + } + + .sm\:focus-within\:ring-opacity-30:focus-within { + --tw-ring-opacity: 0.3 !important; + } + + .sm\:focus-within\:ring-opacity-40:focus-within { + --tw-ring-opacity: 0.4 !important; + } + + .sm\:focus-within\:ring-opacity-50:focus-within { + --tw-ring-opacity: 0.5 !important; + } + + .sm\:focus-within\:ring-opacity-60:focus-within { + --tw-ring-opacity: 0.6 !important; + } + + .sm\:focus-within\:ring-opacity-70:focus-within { + --tw-ring-opacity: 0.7 !important; + } + + .sm\:focus-within\:ring-opacity-75:focus-within { + --tw-ring-opacity: 0.75 !important; + } + + .sm\:focus-within\:ring-opacity-80:focus-within { + --tw-ring-opacity: 0.8 !important; + } + + .sm\:focus-within\:ring-opacity-90:focus-within { + --tw-ring-opacity: 0.9 !important; + } + + .sm\:focus-within\:ring-opacity-95:focus-within { + --tw-ring-opacity: 0.95 !important; + } + + .sm\:focus-within\:ring-opacity-100:focus-within { + --tw-ring-opacity: 1 !important; + } + + .sm\:focus\:ring-opacity-0:focus { + --tw-ring-opacity: 0 !important; + } + + .sm\:focus\:ring-opacity-5:focus { + --tw-ring-opacity: 0.05 !important; + } + + .sm\:focus\:ring-opacity-10:focus { + --tw-ring-opacity: 0.1 !important; + } + + .sm\:focus\:ring-opacity-20:focus { + --tw-ring-opacity: 0.2 !important; + } + + .sm\:focus\:ring-opacity-25:focus { + --tw-ring-opacity: 0.25 !important; + } + + .sm\:focus\:ring-opacity-30:focus { + --tw-ring-opacity: 0.3 !important; + } + + .sm\:focus\:ring-opacity-40:focus { + --tw-ring-opacity: 0.4 !important; + } + + .sm\:focus\:ring-opacity-50:focus { + --tw-ring-opacity: 0.5 !important; + } + + .sm\:focus\:ring-opacity-60:focus { + --tw-ring-opacity: 0.6 !important; + } + + .sm\:focus\:ring-opacity-70:focus { + --tw-ring-opacity: 0.7 !important; + } + + .sm\:focus\:ring-opacity-75:focus { + --tw-ring-opacity: 0.75 !important; + } + + .sm\:focus\:ring-opacity-80:focus { + --tw-ring-opacity: 0.8 !important; + } + + .sm\:focus\:ring-opacity-90:focus { + --tw-ring-opacity: 0.9 !important; + } + + .sm\:focus\:ring-opacity-95:focus { + --tw-ring-opacity: 0.95 !important; + } + + .sm\:focus\:ring-opacity-100:focus { + --tw-ring-opacity: 1 !important; + } + + .sm\:fill-current { + fill: currentColor !important; + } + + .sm\:stroke-current { + stroke: currentColor !important; + } + + .sm\:stroke-0 { + stroke-width: 0 !important; + } + + .sm\:stroke-1 { + stroke-width: 1 !important; + } + + .sm\:stroke-2 { + stroke-width: 2 !important; + } + + .sm\:table-auto { + table-layout: auto !important; + } + + .sm\:table-fixed { + table-layout: fixed !important; + } + + .sm\:text-left { + text-align: left !important; + } + + .sm\:text-center { + text-align: center !important; + } + + .sm\:text-right { + text-align: right !important; + } + + .sm\:text-justify { + text-align: justify !important; + } + + .sm\:text-transparent { + color: transparent !important; + } + + .sm\:text-current { + color: currentColor !important; + } + + .sm\:text-black { + --tw-text-opacity: 1 !important; + color: rgba(0, 0, 0, var(--tw-text-opacity)) !important; + } + + .sm\:text-white { + --tw-text-opacity: 1 !important; + color: rgba(255, 255, 255, var(--tw-text-opacity)) !important; + } + + .sm\:text-gray-50 { + --tw-text-opacity: 1 !important; + color: rgba(249, 250, 251, var(--tw-text-opacity)) !important; + } + + .sm\:text-gray-100 { + --tw-text-opacity: 1 !important; + color: rgba(243, 244, 246, var(--tw-text-opacity)) !important; + } + + .sm\:text-gray-200 { + --tw-text-opacity: 1 !important; + color: rgba(229, 231, 235, var(--tw-text-opacity)) !important; + } + + .sm\:text-gray-300 { + --tw-text-opacity: 1 !important; + color: rgba(209, 213, 219, var(--tw-text-opacity)) !important; + } + + .sm\:text-gray-400 { + --tw-text-opacity: 1 !important; + color: rgba(156, 163, 175, var(--tw-text-opacity)) !important; + } + + .sm\:text-gray-500 { + --tw-text-opacity: 1 !important; + color: rgba(107, 114, 128, var(--tw-text-opacity)) !important; + } + + .sm\:text-gray-600 { + --tw-text-opacity: 1 !important; + color: rgba(75, 85, 99, var(--tw-text-opacity)) !important; + } + + .sm\:text-gray-700 { + --tw-text-opacity: 1 !important; + color: rgba(55, 65, 81, var(--tw-text-opacity)) !important; + } + + .sm\:text-gray-800 { + --tw-text-opacity: 1 !important; + color: rgba(31, 41, 55, var(--tw-text-opacity)) !important; + } + + .sm\:text-gray-900 { + --tw-text-opacity: 1 !important; + color: rgba(17, 24, 39, var(--tw-text-opacity)) !important; + } + + .sm\:text-red-50 { + --tw-text-opacity: 1 !important; + color: rgba(254, 242, 242, var(--tw-text-opacity)) !important; + } + + .sm\:text-red-100 { + --tw-text-opacity: 1 !important; + color: rgba(254, 226, 226, var(--tw-text-opacity)) !important; + } + + .sm\:text-red-200 { + --tw-text-opacity: 1 !important; + color: rgba(254, 202, 202, var(--tw-text-opacity)) !important; + } + + .sm\:text-red-300 { + --tw-text-opacity: 1 !important; + color: rgba(252, 165, 165, var(--tw-text-opacity)) !important; + } + + .sm\:text-red-400 { + --tw-text-opacity: 1 !important; + color: rgba(248, 113, 113, var(--tw-text-opacity)) !important; + } + + .sm\:text-red-500 { + --tw-text-opacity: 1 !important; + color: rgba(239, 68, 68, var(--tw-text-opacity)) !important; + } + + .sm\:text-red-600 { + --tw-text-opacity: 1 !important; + color: rgba(220, 38, 38, var(--tw-text-opacity)) !important; + } + + .sm\:text-red-700 { + --tw-text-opacity: 1 !important; + color: rgba(185, 28, 28, var(--tw-text-opacity)) !important; + } + + .sm\:text-red-800 { + --tw-text-opacity: 1 !important; + color: rgba(153, 27, 27, var(--tw-text-opacity)) !important; + } + + .sm\:text-red-900 { + --tw-text-opacity: 1 !important; + color: rgba(127, 29, 29, var(--tw-text-opacity)) !important; + } + + .sm\:text-yellow-50 { + --tw-text-opacity: 1 !important; + color: rgba(255, 251, 235, var(--tw-text-opacity)) !important; + } + + .sm\:text-yellow-100 { + --tw-text-opacity: 1 !important; + color: rgba(254, 243, 199, var(--tw-text-opacity)) !important; + } + + .sm\:text-yellow-200 { + --tw-text-opacity: 1 !important; + color: rgba(253, 230, 138, var(--tw-text-opacity)) !important; + } + + .sm\:text-yellow-300 { + --tw-text-opacity: 1 !important; + color: rgba(252, 211, 77, var(--tw-text-opacity)) !important; + } + + .sm\:text-yellow-400 { + --tw-text-opacity: 1 !important; + color: rgba(251, 191, 36, var(--tw-text-opacity)) !important; + } + + .sm\:text-yellow-500 { + --tw-text-opacity: 1 !important; + color: rgba(245, 158, 11, var(--tw-text-opacity)) !important; + } + + .sm\:text-yellow-600 { + --tw-text-opacity: 1 !important; + color: rgba(217, 119, 6, var(--tw-text-opacity)) !important; + } + + .sm\:text-yellow-700 { + --tw-text-opacity: 1 !important; + color: rgba(180, 83, 9, var(--tw-text-opacity)) !important; + } + + .sm\:text-yellow-800 { + --tw-text-opacity: 1 !important; + color: rgba(146, 64, 14, var(--tw-text-opacity)) !important; + } + + .sm\:text-yellow-900 { + --tw-text-opacity: 1 !important; + color: rgba(120, 53, 15, var(--tw-text-opacity)) !important; + } + + .sm\:text-green-50 { + --tw-text-opacity: 1 !important; + color: rgba(236, 253, 245, var(--tw-text-opacity)) !important; + } + + .sm\:text-green-100 { + --tw-text-opacity: 1 !important; + color: rgba(209, 250, 229, var(--tw-text-opacity)) !important; + } + + .sm\:text-green-200 { + --tw-text-opacity: 1 !important; + color: rgba(167, 243, 208, var(--tw-text-opacity)) !important; + } + + .sm\:text-green-300 { + --tw-text-opacity: 1 !important; + color: rgba(110, 231, 183, var(--tw-text-opacity)) !important; + } + + .sm\:text-green-400 { + --tw-text-opacity: 1 !important; + color: rgba(52, 211, 153, var(--tw-text-opacity)) !important; + } + + .sm\:text-green-500 { + --tw-text-opacity: 1 !important; + color: rgba(16, 185, 129, var(--tw-text-opacity)) !important; + } + + .sm\:text-green-600 { + --tw-text-opacity: 1 !important; + color: rgba(5, 150, 105, var(--tw-text-opacity)) !important; + } + + .sm\:text-green-700 { + --tw-text-opacity: 1 !important; + color: rgba(4, 120, 87, var(--tw-text-opacity)) !important; + } + + .sm\:text-green-800 { + --tw-text-opacity: 1 !important; + color: rgba(6, 95, 70, var(--tw-text-opacity)) !important; + } + + .sm\:text-green-900 { + --tw-text-opacity: 1 !important; + color: rgba(6, 78, 59, var(--tw-text-opacity)) !important; + } + + .sm\:text-blue-50 { + --tw-text-opacity: 1 !important; + color: rgba(239, 246, 255, var(--tw-text-opacity)) !important; + } + + .sm\:text-blue-100 { + --tw-text-opacity: 1 !important; + color: rgba(219, 234, 254, var(--tw-text-opacity)) !important; + } + + .sm\:text-blue-200 { + --tw-text-opacity: 1 !important; + color: rgba(191, 219, 254, var(--tw-text-opacity)) !important; + } + + .sm\:text-blue-300 { + --tw-text-opacity: 1 !important; + color: rgba(147, 197, 253, var(--tw-text-opacity)) !important; + } + + .sm\:text-blue-400 { + --tw-text-opacity: 1 !important; + color: rgba(96, 165, 250, var(--tw-text-opacity)) !important; + } + + .sm\:text-blue-500 { + --tw-text-opacity: 1 !important; + color: rgba(59, 130, 246, var(--tw-text-opacity)) !important; + } + + .sm\:text-blue-600 { + --tw-text-opacity: 1 !important; + color: rgba(37, 99, 235, var(--tw-text-opacity)) !important; + } + + .sm\:text-blue-700 { + --tw-text-opacity: 1 !important; + color: rgba(29, 78, 216, var(--tw-text-opacity)) !important; + } + + .sm\:text-blue-800 { + --tw-text-opacity: 1 !important; + color: rgba(30, 64, 175, var(--tw-text-opacity)) !important; + } + + .sm\:text-blue-900 { + --tw-text-opacity: 1 !important; + color: rgba(30, 58, 138, var(--tw-text-opacity)) !important; + } + + .sm\:text-indigo-50 { + --tw-text-opacity: 1 !important; + color: rgba(238, 242, 255, var(--tw-text-opacity)) !important; + } + + .sm\:text-indigo-100 { + --tw-text-opacity: 1 !important; + color: rgba(224, 231, 255, var(--tw-text-opacity)) !important; + } + + .sm\:text-indigo-200 { + --tw-text-opacity: 1 !important; + color: rgba(199, 210, 254, var(--tw-text-opacity)) !important; + } + + .sm\:text-indigo-300 { + --tw-text-opacity: 1 !important; + color: rgba(165, 180, 252, var(--tw-text-opacity)) !important; + } + + .sm\:text-indigo-400 { + --tw-text-opacity: 1 !important; + color: rgba(129, 140, 248, var(--tw-text-opacity)) !important; + } + + .sm\:text-indigo-500 { + --tw-text-opacity: 1 !important; + color: rgba(99, 102, 241, var(--tw-text-opacity)) !important; + } + + .sm\:text-indigo-600 { + --tw-text-opacity: 1 !important; + color: rgba(79, 70, 229, var(--tw-text-opacity)) !important; + } + + .sm\:text-indigo-700 { + --tw-text-opacity: 1 !important; + color: rgba(67, 56, 202, var(--tw-text-opacity)) !important; + } + + .sm\:text-indigo-800 { + --tw-text-opacity: 1 !important; + color: rgba(55, 48, 163, var(--tw-text-opacity)) !important; + } + + .sm\:text-indigo-900 { + --tw-text-opacity: 1 !important; + color: rgba(49, 46, 129, var(--tw-text-opacity)) !important; + } + + .sm\:text-purple-50 { + --tw-text-opacity: 1 !important; + color: rgba(245, 243, 255, var(--tw-text-opacity)) !important; + } + + .sm\:text-purple-100 { + --tw-text-opacity: 1 !important; + color: rgba(237, 233, 254, var(--tw-text-opacity)) !important; + } + + .sm\:text-purple-200 { + --tw-text-opacity: 1 !important; + color: rgba(221, 214, 254, var(--tw-text-opacity)) !important; + } + + .sm\:text-purple-300 { + --tw-text-opacity: 1 !important; + color: rgba(196, 181, 253, var(--tw-text-opacity)) !important; + } + + .sm\:text-purple-400 { + --tw-text-opacity: 1 !important; + color: rgba(167, 139, 250, var(--tw-text-opacity)) !important; + } + + .sm\:text-purple-500 { + --tw-text-opacity: 1 !important; + color: rgba(139, 92, 246, var(--tw-text-opacity)) !important; + } + + .sm\:text-purple-600 { + --tw-text-opacity: 1 !important; + color: rgba(124, 58, 237, var(--tw-text-opacity)) !important; + } + + .sm\:text-purple-700 { + --tw-text-opacity: 1 !important; + color: rgba(109, 40, 217, var(--tw-text-opacity)) !important; + } + + .sm\:text-purple-800 { + --tw-text-opacity: 1 !important; + color: rgba(91, 33, 182, var(--tw-text-opacity)) !important; + } + + .sm\:text-purple-900 { + --tw-text-opacity: 1 !important; + color: rgba(76, 29, 149, var(--tw-text-opacity)) !important; + } + + .sm\:text-pink-50 { + --tw-text-opacity: 1 !important; + color: rgba(253, 242, 248, var(--tw-text-opacity)) !important; + } + + .sm\:text-pink-100 { + --tw-text-opacity: 1 !important; + color: rgba(252, 231, 243, var(--tw-text-opacity)) !important; + } + + .sm\:text-pink-200 { + --tw-text-opacity: 1 !important; + color: rgba(251, 207, 232, var(--tw-text-opacity)) !important; + } + + .sm\:text-pink-300 { + --tw-text-opacity: 1 !important; + color: rgba(249, 168, 212, var(--tw-text-opacity)) !important; + } + + .sm\:text-pink-400 { + --tw-text-opacity: 1 !important; + color: rgba(244, 114, 182, var(--tw-text-opacity)) !important; + } + + .sm\:text-pink-500 { + --tw-text-opacity: 1 !important; + color: rgba(236, 72, 153, var(--tw-text-opacity)) !important; + } + + .sm\:text-pink-600 { + --tw-text-opacity: 1 !important; + color: rgba(219, 39, 119, var(--tw-text-opacity)) !important; + } + + .sm\:text-pink-700 { + --tw-text-opacity: 1 !important; + color: rgba(190, 24, 93, var(--tw-text-opacity)) !important; + } + + .sm\:text-pink-800 { + --tw-text-opacity: 1 !important; + color: rgba(157, 23, 77, var(--tw-text-opacity)) !important; + } + + .sm\:text-pink-900 { + --tw-text-opacity: 1 !important; + color: rgba(131, 24, 67, var(--tw-text-opacity)) !important; + } + + .sm\:text-primary { + --tw-text-opacity: 1 !important; + color: rgba(0, 49, 151, var(--tw-text-opacity)) !important; + } + + .group:hover .sm\:group-hover\:text-transparent { + color: transparent !important; + } + + .group:hover .sm\:group-hover\:text-current { + color: currentColor !important; + } + + .group:hover .sm\:group-hover\:text-black { + --tw-text-opacity: 1 !important; + color: rgba(0, 0, 0, var(--tw-text-opacity)) !important; + } + + .group:hover .sm\:group-hover\:text-white { + --tw-text-opacity: 1 !important; + color: rgba(255, 255, 255, var(--tw-text-opacity)) !important; + } + + .group:hover .sm\:group-hover\:text-gray-50 { + --tw-text-opacity: 1 !important; + color: rgba(249, 250, 251, var(--tw-text-opacity)) !important; + } + + .group:hover .sm\:group-hover\:text-gray-100 { + --tw-text-opacity: 1 !important; + color: rgba(243, 244, 246, var(--tw-text-opacity)) !important; + } + + .group:hover .sm\:group-hover\:text-gray-200 { + --tw-text-opacity: 1 !important; + color: rgba(229, 231, 235, var(--tw-text-opacity)) !important; + } + + .group:hover .sm\:group-hover\:text-gray-300 { + --tw-text-opacity: 1 !important; + color: rgba(209, 213, 219, var(--tw-text-opacity)) !important; + } + + .group:hover .sm\:group-hover\:text-gray-400 { + --tw-text-opacity: 1 !important; + color: rgba(156, 163, 175, var(--tw-text-opacity)) !important; + } + + .group:hover .sm\:group-hover\:text-gray-500 { + --tw-text-opacity: 1 !important; + color: rgba(107, 114, 128, var(--tw-text-opacity)) !important; + } + + .group:hover .sm\:group-hover\:text-gray-600 { + --tw-text-opacity: 1 !important; + color: rgba(75, 85, 99, var(--tw-text-opacity)) !important; + } + + .group:hover .sm\:group-hover\:text-gray-700 { + --tw-text-opacity: 1 !important; + color: rgba(55, 65, 81, var(--tw-text-opacity)) !important; + } + + .group:hover .sm\:group-hover\:text-gray-800 { + --tw-text-opacity: 1 !important; + color: rgba(31, 41, 55, var(--tw-text-opacity)) !important; + } + + .group:hover .sm\:group-hover\:text-gray-900 { + --tw-text-opacity: 1 !important; + color: rgba(17, 24, 39, var(--tw-text-opacity)) !important; + } + + .group:hover .sm\:group-hover\:text-red-50 { + --tw-text-opacity: 1 !important; + color: rgba(254, 242, 242, var(--tw-text-opacity)) !important; + } + + .group:hover .sm\:group-hover\:text-red-100 { + --tw-text-opacity: 1 !important; + color: rgba(254, 226, 226, var(--tw-text-opacity)) !important; + } + + .group:hover .sm\:group-hover\:text-red-200 { + --tw-text-opacity: 1 !important; + color: rgba(254, 202, 202, var(--tw-text-opacity)) !important; + } + + .group:hover .sm\:group-hover\:text-red-300 { + --tw-text-opacity: 1 !important; + color: rgba(252, 165, 165, var(--tw-text-opacity)) !important; + } + + .group:hover .sm\:group-hover\:text-red-400 { + --tw-text-opacity: 1 !important; + color: rgba(248, 113, 113, var(--tw-text-opacity)) !important; + } + + .group:hover .sm\:group-hover\:text-red-500 { + --tw-text-opacity: 1 !important; + color: rgba(239, 68, 68, var(--tw-text-opacity)) !important; + } + + .group:hover .sm\:group-hover\:text-red-600 { + --tw-text-opacity: 1 !important; + color: rgba(220, 38, 38, var(--tw-text-opacity)) !important; + } + + .group:hover .sm\:group-hover\:text-red-700 { + --tw-text-opacity: 1 !important; + color: rgba(185, 28, 28, var(--tw-text-opacity)) !important; + } + + .group:hover .sm\:group-hover\:text-red-800 { + --tw-text-opacity: 1 !important; + color: rgba(153, 27, 27, var(--tw-text-opacity)) !important; + } + + .group:hover .sm\:group-hover\:text-red-900 { + --tw-text-opacity: 1 !important; + color: rgba(127, 29, 29, var(--tw-text-opacity)) !important; + } + + .group:hover .sm\:group-hover\:text-yellow-50 { + --tw-text-opacity: 1 !important; + color: rgba(255, 251, 235, var(--tw-text-opacity)) !important; + } + + .group:hover .sm\:group-hover\:text-yellow-100 { + --tw-text-opacity: 1 !important; + color: rgba(254, 243, 199, var(--tw-text-opacity)) !important; + } + + .group:hover .sm\:group-hover\:text-yellow-200 { + --tw-text-opacity: 1 !important; + color: rgba(253, 230, 138, var(--tw-text-opacity)) !important; + } + + .group:hover .sm\:group-hover\:text-yellow-300 { + --tw-text-opacity: 1 !important; + color: rgba(252, 211, 77, var(--tw-text-opacity)) !important; + } + + .group:hover .sm\:group-hover\:text-yellow-400 { + --tw-text-opacity: 1 !important; + color: rgba(251, 191, 36, var(--tw-text-opacity)) !important; + } + + .group:hover .sm\:group-hover\:text-yellow-500 { + --tw-text-opacity: 1 !important; + color: rgba(245, 158, 11, var(--tw-text-opacity)) !important; + } + + .group:hover .sm\:group-hover\:text-yellow-600 { + --tw-text-opacity: 1 !important; + color: rgba(217, 119, 6, var(--tw-text-opacity)) !important; + } + + .group:hover .sm\:group-hover\:text-yellow-700 { + --tw-text-opacity: 1 !important; + color: rgba(180, 83, 9, var(--tw-text-opacity)) !important; + } + + .group:hover .sm\:group-hover\:text-yellow-800 { + --tw-text-opacity: 1 !important; + color: rgba(146, 64, 14, var(--tw-text-opacity)) !important; + } + + .group:hover .sm\:group-hover\:text-yellow-900 { + --tw-text-opacity: 1 !important; + color: rgba(120, 53, 15, var(--tw-text-opacity)) !important; + } + + .group:hover .sm\:group-hover\:text-green-50 { + --tw-text-opacity: 1 !important; + color: rgba(236, 253, 245, var(--tw-text-opacity)) !important; + } + + .group:hover .sm\:group-hover\:text-green-100 { + --tw-text-opacity: 1 !important; + color: rgba(209, 250, 229, var(--tw-text-opacity)) !important; + } + + .group:hover .sm\:group-hover\:text-green-200 { + --tw-text-opacity: 1 !important; + color: rgba(167, 243, 208, var(--tw-text-opacity)) !important; + } + + .group:hover .sm\:group-hover\:text-green-300 { + --tw-text-opacity: 1 !important; + color: rgba(110, 231, 183, var(--tw-text-opacity)) !important; + } + + .group:hover .sm\:group-hover\:text-green-400 { + --tw-text-opacity: 1 !important; + color: rgba(52, 211, 153, var(--tw-text-opacity)) !important; + } + + .group:hover .sm\:group-hover\:text-green-500 { + --tw-text-opacity: 1 !important; + color: rgba(16, 185, 129, var(--tw-text-opacity)) !important; + } + + .group:hover .sm\:group-hover\:text-green-600 { + --tw-text-opacity: 1 !important; + color: rgba(5, 150, 105, var(--tw-text-opacity)) !important; + } + + .group:hover .sm\:group-hover\:text-green-700 { + --tw-text-opacity: 1 !important; + color: rgba(4, 120, 87, var(--tw-text-opacity)) !important; + } + + .group:hover .sm\:group-hover\:text-green-800 { + --tw-text-opacity: 1 !important; + color: rgba(6, 95, 70, var(--tw-text-opacity)) !important; + } + + .group:hover .sm\:group-hover\:text-green-900 { + --tw-text-opacity: 1 !important; + color: rgba(6, 78, 59, var(--tw-text-opacity)) !important; + } + + .group:hover .sm\:group-hover\:text-blue-50 { + --tw-text-opacity: 1 !important; + color: rgba(239, 246, 255, var(--tw-text-opacity)) !important; + } + + .group:hover .sm\:group-hover\:text-blue-100 { + --tw-text-opacity: 1 !important; + color: rgba(219, 234, 254, var(--tw-text-opacity)) !important; + } + + .group:hover .sm\:group-hover\:text-blue-200 { + --tw-text-opacity: 1 !important; + color: rgba(191, 219, 254, var(--tw-text-opacity)) !important; + } + + .group:hover .sm\:group-hover\:text-blue-300 { + --tw-text-opacity: 1 !important; + color: rgba(147, 197, 253, var(--tw-text-opacity)) !important; + } + + .group:hover .sm\:group-hover\:text-blue-400 { + --tw-text-opacity: 1 !important; + color: rgba(96, 165, 250, var(--tw-text-opacity)) !important; + } + + .group:hover .sm\:group-hover\:text-blue-500 { + --tw-text-opacity: 1 !important; + color: rgba(59, 130, 246, var(--tw-text-opacity)) !important; + } + + .group:hover .sm\:group-hover\:text-blue-600 { + --tw-text-opacity: 1 !important; + color: rgba(37, 99, 235, var(--tw-text-opacity)) !important; + } + + .group:hover .sm\:group-hover\:text-blue-700 { + --tw-text-opacity: 1 !important; + color: rgba(29, 78, 216, var(--tw-text-opacity)) !important; + } + + .group:hover .sm\:group-hover\:text-blue-800 { + --tw-text-opacity: 1 !important; + color: rgba(30, 64, 175, var(--tw-text-opacity)) !important; + } + + .group:hover .sm\:group-hover\:text-blue-900 { + --tw-text-opacity: 1 !important; + color: rgba(30, 58, 138, var(--tw-text-opacity)) !important; + } + + .group:hover .sm\:group-hover\:text-indigo-50 { + --tw-text-opacity: 1 !important; + color: rgba(238, 242, 255, var(--tw-text-opacity)) !important; + } + + .group:hover .sm\:group-hover\:text-indigo-100 { + --tw-text-opacity: 1 !important; + color: rgba(224, 231, 255, var(--tw-text-opacity)) !important; + } + + .group:hover .sm\:group-hover\:text-indigo-200 { + --tw-text-opacity: 1 !important; + color: rgba(199, 210, 254, var(--tw-text-opacity)) !important; + } + + .group:hover .sm\:group-hover\:text-indigo-300 { + --tw-text-opacity: 1 !important; + color: rgba(165, 180, 252, var(--tw-text-opacity)) !important; + } + + .group:hover .sm\:group-hover\:text-indigo-400 { + --tw-text-opacity: 1 !important; + color: rgba(129, 140, 248, var(--tw-text-opacity)) !important; + } + + .group:hover .sm\:group-hover\:text-indigo-500 { + --tw-text-opacity: 1 !important; + color: rgba(99, 102, 241, var(--tw-text-opacity)) !important; + } + + .group:hover .sm\:group-hover\:text-indigo-600 { + --tw-text-opacity: 1 !important; + color: rgba(79, 70, 229, var(--tw-text-opacity)) !important; + } + + .group:hover .sm\:group-hover\:text-indigo-700 { + --tw-text-opacity: 1 !important; + color: rgba(67, 56, 202, var(--tw-text-opacity)) !important; + } + + .group:hover .sm\:group-hover\:text-indigo-800 { + --tw-text-opacity: 1 !important; + color: rgba(55, 48, 163, var(--tw-text-opacity)) !important; + } + + .group:hover .sm\:group-hover\:text-indigo-900 { + --tw-text-opacity: 1 !important; + color: rgba(49, 46, 129, var(--tw-text-opacity)) !important; + } + + .group:hover .sm\:group-hover\:text-purple-50 { + --tw-text-opacity: 1 !important; + color: rgba(245, 243, 255, var(--tw-text-opacity)) !important; + } + + .group:hover .sm\:group-hover\:text-purple-100 { + --tw-text-opacity: 1 !important; + color: rgba(237, 233, 254, var(--tw-text-opacity)) !important; + } + + .group:hover .sm\:group-hover\:text-purple-200 { + --tw-text-opacity: 1 !important; + color: rgba(221, 214, 254, var(--tw-text-opacity)) !important; + } + + .group:hover .sm\:group-hover\:text-purple-300 { + --tw-text-opacity: 1 !important; + color: rgba(196, 181, 253, var(--tw-text-opacity)) !important; + } + + .group:hover .sm\:group-hover\:text-purple-400 { + --tw-text-opacity: 1 !important; + color: rgba(167, 139, 250, var(--tw-text-opacity)) !important; + } + + .group:hover .sm\:group-hover\:text-purple-500 { + --tw-text-opacity: 1 !important; + color: rgba(139, 92, 246, var(--tw-text-opacity)) !important; + } + + .group:hover .sm\:group-hover\:text-purple-600 { + --tw-text-opacity: 1 !important; + color: rgba(124, 58, 237, var(--tw-text-opacity)) !important; + } + + .group:hover .sm\:group-hover\:text-purple-700 { + --tw-text-opacity: 1 !important; + color: rgba(109, 40, 217, var(--tw-text-opacity)) !important; + } + + .group:hover .sm\:group-hover\:text-purple-800 { + --tw-text-opacity: 1 !important; + color: rgba(91, 33, 182, var(--tw-text-opacity)) !important; + } + + .group:hover .sm\:group-hover\:text-purple-900 { + --tw-text-opacity: 1 !important; + color: rgba(76, 29, 149, var(--tw-text-opacity)) !important; + } + + .group:hover .sm\:group-hover\:text-pink-50 { + --tw-text-opacity: 1 !important; + color: rgba(253, 242, 248, var(--tw-text-opacity)) !important; + } + + .group:hover .sm\:group-hover\:text-pink-100 { + --tw-text-opacity: 1 !important; + color: rgba(252, 231, 243, var(--tw-text-opacity)) !important; + } + + .group:hover .sm\:group-hover\:text-pink-200 { + --tw-text-opacity: 1 !important; + color: rgba(251, 207, 232, var(--tw-text-opacity)) !important; + } + + .group:hover .sm\:group-hover\:text-pink-300 { + --tw-text-opacity: 1 !important; + color: rgba(249, 168, 212, var(--tw-text-opacity)) !important; + } + + .group:hover .sm\:group-hover\:text-pink-400 { + --tw-text-opacity: 1 !important; + color: rgba(244, 114, 182, var(--tw-text-opacity)) !important; + } + + .group:hover .sm\:group-hover\:text-pink-500 { + --tw-text-opacity: 1 !important; + color: rgba(236, 72, 153, var(--tw-text-opacity)) !important; + } + + .group:hover .sm\:group-hover\:text-pink-600 { + --tw-text-opacity: 1 !important; + color: rgba(219, 39, 119, var(--tw-text-opacity)) !important; + } + + .group:hover .sm\:group-hover\:text-pink-700 { + --tw-text-opacity: 1 !important; + color: rgba(190, 24, 93, var(--tw-text-opacity)) !important; + } + + .group:hover .sm\:group-hover\:text-pink-800 { + --tw-text-opacity: 1 !important; + color: rgba(157, 23, 77, var(--tw-text-opacity)) !important; + } + + .group:hover .sm\:group-hover\:text-pink-900 { + --tw-text-opacity: 1 !important; + color: rgba(131, 24, 67, var(--tw-text-opacity)) !important; + } + + .group:hover .sm\:group-hover\:text-primary { + --tw-text-opacity: 1 !important; + color: rgba(0, 49, 151, var(--tw-text-opacity)) !important; + } + + .sm\:focus-within\:text-transparent:focus-within { + color: transparent !important; + } + + .sm\:focus-within\:text-current:focus-within { + color: currentColor !important; + } + + .sm\:focus-within\:text-black:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(0, 0, 0, var(--tw-text-opacity)) !important; + } + + .sm\:focus-within\:text-white:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(255, 255, 255, var(--tw-text-opacity)) !important; + } + + .sm\:focus-within\:text-gray-50:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(249, 250, 251, var(--tw-text-opacity)) !important; + } + + .sm\:focus-within\:text-gray-100:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(243, 244, 246, var(--tw-text-opacity)) !important; + } + + .sm\:focus-within\:text-gray-200:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(229, 231, 235, var(--tw-text-opacity)) !important; + } + + .sm\:focus-within\:text-gray-300:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(209, 213, 219, var(--tw-text-opacity)) !important; + } + + .sm\:focus-within\:text-gray-400:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(156, 163, 175, var(--tw-text-opacity)) !important; + } + + .sm\:focus-within\:text-gray-500:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(107, 114, 128, var(--tw-text-opacity)) !important; + } + + .sm\:focus-within\:text-gray-600:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(75, 85, 99, var(--tw-text-opacity)) !important; + } + + .sm\:focus-within\:text-gray-700:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(55, 65, 81, var(--tw-text-opacity)) !important; + } + + .sm\:focus-within\:text-gray-800:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(31, 41, 55, var(--tw-text-opacity)) !important; + } + + .sm\:focus-within\:text-gray-900:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(17, 24, 39, var(--tw-text-opacity)) !important; + } + + .sm\:focus-within\:text-red-50:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(254, 242, 242, var(--tw-text-opacity)) !important; + } + + .sm\:focus-within\:text-red-100:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(254, 226, 226, var(--tw-text-opacity)) !important; + } + + .sm\:focus-within\:text-red-200:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(254, 202, 202, var(--tw-text-opacity)) !important; + } + + .sm\:focus-within\:text-red-300:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(252, 165, 165, var(--tw-text-opacity)) !important; + } + + .sm\:focus-within\:text-red-400:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(248, 113, 113, var(--tw-text-opacity)) !important; + } + + .sm\:focus-within\:text-red-500:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(239, 68, 68, var(--tw-text-opacity)) !important; + } + + .sm\:focus-within\:text-red-600:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(220, 38, 38, var(--tw-text-opacity)) !important; + } + + .sm\:focus-within\:text-red-700:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(185, 28, 28, var(--tw-text-opacity)) !important; + } + + .sm\:focus-within\:text-red-800:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(153, 27, 27, var(--tw-text-opacity)) !important; + } + + .sm\:focus-within\:text-red-900:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(127, 29, 29, var(--tw-text-opacity)) !important; + } + + .sm\:focus-within\:text-yellow-50:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(255, 251, 235, var(--tw-text-opacity)) !important; + } + + .sm\:focus-within\:text-yellow-100:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(254, 243, 199, var(--tw-text-opacity)) !important; + } + + .sm\:focus-within\:text-yellow-200:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(253, 230, 138, var(--tw-text-opacity)) !important; + } + + .sm\:focus-within\:text-yellow-300:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(252, 211, 77, var(--tw-text-opacity)) !important; + } + + .sm\:focus-within\:text-yellow-400:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(251, 191, 36, var(--tw-text-opacity)) !important; + } + + .sm\:focus-within\:text-yellow-500:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(245, 158, 11, var(--tw-text-opacity)) !important; + } + + .sm\:focus-within\:text-yellow-600:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(217, 119, 6, var(--tw-text-opacity)) !important; + } + + .sm\:focus-within\:text-yellow-700:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(180, 83, 9, var(--tw-text-opacity)) !important; + } + + .sm\:focus-within\:text-yellow-800:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(146, 64, 14, var(--tw-text-opacity)) !important; + } + + .sm\:focus-within\:text-yellow-900:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(120, 53, 15, var(--tw-text-opacity)) !important; + } + + .sm\:focus-within\:text-green-50:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(236, 253, 245, var(--tw-text-opacity)) !important; + } + + .sm\:focus-within\:text-green-100:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(209, 250, 229, var(--tw-text-opacity)) !important; + } + + .sm\:focus-within\:text-green-200:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(167, 243, 208, var(--tw-text-opacity)) !important; + } + + .sm\:focus-within\:text-green-300:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(110, 231, 183, var(--tw-text-opacity)) !important; + } + + .sm\:focus-within\:text-green-400:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(52, 211, 153, var(--tw-text-opacity)) !important; + } + + .sm\:focus-within\:text-green-500:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(16, 185, 129, var(--tw-text-opacity)) !important; + } + + .sm\:focus-within\:text-green-600:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(5, 150, 105, var(--tw-text-opacity)) !important; + } + + .sm\:focus-within\:text-green-700:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(4, 120, 87, var(--tw-text-opacity)) !important; + } + + .sm\:focus-within\:text-green-800:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(6, 95, 70, var(--tw-text-opacity)) !important; + } + + .sm\:focus-within\:text-green-900:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(6, 78, 59, var(--tw-text-opacity)) !important; + } + + .sm\:focus-within\:text-blue-50:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(239, 246, 255, var(--tw-text-opacity)) !important; + } + + .sm\:focus-within\:text-blue-100:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(219, 234, 254, var(--tw-text-opacity)) !important; + } + + .sm\:focus-within\:text-blue-200:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(191, 219, 254, var(--tw-text-opacity)) !important; + } + + .sm\:focus-within\:text-blue-300:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(147, 197, 253, var(--tw-text-opacity)) !important; + } + + .sm\:focus-within\:text-blue-400:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(96, 165, 250, var(--tw-text-opacity)) !important; + } + + .sm\:focus-within\:text-blue-500:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(59, 130, 246, var(--tw-text-opacity)) !important; + } + + .sm\:focus-within\:text-blue-600:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(37, 99, 235, var(--tw-text-opacity)) !important; + } + + .sm\:focus-within\:text-blue-700:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(29, 78, 216, var(--tw-text-opacity)) !important; + } + + .sm\:focus-within\:text-blue-800:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(30, 64, 175, var(--tw-text-opacity)) !important; + } + + .sm\:focus-within\:text-blue-900:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(30, 58, 138, var(--tw-text-opacity)) !important; + } + + .sm\:focus-within\:text-indigo-50:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(238, 242, 255, var(--tw-text-opacity)) !important; + } + + .sm\:focus-within\:text-indigo-100:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(224, 231, 255, var(--tw-text-opacity)) !important; + } + + .sm\:focus-within\:text-indigo-200:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(199, 210, 254, var(--tw-text-opacity)) !important; + } + + .sm\:focus-within\:text-indigo-300:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(165, 180, 252, var(--tw-text-opacity)) !important; + } + + .sm\:focus-within\:text-indigo-400:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(129, 140, 248, var(--tw-text-opacity)) !important; + } + + .sm\:focus-within\:text-indigo-500:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(99, 102, 241, var(--tw-text-opacity)) !important; + } + + .sm\:focus-within\:text-indigo-600:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(79, 70, 229, var(--tw-text-opacity)) !important; + } + + .sm\:focus-within\:text-indigo-700:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(67, 56, 202, var(--tw-text-opacity)) !important; + } + + .sm\:focus-within\:text-indigo-800:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(55, 48, 163, var(--tw-text-opacity)) !important; + } + + .sm\:focus-within\:text-indigo-900:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(49, 46, 129, var(--tw-text-opacity)) !important; + } + + .sm\:focus-within\:text-purple-50:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(245, 243, 255, var(--tw-text-opacity)) !important; + } + + .sm\:focus-within\:text-purple-100:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(237, 233, 254, var(--tw-text-opacity)) !important; + } + + .sm\:focus-within\:text-purple-200:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(221, 214, 254, var(--tw-text-opacity)) !important; + } + + .sm\:focus-within\:text-purple-300:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(196, 181, 253, var(--tw-text-opacity)) !important; + } + + .sm\:focus-within\:text-purple-400:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(167, 139, 250, var(--tw-text-opacity)) !important; + } + + .sm\:focus-within\:text-purple-500:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(139, 92, 246, var(--tw-text-opacity)) !important; + } + + .sm\:focus-within\:text-purple-600:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(124, 58, 237, var(--tw-text-opacity)) !important; + } + + .sm\:focus-within\:text-purple-700:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(109, 40, 217, var(--tw-text-opacity)) !important; + } + + .sm\:focus-within\:text-purple-800:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(91, 33, 182, var(--tw-text-opacity)) !important; + } + + .sm\:focus-within\:text-purple-900:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(76, 29, 149, var(--tw-text-opacity)) !important; + } + + .sm\:focus-within\:text-pink-50:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(253, 242, 248, var(--tw-text-opacity)) !important; + } + + .sm\:focus-within\:text-pink-100:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(252, 231, 243, var(--tw-text-opacity)) !important; + } + + .sm\:focus-within\:text-pink-200:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(251, 207, 232, var(--tw-text-opacity)) !important; + } + + .sm\:focus-within\:text-pink-300:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(249, 168, 212, var(--tw-text-opacity)) !important; + } + + .sm\:focus-within\:text-pink-400:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(244, 114, 182, var(--tw-text-opacity)) !important; + } + + .sm\:focus-within\:text-pink-500:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(236, 72, 153, var(--tw-text-opacity)) !important; + } + + .sm\:focus-within\:text-pink-600:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(219, 39, 119, var(--tw-text-opacity)) !important; + } + + .sm\:focus-within\:text-pink-700:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(190, 24, 93, var(--tw-text-opacity)) !important; + } + + .sm\:focus-within\:text-pink-800:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(157, 23, 77, var(--tw-text-opacity)) !important; + } + + .sm\:focus-within\:text-pink-900:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(131, 24, 67, var(--tw-text-opacity)) !important; + } + + .sm\:focus-within\:text-primary:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(0, 49, 151, var(--tw-text-opacity)) !important; + } + + .sm\:hover\:text-transparent:hover { + color: transparent !important; + } + + .sm\:hover\:text-current:hover { + color: currentColor !important; + } + + .sm\:hover\:text-black:hover { + --tw-text-opacity: 1 !important; + color: rgba(0, 0, 0, var(--tw-text-opacity)) !important; + } + + .sm\:hover\:text-white:hover { + --tw-text-opacity: 1 !important; + color: rgba(255, 255, 255, var(--tw-text-opacity)) !important; + } + + .sm\:hover\:text-gray-50:hover { + --tw-text-opacity: 1 !important; + color: rgba(249, 250, 251, var(--tw-text-opacity)) !important; + } + + .sm\:hover\:text-gray-100:hover { + --tw-text-opacity: 1 !important; + color: rgba(243, 244, 246, var(--tw-text-opacity)) !important; + } + + .sm\:hover\:text-gray-200:hover { + --tw-text-opacity: 1 !important; + color: rgba(229, 231, 235, var(--tw-text-opacity)) !important; + } + + .sm\:hover\:text-gray-300:hover { + --tw-text-opacity: 1 !important; + color: rgba(209, 213, 219, var(--tw-text-opacity)) !important; + } + + .sm\:hover\:text-gray-400:hover { + --tw-text-opacity: 1 !important; + color: rgba(156, 163, 175, var(--tw-text-opacity)) !important; + } + + .sm\:hover\:text-gray-500:hover { + --tw-text-opacity: 1 !important; + color: rgba(107, 114, 128, var(--tw-text-opacity)) !important; + } + + .sm\:hover\:text-gray-600:hover { + --tw-text-opacity: 1 !important; + color: rgba(75, 85, 99, var(--tw-text-opacity)) !important; + } + + .sm\:hover\:text-gray-700:hover { + --tw-text-opacity: 1 !important; + color: rgba(55, 65, 81, var(--tw-text-opacity)) !important; + } + + .sm\:hover\:text-gray-800:hover { + --tw-text-opacity: 1 !important; + color: rgba(31, 41, 55, var(--tw-text-opacity)) !important; + } + + .sm\:hover\:text-gray-900:hover { + --tw-text-opacity: 1 !important; + color: rgba(17, 24, 39, var(--tw-text-opacity)) !important; + } + + .sm\:hover\:text-red-50:hover { + --tw-text-opacity: 1 !important; + color: rgba(254, 242, 242, var(--tw-text-opacity)) !important; + } + + .sm\:hover\:text-red-100:hover { + --tw-text-opacity: 1 !important; + color: rgba(254, 226, 226, var(--tw-text-opacity)) !important; + } + + .sm\:hover\:text-red-200:hover { + --tw-text-opacity: 1 !important; + color: rgba(254, 202, 202, var(--tw-text-opacity)) !important; + } + + .sm\:hover\:text-red-300:hover { + --tw-text-opacity: 1 !important; + color: rgba(252, 165, 165, var(--tw-text-opacity)) !important; + } + + .sm\:hover\:text-red-400:hover { + --tw-text-opacity: 1 !important; + color: rgba(248, 113, 113, var(--tw-text-opacity)) !important; + } + + .sm\:hover\:text-red-500:hover { + --tw-text-opacity: 1 !important; + color: rgba(239, 68, 68, var(--tw-text-opacity)) !important; + } + + .sm\:hover\:text-red-600:hover { + --tw-text-opacity: 1 !important; + color: rgba(220, 38, 38, var(--tw-text-opacity)) !important; + } + + .sm\:hover\:text-red-700:hover { + --tw-text-opacity: 1 !important; + color: rgba(185, 28, 28, var(--tw-text-opacity)) !important; + } + + .sm\:hover\:text-red-800:hover { + --tw-text-opacity: 1 !important; + color: rgba(153, 27, 27, var(--tw-text-opacity)) !important; + } + + .sm\:hover\:text-red-900:hover { + --tw-text-opacity: 1 !important; + color: rgba(127, 29, 29, var(--tw-text-opacity)) !important; + } + + .sm\:hover\:text-yellow-50:hover { + --tw-text-opacity: 1 !important; + color: rgba(255, 251, 235, var(--tw-text-opacity)) !important; + } + + .sm\:hover\:text-yellow-100:hover { + --tw-text-opacity: 1 !important; + color: rgba(254, 243, 199, var(--tw-text-opacity)) !important; + } + + .sm\:hover\:text-yellow-200:hover { + --tw-text-opacity: 1 !important; + color: rgba(253, 230, 138, var(--tw-text-opacity)) !important; + } + + .sm\:hover\:text-yellow-300:hover { + --tw-text-opacity: 1 !important; + color: rgba(252, 211, 77, var(--tw-text-opacity)) !important; + } + + .sm\:hover\:text-yellow-400:hover { + --tw-text-opacity: 1 !important; + color: rgba(251, 191, 36, var(--tw-text-opacity)) !important; + } + + .sm\:hover\:text-yellow-500:hover { + --tw-text-opacity: 1 !important; + color: rgba(245, 158, 11, var(--tw-text-opacity)) !important; + } + + .sm\:hover\:text-yellow-600:hover { + --tw-text-opacity: 1 !important; + color: rgba(217, 119, 6, var(--tw-text-opacity)) !important; + } + + .sm\:hover\:text-yellow-700:hover { + --tw-text-opacity: 1 !important; + color: rgba(180, 83, 9, var(--tw-text-opacity)) !important; + } + + .sm\:hover\:text-yellow-800:hover { + --tw-text-opacity: 1 !important; + color: rgba(146, 64, 14, var(--tw-text-opacity)) !important; + } + + .sm\:hover\:text-yellow-900:hover { + --tw-text-opacity: 1 !important; + color: rgba(120, 53, 15, var(--tw-text-opacity)) !important; + } + + .sm\:hover\:text-green-50:hover { + --tw-text-opacity: 1 !important; + color: rgba(236, 253, 245, var(--tw-text-opacity)) !important; + } + + .sm\:hover\:text-green-100:hover { + --tw-text-opacity: 1 !important; + color: rgba(209, 250, 229, var(--tw-text-opacity)) !important; + } + + .sm\:hover\:text-green-200:hover { + --tw-text-opacity: 1 !important; + color: rgba(167, 243, 208, var(--tw-text-opacity)) !important; + } + + .sm\:hover\:text-green-300:hover { + --tw-text-opacity: 1 !important; + color: rgba(110, 231, 183, var(--tw-text-opacity)) !important; + } + + .sm\:hover\:text-green-400:hover { + --tw-text-opacity: 1 !important; + color: rgba(52, 211, 153, var(--tw-text-opacity)) !important; + } + + .sm\:hover\:text-green-500:hover { + --tw-text-opacity: 1 !important; + color: rgba(16, 185, 129, var(--tw-text-opacity)) !important; + } + + .sm\:hover\:text-green-600:hover { + --tw-text-opacity: 1 !important; + color: rgba(5, 150, 105, var(--tw-text-opacity)) !important; + } + + .sm\:hover\:text-green-700:hover { + --tw-text-opacity: 1 !important; + color: rgba(4, 120, 87, var(--tw-text-opacity)) !important; + } + + .sm\:hover\:text-green-800:hover { + --tw-text-opacity: 1 !important; + color: rgba(6, 95, 70, var(--tw-text-opacity)) !important; + } + + .sm\:hover\:text-green-900:hover { + --tw-text-opacity: 1 !important; + color: rgba(6, 78, 59, var(--tw-text-opacity)) !important; + } + + .sm\:hover\:text-blue-50:hover { + --tw-text-opacity: 1 !important; + color: rgba(239, 246, 255, var(--tw-text-opacity)) !important; + } + + .sm\:hover\:text-blue-100:hover { + --tw-text-opacity: 1 !important; + color: rgba(219, 234, 254, var(--tw-text-opacity)) !important; + } + + .sm\:hover\:text-blue-200:hover { + --tw-text-opacity: 1 !important; + color: rgba(191, 219, 254, var(--tw-text-opacity)) !important; + } + + .sm\:hover\:text-blue-300:hover { + --tw-text-opacity: 1 !important; + color: rgba(147, 197, 253, var(--tw-text-opacity)) !important; + } + + .sm\:hover\:text-blue-400:hover { + --tw-text-opacity: 1 !important; + color: rgba(96, 165, 250, var(--tw-text-opacity)) !important; + } + + .sm\:hover\:text-blue-500:hover { + --tw-text-opacity: 1 !important; + color: rgba(59, 130, 246, var(--tw-text-opacity)) !important; + } + + .sm\:hover\:text-blue-600:hover { + --tw-text-opacity: 1 !important; + color: rgba(37, 99, 235, var(--tw-text-opacity)) !important; + } + + .sm\:hover\:text-blue-700:hover { + --tw-text-opacity: 1 !important; + color: rgba(29, 78, 216, var(--tw-text-opacity)) !important; + } + + .sm\:hover\:text-blue-800:hover { + --tw-text-opacity: 1 !important; + color: rgba(30, 64, 175, var(--tw-text-opacity)) !important; + } + + .sm\:hover\:text-blue-900:hover { + --tw-text-opacity: 1 !important; + color: rgba(30, 58, 138, var(--tw-text-opacity)) !important; + } + + .sm\:hover\:text-indigo-50:hover { + --tw-text-opacity: 1 !important; + color: rgba(238, 242, 255, var(--tw-text-opacity)) !important; + } + + .sm\:hover\:text-indigo-100:hover { + --tw-text-opacity: 1 !important; + color: rgba(224, 231, 255, var(--tw-text-opacity)) !important; + } + + .sm\:hover\:text-indigo-200:hover { + --tw-text-opacity: 1 !important; + color: rgba(199, 210, 254, var(--tw-text-opacity)) !important; + } + + .sm\:hover\:text-indigo-300:hover { + --tw-text-opacity: 1 !important; + color: rgba(165, 180, 252, var(--tw-text-opacity)) !important; + } + + .sm\:hover\:text-indigo-400:hover { + --tw-text-opacity: 1 !important; + color: rgba(129, 140, 248, var(--tw-text-opacity)) !important; + } + + .sm\:hover\:text-indigo-500:hover { + --tw-text-opacity: 1 !important; + color: rgba(99, 102, 241, var(--tw-text-opacity)) !important; + } + + .sm\:hover\:text-indigo-600:hover { + --tw-text-opacity: 1 !important; + color: rgba(79, 70, 229, var(--tw-text-opacity)) !important; + } + + .sm\:hover\:text-indigo-700:hover { + --tw-text-opacity: 1 !important; + color: rgba(67, 56, 202, var(--tw-text-opacity)) !important; + } + + .sm\:hover\:text-indigo-800:hover { + --tw-text-opacity: 1 !important; + color: rgba(55, 48, 163, var(--tw-text-opacity)) !important; + } + + .sm\:hover\:text-indigo-900:hover { + --tw-text-opacity: 1 !important; + color: rgba(49, 46, 129, var(--tw-text-opacity)) !important; + } + + .sm\:hover\:text-purple-50:hover { + --tw-text-opacity: 1 !important; + color: rgba(245, 243, 255, var(--tw-text-opacity)) !important; + } + + .sm\:hover\:text-purple-100:hover { + --tw-text-opacity: 1 !important; + color: rgba(237, 233, 254, var(--tw-text-opacity)) !important; + } + + .sm\:hover\:text-purple-200:hover { + --tw-text-opacity: 1 !important; + color: rgba(221, 214, 254, var(--tw-text-opacity)) !important; + } + + .sm\:hover\:text-purple-300:hover { + --tw-text-opacity: 1 !important; + color: rgba(196, 181, 253, var(--tw-text-opacity)) !important; + } + + .sm\:hover\:text-purple-400:hover { + --tw-text-opacity: 1 !important; + color: rgba(167, 139, 250, var(--tw-text-opacity)) !important; + } + + .sm\:hover\:text-purple-500:hover { + --tw-text-opacity: 1 !important; + color: rgba(139, 92, 246, var(--tw-text-opacity)) !important; + } + + .sm\:hover\:text-purple-600:hover { + --tw-text-opacity: 1 !important; + color: rgba(124, 58, 237, var(--tw-text-opacity)) !important; + } + + .sm\:hover\:text-purple-700:hover { + --tw-text-opacity: 1 !important; + color: rgba(109, 40, 217, var(--tw-text-opacity)) !important; + } + + .sm\:hover\:text-purple-800:hover { + --tw-text-opacity: 1 !important; + color: rgba(91, 33, 182, var(--tw-text-opacity)) !important; + } + + .sm\:hover\:text-purple-900:hover { + --tw-text-opacity: 1 !important; + color: rgba(76, 29, 149, var(--tw-text-opacity)) !important; + } + + .sm\:hover\:text-pink-50:hover { + --tw-text-opacity: 1 !important; + color: rgba(253, 242, 248, var(--tw-text-opacity)) !important; + } + + .sm\:hover\:text-pink-100:hover { + --tw-text-opacity: 1 !important; + color: rgba(252, 231, 243, var(--tw-text-opacity)) !important; + } + + .sm\:hover\:text-pink-200:hover { + --tw-text-opacity: 1 !important; + color: rgba(251, 207, 232, var(--tw-text-opacity)) !important; + } + + .sm\:hover\:text-pink-300:hover { + --tw-text-opacity: 1 !important; + color: rgba(249, 168, 212, var(--tw-text-opacity)) !important; + } + + .sm\:hover\:text-pink-400:hover { + --tw-text-opacity: 1 !important; + color: rgba(244, 114, 182, var(--tw-text-opacity)) !important; + } + + .sm\:hover\:text-pink-500:hover { + --tw-text-opacity: 1 !important; + color: rgba(236, 72, 153, var(--tw-text-opacity)) !important; + } + + .sm\:hover\:text-pink-600:hover { + --tw-text-opacity: 1 !important; + color: rgba(219, 39, 119, var(--tw-text-opacity)) !important; + } + + .sm\:hover\:text-pink-700:hover { + --tw-text-opacity: 1 !important; + color: rgba(190, 24, 93, var(--tw-text-opacity)) !important; + } + + .sm\:hover\:text-pink-800:hover { + --tw-text-opacity: 1 !important; + color: rgba(157, 23, 77, var(--tw-text-opacity)) !important; + } + + .sm\:hover\:text-pink-900:hover { + --tw-text-opacity: 1 !important; + color: rgba(131, 24, 67, var(--tw-text-opacity)) !important; + } + + .sm\:hover\:text-primary:hover { + --tw-text-opacity: 1 !important; + color: rgba(0, 49, 151, var(--tw-text-opacity)) !important; + } + + .sm\:focus\:text-transparent:focus { + color: transparent !important; + } + + .sm\:focus\:text-current:focus { + color: currentColor !important; + } + + .sm\:focus\:text-black:focus { + --tw-text-opacity: 1 !important; + color: rgba(0, 0, 0, var(--tw-text-opacity)) !important; + } + + .sm\:focus\:text-white:focus { + --tw-text-opacity: 1 !important; + color: rgba(255, 255, 255, var(--tw-text-opacity)) !important; + } + + .sm\:focus\:text-gray-50:focus { + --tw-text-opacity: 1 !important; + color: rgba(249, 250, 251, var(--tw-text-opacity)) !important; + } + + .sm\:focus\:text-gray-100:focus { + --tw-text-opacity: 1 !important; + color: rgba(243, 244, 246, var(--tw-text-opacity)) !important; + } + + .sm\:focus\:text-gray-200:focus { + --tw-text-opacity: 1 !important; + color: rgba(229, 231, 235, var(--tw-text-opacity)) !important; + } + + .sm\:focus\:text-gray-300:focus { + --tw-text-opacity: 1 !important; + color: rgba(209, 213, 219, var(--tw-text-opacity)) !important; + } + + .sm\:focus\:text-gray-400:focus { + --tw-text-opacity: 1 !important; + color: rgba(156, 163, 175, var(--tw-text-opacity)) !important; + } + + .sm\:focus\:text-gray-500:focus { + --tw-text-opacity: 1 !important; + color: rgba(107, 114, 128, var(--tw-text-opacity)) !important; + } + + .sm\:focus\:text-gray-600:focus { + --tw-text-opacity: 1 !important; + color: rgba(75, 85, 99, var(--tw-text-opacity)) !important; + } + + .sm\:focus\:text-gray-700:focus { + --tw-text-opacity: 1 !important; + color: rgba(55, 65, 81, var(--tw-text-opacity)) !important; + } + + .sm\:focus\:text-gray-800:focus { + --tw-text-opacity: 1 !important; + color: rgba(31, 41, 55, var(--tw-text-opacity)) !important; + } + + .sm\:focus\:text-gray-900:focus { + --tw-text-opacity: 1 !important; + color: rgba(17, 24, 39, var(--tw-text-opacity)) !important; + } + + .sm\:focus\:text-red-50:focus { + --tw-text-opacity: 1 !important; + color: rgba(254, 242, 242, var(--tw-text-opacity)) !important; + } + + .sm\:focus\:text-red-100:focus { + --tw-text-opacity: 1 !important; + color: rgba(254, 226, 226, var(--tw-text-opacity)) !important; + } + + .sm\:focus\:text-red-200:focus { + --tw-text-opacity: 1 !important; + color: rgba(254, 202, 202, var(--tw-text-opacity)) !important; + } + + .sm\:focus\:text-red-300:focus { + --tw-text-opacity: 1 !important; + color: rgba(252, 165, 165, var(--tw-text-opacity)) !important; + } + + .sm\:focus\:text-red-400:focus { + --tw-text-opacity: 1 !important; + color: rgba(248, 113, 113, var(--tw-text-opacity)) !important; + } + + .sm\:focus\:text-red-500:focus { + --tw-text-opacity: 1 !important; + color: rgba(239, 68, 68, var(--tw-text-opacity)) !important; + } + + .sm\:focus\:text-red-600:focus { + --tw-text-opacity: 1 !important; + color: rgba(220, 38, 38, var(--tw-text-opacity)) !important; + } + + .sm\:focus\:text-red-700:focus { + --tw-text-opacity: 1 !important; + color: rgba(185, 28, 28, var(--tw-text-opacity)) !important; + } + + .sm\:focus\:text-red-800:focus { + --tw-text-opacity: 1 !important; + color: rgba(153, 27, 27, var(--tw-text-opacity)) !important; + } + + .sm\:focus\:text-red-900:focus { + --tw-text-opacity: 1 !important; + color: rgba(127, 29, 29, var(--tw-text-opacity)) !important; + } + + .sm\:focus\:text-yellow-50:focus { + --tw-text-opacity: 1 !important; + color: rgba(255, 251, 235, var(--tw-text-opacity)) !important; + } + + .sm\:focus\:text-yellow-100:focus { + --tw-text-opacity: 1 !important; + color: rgba(254, 243, 199, var(--tw-text-opacity)) !important; + } + + .sm\:focus\:text-yellow-200:focus { + --tw-text-opacity: 1 !important; + color: rgba(253, 230, 138, var(--tw-text-opacity)) !important; + } + + .sm\:focus\:text-yellow-300:focus { + --tw-text-opacity: 1 !important; + color: rgba(252, 211, 77, var(--tw-text-opacity)) !important; + } + + .sm\:focus\:text-yellow-400:focus { + --tw-text-opacity: 1 !important; + color: rgba(251, 191, 36, var(--tw-text-opacity)) !important; + } + + .sm\:focus\:text-yellow-500:focus { + --tw-text-opacity: 1 !important; + color: rgba(245, 158, 11, var(--tw-text-opacity)) !important; + } + + .sm\:focus\:text-yellow-600:focus { + --tw-text-opacity: 1 !important; + color: rgba(217, 119, 6, var(--tw-text-opacity)) !important; + } + + .sm\:focus\:text-yellow-700:focus { + --tw-text-opacity: 1 !important; + color: rgba(180, 83, 9, var(--tw-text-opacity)) !important; + } + + .sm\:focus\:text-yellow-800:focus { + --tw-text-opacity: 1 !important; + color: rgba(146, 64, 14, var(--tw-text-opacity)) !important; + } + + .sm\:focus\:text-yellow-900:focus { + --tw-text-opacity: 1 !important; + color: rgba(120, 53, 15, var(--tw-text-opacity)) !important; + } + + .sm\:focus\:text-green-50:focus { + --tw-text-opacity: 1 !important; + color: rgba(236, 253, 245, var(--tw-text-opacity)) !important; + } + + .sm\:focus\:text-green-100:focus { + --tw-text-opacity: 1 !important; + color: rgba(209, 250, 229, var(--tw-text-opacity)) !important; + } + + .sm\:focus\:text-green-200:focus { + --tw-text-opacity: 1 !important; + color: rgba(167, 243, 208, var(--tw-text-opacity)) !important; + } + + .sm\:focus\:text-green-300:focus { + --tw-text-opacity: 1 !important; + color: rgba(110, 231, 183, var(--tw-text-opacity)) !important; + } + + .sm\:focus\:text-green-400:focus { + --tw-text-opacity: 1 !important; + color: rgba(52, 211, 153, var(--tw-text-opacity)) !important; + } + + .sm\:focus\:text-green-500:focus { + --tw-text-opacity: 1 !important; + color: rgba(16, 185, 129, var(--tw-text-opacity)) !important; + } + + .sm\:focus\:text-green-600:focus { + --tw-text-opacity: 1 !important; + color: rgba(5, 150, 105, var(--tw-text-opacity)) !important; + } + + .sm\:focus\:text-green-700:focus { + --tw-text-opacity: 1 !important; + color: rgba(4, 120, 87, var(--tw-text-opacity)) !important; + } + + .sm\:focus\:text-green-800:focus { + --tw-text-opacity: 1 !important; + color: rgba(6, 95, 70, var(--tw-text-opacity)) !important; + } + + .sm\:focus\:text-green-900:focus { + --tw-text-opacity: 1 !important; + color: rgba(6, 78, 59, var(--tw-text-opacity)) !important; + } + + .sm\:focus\:text-blue-50:focus { + --tw-text-opacity: 1 !important; + color: rgba(239, 246, 255, var(--tw-text-opacity)) !important; + } + + .sm\:focus\:text-blue-100:focus { + --tw-text-opacity: 1 !important; + color: rgba(219, 234, 254, var(--tw-text-opacity)) !important; + } + + .sm\:focus\:text-blue-200:focus { + --tw-text-opacity: 1 !important; + color: rgba(191, 219, 254, var(--tw-text-opacity)) !important; + } + + .sm\:focus\:text-blue-300:focus { + --tw-text-opacity: 1 !important; + color: rgba(147, 197, 253, var(--tw-text-opacity)) !important; + } + + .sm\:focus\:text-blue-400:focus { + --tw-text-opacity: 1 !important; + color: rgba(96, 165, 250, var(--tw-text-opacity)) !important; + } + + .sm\:focus\:text-blue-500:focus { + --tw-text-opacity: 1 !important; + color: rgba(59, 130, 246, var(--tw-text-opacity)) !important; + } + + .sm\:focus\:text-blue-600:focus { + --tw-text-opacity: 1 !important; + color: rgba(37, 99, 235, var(--tw-text-opacity)) !important; + } + + .sm\:focus\:text-blue-700:focus { + --tw-text-opacity: 1 !important; + color: rgba(29, 78, 216, var(--tw-text-opacity)) !important; + } + + .sm\:focus\:text-blue-800:focus { + --tw-text-opacity: 1 !important; + color: rgba(30, 64, 175, var(--tw-text-opacity)) !important; + } + + .sm\:focus\:text-blue-900:focus { + --tw-text-opacity: 1 !important; + color: rgba(30, 58, 138, var(--tw-text-opacity)) !important; + } + + .sm\:focus\:text-indigo-50:focus { + --tw-text-opacity: 1 !important; + color: rgba(238, 242, 255, var(--tw-text-opacity)) !important; + } + + .sm\:focus\:text-indigo-100:focus { + --tw-text-opacity: 1 !important; + color: rgba(224, 231, 255, var(--tw-text-opacity)) !important; + } + + .sm\:focus\:text-indigo-200:focus { + --tw-text-opacity: 1 !important; + color: rgba(199, 210, 254, var(--tw-text-opacity)) !important; + } + + .sm\:focus\:text-indigo-300:focus { + --tw-text-opacity: 1 !important; + color: rgba(165, 180, 252, var(--tw-text-opacity)) !important; + } + + .sm\:focus\:text-indigo-400:focus { + --tw-text-opacity: 1 !important; + color: rgba(129, 140, 248, var(--tw-text-opacity)) !important; + } + + .sm\:focus\:text-indigo-500:focus { + --tw-text-opacity: 1 !important; + color: rgba(99, 102, 241, var(--tw-text-opacity)) !important; + } + + .sm\:focus\:text-indigo-600:focus { + --tw-text-opacity: 1 !important; + color: rgba(79, 70, 229, var(--tw-text-opacity)) !important; + } + + .sm\:focus\:text-indigo-700:focus { + --tw-text-opacity: 1 !important; + color: rgba(67, 56, 202, var(--tw-text-opacity)) !important; + } + + .sm\:focus\:text-indigo-800:focus { + --tw-text-opacity: 1 !important; + color: rgba(55, 48, 163, var(--tw-text-opacity)) !important; + } + + .sm\:focus\:text-indigo-900:focus { + --tw-text-opacity: 1 !important; + color: rgba(49, 46, 129, var(--tw-text-opacity)) !important; + } + + .sm\:focus\:text-purple-50:focus { + --tw-text-opacity: 1 !important; + color: rgba(245, 243, 255, var(--tw-text-opacity)) !important; + } + + .sm\:focus\:text-purple-100:focus { + --tw-text-opacity: 1 !important; + color: rgba(237, 233, 254, var(--tw-text-opacity)) !important; + } + + .sm\:focus\:text-purple-200:focus { + --tw-text-opacity: 1 !important; + color: rgba(221, 214, 254, var(--tw-text-opacity)) !important; + } + + .sm\:focus\:text-purple-300:focus { + --tw-text-opacity: 1 !important; + color: rgba(196, 181, 253, var(--tw-text-opacity)) !important; + } + + .sm\:focus\:text-purple-400:focus { + --tw-text-opacity: 1 !important; + color: rgba(167, 139, 250, var(--tw-text-opacity)) !important; + } + + .sm\:focus\:text-purple-500:focus { + --tw-text-opacity: 1 !important; + color: rgba(139, 92, 246, var(--tw-text-opacity)) !important; + } + + .sm\:focus\:text-purple-600:focus { + --tw-text-opacity: 1 !important; + color: rgba(124, 58, 237, var(--tw-text-opacity)) !important; + } + + .sm\:focus\:text-purple-700:focus { + --tw-text-opacity: 1 !important; + color: rgba(109, 40, 217, var(--tw-text-opacity)) !important; + } + + .sm\:focus\:text-purple-800:focus { + --tw-text-opacity: 1 !important; + color: rgba(91, 33, 182, var(--tw-text-opacity)) !important; + } + + .sm\:focus\:text-purple-900:focus { + --tw-text-opacity: 1 !important; + color: rgba(76, 29, 149, var(--tw-text-opacity)) !important; + } + + .sm\:focus\:text-pink-50:focus { + --tw-text-opacity: 1 !important; + color: rgba(253, 242, 248, var(--tw-text-opacity)) !important; + } + + .sm\:focus\:text-pink-100:focus { + --tw-text-opacity: 1 !important; + color: rgba(252, 231, 243, var(--tw-text-opacity)) !important; + } + + .sm\:focus\:text-pink-200:focus { + --tw-text-opacity: 1 !important; + color: rgba(251, 207, 232, var(--tw-text-opacity)) !important; + } + + .sm\:focus\:text-pink-300:focus { + --tw-text-opacity: 1 !important; + color: rgba(249, 168, 212, var(--tw-text-opacity)) !important; + } + + .sm\:focus\:text-pink-400:focus { + --tw-text-opacity: 1 !important; + color: rgba(244, 114, 182, var(--tw-text-opacity)) !important; + } + + .sm\:focus\:text-pink-500:focus { + --tw-text-opacity: 1 !important; + color: rgba(236, 72, 153, var(--tw-text-opacity)) !important; + } + + .sm\:focus\:text-pink-600:focus { + --tw-text-opacity: 1 !important; + color: rgba(219, 39, 119, var(--tw-text-opacity)) !important; + } + + .sm\:focus\:text-pink-700:focus { + --tw-text-opacity: 1 !important; + color: rgba(190, 24, 93, var(--tw-text-opacity)) !important; + } + + .sm\:focus\:text-pink-800:focus { + --tw-text-opacity: 1 !important; + color: rgba(157, 23, 77, var(--tw-text-opacity)) !important; + } + + .sm\:focus\:text-pink-900:focus { + --tw-text-opacity: 1 !important; + color: rgba(131, 24, 67, var(--tw-text-opacity)) !important; + } + + .sm\:focus\:text-primary:focus { + --tw-text-opacity: 1 !important; + color: rgba(0, 49, 151, var(--tw-text-opacity)) !important; + } + + .sm\:text-opacity-0 { + --tw-text-opacity: 0 !important; + } + + .sm\:text-opacity-5 { + --tw-text-opacity: 0.05 !important; + } + + .sm\:text-opacity-10 { + --tw-text-opacity: 0.1 !important; + } + + .sm\:text-opacity-20 { + --tw-text-opacity: 0.2 !important; + } + + .sm\:text-opacity-25 { + --tw-text-opacity: 0.25 !important; + } + + .sm\:text-opacity-30 { + --tw-text-opacity: 0.3 !important; + } + + .sm\:text-opacity-40 { + --tw-text-opacity: 0.4 !important; + } + + .sm\:text-opacity-50 { + --tw-text-opacity: 0.5 !important; + } + + .sm\:text-opacity-60 { + --tw-text-opacity: 0.6 !important; + } + + .sm\:text-opacity-70 { + --tw-text-opacity: 0.7 !important; + } + + .sm\:text-opacity-75 { + --tw-text-opacity: 0.75 !important; + } + + .sm\:text-opacity-80 { + --tw-text-opacity: 0.8 !important; + } + + .sm\:text-opacity-90 { + --tw-text-opacity: 0.9 !important; + } + + .sm\:text-opacity-95 { + --tw-text-opacity: 0.95 !important; + } + + .sm\:text-opacity-100 { + --tw-text-opacity: 1 !important; + } + + .group:hover .sm\:group-hover\:text-opacity-0 { + --tw-text-opacity: 0 !important; + } + + .group:hover .sm\:group-hover\:text-opacity-5 { + --tw-text-opacity: 0.05 !important; + } + + .group:hover .sm\:group-hover\:text-opacity-10 { + --tw-text-opacity: 0.1 !important; + } + + .group:hover .sm\:group-hover\:text-opacity-20 { + --tw-text-opacity: 0.2 !important; + } + + .group:hover .sm\:group-hover\:text-opacity-25 { + --tw-text-opacity: 0.25 !important; + } + + .group:hover .sm\:group-hover\:text-opacity-30 { + --tw-text-opacity: 0.3 !important; + } + + .group:hover .sm\:group-hover\:text-opacity-40 { + --tw-text-opacity: 0.4 !important; + } + + .group:hover .sm\:group-hover\:text-opacity-50 { + --tw-text-opacity: 0.5 !important; + } + + .group:hover .sm\:group-hover\:text-opacity-60 { + --tw-text-opacity: 0.6 !important; + } + + .group:hover .sm\:group-hover\:text-opacity-70 { + --tw-text-opacity: 0.7 !important; + } + + .group:hover .sm\:group-hover\:text-opacity-75 { + --tw-text-opacity: 0.75 !important; + } + + .group:hover .sm\:group-hover\:text-opacity-80 { + --tw-text-opacity: 0.8 !important; + } + + .group:hover .sm\:group-hover\:text-opacity-90 { + --tw-text-opacity: 0.9 !important; + } + + .group:hover .sm\:group-hover\:text-opacity-95 { + --tw-text-opacity: 0.95 !important; + } + + .group:hover .sm\:group-hover\:text-opacity-100 { + --tw-text-opacity: 1 !important; + } + + .sm\:focus-within\:text-opacity-0:focus-within { + --tw-text-opacity: 0 !important; + } + + .sm\:focus-within\:text-opacity-5:focus-within { + --tw-text-opacity: 0.05 !important; + } + + .sm\:focus-within\:text-opacity-10:focus-within { + --tw-text-opacity: 0.1 !important; + } + + .sm\:focus-within\:text-opacity-20:focus-within { + --tw-text-opacity: 0.2 !important; + } + + .sm\:focus-within\:text-opacity-25:focus-within { + --tw-text-opacity: 0.25 !important; + } + + .sm\:focus-within\:text-opacity-30:focus-within { + --tw-text-opacity: 0.3 !important; + } + + .sm\:focus-within\:text-opacity-40:focus-within { + --tw-text-opacity: 0.4 !important; + } + + .sm\:focus-within\:text-opacity-50:focus-within { + --tw-text-opacity: 0.5 !important; + } + + .sm\:focus-within\:text-opacity-60:focus-within { + --tw-text-opacity: 0.6 !important; + } + + .sm\:focus-within\:text-opacity-70:focus-within { + --tw-text-opacity: 0.7 !important; + } + + .sm\:focus-within\:text-opacity-75:focus-within { + --tw-text-opacity: 0.75 !important; + } + + .sm\:focus-within\:text-opacity-80:focus-within { + --tw-text-opacity: 0.8 !important; + } + + .sm\:focus-within\:text-opacity-90:focus-within { + --tw-text-opacity: 0.9 !important; + } + + .sm\:focus-within\:text-opacity-95:focus-within { + --tw-text-opacity: 0.95 !important; + } + + .sm\:focus-within\:text-opacity-100:focus-within { + --tw-text-opacity: 1 !important; + } + + .sm\:hover\:text-opacity-0:hover { + --tw-text-opacity: 0 !important; + } + + .sm\:hover\:text-opacity-5:hover { + --tw-text-opacity: 0.05 !important; + } + + .sm\:hover\:text-opacity-10:hover { + --tw-text-opacity: 0.1 !important; + } + + .sm\:hover\:text-opacity-20:hover { + --tw-text-opacity: 0.2 !important; + } + + .sm\:hover\:text-opacity-25:hover { + --tw-text-opacity: 0.25 !important; + } + + .sm\:hover\:text-opacity-30:hover { + --tw-text-opacity: 0.3 !important; + } + + .sm\:hover\:text-opacity-40:hover { + --tw-text-opacity: 0.4 !important; + } + + .sm\:hover\:text-opacity-50:hover { + --tw-text-opacity: 0.5 !important; + } + + .sm\:hover\:text-opacity-60:hover { + --tw-text-opacity: 0.6 !important; + } + + .sm\:hover\:text-opacity-70:hover { + --tw-text-opacity: 0.7 !important; + } + + .sm\:hover\:text-opacity-75:hover { + --tw-text-opacity: 0.75 !important; + } + + .sm\:hover\:text-opacity-80:hover { + --tw-text-opacity: 0.8 !important; + } + + .sm\:hover\:text-opacity-90:hover { + --tw-text-opacity: 0.9 !important; + } + + .sm\:hover\:text-opacity-95:hover { + --tw-text-opacity: 0.95 !important; + } + + .sm\:hover\:text-opacity-100:hover { + --tw-text-opacity: 1 !important; + } + + .sm\:focus\:text-opacity-0:focus { + --tw-text-opacity: 0 !important; + } + + .sm\:focus\:text-opacity-5:focus { + --tw-text-opacity: 0.05 !important; + } + + .sm\:focus\:text-opacity-10:focus { + --tw-text-opacity: 0.1 !important; + } + + .sm\:focus\:text-opacity-20:focus { + --tw-text-opacity: 0.2 !important; + } + + .sm\:focus\:text-opacity-25:focus { + --tw-text-opacity: 0.25 !important; + } + + .sm\:focus\:text-opacity-30:focus { + --tw-text-opacity: 0.3 !important; + } + + .sm\:focus\:text-opacity-40:focus { + --tw-text-opacity: 0.4 !important; + } + + .sm\:focus\:text-opacity-50:focus { + --tw-text-opacity: 0.5 !important; + } + + .sm\:focus\:text-opacity-60:focus { + --tw-text-opacity: 0.6 !important; + } + + .sm\:focus\:text-opacity-70:focus { + --tw-text-opacity: 0.7 !important; + } + + .sm\:focus\:text-opacity-75:focus { + --tw-text-opacity: 0.75 !important; + } + + .sm\:focus\:text-opacity-80:focus { + --tw-text-opacity: 0.8 !important; + } + + .sm\:focus\:text-opacity-90:focus { + --tw-text-opacity: 0.9 !important; + } + + .sm\:focus\:text-opacity-95:focus { + --tw-text-opacity: 0.95 !important; + } + + .sm\:focus\:text-opacity-100:focus { + --tw-text-opacity: 1 !important; + } + + .sm\:truncate { + overflow: hidden !important; + text-overflow: ellipsis !important; + white-space: nowrap !important; + } + + .sm\:overflow-ellipsis { + text-overflow: ellipsis !important; + } + + .sm\:overflow-clip { + text-overflow: clip !important; + } + + .sm\:italic { + font-style: italic !important; + } + + .sm\:not-italic { + font-style: normal !important; + } + + .sm\:uppercase { + text-transform: uppercase !important; + } + + .sm\:lowercase { + text-transform: lowercase !important; + } + + .sm\:capitalize { + text-transform: capitalize !important; + } + + .sm\:normal-case { + text-transform: none !important; + } + + .sm\:underline { + text-decoration: underline !important; + } + + .sm\:line-through { + text-decoration: line-through !important; + } + + .sm\:no-underline { + text-decoration: none !important; + } + + .group:hover .sm\:group-hover\:underline { + text-decoration: underline !important; + } + + .group:hover .sm\:group-hover\:line-through { + text-decoration: line-through !important; + } + + .group:hover .sm\:group-hover\:no-underline { + text-decoration: none !important; + } + + .sm\:focus-within\:underline:focus-within { + text-decoration: underline !important; + } + + .sm\:focus-within\:line-through:focus-within { + text-decoration: line-through !important; + } + + .sm\:focus-within\:no-underline:focus-within { + text-decoration: none !important; + } + + .sm\:hover\:underline:hover { + text-decoration: underline !important; + } + + .sm\:hover\:line-through:hover { + text-decoration: line-through !important; + } + + .sm\:hover\:no-underline:hover { + text-decoration: none !important; + } + + .sm\:focus\:underline:focus { + text-decoration: underline !important; + } + + .sm\:focus\:line-through:focus { + text-decoration: line-through !important; + } + + .sm\:focus\:no-underline:focus { + text-decoration: none !important; + } + + .sm\:antialiased { + -webkit-font-smoothing: antialiased !important; + -moz-osx-font-smoothing: grayscale !important; + } + + .sm\:subpixel-antialiased { + -webkit-font-smoothing: auto !important; + -moz-osx-font-smoothing: auto !important; + } + + .sm\:ordinal, .sm\:slashed-zero, .sm\:lining-nums, .sm\:oldstyle-nums, .sm\:proportional-nums, .sm\:tabular-nums, .sm\:diagonal-fractions, .sm\:stacked-fractions { + --tw-ordinal: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-slashed-zero: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-numeric-figure: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-numeric-spacing: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-numeric-fraction: var(--tw-empty,/*!*/ /*!*/) !important; + font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction) !important; + } + + .sm\:normal-nums { + font-variant-numeric: normal !important; + } + + .sm\:ordinal { + --tw-ordinal: ordinal !important; + } + + .sm\:slashed-zero { + --tw-slashed-zero: slashed-zero !important; + } + + .sm\:lining-nums { + --tw-numeric-figure: lining-nums !important; + } + + .sm\:oldstyle-nums { + --tw-numeric-figure: oldstyle-nums !important; + } + + .sm\:proportional-nums { + --tw-numeric-spacing: proportional-nums !important; + } + + .sm\:tabular-nums { + --tw-numeric-spacing: tabular-nums !important; + } + + .sm\:diagonal-fractions { + --tw-numeric-fraction: diagonal-fractions !important; + } + + .sm\:stacked-fractions { + --tw-numeric-fraction: stacked-fractions !important; + } + + .sm\:tracking-tighter { + letter-spacing: -0.05em !important; + } + + .sm\:tracking-tight { + letter-spacing: -0.025em !important; + } + + .sm\:tracking-normal { + letter-spacing: 0em !important; + } + + .sm\:tracking-wide { + letter-spacing: 0.025em !important; + } + + .sm\:tracking-wider { + letter-spacing: 0.05em !important; + } + + .sm\:tracking-widest { + letter-spacing: 0.1em !important; + } + + .sm\:select-none { + -webkit-user-select: none !important; + -moz-user-select: none !important; + -ms-user-select: none !important; + user-select: none !important; + } + + .sm\:select-text { + -webkit-user-select: text !important; + -moz-user-select: text !important; + -ms-user-select: text !important; + user-select: text !important; + } + + .sm\:select-all { + -webkit-user-select: all !important; + -moz-user-select: all !important; + user-select: all !important; + } + + .sm\:select-auto { + -webkit-user-select: auto !important; + -moz-user-select: auto !important; + -ms-user-select: auto !important; + user-select: auto !important; + } + + .sm\:align-baseline { + vertical-align: baseline !important; + } + + .sm\:align-top { + vertical-align: top !important; + } + + .sm\:align-middle { + vertical-align: middle !important; + } + + .sm\:align-bottom { + vertical-align: bottom !important; + } + + .sm\:align-text-top { + vertical-align: text-top !important; + } + + .sm\:align-text-bottom { + vertical-align: text-bottom !important; + } + + .sm\:visible { + visibility: visible !important; + } + + .sm\:invisible { + visibility: hidden !important; + } + + .sm\:whitespace-normal { + white-space: normal !important; + } + + .sm\:whitespace-nowrap { + white-space: nowrap !important; + } + + .sm\:whitespace-pre { + white-space: pre !important; + } + + .sm\:whitespace-pre-line { + white-space: pre-line !important; + } + + .sm\:whitespace-pre-wrap { + white-space: pre-wrap !important; + } + + .sm\:break-normal { + overflow-wrap: normal !important; + word-break: normal !important; + } + + .sm\:break-words { + overflow-wrap: break-word !important; + } + + .sm\:break-all { + word-break: break-all !important; + } + + .sm\:w-0 { + width: 0px !important; + } + + .sm\:w-1 { + width: 0.25rem !important; + } + + .sm\:w-2 { + width: 0.5rem !important; + } + + .sm\:w-3 { + width: 0.75rem !important; + } + + .sm\:w-4 { + width: 1rem !important; + } + + .sm\:w-5 { + width: 1.25rem !important; + } + + .sm\:w-6 { + width: 1.5rem !important; + } + + .sm\:w-7 { + width: 1.75rem !important; + } + + .sm\:w-8 { + width: 2rem !important; + } + + .sm\:w-9 { + width: 2.25rem !important; + } + + .sm\:w-10 { + width: 2.5rem !important; + } + + .sm\:w-11 { + width: 2.75rem !important; + } + + .sm\:w-12 { + width: 3rem !important; + } + + .sm\:w-14 { + width: 3.5rem !important; + } + + .sm\:w-16 { + width: 4rem !important; + } + + .sm\:w-20 { + width: 5rem !important; + } + + .sm\:w-24 { + width: 6rem !important; + } + + .sm\:w-28 { + width: 7rem !important; + } + + .sm\:w-32 { + width: 8rem !important; + } + + .sm\:w-36 { + width: 9rem !important; + } + + .sm\:w-40 { + width: 10rem !important; + } + + .sm\:w-44 { + width: 11rem !important; + } + + .sm\:w-48 { + width: 12rem !important; + } + + .sm\:w-52 { + width: 13rem !important; + } + + .sm\:w-56 { + width: 14rem !important; + } + + .sm\:w-60 { + width: 15rem !important; + } + + .sm\:w-64 { + width: 16rem !important; + } + + .sm\:w-72 { + width: 18rem !important; + } + + .sm\:w-80 { + width: 20rem !important; + } + + .sm\:w-96 { + width: 24rem !important; + } + + .sm\:w-auto { + width: auto !important; + } + + .sm\:w-px { + width: 1px !important; + } + + .sm\:w-0\.5 { + width: 0.125rem !important; + } + + .sm\:w-1\.5 { + width: 0.375rem !important; + } + + .sm\:w-2\.5 { + width: 0.625rem !important; + } + + .sm\:w-3\.5 { + width: 0.875rem !important; + } + + .sm\:w-1\/2 { + width: 50% !important; + } + + .sm\:w-1\/3 { + width: 33.333333% !important; + } + + .sm\:w-2\/3 { + width: 66.666667% !important; + } + + .sm\:w-1\/4 { + width: 25% !important; + } + + .sm\:w-2\/4 { + width: 50% !important; + } + + .sm\:w-3\/4 { + width: 75% !important; + } + + .sm\:w-1\/5 { + width: 20% !important; + } + + .sm\:w-2\/5 { + width: 40% !important; + } + + .sm\:w-3\/5 { + width: 60% !important; + } + + .sm\:w-4\/5 { + width: 80% !important; + } + + .sm\:w-1\/6 { + width: 16.666667% !important; + } + + .sm\:w-2\/6 { + width: 33.333333% !important; + } + + .sm\:w-3\/6 { + width: 50% !important; + } + + .sm\:w-4\/6 { + width: 66.666667% !important; + } + + .sm\:w-5\/6 { + width: 83.333333% !important; + } + + .sm\:w-1\/12 { + width: 8.333333% !important; + } + + .sm\:w-2\/12 { + width: 16.666667% !important; + } + + .sm\:w-3\/12 { + width: 25% !important; + } + + .sm\:w-4\/12 { + width: 33.333333% !important; + } + + .sm\:w-5\/12 { + width: 41.666667% !important; + } + + .sm\:w-6\/12 { + width: 50% !important; + } + + .sm\:w-7\/12 { + width: 58.333333% !important; + } + + .sm\:w-8\/12 { + width: 66.666667% !important; + } + + .sm\:w-9\/12 { + width: 75% !important; + } + + .sm\:w-10\/12 { + width: 83.333333% !important; + } + + .sm\:w-11\/12 { + width: 91.666667% !important; + } + + .sm\:w-full { + width: 100% !important; + } + + .sm\:w-screen { + width: 100vw !important; + } + + .sm\:w-min { + width: -webkit-min-content !important; + width: -moz-min-content !important; + width: min-content !important; + } + + .sm\:w-max { + width: -webkit-max-content !important; + width: -moz-max-content !important; + width: max-content !important; + } + + .sm\:z-0 { + z-index: 0 !important; + } + + .sm\:z-10 { + z-index: 10 !important; + } + + .sm\:z-20 { + z-index: 20 !important; + } + + .sm\:z-30 { + z-index: 30 !important; + } + + .sm\:z-40 { + z-index: 40 !important; + } + + .sm\:z-50 { + z-index: 50 !important; + } + + .sm\:z-auto { + z-index: auto !important; + } + + .sm\:focus-within\:z-0:focus-within { + z-index: 0 !important; + } + + .sm\:focus-within\:z-10:focus-within { + z-index: 10 !important; + } + + .sm\:focus-within\:z-20:focus-within { + z-index: 20 !important; + } + + .sm\:focus-within\:z-30:focus-within { + z-index: 30 !important; + } + + .sm\:focus-within\:z-40:focus-within { + z-index: 40 !important; + } + + .sm\:focus-within\:z-50:focus-within { + z-index: 50 !important; + } + + .sm\:focus-within\:z-auto:focus-within { + z-index: auto !important; + } + + .sm\:focus\:z-0:focus { + z-index: 0 !important; + } + + .sm\:focus\:z-10:focus { + z-index: 10 !important; + } + + .sm\:focus\:z-20:focus { + z-index: 20 !important; + } + + .sm\:focus\:z-30:focus { + z-index: 30 !important; + } + + .sm\:focus\:z-40:focus { + z-index: 40 !important; + } + + .sm\:focus\:z-50:focus { + z-index: 50 !important; + } + + .sm\:focus\:z-auto:focus { + z-index: auto !important; + } + + .sm\:isolate { + isolation: isolate !important; + } + + .sm\:isolation-auto { + isolation: auto !important; + } + + .sm\:gap-0 { + gap: 0px !important; + } + + .sm\:gap-1 { + gap: 0.25rem !important; + } + + .sm\:gap-2 { + gap: 0.5rem !important; + } + + .sm\:gap-3 { + gap: 0.75rem !important; + } + + .sm\:gap-4 { + gap: 1rem !important; + } + + .sm\:gap-5 { + gap: 1.25rem !important; + } + + .sm\:gap-6 { + gap: 1.5rem !important; + } + + .sm\:gap-7 { + gap: 1.75rem !important; + } + + .sm\:gap-8 { + gap: 2rem !important; + } + + .sm\:gap-9 { + gap: 2.25rem !important; + } + + .sm\:gap-10 { + gap: 2.5rem !important; + } + + .sm\:gap-11 { + gap: 2.75rem !important; + } + + .sm\:gap-12 { + gap: 3rem !important; + } + + .sm\:gap-14 { + gap: 3.5rem !important; + } + + .sm\:gap-16 { + gap: 4rem !important; + } + + .sm\:gap-20 { + gap: 5rem !important; + } + + .sm\:gap-24 { + gap: 6rem !important; + } + + .sm\:gap-28 { + gap: 7rem !important; + } + + .sm\:gap-32 { + gap: 8rem !important; + } + + .sm\:gap-36 { + gap: 9rem !important; + } + + .sm\:gap-40 { + gap: 10rem !important; + } + + .sm\:gap-44 { + gap: 11rem !important; + } + + .sm\:gap-48 { + gap: 12rem !important; + } + + .sm\:gap-52 { + gap: 13rem !important; + } + + .sm\:gap-56 { + gap: 14rem !important; + } + + .sm\:gap-60 { + gap: 15rem !important; + } + + .sm\:gap-64 { + gap: 16rem !important; + } + + .sm\:gap-72 { + gap: 18rem !important; + } + + .sm\:gap-80 { + gap: 20rem !important; + } + + .sm\:gap-96 { + gap: 24rem !important; + } + + .sm\:gap-px { + gap: 1px !important; + } + + .sm\:gap-0\.5 { + gap: 0.125rem !important; + } + + .sm\:gap-1\.5 { + gap: 0.375rem !important; + } + + .sm\:gap-2\.5 { + gap: 0.625rem !important; + } + + .sm\:gap-3\.5 { + gap: 0.875rem !important; + } + + .sm\:gap-x-0 { + -moz-column-gap: 0px !important; + column-gap: 0px !important; + } + + .sm\:gap-x-1 { + -moz-column-gap: 0.25rem !important; + column-gap: 0.25rem !important; + } + + .sm\:gap-x-2 { + -moz-column-gap: 0.5rem !important; + column-gap: 0.5rem !important; + } + + .sm\:gap-x-3 { + -moz-column-gap: 0.75rem !important; + column-gap: 0.75rem !important; + } + + .sm\:gap-x-4 { + -moz-column-gap: 1rem !important; + column-gap: 1rem !important; + } + + .sm\:gap-x-5 { + -moz-column-gap: 1.25rem !important; + column-gap: 1.25rem !important; + } + + .sm\:gap-x-6 { + -moz-column-gap: 1.5rem !important; + column-gap: 1.5rem !important; + } + + .sm\:gap-x-7 { + -moz-column-gap: 1.75rem !important; + column-gap: 1.75rem !important; + } + + .sm\:gap-x-8 { + -moz-column-gap: 2rem !important; + column-gap: 2rem !important; + } + + .sm\:gap-x-9 { + -moz-column-gap: 2.25rem !important; + column-gap: 2.25rem !important; + } + + .sm\:gap-x-10 { + -moz-column-gap: 2.5rem !important; + column-gap: 2.5rem !important; + } + + .sm\:gap-x-11 { + -moz-column-gap: 2.75rem !important; + column-gap: 2.75rem !important; + } + + .sm\:gap-x-12 { + -moz-column-gap: 3rem !important; + column-gap: 3rem !important; + } + + .sm\:gap-x-14 { + -moz-column-gap: 3.5rem !important; + column-gap: 3.5rem !important; + } + + .sm\:gap-x-16 { + -moz-column-gap: 4rem !important; + column-gap: 4rem !important; + } + + .sm\:gap-x-20 { + -moz-column-gap: 5rem !important; + column-gap: 5rem !important; + } + + .sm\:gap-x-24 { + -moz-column-gap: 6rem !important; + column-gap: 6rem !important; + } + + .sm\:gap-x-28 { + -moz-column-gap: 7rem !important; + column-gap: 7rem !important; + } + + .sm\:gap-x-32 { + -moz-column-gap: 8rem !important; + column-gap: 8rem !important; + } + + .sm\:gap-x-36 { + -moz-column-gap: 9rem !important; + column-gap: 9rem !important; + } + + .sm\:gap-x-40 { + -moz-column-gap: 10rem !important; + column-gap: 10rem !important; + } + + .sm\:gap-x-44 { + -moz-column-gap: 11rem !important; + column-gap: 11rem !important; + } + + .sm\:gap-x-48 { + -moz-column-gap: 12rem !important; + column-gap: 12rem !important; + } + + .sm\:gap-x-52 { + -moz-column-gap: 13rem !important; + column-gap: 13rem !important; + } + + .sm\:gap-x-56 { + -moz-column-gap: 14rem !important; + column-gap: 14rem !important; + } + + .sm\:gap-x-60 { + -moz-column-gap: 15rem !important; + column-gap: 15rem !important; + } + + .sm\:gap-x-64 { + -moz-column-gap: 16rem !important; + column-gap: 16rem !important; + } + + .sm\:gap-x-72 { + -moz-column-gap: 18rem !important; + column-gap: 18rem !important; + } + + .sm\:gap-x-80 { + -moz-column-gap: 20rem !important; + column-gap: 20rem !important; + } + + .sm\:gap-x-96 { + -moz-column-gap: 24rem !important; + column-gap: 24rem !important; + } + + .sm\:gap-x-px { + -moz-column-gap: 1px !important; + column-gap: 1px !important; + } + + .sm\:gap-x-0\.5 { + -moz-column-gap: 0.125rem !important; + column-gap: 0.125rem !important; + } + + .sm\:gap-x-1\.5 { + -moz-column-gap: 0.375rem !important; + column-gap: 0.375rem !important; + } + + .sm\:gap-x-2\.5 { + -moz-column-gap: 0.625rem !important; + column-gap: 0.625rem !important; + } + + .sm\:gap-x-3\.5 { + -moz-column-gap: 0.875rem !important; + column-gap: 0.875rem !important; + } + + .sm\:gap-y-0 { + row-gap: 0px !important; + } + + .sm\:gap-y-1 { + row-gap: 0.25rem !important; + } + + .sm\:gap-y-2 { + row-gap: 0.5rem !important; + } + + .sm\:gap-y-3 { + row-gap: 0.75rem !important; + } + + .sm\:gap-y-4 { + row-gap: 1rem !important; + } + + .sm\:gap-y-5 { + row-gap: 1.25rem !important; + } + + .sm\:gap-y-6 { + row-gap: 1.5rem !important; + } + + .sm\:gap-y-7 { + row-gap: 1.75rem !important; + } + + .sm\:gap-y-8 { + row-gap: 2rem !important; + } + + .sm\:gap-y-9 { + row-gap: 2.25rem !important; + } + + .sm\:gap-y-10 { + row-gap: 2.5rem !important; + } + + .sm\:gap-y-11 { + row-gap: 2.75rem !important; + } + + .sm\:gap-y-12 { + row-gap: 3rem !important; + } + + .sm\:gap-y-14 { + row-gap: 3.5rem !important; + } + + .sm\:gap-y-16 { + row-gap: 4rem !important; + } + + .sm\:gap-y-20 { + row-gap: 5rem !important; + } + + .sm\:gap-y-24 { + row-gap: 6rem !important; + } + + .sm\:gap-y-28 { + row-gap: 7rem !important; + } + + .sm\:gap-y-32 { + row-gap: 8rem !important; + } + + .sm\:gap-y-36 { + row-gap: 9rem !important; + } + + .sm\:gap-y-40 { + row-gap: 10rem !important; + } + + .sm\:gap-y-44 { + row-gap: 11rem !important; + } + + .sm\:gap-y-48 { + row-gap: 12rem !important; + } + + .sm\:gap-y-52 { + row-gap: 13rem !important; + } + + .sm\:gap-y-56 { + row-gap: 14rem !important; + } + + .sm\:gap-y-60 { + row-gap: 15rem !important; + } + + .sm\:gap-y-64 { + row-gap: 16rem !important; + } + + .sm\:gap-y-72 { + row-gap: 18rem !important; + } + + .sm\:gap-y-80 { + row-gap: 20rem !important; + } + + .sm\:gap-y-96 { + row-gap: 24rem !important; + } + + .sm\:gap-y-px { + row-gap: 1px !important; + } + + .sm\:gap-y-0\.5 { + row-gap: 0.125rem !important; + } + + .sm\:gap-y-1\.5 { + row-gap: 0.375rem !important; + } + + .sm\:gap-y-2\.5 { + row-gap: 0.625rem !important; + } + + .sm\:gap-y-3\.5 { + row-gap: 0.875rem !important; + } + + .sm\:grid-flow-row { + grid-auto-flow: row !important; + } + + .sm\:grid-flow-col { + grid-auto-flow: column !important; + } + + .sm\:grid-flow-row-dense { + grid-auto-flow: row dense !important; + } + + .sm\:grid-flow-col-dense { + grid-auto-flow: column dense !important; + } + + .sm\:grid-cols-1 { + grid-template-columns: repeat(1, minmax(0, 1fr)) !important; + } + + .sm\:grid-cols-2 { + grid-template-columns: repeat(2, minmax(0, 1fr)) !important; + } + + .sm\:grid-cols-3 { + grid-template-columns: repeat(3, minmax(0, 1fr)) !important; + } + + .sm\:grid-cols-4 { + grid-template-columns: repeat(4, minmax(0, 1fr)) !important; + } + + .sm\:grid-cols-5 { + grid-template-columns: repeat(5, minmax(0, 1fr)) !important; + } + + .sm\:grid-cols-6 { + grid-template-columns: repeat(6, minmax(0, 1fr)) !important; + } + + .sm\:grid-cols-7 { + grid-template-columns: repeat(7, minmax(0, 1fr)) !important; + } + + .sm\:grid-cols-8 { + grid-template-columns: repeat(8, minmax(0, 1fr)) !important; + } + + .sm\:grid-cols-9 { + grid-template-columns: repeat(9, minmax(0, 1fr)) !important; + } + + .sm\:grid-cols-10 { + grid-template-columns: repeat(10, minmax(0, 1fr)) !important; + } + + .sm\:grid-cols-11 { + grid-template-columns: repeat(11, minmax(0, 1fr)) !important; + } + + .sm\:grid-cols-12 { + grid-template-columns: repeat(12, minmax(0, 1fr)) !important; + } + + .sm\:grid-cols-none { + grid-template-columns: none !important; + } + + .sm\:auto-cols-auto { + grid-auto-columns: auto !important; + } + + .sm\:auto-cols-min { + grid-auto-columns: -webkit-min-content !important; + grid-auto-columns: min-content !important; + } + + .sm\:auto-cols-max { + grid-auto-columns: -webkit-max-content !important; + grid-auto-columns: max-content !important; + } + + .sm\:auto-cols-fr { + grid-auto-columns: minmax(0, 1fr) !important; + } + + .sm\:col-auto { + grid-column: auto !important; + } + + .sm\:col-span-1 { + grid-column: span 1 / span 1 !important; + } + + .sm\:col-span-2 { + grid-column: span 2 / span 2 !important; + } + + .sm\:col-span-3 { + grid-column: span 3 / span 3 !important; + } + + .sm\:col-span-4 { + grid-column: span 4 / span 4 !important; + } + + .sm\:col-span-5 { + grid-column: span 5 / span 5 !important; + } + + .sm\:col-span-6 { + grid-column: span 6 / span 6 !important; + } + + .sm\:col-span-7 { + grid-column: span 7 / span 7 !important; + } + + .sm\:col-span-8 { + grid-column: span 8 / span 8 !important; + } + + .sm\:col-span-9 { + grid-column: span 9 / span 9 !important; + } + + .sm\:col-span-10 { + grid-column: span 10 / span 10 !important; + } + + .sm\:col-span-11 { + grid-column: span 11 / span 11 !important; + } + + .sm\:col-span-12 { + grid-column: span 12 / span 12 !important; + } + + .sm\:col-span-full { + grid-column: 1 / -1 !important; + } + + .sm\:col-start-1 { + grid-column-start: 1 !important; + } + + .sm\:col-start-2 { + grid-column-start: 2 !important; + } + + .sm\:col-start-3 { + grid-column-start: 3 !important; + } + + .sm\:col-start-4 { + grid-column-start: 4 !important; + } + + .sm\:col-start-5 { + grid-column-start: 5 !important; + } + + .sm\:col-start-6 { + grid-column-start: 6 !important; + } + + .sm\:col-start-7 { + grid-column-start: 7 !important; + } + + .sm\:col-start-8 { + grid-column-start: 8 !important; + } + + .sm\:col-start-9 { + grid-column-start: 9 !important; + } + + .sm\:col-start-10 { + grid-column-start: 10 !important; + } + + .sm\:col-start-11 { + grid-column-start: 11 !important; + } + + .sm\:col-start-12 { + grid-column-start: 12 !important; + } + + .sm\:col-start-13 { + grid-column-start: 13 !important; + } + + .sm\:col-start-auto { + grid-column-start: auto !important; + } + + .sm\:col-end-1 { + grid-column-end: 1 !important; + } + + .sm\:col-end-2 { + grid-column-end: 2 !important; + } + + .sm\:col-end-3 { + grid-column-end: 3 !important; + } + + .sm\:col-end-4 { + grid-column-end: 4 !important; + } + + .sm\:col-end-5 { + grid-column-end: 5 !important; + } + + .sm\:col-end-6 { + grid-column-end: 6 !important; + } + + .sm\:col-end-7 { + grid-column-end: 7 !important; + } + + .sm\:col-end-8 { + grid-column-end: 8 !important; + } + + .sm\:col-end-9 { + grid-column-end: 9 !important; + } + + .sm\:col-end-10 { + grid-column-end: 10 !important; + } + + .sm\:col-end-11 { + grid-column-end: 11 !important; + } + + .sm\:col-end-12 { + grid-column-end: 12 !important; + } + + .sm\:col-end-13 { + grid-column-end: 13 !important; + } + + .sm\:col-end-auto { + grid-column-end: auto !important; + } + + .sm\:grid-rows-1 { + grid-template-rows: repeat(1, minmax(0, 1fr)) !important; + } + + .sm\:grid-rows-2 { + grid-template-rows: repeat(2, minmax(0, 1fr)) !important; + } + + .sm\:grid-rows-3 { + grid-template-rows: repeat(3, minmax(0, 1fr)) !important; + } + + .sm\:grid-rows-4 { + grid-template-rows: repeat(4, minmax(0, 1fr)) !important; + } + + .sm\:grid-rows-5 { + grid-template-rows: repeat(5, minmax(0, 1fr)) !important; + } + + .sm\:grid-rows-6 { + grid-template-rows: repeat(6, minmax(0, 1fr)) !important; + } + + .sm\:grid-rows-none { + grid-template-rows: none !important; + } + + .sm\:auto-rows-auto { + grid-auto-rows: auto !important; + } + + .sm\:auto-rows-min { + grid-auto-rows: -webkit-min-content !important; + grid-auto-rows: min-content !important; + } + + .sm\:auto-rows-max { + grid-auto-rows: -webkit-max-content !important; + grid-auto-rows: max-content !important; + } + + .sm\:auto-rows-fr { + grid-auto-rows: minmax(0, 1fr) !important; + } + + .sm\:row-auto { + grid-row: auto !important; + } + + .sm\:row-span-1 { + grid-row: span 1 / span 1 !important; + } + + .sm\:row-span-2 { + grid-row: span 2 / span 2 !important; + } + + .sm\:row-span-3 { + grid-row: span 3 / span 3 !important; + } + + .sm\:row-span-4 { + grid-row: span 4 / span 4 !important; + } + + .sm\:row-span-5 { + grid-row: span 5 / span 5 !important; + } + + .sm\:row-span-6 { + grid-row: span 6 / span 6 !important; + } + + .sm\:row-span-full { + grid-row: 1 / -1 !important; + } + + .sm\:row-start-1 { + grid-row-start: 1 !important; + } + + .sm\:row-start-2 { + grid-row-start: 2 !important; + } + + .sm\:row-start-3 { + grid-row-start: 3 !important; + } + + .sm\:row-start-4 { + grid-row-start: 4 !important; + } + + .sm\:row-start-5 { + grid-row-start: 5 !important; + } + + .sm\:row-start-6 { + grid-row-start: 6 !important; + } + + .sm\:row-start-7 { + grid-row-start: 7 !important; + } + + .sm\:row-start-auto { + grid-row-start: auto !important; + } + + .sm\:row-end-1 { + grid-row-end: 1 !important; + } + + .sm\:row-end-2 { + grid-row-end: 2 !important; + } + + .sm\:row-end-3 { + grid-row-end: 3 !important; + } + + .sm\:row-end-4 { + grid-row-end: 4 !important; + } + + .sm\:row-end-5 { + grid-row-end: 5 !important; + } + + .sm\:row-end-6 { + grid-row-end: 6 !important; + } + + .sm\:row-end-7 { + grid-row-end: 7 !important; + } + + .sm\:row-end-auto { + grid-row-end: auto !important; + } + + .sm\:transform { + --tw-translate-x: 0 !important; + --tw-translate-y: 0 !important; + --tw-rotate: 0 !important; + --tw-skew-x: 0 !important; + --tw-skew-y: 0 !important; + --tw-scale-x: 1 !important; + --tw-scale-y: 1 !important; + 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)) !important; + } + + .sm\:transform-gpu { + --tw-translate-x: 0 !important; + --tw-translate-y: 0 !important; + --tw-rotate: 0 !important; + --tw-skew-x: 0 !important; + --tw-skew-y: 0 !important; + --tw-scale-x: 1 !important; + --tw-scale-y: 1 !important; + transform: translate3d(var(--tw-translate-x), var(--tw-translate-y), 0) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)) !important; + } + + .sm\:transform-none { + transform: none !important; + } + + .sm\:origin-center { + transform-origin: center !important; + } + + .sm\:origin-top { + transform-origin: top !important; + } + + .sm\:origin-top-right { + transform-origin: top right !important; + } + + .sm\:origin-right { + transform-origin: right !important; + } + + .sm\:origin-bottom-right { + transform-origin: bottom right !important; + } + + .sm\:origin-bottom { + transform-origin: bottom !important; + } + + .sm\:origin-bottom-left { + transform-origin: bottom left !important; + } + + .sm\:origin-left { + transform-origin: left !important; + } + + .sm\:origin-top-left { + transform-origin: top left !important; + } + + .sm\:scale-0 { + --tw-scale-x: 0 !important; + --tw-scale-y: 0 !important; + } + + .sm\:scale-50 { + --tw-scale-x: .5 !important; + --tw-scale-y: .5 !important; + } + + .sm\:scale-75 { + --tw-scale-x: .75 !important; + --tw-scale-y: .75 !important; + } + + .sm\:scale-90 { + --tw-scale-x: .9 !important; + --tw-scale-y: .9 !important; + } + + .sm\:scale-95 { + --tw-scale-x: .95 !important; + --tw-scale-y: .95 !important; + } + + .sm\:scale-100 { + --tw-scale-x: 1 !important; + --tw-scale-y: 1 !important; + } + + .sm\:scale-105 { + --tw-scale-x: 1.05 !important; + --tw-scale-y: 1.05 !important; + } + + .sm\:scale-110 { + --tw-scale-x: 1.1 !important; + --tw-scale-y: 1.1 !important; + } + + .sm\:scale-125 { + --tw-scale-x: 1.25 !important; + --tw-scale-y: 1.25 !important; + } + + .sm\:scale-150 { + --tw-scale-x: 1.5 !important; + --tw-scale-y: 1.5 !important; + } + + .sm\:scale-x-0 { + --tw-scale-x: 0 !important; + } + + .sm\:scale-x-50 { + --tw-scale-x: .5 !important; + } + + .sm\:scale-x-75 { + --tw-scale-x: .75 !important; + } + + .sm\:scale-x-90 { + --tw-scale-x: .9 !important; + } + + .sm\:scale-x-95 { + --tw-scale-x: .95 !important; + } + + .sm\:scale-x-100 { + --tw-scale-x: 1 !important; + } + + .sm\:scale-x-105 { + --tw-scale-x: 1.05 !important; + } + + .sm\:scale-x-110 { + --tw-scale-x: 1.1 !important; + } + + .sm\:scale-x-125 { + --tw-scale-x: 1.25 !important; + } + + .sm\:scale-x-150 { + --tw-scale-x: 1.5 !important; + } + + .sm\:scale-y-0 { + --tw-scale-y: 0 !important; + } + + .sm\:scale-y-50 { + --tw-scale-y: .5 !important; + } + + .sm\:scale-y-75 { + --tw-scale-y: .75 !important; + } + + .sm\:scale-y-90 { + --tw-scale-y: .9 !important; + } + + .sm\:scale-y-95 { + --tw-scale-y: .95 !important; + } + + .sm\:scale-y-100 { + --tw-scale-y: 1 !important; + } + + .sm\:scale-y-105 { + --tw-scale-y: 1.05 !important; + } + + .sm\:scale-y-110 { + --tw-scale-y: 1.1 !important; + } + + .sm\:scale-y-125 { + --tw-scale-y: 1.25 !important; + } + + .sm\:scale-y-150 { + --tw-scale-y: 1.5 !important; + } + + .sm\:hover\:scale-0:hover { + --tw-scale-x: 0 !important; + --tw-scale-y: 0 !important; + } + + .sm\:hover\:scale-50:hover { + --tw-scale-x: .5 !important; + --tw-scale-y: .5 !important; + } + + .sm\:hover\:scale-75:hover { + --tw-scale-x: .75 !important; + --tw-scale-y: .75 !important; + } + + .sm\:hover\:scale-90:hover { + --tw-scale-x: .9 !important; + --tw-scale-y: .9 !important; + } + + .sm\:hover\:scale-95:hover { + --tw-scale-x: .95 !important; + --tw-scale-y: .95 !important; + } + + .sm\:hover\:scale-100:hover { + --tw-scale-x: 1 !important; + --tw-scale-y: 1 !important; + } + + .sm\:hover\:scale-105:hover { + --tw-scale-x: 1.05 !important; + --tw-scale-y: 1.05 !important; + } + + .sm\:hover\:scale-110:hover { + --tw-scale-x: 1.1 !important; + --tw-scale-y: 1.1 !important; + } + + .sm\:hover\:scale-125:hover { + --tw-scale-x: 1.25 !important; + --tw-scale-y: 1.25 !important; + } + + .sm\:hover\:scale-150:hover { + --tw-scale-x: 1.5 !important; + --tw-scale-y: 1.5 !important; + } + + .sm\:hover\:scale-x-0:hover { + --tw-scale-x: 0 !important; + } + + .sm\:hover\:scale-x-50:hover { + --tw-scale-x: .5 !important; + } + + .sm\:hover\:scale-x-75:hover { + --tw-scale-x: .75 !important; + } + + .sm\:hover\:scale-x-90:hover { + --tw-scale-x: .9 !important; + } + + .sm\:hover\:scale-x-95:hover { + --tw-scale-x: .95 !important; + } + + .sm\:hover\:scale-x-100:hover { + --tw-scale-x: 1 !important; + } + + .sm\:hover\:scale-x-105:hover { + --tw-scale-x: 1.05 !important; + } + + .sm\:hover\:scale-x-110:hover { + --tw-scale-x: 1.1 !important; + } + + .sm\:hover\:scale-x-125:hover { + --tw-scale-x: 1.25 !important; + } + + .sm\:hover\:scale-x-150:hover { + --tw-scale-x: 1.5 !important; + } + + .sm\:hover\:scale-y-0:hover { + --tw-scale-y: 0 !important; + } + + .sm\:hover\:scale-y-50:hover { + --tw-scale-y: .5 !important; + } + + .sm\:hover\:scale-y-75:hover { + --tw-scale-y: .75 !important; + } + + .sm\:hover\:scale-y-90:hover { + --tw-scale-y: .9 !important; + } + + .sm\:hover\:scale-y-95:hover { + --tw-scale-y: .95 !important; + } + + .sm\:hover\:scale-y-100:hover { + --tw-scale-y: 1 !important; + } + + .sm\:hover\:scale-y-105:hover { + --tw-scale-y: 1.05 !important; + } + + .sm\:hover\:scale-y-110:hover { + --tw-scale-y: 1.1 !important; + } + + .sm\:hover\:scale-y-125:hover { + --tw-scale-y: 1.25 !important; + } + + .sm\:hover\:scale-y-150:hover { + --tw-scale-y: 1.5 !important; + } + + .sm\:focus\:scale-0:focus { + --tw-scale-x: 0 !important; + --tw-scale-y: 0 !important; + } + + .sm\:focus\:scale-50:focus { + --tw-scale-x: .5 !important; + --tw-scale-y: .5 !important; + } + + .sm\:focus\:scale-75:focus { + --tw-scale-x: .75 !important; + --tw-scale-y: .75 !important; + } + + .sm\:focus\:scale-90:focus { + --tw-scale-x: .9 !important; + --tw-scale-y: .9 !important; + } + + .sm\:focus\:scale-95:focus { + --tw-scale-x: .95 !important; + --tw-scale-y: .95 !important; + } + + .sm\:focus\:scale-100:focus { + --tw-scale-x: 1 !important; + --tw-scale-y: 1 !important; + } + + .sm\:focus\:scale-105:focus { + --tw-scale-x: 1.05 !important; + --tw-scale-y: 1.05 !important; + } + + .sm\:focus\:scale-110:focus { + --tw-scale-x: 1.1 !important; + --tw-scale-y: 1.1 !important; + } + + .sm\:focus\:scale-125:focus { + --tw-scale-x: 1.25 !important; + --tw-scale-y: 1.25 !important; + } + + .sm\:focus\:scale-150:focus { + --tw-scale-x: 1.5 !important; + --tw-scale-y: 1.5 !important; + } + + .sm\:focus\:scale-x-0:focus { + --tw-scale-x: 0 !important; + } + + .sm\:focus\:scale-x-50:focus { + --tw-scale-x: .5 !important; + } + + .sm\:focus\:scale-x-75:focus { + --tw-scale-x: .75 !important; + } + + .sm\:focus\:scale-x-90:focus { + --tw-scale-x: .9 !important; + } + + .sm\:focus\:scale-x-95:focus { + --tw-scale-x: .95 !important; + } + + .sm\:focus\:scale-x-100:focus { + --tw-scale-x: 1 !important; + } + + .sm\:focus\:scale-x-105:focus { + --tw-scale-x: 1.05 !important; + } + + .sm\:focus\:scale-x-110:focus { + --tw-scale-x: 1.1 !important; + } + + .sm\:focus\:scale-x-125:focus { + --tw-scale-x: 1.25 !important; + } + + .sm\:focus\:scale-x-150:focus { + --tw-scale-x: 1.5 !important; + } + + .sm\:focus\:scale-y-0:focus { + --tw-scale-y: 0 !important; + } + + .sm\:focus\:scale-y-50:focus { + --tw-scale-y: .5 !important; + } + + .sm\:focus\:scale-y-75:focus { + --tw-scale-y: .75 !important; + } + + .sm\:focus\:scale-y-90:focus { + --tw-scale-y: .9 !important; + } + + .sm\:focus\:scale-y-95:focus { + --tw-scale-y: .95 !important; + } + + .sm\:focus\:scale-y-100:focus { + --tw-scale-y: 1 !important; + } + + .sm\:focus\:scale-y-105:focus { + --tw-scale-y: 1.05 !important; + } + + .sm\:focus\:scale-y-110:focus { + --tw-scale-y: 1.1 !important; + } + + .sm\:focus\:scale-y-125:focus { + --tw-scale-y: 1.25 !important; + } + + .sm\:focus\:scale-y-150:focus { + --tw-scale-y: 1.5 !important; + } + + .sm\:rotate-0 { + --tw-rotate: 0deg !important; + } + + .sm\:rotate-1 { + --tw-rotate: 1deg !important; + } + + .sm\:rotate-2 { + --tw-rotate: 2deg !important; + } + + .sm\:rotate-3 { + --tw-rotate: 3deg !important; + } + + .sm\:rotate-6 { + --tw-rotate: 6deg !important; + } + + .sm\:rotate-12 { + --tw-rotate: 12deg !important; + } + + .sm\:rotate-45 { + --tw-rotate: 45deg !important; + } + + .sm\:rotate-90 { + --tw-rotate: 90deg !important; + } + + .sm\:rotate-180 { + --tw-rotate: 180deg !important; + } + + .sm\:-rotate-180 { + --tw-rotate: -180deg !important; + } + + .sm\:-rotate-90 { + --tw-rotate: -90deg !important; + } + + .sm\:-rotate-45 { + --tw-rotate: -45deg !important; + } + + .sm\:-rotate-12 { + --tw-rotate: -12deg !important; + } + + .sm\:-rotate-6 { + --tw-rotate: -6deg !important; + } + + .sm\:-rotate-3 { + --tw-rotate: -3deg !important; + } + + .sm\:-rotate-2 { + --tw-rotate: -2deg !important; + } + + .sm\:-rotate-1 { + --tw-rotate: -1deg !important; + } + + .sm\:hover\:rotate-0:hover { + --tw-rotate: 0deg !important; + } + + .sm\:hover\:rotate-1:hover { + --tw-rotate: 1deg !important; + } + + .sm\:hover\:rotate-2:hover { + --tw-rotate: 2deg !important; + } + + .sm\:hover\:rotate-3:hover { + --tw-rotate: 3deg !important; + } + + .sm\:hover\:rotate-6:hover { + --tw-rotate: 6deg !important; + } + + .sm\:hover\:rotate-12:hover { + --tw-rotate: 12deg !important; + } + + .sm\:hover\:rotate-45:hover { + --tw-rotate: 45deg !important; + } + + .sm\:hover\:rotate-90:hover { + --tw-rotate: 90deg !important; + } + + .sm\:hover\:rotate-180:hover { + --tw-rotate: 180deg !important; + } + + .sm\:hover\:-rotate-180:hover { + --tw-rotate: -180deg !important; + } + + .sm\:hover\:-rotate-90:hover { + --tw-rotate: -90deg !important; + } + + .sm\:hover\:-rotate-45:hover { + --tw-rotate: -45deg !important; + } + + .sm\:hover\:-rotate-12:hover { + --tw-rotate: -12deg !important; + } + + .sm\:hover\:-rotate-6:hover { + --tw-rotate: -6deg !important; + } + + .sm\:hover\:-rotate-3:hover { + --tw-rotate: -3deg !important; + } + + .sm\:hover\:-rotate-2:hover { + --tw-rotate: -2deg !important; + } + + .sm\:hover\:-rotate-1:hover { + --tw-rotate: -1deg !important; + } + + .sm\:focus\:rotate-0:focus { + --tw-rotate: 0deg !important; + } + + .sm\:focus\:rotate-1:focus { + --tw-rotate: 1deg !important; + } + + .sm\:focus\:rotate-2:focus { + --tw-rotate: 2deg !important; + } + + .sm\:focus\:rotate-3:focus { + --tw-rotate: 3deg !important; + } + + .sm\:focus\:rotate-6:focus { + --tw-rotate: 6deg !important; + } + + .sm\:focus\:rotate-12:focus { + --tw-rotate: 12deg !important; + } + + .sm\:focus\:rotate-45:focus { + --tw-rotate: 45deg !important; + } + + .sm\:focus\:rotate-90:focus { + --tw-rotate: 90deg !important; + } + + .sm\:focus\:rotate-180:focus { + --tw-rotate: 180deg !important; + } + + .sm\:focus\:-rotate-180:focus { + --tw-rotate: -180deg !important; + } + + .sm\:focus\:-rotate-90:focus { + --tw-rotate: -90deg !important; + } + + .sm\:focus\:-rotate-45:focus { + --tw-rotate: -45deg !important; + } + + .sm\:focus\:-rotate-12:focus { + --tw-rotate: -12deg !important; + } + + .sm\:focus\:-rotate-6:focus { + --tw-rotate: -6deg !important; + } + + .sm\:focus\:-rotate-3:focus { + --tw-rotate: -3deg !important; + } + + .sm\:focus\:-rotate-2:focus { + --tw-rotate: -2deg !important; + } + + .sm\:focus\:-rotate-1:focus { + --tw-rotate: -1deg !important; + } + + .sm\:translate-x-0 { + --tw-translate-x: 0px !important; + } + + .sm\:translate-x-1 { + --tw-translate-x: 0.25rem !important; + } + + .sm\:translate-x-2 { + --tw-translate-x: 0.5rem !important; + } + + .sm\:translate-x-3 { + --tw-translate-x: 0.75rem !important; + } + + .sm\:translate-x-4 { + --tw-translate-x: 1rem !important; + } + + .sm\:translate-x-5 { + --tw-translate-x: 1.25rem !important; + } + + .sm\:translate-x-6 { + --tw-translate-x: 1.5rem !important; + } + + .sm\:translate-x-7 { + --tw-translate-x: 1.75rem !important; + } + + .sm\:translate-x-8 { + --tw-translate-x: 2rem !important; + } + + .sm\:translate-x-9 { + --tw-translate-x: 2.25rem !important; + } + + .sm\:translate-x-10 { + --tw-translate-x: 2.5rem !important; + } + + .sm\:translate-x-11 { + --tw-translate-x: 2.75rem !important; + } + + .sm\:translate-x-12 { + --tw-translate-x: 3rem !important; + } + + .sm\:translate-x-14 { + --tw-translate-x: 3.5rem !important; + } + + .sm\:translate-x-16 { + --tw-translate-x: 4rem !important; + } + + .sm\:translate-x-20 { + --tw-translate-x: 5rem !important; + } + + .sm\:translate-x-24 { + --tw-translate-x: 6rem !important; + } + + .sm\:translate-x-28 { + --tw-translate-x: 7rem !important; + } + + .sm\:translate-x-32 { + --tw-translate-x: 8rem !important; + } + + .sm\:translate-x-36 { + --tw-translate-x: 9rem !important; + } + + .sm\:translate-x-40 { + --tw-translate-x: 10rem !important; + } + + .sm\:translate-x-44 { + --tw-translate-x: 11rem !important; + } + + .sm\:translate-x-48 { + --tw-translate-x: 12rem !important; + } + + .sm\:translate-x-52 { + --tw-translate-x: 13rem !important; + } + + .sm\:translate-x-56 { + --tw-translate-x: 14rem !important; + } + + .sm\:translate-x-60 { + --tw-translate-x: 15rem !important; + } + + .sm\:translate-x-64 { + --tw-translate-x: 16rem !important; + } + + .sm\:translate-x-72 { + --tw-translate-x: 18rem !important; + } + + .sm\:translate-x-80 { + --tw-translate-x: 20rem !important; + } + + .sm\:translate-x-96 { + --tw-translate-x: 24rem !important; + } + + .sm\:translate-x-px { + --tw-translate-x: 1px !important; + } + + .sm\:translate-x-0\.5 { + --tw-translate-x: 0.125rem !important; + } + + .sm\:translate-x-1\.5 { + --tw-translate-x: 0.375rem !important; + } + + .sm\:translate-x-2\.5 { + --tw-translate-x: 0.625rem !important; + } + + .sm\:translate-x-3\.5 { + --tw-translate-x: 0.875rem !important; + } + + .sm\:-translate-x-0 { + --tw-translate-x: 0px !important; + } + + .sm\:-translate-x-1 { + --tw-translate-x: -0.25rem !important; + } + + .sm\:-translate-x-2 { + --tw-translate-x: -0.5rem !important; + } + + .sm\:-translate-x-3 { + --tw-translate-x: -0.75rem !important; + } + + .sm\:-translate-x-4 { + --tw-translate-x: -1rem !important; + } + + .sm\:-translate-x-5 { + --tw-translate-x: -1.25rem !important; + } + + .sm\:-translate-x-6 { + --tw-translate-x: -1.5rem !important; + } + + .sm\:-translate-x-7 { + --tw-translate-x: -1.75rem !important; + } + + .sm\:-translate-x-8 { + --tw-translate-x: -2rem !important; + } + + .sm\:-translate-x-9 { + --tw-translate-x: -2.25rem !important; + } + + .sm\:-translate-x-10 { + --tw-translate-x: -2.5rem !important; + } + + .sm\:-translate-x-11 { + --tw-translate-x: -2.75rem !important; + } + + .sm\:-translate-x-12 { + --tw-translate-x: -3rem !important; + } + + .sm\:-translate-x-14 { + --tw-translate-x: -3.5rem !important; + } + + .sm\:-translate-x-16 { + --tw-translate-x: -4rem !important; + } + + .sm\:-translate-x-20 { + --tw-translate-x: -5rem !important; + } + + .sm\:-translate-x-24 { + --tw-translate-x: -6rem !important; + } + + .sm\:-translate-x-28 { + --tw-translate-x: -7rem !important; + } + + .sm\:-translate-x-32 { + --tw-translate-x: -8rem !important; + } + + .sm\:-translate-x-36 { + --tw-translate-x: -9rem !important; + } + + .sm\:-translate-x-40 { + --tw-translate-x: -10rem !important; + } + + .sm\:-translate-x-44 { + --tw-translate-x: -11rem !important; + } + + .sm\:-translate-x-48 { + --tw-translate-x: -12rem !important; + } + + .sm\:-translate-x-52 { + --tw-translate-x: -13rem !important; + } + + .sm\:-translate-x-56 { + --tw-translate-x: -14rem !important; + } + + .sm\:-translate-x-60 { + --tw-translate-x: -15rem !important; + } + + .sm\:-translate-x-64 { + --tw-translate-x: -16rem !important; + } + + .sm\:-translate-x-72 { + --tw-translate-x: -18rem !important; + } + + .sm\:-translate-x-80 { + --tw-translate-x: -20rem !important; + } + + .sm\:-translate-x-96 { + --tw-translate-x: -24rem !important; + } + + .sm\:-translate-x-px { + --tw-translate-x: -1px !important; + } + + .sm\:-translate-x-0\.5 { + --tw-translate-x: -0.125rem !important; + } + + .sm\:-translate-x-1\.5 { + --tw-translate-x: -0.375rem !important; + } + + .sm\:-translate-x-2\.5 { + --tw-translate-x: -0.625rem !important; + } + + .sm\:-translate-x-3\.5 { + --tw-translate-x: -0.875rem !important; + } + + .sm\:translate-x-1\/2 { + --tw-translate-x: 50% !important; + } + + .sm\:translate-x-1\/3 { + --tw-translate-x: 33.333333% !important; + } + + .sm\:translate-x-2\/3 { + --tw-translate-x: 66.666667% !important; + } + + .sm\:translate-x-1\/4 { + --tw-translate-x: 25% !important; + } + + .sm\:translate-x-2\/4 { + --tw-translate-x: 50% !important; + } + + .sm\:translate-x-3\/4 { + --tw-translate-x: 75% !important; + } + + .sm\:translate-x-full { + --tw-translate-x: 100% !important; + } + + .sm\:-translate-x-1\/2 { + --tw-translate-x: -50% !important; + } + + .sm\:-translate-x-1\/3 { + --tw-translate-x: -33.333333% !important; + } + + .sm\:-translate-x-2\/3 { + --tw-translate-x: -66.666667% !important; + } + + .sm\:-translate-x-1\/4 { + --tw-translate-x: -25% !important; + } + + .sm\:-translate-x-2\/4 { + --tw-translate-x: -50% !important; + } + + .sm\:-translate-x-3\/4 { + --tw-translate-x: -75% !important; + } + + .sm\:-translate-x-full { + --tw-translate-x: -100% !important; + } + + .sm\:translate-y-0 { + --tw-translate-y: 0px !important; + } + + .sm\:translate-y-1 { + --tw-translate-y: 0.25rem !important; + } + + .sm\:translate-y-2 { + --tw-translate-y: 0.5rem !important; + } + + .sm\:translate-y-3 { + --tw-translate-y: 0.75rem !important; + } + + .sm\:translate-y-4 { + --tw-translate-y: 1rem !important; + } + + .sm\:translate-y-5 { + --tw-translate-y: 1.25rem !important; + } + + .sm\:translate-y-6 { + --tw-translate-y: 1.5rem !important; + } + + .sm\:translate-y-7 { + --tw-translate-y: 1.75rem !important; + } + + .sm\:translate-y-8 { + --tw-translate-y: 2rem !important; + } + + .sm\:translate-y-9 { + --tw-translate-y: 2.25rem !important; + } + + .sm\:translate-y-10 { + --tw-translate-y: 2.5rem !important; + } + + .sm\:translate-y-11 { + --tw-translate-y: 2.75rem !important; + } + + .sm\:translate-y-12 { + --tw-translate-y: 3rem !important; + } + + .sm\:translate-y-14 { + --tw-translate-y: 3.5rem !important; + } + + .sm\:translate-y-16 { + --tw-translate-y: 4rem !important; + } + + .sm\:translate-y-20 { + --tw-translate-y: 5rem !important; + } + + .sm\:translate-y-24 { + --tw-translate-y: 6rem !important; + } + + .sm\:translate-y-28 { + --tw-translate-y: 7rem !important; + } + + .sm\:translate-y-32 { + --tw-translate-y: 8rem !important; + } + + .sm\:translate-y-36 { + --tw-translate-y: 9rem !important; + } + + .sm\:translate-y-40 { + --tw-translate-y: 10rem !important; + } + + .sm\:translate-y-44 { + --tw-translate-y: 11rem !important; + } + + .sm\:translate-y-48 { + --tw-translate-y: 12rem !important; + } + + .sm\:translate-y-52 { + --tw-translate-y: 13rem !important; + } + + .sm\:translate-y-56 { + --tw-translate-y: 14rem !important; + } + + .sm\:translate-y-60 { + --tw-translate-y: 15rem !important; + } + + .sm\:translate-y-64 { + --tw-translate-y: 16rem !important; + } + + .sm\:translate-y-72 { + --tw-translate-y: 18rem !important; + } + + .sm\:translate-y-80 { + --tw-translate-y: 20rem !important; + } + + .sm\:translate-y-96 { + --tw-translate-y: 24rem !important; + } + + .sm\:translate-y-px { + --tw-translate-y: 1px !important; + } + + .sm\:translate-y-0\.5 { + --tw-translate-y: 0.125rem !important; + } + + .sm\:translate-y-1\.5 { + --tw-translate-y: 0.375rem !important; + } + + .sm\:translate-y-2\.5 { + --tw-translate-y: 0.625rem !important; + } + + .sm\:translate-y-3\.5 { + --tw-translate-y: 0.875rem !important; + } + + .sm\:-translate-y-0 { + --tw-translate-y: 0px !important; + } + + .sm\:-translate-y-1 { + --tw-translate-y: -0.25rem !important; + } + + .sm\:-translate-y-2 { + --tw-translate-y: -0.5rem !important; + } + + .sm\:-translate-y-3 { + --tw-translate-y: -0.75rem !important; + } + + .sm\:-translate-y-4 { + --tw-translate-y: -1rem !important; + } + + .sm\:-translate-y-5 { + --tw-translate-y: -1.25rem !important; + } + + .sm\:-translate-y-6 { + --tw-translate-y: -1.5rem !important; + } + + .sm\:-translate-y-7 { + --tw-translate-y: -1.75rem !important; + } + + .sm\:-translate-y-8 { + --tw-translate-y: -2rem !important; + } + + .sm\:-translate-y-9 { + --tw-translate-y: -2.25rem !important; + } + + .sm\:-translate-y-10 { + --tw-translate-y: -2.5rem !important; + } + + .sm\:-translate-y-11 { + --tw-translate-y: -2.75rem !important; + } + + .sm\:-translate-y-12 { + --tw-translate-y: -3rem !important; + } + + .sm\:-translate-y-14 { + --tw-translate-y: -3.5rem !important; + } + + .sm\:-translate-y-16 { + --tw-translate-y: -4rem !important; + } + + .sm\:-translate-y-20 { + --tw-translate-y: -5rem !important; + } + + .sm\:-translate-y-24 { + --tw-translate-y: -6rem !important; + } + + .sm\:-translate-y-28 { + --tw-translate-y: -7rem !important; + } + + .sm\:-translate-y-32 { + --tw-translate-y: -8rem !important; + } + + .sm\:-translate-y-36 { + --tw-translate-y: -9rem !important; + } + + .sm\:-translate-y-40 { + --tw-translate-y: -10rem !important; + } + + .sm\:-translate-y-44 { + --tw-translate-y: -11rem !important; + } + + .sm\:-translate-y-48 { + --tw-translate-y: -12rem !important; + } + + .sm\:-translate-y-52 { + --tw-translate-y: -13rem !important; + } + + .sm\:-translate-y-56 { + --tw-translate-y: -14rem !important; + } + + .sm\:-translate-y-60 { + --tw-translate-y: -15rem !important; + } + + .sm\:-translate-y-64 { + --tw-translate-y: -16rem !important; + } + + .sm\:-translate-y-72 { + --tw-translate-y: -18rem !important; + } + + .sm\:-translate-y-80 { + --tw-translate-y: -20rem !important; + } + + .sm\:-translate-y-96 { + --tw-translate-y: -24rem !important; + } + + .sm\:-translate-y-px { + --tw-translate-y: -1px !important; + } + + .sm\:-translate-y-0\.5 { + --tw-translate-y: -0.125rem !important; + } + + .sm\:-translate-y-1\.5 { + --tw-translate-y: -0.375rem !important; + } + + .sm\:-translate-y-2\.5 { + --tw-translate-y: -0.625rem !important; + } + + .sm\:-translate-y-3\.5 { + --tw-translate-y: -0.875rem !important; + } + + .sm\:translate-y-1\/2 { + --tw-translate-y: 50% !important; + } + + .sm\:translate-y-1\/3 { + --tw-translate-y: 33.333333% !important; + } + + .sm\:translate-y-2\/3 { + --tw-translate-y: 66.666667% !important; + } + + .sm\:translate-y-1\/4 { + --tw-translate-y: 25% !important; + } + + .sm\:translate-y-2\/4 { + --tw-translate-y: 50% !important; + } + + .sm\:translate-y-3\/4 { + --tw-translate-y: 75% !important; + } + + .sm\:translate-y-full { + --tw-translate-y: 100% !important; + } + + .sm\:-translate-y-1\/2 { + --tw-translate-y: -50% !important; + } + + .sm\:-translate-y-1\/3 { + --tw-translate-y: -33.333333% !important; + } + + .sm\:-translate-y-2\/3 { + --tw-translate-y: -66.666667% !important; + } + + .sm\:-translate-y-1\/4 { + --tw-translate-y: -25% !important; + } + + .sm\:-translate-y-2\/4 { + --tw-translate-y: -50% !important; + } + + .sm\:-translate-y-3\/4 { + --tw-translate-y: -75% !important; + } + + .sm\:-translate-y-full { + --tw-translate-y: -100% !important; + } + + .sm\:hover\:translate-x-0:hover { + --tw-translate-x: 0px !important; + } + + .sm\:hover\:translate-x-1:hover { + --tw-translate-x: 0.25rem !important; + } + + .sm\:hover\:translate-x-2:hover { + --tw-translate-x: 0.5rem !important; + } + + .sm\:hover\:translate-x-3:hover { + --tw-translate-x: 0.75rem !important; + } + + .sm\:hover\:translate-x-4:hover { + --tw-translate-x: 1rem !important; + } + + .sm\:hover\:translate-x-5:hover { + --tw-translate-x: 1.25rem !important; + } + + .sm\:hover\:translate-x-6:hover { + --tw-translate-x: 1.5rem !important; + } + + .sm\:hover\:translate-x-7:hover { + --tw-translate-x: 1.75rem !important; + } + + .sm\:hover\:translate-x-8:hover { + --tw-translate-x: 2rem !important; + } + + .sm\:hover\:translate-x-9:hover { + --tw-translate-x: 2.25rem !important; + } + + .sm\:hover\:translate-x-10:hover { + --tw-translate-x: 2.5rem !important; + } + + .sm\:hover\:translate-x-11:hover { + --tw-translate-x: 2.75rem !important; + } + + .sm\:hover\:translate-x-12:hover { + --tw-translate-x: 3rem !important; + } + + .sm\:hover\:translate-x-14:hover { + --tw-translate-x: 3.5rem !important; + } + + .sm\:hover\:translate-x-16:hover { + --tw-translate-x: 4rem !important; + } + + .sm\:hover\:translate-x-20:hover { + --tw-translate-x: 5rem !important; + } + + .sm\:hover\:translate-x-24:hover { + --tw-translate-x: 6rem !important; + } + + .sm\:hover\:translate-x-28:hover { + --tw-translate-x: 7rem !important; + } + + .sm\:hover\:translate-x-32:hover { + --tw-translate-x: 8rem !important; + } + + .sm\:hover\:translate-x-36:hover { + --tw-translate-x: 9rem !important; + } + + .sm\:hover\:translate-x-40:hover { + --tw-translate-x: 10rem !important; + } + + .sm\:hover\:translate-x-44:hover { + --tw-translate-x: 11rem !important; + } + + .sm\:hover\:translate-x-48:hover { + --tw-translate-x: 12rem !important; + } + + .sm\:hover\:translate-x-52:hover { + --tw-translate-x: 13rem !important; + } + + .sm\:hover\:translate-x-56:hover { + --tw-translate-x: 14rem !important; + } + + .sm\:hover\:translate-x-60:hover { + --tw-translate-x: 15rem !important; + } + + .sm\:hover\:translate-x-64:hover { + --tw-translate-x: 16rem !important; + } + + .sm\:hover\:translate-x-72:hover { + --tw-translate-x: 18rem !important; + } + + .sm\:hover\:translate-x-80:hover { + --tw-translate-x: 20rem !important; + } + + .sm\:hover\:translate-x-96:hover { + --tw-translate-x: 24rem !important; + } + + .sm\:hover\:translate-x-px:hover { + --tw-translate-x: 1px !important; + } + + .sm\:hover\:translate-x-0\.5:hover { + --tw-translate-x: 0.125rem !important; + } + + .sm\:hover\:translate-x-1\.5:hover { + --tw-translate-x: 0.375rem !important; + } + + .sm\:hover\:translate-x-2\.5:hover { + --tw-translate-x: 0.625rem !important; + } + + .sm\:hover\:translate-x-3\.5:hover { + --tw-translate-x: 0.875rem !important; + } + + .sm\:hover\:-translate-x-0:hover { + --tw-translate-x: 0px !important; + } + + .sm\:hover\:-translate-x-1:hover { + --tw-translate-x: -0.25rem !important; + } + + .sm\:hover\:-translate-x-2:hover { + --tw-translate-x: -0.5rem !important; + } + + .sm\:hover\:-translate-x-3:hover { + --tw-translate-x: -0.75rem !important; + } + + .sm\:hover\:-translate-x-4:hover { + --tw-translate-x: -1rem !important; + } + + .sm\:hover\:-translate-x-5:hover { + --tw-translate-x: -1.25rem !important; + } + + .sm\:hover\:-translate-x-6:hover { + --tw-translate-x: -1.5rem !important; + } + + .sm\:hover\:-translate-x-7:hover { + --tw-translate-x: -1.75rem !important; + } + + .sm\:hover\:-translate-x-8:hover { + --tw-translate-x: -2rem !important; + } + + .sm\:hover\:-translate-x-9:hover { + --tw-translate-x: -2.25rem !important; + } + + .sm\:hover\:-translate-x-10:hover { + --tw-translate-x: -2.5rem !important; + } + + .sm\:hover\:-translate-x-11:hover { + --tw-translate-x: -2.75rem !important; + } + + .sm\:hover\:-translate-x-12:hover { + --tw-translate-x: -3rem !important; + } + + .sm\:hover\:-translate-x-14:hover { + --tw-translate-x: -3.5rem !important; + } + + .sm\:hover\:-translate-x-16:hover { + --tw-translate-x: -4rem !important; + } + + .sm\:hover\:-translate-x-20:hover { + --tw-translate-x: -5rem !important; + } + + .sm\:hover\:-translate-x-24:hover { + --tw-translate-x: -6rem !important; + } + + .sm\:hover\:-translate-x-28:hover { + --tw-translate-x: -7rem !important; + } + + .sm\:hover\:-translate-x-32:hover { + --tw-translate-x: -8rem !important; + } + + .sm\:hover\:-translate-x-36:hover { + --tw-translate-x: -9rem !important; + } + + .sm\:hover\:-translate-x-40:hover { + --tw-translate-x: -10rem !important; + } + + .sm\:hover\:-translate-x-44:hover { + --tw-translate-x: -11rem !important; + } + + .sm\:hover\:-translate-x-48:hover { + --tw-translate-x: -12rem !important; + } + + .sm\:hover\:-translate-x-52:hover { + --tw-translate-x: -13rem !important; + } + + .sm\:hover\:-translate-x-56:hover { + --tw-translate-x: -14rem !important; + } + + .sm\:hover\:-translate-x-60:hover { + --tw-translate-x: -15rem !important; + } + + .sm\:hover\:-translate-x-64:hover { + --tw-translate-x: -16rem !important; + } + + .sm\:hover\:-translate-x-72:hover { + --tw-translate-x: -18rem !important; + } + + .sm\:hover\:-translate-x-80:hover { + --tw-translate-x: -20rem !important; + } + + .sm\:hover\:-translate-x-96:hover { + --tw-translate-x: -24rem !important; + } + + .sm\:hover\:-translate-x-px:hover { + --tw-translate-x: -1px !important; + } + + .sm\:hover\:-translate-x-0\.5:hover { + --tw-translate-x: -0.125rem !important; + } + + .sm\:hover\:-translate-x-1\.5:hover { + --tw-translate-x: -0.375rem !important; + } + + .sm\:hover\:-translate-x-2\.5:hover { + --tw-translate-x: -0.625rem !important; + } + + .sm\:hover\:-translate-x-3\.5:hover { + --tw-translate-x: -0.875rem !important; + } + + .sm\:hover\:translate-x-1\/2:hover { + --tw-translate-x: 50% !important; + } + + .sm\:hover\:translate-x-1\/3:hover { + --tw-translate-x: 33.333333% !important; + } + + .sm\:hover\:translate-x-2\/3:hover { + --tw-translate-x: 66.666667% !important; + } + + .sm\:hover\:translate-x-1\/4:hover { + --tw-translate-x: 25% !important; + } + + .sm\:hover\:translate-x-2\/4:hover { + --tw-translate-x: 50% !important; + } + + .sm\:hover\:translate-x-3\/4:hover { + --tw-translate-x: 75% !important; + } + + .sm\:hover\:translate-x-full:hover { + --tw-translate-x: 100% !important; + } + + .sm\:hover\:-translate-x-1\/2:hover { + --tw-translate-x: -50% !important; + } + + .sm\:hover\:-translate-x-1\/3:hover { + --tw-translate-x: -33.333333% !important; + } + + .sm\:hover\:-translate-x-2\/3:hover { + --tw-translate-x: -66.666667% !important; + } + + .sm\:hover\:-translate-x-1\/4:hover { + --tw-translate-x: -25% !important; + } + + .sm\:hover\:-translate-x-2\/4:hover { + --tw-translate-x: -50% !important; + } + + .sm\:hover\:-translate-x-3\/4:hover { + --tw-translate-x: -75% !important; + } + + .sm\:hover\:-translate-x-full:hover { + --tw-translate-x: -100% !important; + } + + .sm\:hover\:translate-y-0:hover { + --tw-translate-y: 0px !important; + } + + .sm\:hover\:translate-y-1:hover { + --tw-translate-y: 0.25rem !important; + } + + .sm\:hover\:translate-y-2:hover { + --tw-translate-y: 0.5rem !important; + } + + .sm\:hover\:translate-y-3:hover { + --tw-translate-y: 0.75rem !important; + } + + .sm\:hover\:translate-y-4:hover { + --tw-translate-y: 1rem !important; + } + + .sm\:hover\:translate-y-5:hover { + --tw-translate-y: 1.25rem !important; + } + + .sm\:hover\:translate-y-6:hover { + --tw-translate-y: 1.5rem !important; + } + + .sm\:hover\:translate-y-7:hover { + --tw-translate-y: 1.75rem !important; + } + + .sm\:hover\:translate-y-8:hover { + --tw-translate-y: 2rem !important; + } + + .sm\:hover\:translate-y-9:hover { + --tw-translate-y: 2.25rem !important; + } + + .sm\:hover\:translate-y-10:hover { + --tw-translate-y: 2.5rem !important; + } + + .sm\:hover\:translate-y-11:hover { + --tw-translate-y: 2.75rem !important; + } + + .sm\:hover\:translate-y-12:hover { + --tw-translate-y: 3rem !important; + } + + .sm\:hover\:translate-y-14:hover { + --tw-translate-y: 3.5rem !important; + } + + .sm\:hover\:translate-y-16:hover { + --tw-translate-y: 4rem !important; + } + + .sm\:hover\:translate-y-20:hover { + --tw-translate-y: 5rem !important; + } + + .sm\:hover\:translate-y-24:hover { + --tw-translate-y: 6rem !important; + } + + .sm\:hover\:translate-y-28:hover { + --tw-translate-y: 7rem !important; + } + + .sm\:hover\:translate-y-32:hover { + --tw-translate-y: 8rem !important; + } + + .sm\:hover\:translate-y-36:hover { + --tw-translate-y: 9rem !important; + } + + .sm\:hover\:translate-y-40:hover { + --tw-translate-y: 10rem !important; + } + + .sm\:hover\:translate-y-44:hover { + --tw-translate-y: 11rem !important; + } + + .sm\:hover\:translate-y-48:hover { + --tw-translate-y: 12rem !important; + } + + .sm\:hover\:translate-y-52:hover { + --tw-translate-y: 13rem !important; + } + + .sm\:hover\:translate-y-56:hover { + --tw-translate-y: 14rem !important; + } + + .sm\:hover\:translate-y-60:hover { + --tw-translate-y: 15rem !important; + } + + .sm\:hover\:translate-y-64:hover { + --tw-translate-y: 16rem !important; + } + + .sm\:hover\:translate-y-72:hover { + --tw-translate-y: 18rem !important; + } + + .sm\:hover\:translate-y-80:hover { + --tw-translate-y: 20rem !important; + } + + .sm\:hover\:translate-y-96:hover { + --tw-translate-y: 24rem !important; + } + + .sm\:hover\:translate-y-px:hover { + --tw-translate-y: 1px !important; + } + + .sm\:hover\:translate-y-0\.5:hover { + --tw-translate-y: 0.125rem !important; + } + + .sm\:hover\:translate-y-1\.5:hover { + --tw-translate-y: 0.375rem !important; + } + + .sm\:hover\:translate-y-2\.5:hover { + --tw-translate-y: 0.625rem !important; + } + + .sm\:hover\:translate-y-3\.5:hover { + --tw-translate-y: 0.875rem !important; + } + + .sm\:hover\:-translate-y-0:hover { + --tw-translate-y: 0px !important; + } + + .sm\:hover\:-translate-y-1:hover { + --tw-translate-y: -0.25rem !important; + } + + .sm\:hover\:-translate-y-2:hover { + --tw-translate-y: -0.5rem !important; + } + + .sm\:hover\:-translate-y-3:hover { + --tw-translate-y: -0.75rem !important; + } + + .sm\:hover\:-translate-y-4:hover { + --tw-translate-y: -1rem !important; + } + + .sm\:hover\:-translate-y-5:hover { + --tw-translate-y: -1.25rem !important; + } + + .sm\:hover\:-translate-y-6:hover { + --tw-translate-y: -1.5rem !important; + } + + .sm\:hover\:-translate-y-7:hover { + --tw-translate-y: -1.75rem !important; + } + + .sm\:hover\:-translate-y-8:hover { + --tw-translate-y: -2rem !important; + } + + .sm\:hover\:-translate-y-9:hover { + --tw-translate-y: -2.25rem !important; + } + + .sm\:hover\:-translate-y-10:hover { + --tw-translate-y: -2.5rem !important; + } + + .sm\:hover\:-translate-y-11:hover { + --tw-translate-y: -2.75rem !important; + } + + .sm\:hover\:-translate-y-12:hover { + --tw-translate-y: -3rem !important; + } + + .sm\:hover\:-translate-y-14:hover { + --tw-translate-y: -3.5rem !important; + } + + .sm\:hover\:-translate-y-16:hover { + --tw-translate-y: -4rem !important; + } + + .sm\:hover\:-translate-y-20:hover { + --tw-translate-y: -5rem !important; + } + + .sm\:hover\:-translate-y-24:hover { + --tw-translate-y: -6rem !important; + } + + .sm\:hover\:-translate-y-28:hover { + --tw-translate-y: -7rem !important; + } + + .sm\:hover\:-translate-y-32:hover { + --tw-translate-y: -8rem !important; + } + + .sm\:hover\:-translate-y-36:hover { + --tw-translate-y: -9rem !important; + } + + .sm\:hover\:-translate-y-40:hover { + --tw-translate-y: -10rem !important; + } + + .sm\:hover\:-translate-y-44:hover { + --tw-translate-y: -11rem !important; + } + + .sm\:hover\:-translate-y-48:hover { + --tw-translate-y: -12rem !important; + } + + .sm\:hover\:-translate-y-52:hover { + --tw-translate-y: -13rem !important; + } + + .sm\:hover\:-translate-y-56:hover { + --tw-translate-y: -14rem !important; + } + + .sm\:hover\:-translate-y-60:hover { + --tw-translate-y: -15rem !important; + } + + .sm\:hover\:-translate-y-64:hover { + --tw-translate-y: -16rem !important; + } + + .sm\:hover\:-translate-y-72:hover { + --tw-translate-y: -18rem !important; + } + + .sm\:hover\:-translate-y-80:hover { + --tw-translate-y: -20rem !important; + } + + .sm\:hover\:-translate-y-96:hover { + --tw-translate-y: -24rem !important; + } + + .sm\:hover\:-translate-y-px:hover { + --tw-translate-y: -1px !important; + } + + .sm\:hover\:-translate-y-0\.5:hover { + --tw-translate-y: -0.125rem !important; + } + + .sm\:hover\:-translate-y-1\.5:hover { + --tw-translate-y: -0.375rem !important; + } + + .sm\:hover\:-translate-y-2\.5:hover { + --tw-translate-y: -0.625rem !important; + } + + .sm\:hover\:-translate-y-3\.5:hover { + --tw-translate-y: -0.875rem !important; + } + + .sm\:hover\:translate-y-1\/2:hover { + --tw-translate-y: 50% !important; + } + + .sm\:hover\:translate-y-1\/3:hover { + --tw-translate-y: 33.333333% !important; + } + + .sm\:hover\:translate-y-2\/3:hover { + --tw-translate-y: 66.666667% !important; + } + + .sm\:hover\:translate-y-1\/4:hover { + --tw-translate-y: 25% !important; + } + + .sm\:hover\:translate-y-2\/4:hover { + --tw-translate-y: 50% !important; + } + + .sm\:hover\:translate-y-3\/4:hover { + --tw-translate-y: 75% !important; + } + + .sm\:hover\:translate-y-full:hover { + --tw-translate-y: 100% !important; + } + + .sm\:hover\:-translate-y-1\/2:hover { + --tw-translate-y: -50% !important; + } + + .sm\:hover\:-translate-y-1\/3:hover { + --tw-translate-y: -33.333333% !important; + } + + .sm\:hover\:-translate-y-2\/3:hover { + --tw-translate-y: -66.666667% !important; + } + + .sm\:hover\:-translate-y-1\/4:hover { + --tw-translate-y: -25% !important; + } + + .sm\:hover\:-translate-y-2\/4:hover { + --tw-translate-y: -50% !important; + } + + .sm\:hover\:-translate-y-3\/4:hover { + --tw-translate-y: -75% !important; + } + + .sm\:hover\:-translate-y-full:hover { + --tw-translate-y: -100% !important; + } + + .sm\:focus\:translate-x-0:focus { + --tw-translate-x: 0px !important; + } + + .sm\:focus\:translate-x-1:focus { + --tw-translate-x: 0.25rem !important; + } + + .sm\:focus\:translate-x-2:focus { + --tw-translate-x: 0.5rem !important; + } + + .sm\:focus\:translate-x-3:focus { + --tw-translate-x: 0.75rem !important; + } + + .sm\:focus\:translate-x-4:focus { + --tw-translate-x: 1rem !important; + } + + .sm\:focus\:translate-x-5:focus { + --tw-translate-x: 1.25rem !important; + } + + .sm\:focus\:translate-x-6:focus { + --tw-translate-x: 1.5rem !important; + } + + .sm\:focus\:translate-x-7:focus { + --tw-translate-x: 1.75rem !important; + } + + .sm\:focus\:translate-x-8:focus { + --tw-translate-x: 2rem !important; + } + + .sm\:focus\:translate-x-9:focus { + --tw-translate-x: 2.25rem !important; + } + + .sm\:focus\:translate-x-10:focus { + --tw-translate-x: 2.5rem !important; + } + + .sm\:focus\:translate-x-11:focus { + --tw-translate-x: 2.75rem !important; + } + + .sm\:focus\:translate-x-12:focus { + --tw-translate-x: 3rem !important; + } + + .sm\:focus\:translate-x-14:focus { + --tw-translate-x: 3.5rem !important; + } + + .sm\:focus\:translate-x-16:focus { + --tw-translate-x: 4rem !important; + } + + .sm\:focus\:translate-x-20:focus { + --tw-translate-x: 5rem !important; + } + + .sm\:focus\:translate-x-24:focus { + --tw-translate-x: 6rem !important; + } + + .sm\:focus\:translate-x-28:focus { + --tw-translate-x: 7rem !important; + } + + .sm\:focus\:translate-x-32:focus { + --tw-translate-x: 8rem !important; + } + + .sm\:focus\:translate-x-36:focus { + --tw-translate-x: 9rem !important; + } + + .sm\:focus\:translate-x-40:focus { + --tw-translate-x: 10rem !important; + } + + .sm\:focus\:translate-x-44:focus { + --tw-translate-x: 11rem !important; + } + + .sm\:focus\:translate-x-48:focus { + --tw-translate-x: 12rem !important; + } + + .sm\:focus\:translate-x-52:focus { + --tw-translate-x: 13rem !important; + } + + .sm\:focus\:translate-x-56:focus { + --tw-translate-x: 14rem !important; + } + + .sm\:focus\:translate-x-60:focus { + --tw-translate-x: 15rem !important; + } + + .sm\:focus\:translate-x-64:focus { + --tw-translate-x: 16rem !important; + } + + .sm\:focus\:translate-x-72:focus { + --tw-translate-x: 18rem !important; + } + + .sm\:focus\:translate-x-80:focus { + --tw-translate-x: 20rem !important; + } + + .sm\:focus\:translate-x-96:focus { + --tw-translate-x: 24rem !important; + } + + .sm\:focus\:translate-x-px:focus { + --tw-translate-x: 1px !important; + } + + .sm\:focus\:translate-x-0\.5:focus { + --tw-translate-x: 0.125rem !important; + } + + .sm\:focus\:translate-x-1\.5:focus { + --tw-translate-x: 0.375rem !important; + } + + .sm\:focus\:translate-x-2\.5:focus { + --tw-translate-x: 0.625rem !important; + } + + .sm\:focus\:translate-x-3\.5:focus { + --tw-translate-x: 0.875rem !important; + } + + .sm\:focus\:-translate-x-0:focus { + --tw-translate-x: 0px !important; + } + + .sm\:focus\:-translate-x-1:focus { + --tw-translate-x: -0.25rem !important; + } + + .sm\:focus\:-translate-x-2:focus { + --tw-translate-x: -0.5rem !important; + } + + .sm\:focus\:-translate-x-3:focus { + --tw-translate-x: -0.75rem !important; + } + + .sm\:focus\:-translate-x-4:focus { + --tw-translate-x: -1rem !important; + } + + .sm\:focus\:-translate-x-5:focus { + --tw-translate-x: -1.25rem !important; + } + + .sm\:focus\:-translate-x-6:focus { + --tw-translate-x: -1.5rem !important; + } + + .sm\:focus\:-translate-x-7:focus { + --tw-translate-x: -1.75rem !important; + } + + .sm\:focus\:-translate-x-8:focus { + --tw-translate-x: -2rem !important; + } + + .sm\:focus\:-translate-x-9:focus { + --tw-translate-x: -2.25rem !important; + } + + .sm\:focus\:-translate-x-10:focus { + --tw-translate-x: -2.5rem !important; + } + + .sm\:focus\:-translate-x-11:focus { + --tw-translate-x: -2.75rem !important; + } + + .sm\:focus\:-translate-x-12:focus { + --tw-translate-x: -3rem !important; + } + + .sm\:focus\:-translate-x-14:focus { + --tw-translate-x: -3.5rem !important; + } + + .sm\:focus\:-translate-x-16:focus { + --tw-translate-x: -4rem !important; + } + + .sm\:focus\:-translate-x-20:focus { + --tw-translate-x: -5rem !important; + } + + .sm\:focus\:-translate-x-24:focus { + --tw-translate-x: -6rem !important; + } + + .sm\:focus\:-translate-x-28:focus { + --tw-translate-x: -7rem !important; + } + + .sm\:focus\:-translate-x-32:focus { + --tw-translate-x: -8rem !important; + } + + .sm\:focus\:-translate-x-36:focus { + --tw-translate-x: -9rem !important; + } + + .sm\:focus\:-translate-x-40:focus { + --tw-translate-x: -10rem !important; + } + + .sm\:focus\:-translate-x-44:focus { + --tw-translate-x: -11rem !important; + } + + .sm\:focus\:-translate-x-48:focus { + --tw-translate-x: -12rem !important; + } + + .sm\:focus\:-translate-x-52:focus { + --tw-translate-x: -13rem !important; + } + + .sm\:focus\:-translate-x-56:focus { + --tw-translate-x: -14rem !important; + } + + .sm\:focus\:-translate-x-60:focus { + --tw-translate-x: -15rem !important; + } + + .sm\:focus\:-translate-x-64:focus { + --tw-translate-x: -16rem !important; + } + + .sm\:focus\:-translate-x-72:focus { + --tw-translate-x: -18rem !important; + } + + .sm\:focus\:-translate-x-80:focus { + --tw-translate-x: -20rem !important; + } + + .sm\:focus\:-translate-x-96:focus { + --tw-translate-x: -24rem !important; + } + + .sm\:focus\:-translate-x-px:focus { + --tw-translate-x: -1px !important; + } + + .sm\:focus\:-translate-x-0\.5:focus { + --tw-translate-x: -0.125rem !important; + } + + .sm\:focus\:-translate-x-1\.5:focus { + --tw-translate-x: -0.375rem !important; + } + + .sm\:focus\:-translate-x-2\.5:focus { + --tw-translate-x: -0.625rem !important; + } + + .sm\:focus\:-translate-x-3\.5:focus { + --tw-translate-x: -0.875rem !important; + } + + .sm\:focus\:translate-x-1\/2:focus { + --tw-translate-x: 50% !important; + } + + .sm\:focus\:translate-x-1\/3:focus { + --tw-translate-x: 33.333333% !important; + } + + .sm\:focus\:translate-x-2\/3:focus { + --tw-translate-x: 66.666667% !important; + } + + .sm\:focus\:translate-x-1\/4:focus { + --tw-translate-x: 25% !important; + } + + .sm\:focus\:translate-x-2\/4:focus { + --tw-translate-x: 50% !important; + } + + .sm\:focus\:translate-x-3\/4:focus { + --tw-translate-x: 75% !important; + } + + .sm\:focus\:translate-x-full:focus { + --tw-translate-x: 100% !important; + } + + .sm\:focus\:-translate-x-1\/2:focus { + --tw-translate-x: -50% !important; + } + + .sm\:focus\:-translate-x-1\/3:focus { + --tw-translate-x: -33.333333% !important; + } + + .sm\:focus\:-translate-x-2\/3:focus { + --tw-translate-x: -66.666667% !important; + } + + .sm\:focus\:-translate-x-1\/4:focus { + --tw-translate-x: -25% !important; + } + + .sm\:focus\:-translate-x-2\/4:focus { + --tw-translate-x: -50% !important; + } + + .sm\:focus\:-translate-x-3\/4:focus { + --tw-translate-x: -75% !important; + } + + .sm\:focus\:-translate-x-full:focus { + --tw-translate-x: -100% !important; + } + + .sm\:focus\:translate-y-0:focus { + --tw-translate-y: 0px !important; + } + + .sm\:focus\:translate-y-1:focus { + --tw-translate-y: 0.25rem !important; + } + + .sm\:focus\:translate-y-2:focus { + --tw-translate-y: 0.5rem !important; + } + + .sm\:focus\:translate-y-3:focus { + --tw-translate-y: 0.75rem !important; + } + + .sm\:focus\:translate-y-4:focus { + --tw-translate-y: 1rem !important; + } + + .sm\:focus\:translate-y-5:focus { + --tw-translate-y: 1.25rem !important; + } + + .sm\:focus\:translate-y-6:focus { + --tw-translate-y: 1.5rem !important; + } + + .sm\:focus\:translate-y-7:focus { + --tw-translate-y: 1.75rem !important; + } + + .sm\:focus\:translate-y-8:focus { + --tw-translate-y: 2rem !important; + } + + .sm\:focus\:translate-y-9:focus { + --tw-translate-y: 2.25rem !important; + } + + .sm\:focus\:translate-y-10:focus { + --tw-translate-y: 2.5rem !important; + } + + .sm\:focus\:translate-y-11:focus { + --tw-translate-y: 2.75rem !important; + } + + .sm\:focus\:translate-y-12:focus { + --tw-translate-y: 3rem !important; + } + + .sm\:focus\:translate-y-14:focus { + --tw-translate-y: 3.5rem !important; + } + + .sm\:focus\:translate-y-16:focus { + --tw-translate-y: 4rem !important; + } + + .sm\:focus\:translate-y-20:focus { + --tw-translate-y: 5rem !important; + } + + .sm\:focus\:translate-y-24:focus { + --tw-translate-y: 6rem !important; + } + + .sm\:focus\:translate-y-28:focus { + --tw-translate-y: 7rem !important; + } + + .sm\:focus\:translate-y-32:focus { + --tw-translate-y: 8rem !important; + } + + .sm\:focus\:translate-y-36:focus { + --tw-translate-y: 9rem !important; + } + + .sm\:focus\:translate-y-40:focus { + --tw-translate-y: 10rem !important; + } + + .sm\:focus\:translate-y-44:focus { + --tw-translate-y: 11rem !important; + } + + .sm\:focus\:translate-y-48:focus { + --tw-translate-y: 12rem !important; + } + + .sm\:focus\:translate-y-52:focus { + --tw-translate-y: 13rem !important; + } + + .sm\:focus\:translate-y-56:focus { + --tw-translate-y: 14rem !important; + } + + .sm\:focus\:translate-y-60:focus { + --tw-translate-y: 15rem !important; + } + + .sm\:focus\:translate-y-64:focus { + --tw-translate-y: 16rem !important; + } + + .sm\:focus\:translate-y-72:focus { + --tw-translate-y: 18rem !important; + } + + .sm\:focus\:translate-y-80:focus { + --tw-translate-y: 20rem !important; + } + + .sm\:focus\:translate-y-96:focus { + --tw-translate-y: 24rem !important; + } + + .sm\:focus\:translate-y-px:focus { + --tw-translate-y: 1px !important; + } + + .sm\:focus\:translate-y-0\.5:focus { + --tw-translate-y: 0.125rem !important; + } + + .sm\:focus\:translate-y-1\.5:focus { + --tw-translate-y: 0.375rem !important; + } + + .sm\:focus\:translate-y-2\.5:focus { + --tw-translate-y: 0.625rem !important; + } + + .sm\:focus\:translate-y-3\.5:focus { + --tw-translate-y: 0.875rem !important; + } + + .sm\:focus\:-translate-y-0:focus { + --tw-translate-y: 0px !important; + } + + .sm\:focus\:-translate-y-1:focus { + --tw-translate-y: -0.25rem !important; + } + + .sm\:focus\:-translate-y-2:focus { + --tw-translate-y: -0.5rem !important; + } + + .sm\:focus\:-translate-y-3:focus { + --tw-translate-y: -0.75rem !important; + } + + .sm\:focus\:-translate-y-4:focus { + --tw-translate-y: -1rem !important; + } + + .sm\:focus\:-translate-y-5:focus { + --tw-translate-y: -1.25rem !important; + } + + .sm\:focus\:-translate-y-6:focus { + --tw-translate-y: -1.5rem !important; + } + + .sm\:focus\:-translate-y-7:focus { + --tw-translate-y: -1.75rem !important; + } + + .sm\:focus\:-translate-y-8:focus { + --tw-translate-y: -2rem !important; + } + + .sm\:focus\:-translate-y-9:focus { + --tw-translate-y: -2.25rem !important; + } + + .sm\:focus\:-translate-y-10:focus { + --tw-translate-y: -2.5rem !important; + } + + .sm\:focus\:-translate-y-11:focus { + --tw-translate-y: -2.75rem !important; + } + + .sm\:focus\:-translate-y-12:focus { + --tw-translate-y: -3rem !important; + } + + .sm\:focus\:-translate-y-14:focus { + --tw-translate-y: -3.5rem !important; + } + + .sm\:focus\:-translate-y-16:focus { + --tw-translate-y: -4rem !important; + } + + .sm\:focus\:-translate-y-20:focus { + --tw-translate-y: -5rem !important; + } + + .sm\:focus\:-translate-y-24:focus { + --tw-translate-y: -6rem !important; + } + + .sm\:focus\:-translate-y-28:focus { + --tw-translate-y: -7rem !important; + } + + .sm\:focus\:-translate-y-32:focus { + --tw-translate-y: -8rem !important; + } + + .sm\:focus\:-translate-y-36:focus { + --tw-translate-y: -9rem !important; + } + + .sm\:focus\:-translate-y-40:focus { + --tw-translate-y: -10rem !important; + } + + .sm\:focus\:-translate-y-44:focus { + --tw-translate-y: -11rem !important; + } + + .sm\:focus\:-translate-y-48:focus { + --tw-translate-y: -12rem !important; + } + + .sm\:focus\:-translate-y-52:focus { + --tw-translate-y: -13rem !important; + } + + .sm\:focus\:-translate-y-56:focus { + --tw-translate-y: -14rem !important; + } + + .sm\:focus\:-translate-y-60:focus { + --tw-translate-y: -15rem !important; + } + + .sm\:focus\:-translate-y-64:focus { + --tw-translate-y: -16rem !important; + } + + .sm\:focus\:-translate-y-72:focus { + --tw-translate-y: -18rem !important; + } + + .sm\:focus\:-translate-y-80:focus { + --tw-translate-y: -20rem !important; + } + + .sm\:focus\:-translate-y-96:focus { + --tw-translate-y: -24rem !important; + } + + .sm\:focus\:-translate-y-px:focus { + --tw-translate-y: -1px !important; + } + + .sm\:focus\:-translate-y-0\.5:focus { + --tw-translate-y: -0.125rem !important; + } + + .sm\:focus\:-translate-y-1\.5:focus { + --tw-translate-y: -0.375rem !important; + } + + .sm\:focus\:-translate-y-2\.5:focus { + --tw-translate-y: -0.625rem !important; + } + + .sm\:focus\:-translate-y-3\.5:focus { + --tw-translate-y: -0.875rem !important; + } + + .sm\:focus\:translate-y-1\/2:focus { + --tw-translate-y: 50% !important; + } + + .sm\:focus\:translate-y-1\/3:focus { + --tw-translate-y: 33.333333% !important; + } + + .sm\:focus\:translate-y-2\/3:focus { + --tw-translate-y: 66.666667% !important; + } + + .sm\:focus\:translate-y-1\/4:focus { + --tw-translate-y: 25% !important; + } + + .sm\:focus\:translate-y-2\/4:focus { + --tw-translate-y: 50% !important; + } + + .sm\:focus\:translate-y-3\/4:focus { + --tw-translate-y: 75% !important; + } + + .sm\:focus\:translate-y-full:focus { + --tw-translate-y: 100% !important; + } + + .sm\:focus\:-translate-y-1\/2:focus { + --tw-translate-y: -50% !important; + } + + .sm\:focus\:-translate-y-1\/3:focus { + --tw-translate-y: -33.333333% !important; + } + + .sm\:focus\:-translate-y-2\/3:focus { + --tw-translate-y: -66.666667% !important; + } + + .sm\:focus\:-translate-y-1\/4:focus { + --tw-translate-y: -25% !important; + } + + .sm\:focus\:-translate-y-2\/4:focus { + --tw-translate-y: -50% !important; + } + + .sm\:focus\:-translate-y-3\/4:focus { + --tw-translate-y: -75% !important; + } + + .sm\:focus\:-translate-y-full:focus { + --tw-translate-y: -100% !important; + } + + .sm\:skew-x-0 { + --tw-skew-x: 0deg !important; + } + + .sm\:skew-x-1 { + --tw-skew-x: 1deg !important; + } + + .sm\:skew-x-2 { + --tw-skew-x: 2deg !important; + } + + .sm\:skew-x-3 { + --tw-skew-x: 3deg !important; + } + + .sm\:skew-x-6 { + --tw-skew-x: 6deg !important; + } + + .sm\:skew-x-12 { + --tw-skew-x: 12deg !important; + } + + .sm\:-skew-x-12 { + --tw-skew-x: -12deg !important; + } + + .sm\:-skew-x-6 { + --tw-skew-x: -6deg !important; + } + + .sm\:-skew-x-3 { + --tw-skew-x: -3deg !important; + } + + .sm\:-skew-x-2 { + --tw-skew-x: -2deg !important; + } + + .sm\:-skew-x-1 { + --tw-skew-x: -1deg !important; + } + + .sm\:skew-y-0 { + --tw-skew-y: 0deg !important; + } + + .sm\:skew-y-1 { + --tw-skew-y: 1deg !important; + } + + .sm\:skew-y-2 { + --tw-skew-y: 2deg !important; + } + + .sm\:skew-y-3 { + --tw-skew-y: 3deg !important; + } + + .sm\:skew-y-6 { + --tw-skew-y: 6deg !important; + } + + .sm\:skew-y-12 { + --tw-skew-y: 12deg !important; + } + + .sm\:-skew-y-12 { + --tw-skew-y: -12deg !important; + } + + .sm\:-skew-y-6 { + --tw-skew-y: -6deg !important; + } + + .sm\:-skew-y-3 { + --tw-skew-y: -3deg !important; + } + + .sm\:-skew-y-2 { + --tw-skew-y: -2deg !important; + } + + .sm\:-skew-y-1 { + --tw-skew-y: -1deg !important; + } + + .sm\:hover\:skew-x-0:hover { + --tw-skew-x: 0deg !important; + } + + .sm\:hover\:skew-x-1:hover { + --tw-skew-x: 1deg !important; + } + + .sm\:hover\:skew-x-2:hover { + --tw-skew-x: 2deg !important; + } + + .sm\:hover\:skew-x-3:hover { + --tw-skew-x: 3deg !important; + } + + .sm\:hover\:skew-x-6:hover { + --tw-skew-x: 6deg !important; + } + + .sm\:hover\:skew-x-12:hover { + --tw-skew-x: 12deg !important; + } + + .sm\:hover\:-skew-x-12:hover { + --tw-skew-x: -12deg !important; + } + + .sm\:hover\:-skew-x-6:hover { + --tw-skew-x: -6deg !important; + } + + .sm\:hover\:-skew-x-3:hover { + --tw-skew-x: -3deg !important; + } + + .sm\:hover\:-skew-x-2:hover { + --tw-skew-x: -2deg !important; + } + + .sm\:hover\:-skew-x-1:hover { + --tw-skew-x: -1deg !important; + } + + .sm\:hover\:skew-y-0:hover { + --tw-skew-y: 0deg !important; + } + + .sm\:hover\:skew-y-1:hover { + --tw-skew-y: 1deg !important; + } + + .sm\:hover\:skew-y-2:hover { + --tw-skew-y: 2deg !important; + } + + .sm\:hover\:skew-y-3:hover { + --tw-skew-y: 3deg !important; + } + + .sm\:hover\:skew-y-6:hover { + --tw-skew-y: 6deg !important; + } + + .sm\:hover\:skew-y-12:hover { + --tw-skew-y: 12deg !important; + } + + .sm\:hover\:-skew-y-12:hover { + --tw-skew-y: -12deg !important; + } + + .sm\:hover\:-skew-y-6:hover { + --tw-skew-y: -6deg !important; + } + + .sm\:hover\:-skew-y-3:hover { + --tw-skew-y: -3deg !important; + } + + .sm\:hover\:-skew-y-2:hover { + --tw-skew-y: -2deg !important; + } + + .sm\:hover\:-skew-y-1:hover { + --tw-skew-y: -1deg !important; + } + + .sm\:focus\:skew-x-0:focus { + --tw-skew-x: 0deg !important; + } + + .sm\:focus\:skew-x-1:focus { + --tw-skew-x: 1deg !important; + } + + .sm\:focus\:skew-x-2:focus { + --tw-skew-x: 2deg !important; + } + + .sm\:focus\:skew-x-3:focus { + --tw-skew-x: 3deg !important; + } + + .sm\:focus\:skew-x-6:focus { + --tw-skew-x: 6deg !important; + } + + .sm\:focus\:skew-x-12:focus { + --tw-skew-x: 12deg !important; + } + + .sm\:focus\:-skew-x-12:focus { + --tw-skew-x: -12deg !important; + } + + .sm\:focus\:-skew-x-6:focus { + --tw-skew-x: -6deg !important; + } + + .sm\:focus\:-skew-x-3:focus { + --tw-skew-x: -3deg !important; + } + + .sm\:focus\:-skew-x-2:focus { + --tw-skew-x: -2deg !important; + } + + .sm\:focus\:-skew-x-1:focus { + --tw-skew-x: -1deg !important; + } + + .sm\:focus\:skew-y-0:focus { + --tw-skew-y: 0deg !important; + } + + .sm\:focus\:skew-y-1:focus { + --tw-skew-y: 1deg !important; + } + + .sm\:focus\:skew-y-2:focus { + --tw-skew-y: 2deg !important; + } + + .sm\:focus\:skew-y-3:focus { + --tw-skew-y: 3deg !important; + } + + .sm\:focus\:skew-y-6:focus { + --tw-skew-y: 6deg !important; + } + + .sm\:focus\:skew-y-12:focus { + --tw-skew-y: 12deg !important; + } + + .sm\:focus\:-skew-y-12:focus { + --tw-skew-y: -12deg !important; + } + + .sm\:focus\:-skew-y-6:focus { + --tw-skew-y: -6deg !important; + } + + .sm\:focus\:-skew-y-3:focus { + --tw-skew-y: -3deg !important; + } + + .sm\:focus\:-skew-y-2:focus { + --tw-skew-y: -2deg !important; + } + + .sm\:focus\:-skew-y-1:focus { + --tw-skew-y: -1deg !important; + } + + .sm\:transition-none { + transition-property: none !important; + } + + .sm\:transition-all { + transition-property: all !important; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important; + transition-duration: 150ms !important; + } + + .sm\:transition { + transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter !important; + transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter !important; + transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter !important; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important; + transition-duration: 150ms !important; + } + + .sm\:transition-colors { + transition-property: background-color, border-color, color, fill, stroke !important; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important; + transition-duration: 150ms !important; + } + + .sm\:transition-opacity { + transition-property: opacity !important; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important; + transition-duration: 150ms !important; + } + + .sm\:transition-shadow { + transition-property: box-shadow !important; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important; + transition-duration: 150ms !important; + } + + .sm\:transition-transform { + transition-property: transform !important; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important; + transition-duration: 150ms !important; + } + + .sm\:ease-linear { + transition-timing-function: linear !important; + } + + .sm\:ease-in { + transition-timing-function: cubic-bezier(0.4, 0, 1, 1) !important; + } + + .sm\:ease-out { + transition-timing-function: cubic-bezier(0, 0, 0.2, 1) !important; + } + + .sm\:ease-in-out { + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important; + } + + .sm\:duration-75 { + transition-duration: 75ms !important; + } + + .sm\:duration-100 { + transition-duration: 100ms !important; + } + + .sm\:duration-150 { + transition-duration: 150ms !important; + } + + .sm\:duration-200 { + transition-duration: 200ms !important; + } + + .sm\:duration-300 { + transition-duration: 300ms !important; + } + + .sm\:duration-500 { + transition-duration: 500ms !important; + } + + .sm\:duration-700 { + transition-duration: 700ms !important; + } + + .sm\:duration-1000 { + transition-duration: 1000ms !important; + } + + .sm\:delay-75 { + transition-delay: 75ms !important; + } + + .sm\:delay-100 { + transition-delay: 100ms !important; + } + + .sm\:delay-150 { + transition-delay: 150ms !important; + } + + .sm\:delay-200 { + transition-delay: 200ms !important; + } + + .sm\:delay-300 { + transition-delay: 300ms !important; + } + + .sm\:delay-500 { + transition-delay: 500ms !important; + } + + .sm\:delay-700 { + transition-delay: 700ms !important; + } + + .sm\:delay-1000 { + transition-delay: 1000ms !important; + } + + .sm\:animate-none { + -webkit-animation: none !important; + animation: none !important; + } + + .sm\:animate-spin { + -webkit-animation: spin 1s linear infinite !important; + animation: spin 1s linear infinite !important; + } + + .sm\:animate-ping { + -webkit-animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite !important; + animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite !important; + } + + .sm\:animate-pulse { + -webkit-animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite !important; + animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite !important; + } + + .sm\:animate-bounce { + -webkit-animation: bounce 1s infinite !important; + animation: bounce 1s infinite !important; + } + + .sm\:mix-blend-normal { + mix-blend-mode: normal !important; + } + + .sm\:mix-blend-multiply { + mix-blend-mode: multiply !important; + } + + .sm\:mix-blend-screen { + mix-blend-mode: screen !important; + } + + .sm\:mix-blend-overlay { + mix-blend-mode: overlay !important; + } + + .sm\:mix-blend-darken { + mix-blend-mode: darken !important; + } + + .sm\:mix-blend-lighten { + mix-blend-mode: lighten !important; + } + + .sm\:mix-blend-color-dodge { + mix-blend-mode: color-dodge !important; + } + + .sm\:mix-blend-color-burn { + mix-blend-mode: color-burn !important; + } + + .sm\:mix-blend-hard-light { + mix-blend-mode: hard-light !important; + } + + .sm\:mix-blend-soft-light { + mix-blend-mode: soft-light !important; + } + + .sm\:mix-blend-difference { + mix-blend-mode: difference !important; + } + + .sm\:mix-blend-exclusion { + mix-blend-mode: exclusion !important; + } + + .sm\:mix-blend-hue { + mix-blend-mode: hue !important; + } + + .sm\:mix-blend-saturation { + mix-blend-mode: saturation !important; + } + + .sm\:mix-blend-color { + mix-blend-mode: color !important; + } + + .sm\:mix-blend-luminosity { + mix-blend-mode: luminosity !important; + } + + .sm\:bg-blend-normal { + background-blend-mode: normal !important; + } + + .sm\:bg-blend-multiply { + background-blend-mode: multiply !important; + } + + .sm\:bg-blend-screen { + background-blend-mode: screen !important; + } + + .sm\:bg-blend-overlay { + background-blend-mode: overlay !important; + } + + .sm\:bg-blend-darken { + background-blend-mode: darken !important; + } + + .sm\:bg-blend-lighten { + background-blend-mode: lighten !important; + } + + .sm\:bg-blend-color-dodge { + background-blend-mode: color-dodge !important; + } + + .sm\:bg-blend-color-burn { + background-blend-mode: color-burn !important; + } + + .sm\:bg-blend-hard-light { + background-blend-mode: hard-light !important; + } + + .sm\:bg-blend-soft-light { + background-blend-mode: soft-light !important; + } + + .sm\:bg-blend-difference { + background-blend-mode: difference !important; + } + + .sm\:bg-blend-exclusion { + background-blend-mode: exclusion !important; + } + + .sm\:bg-blend-hue { + background-blend-mode: hue !important; + } + + .sm\:bg-blend-saturation { + background-blend-mode: saturation !important; + } + + .sm\:bg-blend-color { + background-blend-mode: color !important; + } + + .sm\:bg-blend-luminosity { + background-blend-mode: luminosity !important; + } + + .sm\:filter { + --tw-blur: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-brightness: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-contrast: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-grayscale: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-hue-rotate: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-invert: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-saturate: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-sepia: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-drop-shadow: var(--tw-empty,/*!*/ /*!*/) !important; + 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) !important; + } + + .sm\:filter-none { + filter: none !important; + } + + .sm\:blur-0 { + --tw-blur: blur(0) !important; + } + + .sm\:blur-sm { + --tw-blur: blur(4px) !important; + } + + .sm\:blur { + --tw-blur: blur(8px) !important; + } + + .sm\:blur-md { + --tw-blur: blur(12px) !important; + } + + .sm\:blur-lg { + --tw-blur: blur(16px) !important; + } + + .sm\:blur-xl { + --tw-blur: blur(24px) !important; + } + + .sm\:blur-2xl { + --tw-blur: blur(40px) !important; + } + + .sm\:blur-3xl { + --tw-blur: blur(64px) !important; + } + + .sm\:brightness-0 { + --tw-brightness: brightness(0) !important; + } + + .sm\:brightness-50 { + --tw-brightness: brightness(.5) !important; + } + + .sm\:brightness-75 { + --tw-brightness: brightness(.75) !important; + } + + .sm\:brightness-90 { + --tw-brightness: brightness(.9) !important; + } + + .sm\:brightness-95 { + --tw-brightness: brightness(.95) !important; + } + + .sm\:brightness-100 { + --tw-brightness: brightness(1) !important; + } + + .sm\:brightness-105 { + --tw-brightness: brightness(1.05) !important; + } + + .sm\:brightness-110 { + --tw-brightness: brightness(1.1) !important; + } + + .sm\:brightness-125 { + --tw-brightness: brightness(1.25) !important; + } + + .sm\:brightness-150 { + --tw-brightness: brightness(1.5) !important; + } + + .sm\:brightness-200 { + --tw-brightness: brightness(2) !important; + } + + .sm\:contrast-0 { + --tw-contrast: contrast(0) !important; + } + + .sm\:contrast-50 { + --tw-contrast: contrast(.5) !important; + } + + .sm\:contrast-75 { + --tw-contrast: contrast(.75) !important; + } + + .sm\:contrast-100 { + --tw-contrast: contrast(1) !important; + } + + .sm\:contrast-125 { + --tw-contrast: contrast(1.25) !important; + } + + .sm\:contrast-150 { + --tw-contrast: contrast(1.5) !important; + } + + .sm\:contrast-200 { + --tw-contrast: contrast(2) !important; + } + + .sm\:drop-shadow-sm { + --tw-drop-shadow: drop-shadow(0 1px 1px rgba(0,0,0,0.05)) !important; + } + + .sm\:drop-shadow { + --tw-drop-shadow: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1)) drop-shadow(0 1px 1px rgba(0, 0, 0, 0.06)) !important; + } + + .sm\:drop-shadow-md { + --tw-drop-shadow: drop-shadow(0 4px 3px rgba(0, 0, 0, 0.07)) drop-shadow(0 2px 2px rgba(0, 0, 0, 0.06)) !important; + } + + .sm\:drop-shadow-lg { + --tw-drop-shadow: drop-shadow(0 10px 8px rgba(0, 0, 0, 0.04)) drop-shadow(0 4px 3px rgba(0, 0, 0, 0.1)) !important; + } + + .sm\:drop-shadow-xl { + --tw-drop-shadow: drop-shadow(0 20px 13px rgba(0, 0, 0, 0.03)) drop-shadow(0 8px 5px rgba(0, 0, 0, 0.08)) !important; + } + + .sm\:drop-shadow-2xl { + --tw-drop-shadow: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.15)) !important; + } + + .sm\:drop-shadow-none { + --tw-drop-shadow: drop-shadow(0 0 #0000) !important; + } + + .sm\:grayscale-0 { + --tw-grayscale: grayscale(0) !important; + } + + .sm\:grayscale { + --tw-grayscale: grayscale(100%) !important; + } + + .sm\:hue-rotate-0 { + --tw-hue-rotate: hue-rotate(0deg) !important; + } + + .sm\:hue-rotate-15 { + --tw-hue-rotate: hue-rotate(15deg) !important; + } + + .sm\:hue-rotate-30 { + --tw-hue-rotate: hue-rotate(30deg) !important; + } + + .sm\:hue-rotate-60 { + --tw-hue-rotate: hue-rotate(60deg) !important; + } + + .sm\:hue-rotate-90 { + --tw-hue-rotate: hue-rotate(90deg) !important; + } + + .sm\:hue-rotate-180 { + --tw-hue-rotate: hue-rotate(180deg) !important; + } + + .sm\:-hue-rotate-180 { + --tw-hue-rotate: hue-rotate(-180deg) !important; + } + + .sm\:-hue-rotate-90 { + --tw-hue-rotate: hue-rotate(-90deg) !important; + } + + .sm\:-hue-rotate-60 { + --tw-hue-rotate: hue-rotate(-60deg) !important; + } + + .sm\:-hue-rotate-30 { + --tw-hue-rotate: hue-rotate(-30deg) !important; + } + + .sm\:-hue-rotate-15 { + --tw-hue-rotate: hue-rotate(-15deg) !important; + } + + .sm\:invert-0 { + --tw-invert: invert(0) !important; + } + + .sm\:invert { + --tw-invert: invert(100%) !important; + } + + .sm\:saturate-0 { + --tw-saturate: saturate(0) !important; + } + + .sm\:saturate-50 { + --tw-saturate: saturate(.5) !important; + } + + .sm\:saturate-100 { + --tw-saturate: saturate(1) !important; + } + + .sm\:saturate-150 { + --tw-saturate: saturate(1.5) !important; + } + + .sm\:saturate-200 { + --tw-saturate: saturate(2) !important; + } + + .sm\:sepia-0 { + --tw-sepia: sepia(0) !important; + } + + .sm\:sepia { + --tw-sepia: sepia(100%) !important; + } + + .sm\:backdrop-filter { + --tw-backdrop-blur: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-backdrop-brightness: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-backdrop-contrast: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-backdrop-grayscale: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-backdrop-hue-rotate: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-backdrop-invert: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-backdrop-opacity: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-backdrop-saturate: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-backdrop-sepia: var(--tw-empty,/*!*/ /*!*/) !important; + -webkit-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) !important; + 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) !important; + } + + .sm\:backdrop-filter-none { + -webkit-backdrop-filter: none !important; + backdrop-filter: none !important; + } + + .sm\:backdrop-brightness-0 { + --tw-backdrop-brightness: brightness(0) !important; + } + + .sm\:backdrop-brightness-50 { + --tw-backdrop-brightness: brightness(.5) !important; + } + + .sm\:backdrop-brightness-75 { + --tw-backdrop-brightness: brightness(.75) !important; + } + + .sm\:backdrop-brightness-90 { + --tw-backdrop-brightness: brightness(.9) !important; + } + + .sm\:backdrop-brightness-95 { + --tw-backdrop-brightness: brightness(.95) !important; + } + + .sm\:backdrop-brightness-100 { + --tw-backdrop-brightness: brightness(1) !important; + } + + .sm\:backdrop-brightness-105 { + --tw-backdrop-brightness: brightness(1.05) !important; + } + + .sm\:backdrop-brightness-110 { + --tw-backdrop-brightness: brightness(1.1) !important; + } + + .sm\:backdrop-brightness-125 { + --tw-backdrop-brightness: brightness(1.25) !important; + } + + .sm\:backdrop-brightness-150 { + --tw-backdrop-brightness: brightness(1.5) !important; + } + + .sm\:backdrop-brightness-200 { + --tw-backdrop-brightness: brightness(2) !important; + } + + .sm\:backdrop-contrast-0 { + --tw-backdrop-contrast: contrast(0) !important; + } + + .sm\:backdrop-contrast-50 { + --tw-backdrop-contrast: contrast(.5) !important; + } + + .sm\:backdrop-contrast-75 { + --tw-backdrop-contrast: contrast(.75) !important; + } + + .sm\:backdrop-contrast-100 { + --tw-backdrop-contrast: contrast(1) !important; + } + + .sm\:backdrop-contrast-125 { + --tw-backdrop-contrast: contrast(1.25) !important; + } + + .sm\:backdrop-contrast-150 { + --tw-backdrop-contrast: contrast(1.5) !important; + } + + .sm\:backdrop-contrast-200 { + --tw-backdrop-contrast: contrast(2) !important; + } + + .sm\:backdrop-grayscale-0 { + --tw-backdrop-grayscale: grayscale(0) !important; + } + + .sm\:backdrop-grayscale { + --tw-backdrop-grayscale: grayscale(100%) !important; + } + + .sm\:backdrop-hue-rotate-0 { + --tw-backdrop-hue-rotate: hue-rotate(0deg) !important; + } + + .sm\:backdrop-hue-rotate-15 { + --tw-backdrop-hue-rotate: hue-rotate(15deg) !important; + } + + .sm\:backdrop-hue-rotate-30 { + --tw-backdrop-hue-rotate: hue-rotate(30deg) !important; + } + + .sm\:backdrop-hue-rotate-60 { + --tw-backdrop-hue-rotate: hue-rotate(60deg) !important; + } + + .sm\:backdrop-hue-rotate-90 { + --tw-backdrop-hue-rotate: hue-rotate(90deg) !important; + } + + .sm\:backdrop-hue-rotate-180 { + --tw-backdrop-hue-rotate: hue-rotate(180deg) !important; + } + + .sm\:-backdrop-hue-rotate-180 { + --tw-backdrop-hue-rotate: hue-rotate(-180deg) !important; + } + + .sm\:-backdrop-hue-rotate-90 { + --tw-backdrop-hue-rotate: hue-rotate(-90deg) !important; + } + + .sm\:-backdrop-hue-rotate-60 { + --tw-backdrop-hue-rotate: hue-rotate(-60deg) !important; + } + + .sm\:-backdrop-hue-rotate-30 { + --tw-backdrop-hue-rotate: hue-rotate(-30deg) !important; + } + + .sm\:-backdrop-hue-rotate-15 { + --tw-backdrop-hue-rotate: hue-rotate(-15deg) !important; + } + + .sm\:backdrop-invert-0 { + --tw-backdrop-invert: invert(0) !important; + } + + .sm\:backdrop-invert { + --tw-backdrop-invert: invert(100%) !important; + } + + .sm\:backdrop-saturate-0 { + --tw-backdrop-saturate: saturate(0) !important; + } + + .sm\:backdrop-saturate-50 { + --tw-backdrop-saturate: saturate(.5) !important; + } + + .sm\:backdrop-saturate-100 { + --tw-backdrop-saturate: saturate(1) !important; + } + + .sm\:backdrop-saturate-150 { + --tw-backdrop-saturate: saturate(1.5) !important; + } + + .sm\:backdrop-saturate-200 { + --tw-backdrop-saturate: saturate(2) !important; + } + + .sm\:backdrop-sepia-0 { + --tw-backdrop-sepia: sepia(0) !important; + } + + .sm\:backdrop-sepia { + --tw-backdrop-sepia: sepia(100%) !important; + } +} + +@media (min-width: 768px) { + .md\:container { + width: 100%; + } + + @media (min-width: 640px) { + .md\:container { + max-width: 640px; + } + } + + @media (min-width: 768px) { + .md\:container { + max-width: 768px; + } + } + + @media (min-width: 1024px) { + .md\:container { + max-width: 1024px; + } + } + + @media (min-width: 1280px) { + .md\:container { + max-width: 1280px; + } + } + + @media (min-width: 1536px) { + .md\:container { + max-width: 1536px; + } + } + + .md\:space-y-0 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(0px * var(--tw-space-y-reverse)) !important; + } + + .md\:space-x-0 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(0px * var(--tw-space-x-reverse)) !important; + margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .md\:space-y-1 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(0.25rem * var(--tw-space-y-reverse)) !important; + } + + .md\:space-x-1 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(0.25rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(0.25rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .md\:space-y-2 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(0.5rem * var(--tw-space-y-reverse)) !important; + } + + .md\:space-x-2 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(0.5rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .md\:space-y-3 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(0.75rem * var(--tw-space-y-reverse)) !important; + } + + .md\:space-x-3 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(0.75rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(0.75rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .md\:space-y-4 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(1rem * var(--tw-space-y-reverse)) !important; + } + + .md\:space-x-4 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(1rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .md\:space-y-5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(1.25rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(1.25rem * var(--tw-space-y-reverse)) !important; + } + + .md\:space-x-5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(1.25rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(1.25rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .md\:space-y-6 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(1.5rem * var(--tw-space-y-reverse)) !important; + } + + .md\:space-x-6 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(1.5rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(1.5rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .md\:space-y-7 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(1.75rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(1.75rem * var(--tw-space-y-reverse)) !important; + } + + .md\:space-x-7 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(1.75rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(1.75rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .md\:space-y-8 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(2rem * var(--tw-space-y-reverse)) !important; + } + + .md\:space-x-8 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(2rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(2rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .md\:space-y-9 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(2.25rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(2.25rem * var(--tw-space-y-reverse)) !important; + } + + .md\:space-x-9 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(2.25rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(2.25rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .md\:space-y-10 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(2.5rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(2.5rem * var(--tw-space-y-reverse)) !important; + } + + .md\:space-x-10 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(2.5rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(2.5rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .md\:space-y-11 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(2.75rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(2.75rem * var(--tw-space-y-reverse)) !important; + } + + .md\:space-x-11 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(2.75rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(2.75rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .md\:space-y-12 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(3rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(3rem * var(--tw-space-y-reverse)) !important; + } + + .md\:space-x-12 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(3rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(3rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .md\:space-y-14 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(3.5rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(3.5rem * var(--tw-space-y-reverse)) !important; + } + + .md\:space-x-14 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(3.5rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(3.5rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .md\:space-y-16 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(4rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(4rem * var(--tw-space-y-reverse)) !important; + } + + .md\:space-x-16 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(4rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(4rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .md\:space-y-20 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(5rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(5rem * var(--tw-space-y-reverse)) !important; + } + + .md\:space-x-20 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(5rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(5rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .md\:space-y-24 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(6rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(6rem * var(--tw-space-y-reverse)) !important; + } + + .md\:space-x-24 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(6rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(6rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .md\:space-y-28 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(7rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(7rem * var(--tw-space-y-reverse)) !important; + } + + .md\:space-x-28 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(7rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(7rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .md\:space-y-32 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(8rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(8rem * var(--tw-space-y-reverse)) !important; + } + + .md\:space-x-32 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(8rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(8rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .md\:space-y-36 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(9rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(9rem * var(--tw-space-y-reverse)) !important; + } + + .md\:space-x-36 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(9rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(9rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .md\:space-y-40 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(10rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(10rem * var(--tw-space-y-reverse)) !important; + } + + .md\:space-x-40 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(10rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(10rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .md\:space-y-44 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(11rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(11rem * var(--tw-space-y-reverse)) !important; + } + + .md\:space-x-44 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(11rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(11rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .md\:space-y-48 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(12rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(12rem * var(--tw-space-y-reverse)) !important; + } + + .md\:space-x-48 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(12rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(12rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .md\:space-y-52 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(13rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(13rem * var(--tw-space-y-reverse)) !important; + } + + .md\:space-x-52 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(13rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(13rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .md\:space-y-56 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(14rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(14rem * var(--tw-space-y-reverse)) !important; + } + + .md\:space-x-56 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(14rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(14rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .md\:space-y-60 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(15rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(15rem * var(--tw-space-y-reverse)) !important; + } + + .md\:space-x-60 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(15rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(15rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .md\:space-y-64 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(16rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(16rem * var(--tw-space-y-reverse)) !important; + } + + .md\:space-x-64 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(16rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(16rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .md\:space-y-72 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(18rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(18rem * var(--tw-space-y-reverse)) !important; + } + + .md\:space-x-72 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(18rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(18rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .md\:space-y-80 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(20rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(20rem * var(--tw-space-y-reverse)) !important; + } + + .md\:space-x-80 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(20rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(20rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .md\:space-y-96 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(24rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(24rem * var(--tw-space-y-reverse)) !important; + } + + .md\:space-x-96 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(24rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(24rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .md\:space-y-px > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(1px * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(1px * var(--tw-space-y-reverse)) !important; + } + + .md\:space-x-px > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(1px * var(--tw-space-x-reverse)) !important; + margin-left: calc(1px * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .md\:space-y-0\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(0.125rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(0.125rem * var(--tw-space-y-reverse)) !important; + } + + .md\:space-x-0\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(0.125rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(0.125rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .md\:space-y-1\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(0.375rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(0.375rem * var(--tw-space-y-reverse)) !important; + } + + .md\:space-x-1\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(0.375rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(0.375rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .md\:space-y-2\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(0.625rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(0.625rem * var(--tw-space-y-reverse)) !important; + } + + .md\:space-x-2\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(0.625rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(0.625rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .md\:space-y-3\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(0.875rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(0.875rem * var(--tw-space-y-reverse)) !important; + } + + .md\:space-x-3\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(0.875rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(0.875rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .md\:-space-y-0 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(0px * var(--tw-space-y-reverse)) !important; + } + + .md\:-space-x-0 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(0px * var(--tw-space-x-reverse)) !important; + margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .md\:-space-y-1 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-0.25rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-0.25rem * var(--tw-space-y-reverse)) !important; + } + + .md\:-space-x-1 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-0.25rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-0.25rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .md\:-space-y-2 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-0.5rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-0.5rem * var(--tw-space-y-reverse)) !important; + } + + .md\:-space-x-2 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-0.5rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-0.5rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .md\:-space-y-3 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-0.75rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-0.75rem * var(--tw-space-y-reverse)) !important; + } + + .md\:-space-x-3 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-0.75rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-0.75rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .md\:-space-y-4 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-1rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-1rem * var(--tw-space-y-reverse)) !important; + } + + .md\:-space-x-4 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-1rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-1rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .md\:-space-y-5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-1.25rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-1.25rem * var(--tw-space-y-reverse)) !important; + } + + .md\:-space-x-5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-1.25rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-1.25rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .md\:-space-y-6 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-1.5rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-1.5rem * var(--tw-space-y-reverse)) !important; + } + + .md\:-space-x-6 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-1.5rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-1.5rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .md\:-space-y-7 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-1.75rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-1.75rem * var(--tw-space-y-reverse)) !important; + } + + .md\:-space-x-7 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-1.75rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-1.75rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .md\:-space-y-8 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-2rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-2rem * var(--tw-space-y-reverse)) !important; + } + + .md\:-space-x-8 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-2rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-2rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .md\:-space-y-9 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-2.25rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-2.25rem * var(--tw-space-y-reverse)) !important; + } + + .md\:-space-x-9 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-2.25rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-2.25rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .md\:-space-y-10 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-2.5rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-2.5rem * var(--tw-space-y-reverse)) !important; + } + + .md\:-space-x-10 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-2.5rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-2.5rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .md\:-space-y-11 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-2.75rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-2.75rem * var(--tw-space-y-reverse)) !important; + } + + .md\:-space-x-11 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-2.75rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-2.75rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .md\:-space-y-12 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-3rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-3rem * var(--tw-space-y-reverse)) !important; + } + + .md\:-space-x-12 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-3rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-3rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .md\:-space-y-14 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-3.5rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-3.5rem * var(--tw-space-y-reverse)) !important; + } + + .md\:-space-x-14 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-3.5rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-3.5rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .md\:-space-y-16 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-4rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-4rem * var(--tw-space-y-reverse)) !important; + } + + .md\:-space-x-16 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-4rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-4rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .md\:-space-y-20 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-5rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-5rem * var(--tw-space-y-reverse)) !important; + } + + .md\:-space-x-20 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-5rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-5rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .md\:-space-y-24 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-6rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-6rem * var(--tw-space-y-reverse)) !important; + } + + .md\:-space-x-24 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-6rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-6rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .md\:-space-y-28 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-7rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-7rem * var(--tw-space-y-reverse)) !important; + } + + .md\:-space-x-28 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-7rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-7rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .md\:-space-y-32 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-8rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-8rem * var(--tw-space-y-reverse)) !important; + } + + .md\:-space-x-32 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-8rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-8rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .md\:-space-y-36 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-9rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-9rem * var(--tw-space-y-reverse)) !important; + } + + .md\:-space-x-36 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-9rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-9rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .md\:-space-y-40 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-10rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-10rem * var(--tw-space-y-reverse)) !important; + } + + .md\:-space-x-40 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-10rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-10rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .md\:-space-y-44 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-11rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-11rem * var(--tw-space-y-reverse)) !important; + } + + .md\:-space-x-44 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-11rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-11rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .md\:-space-y-48 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-12rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-12rem * var(--tw-space-y-reverse)) !important; + } + + .md\:-space-x-48 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-12rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-12rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .md\:-space-y-52 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-13rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-13rem * var(--tw-space-y-reverse)) !important; + } + + .md\:-space-x-52 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-13rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-13rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .md\:-space-y-56 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-14rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-14rem * var(--tw-space-y-reverse)) !important; + } + + .md\:-space-x-56 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-14rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-14rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .md\:-space-y-60 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-15rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-15rem * var(--tw-space-y-reverse)) !important; + } + + .md\:-space-x-60 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-15rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-15rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .md\:-space-y-64 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-16rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-16rem * var(--tw-space-y-reverse)) !important; + } + + .md\:-space-x-64 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-16rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-16rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .md\:-space-y-72 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-18rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-18rem * var(--tw-space-y-reverse)) !important; + } + + .md\:-space-x-72 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-18rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-18rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .md\:-space-y-80 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-20rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-20rem * var(--tw-space-y-reverse)) !important; + } + + .md\:-space-x-80 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-20rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-20rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .md\:-space-y-96 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-24rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-24rem * var(--tw-space-y-reverse)) !important; + } + + .md\:-space-x-96 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-24rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-24rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .md\:-space-y-px > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-1px * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-1px * var(--tw-space-y-reverse)) !important; + } + + .md\:-space-x-px > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-1px * var(--tw-space-x-reverse)) !important; + margin-left: calc(-1px * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .md\:-space-y-0\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-0.125rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-0.125rem * var(--tw-space-y-reverse)) !important; + } + + .md\:-space-x-0\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-0.125rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-0.125rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .md\:-space-y-1\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-0.375rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-0.375rem * var(--tw-space-y-reverse)) !important; + } + + .md\:-space-x-1\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-0.375rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-0.375rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .md\:-space-y-2\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-0.625rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-0.625rem * var(--tw-space-y-reverse)) !important; + } + + .md\:-space-x-2\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-0.625rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-0.625rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .md\:-space-y-3\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-0.875rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-0.875rem * var(--tw-space-y-reverse)) !important; + } + + .md\:-space-x-3\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-0.875rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-0.875rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .md\:space-y-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 1 !important; + } + + .md\:space-x-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 1 !important; + } + + .md\:divide-y-0 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0 !important; + border-top-width: calc(0px * calc(1 - var(--tw-divide-y-reverse))) !important; + border-bottom-width: calc(0px * var(--tw-divide-y-reverse)) !important; + } + + .md\:divide-x-0 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-x-reverse: 0 !important; + border-right-width: calc(0px * var(--tw-divide-x-reverse)) !important; + border-left-width: calc(0px * calc(1 - var(--tw-divide-x-reverse))) !important; + } + + .md\:divide-y-2 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0 !important; + border-top-width: calc(2px * calc(1 - var(--tw-divide-y-reverse))) !important; + border-bottom-width: calc(2px * var(--tw-divide-y-reverse)) !important; + } + + .md\:divide-x-2 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-x-reverse: 0 !important; + border-right-width: calc(2px * var(--tw-divide-x-reverse)) !important; + border-left-width: calc(2px * calc(1 - var(--tw-divide-x-reverse))) !important; + } + + .md\:divide-y-4 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0 !important; + border-top-width: calc(4px * calc(1 - var(--tw-divide-y-reverse))) !important; + border-bottom-width: calc(4px * var(--tw-divide-y-reverse)) !important; + } + + .md\:divide-x-4 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-x-reverse: 0 !important; + border-right-width: calc(4px * var(--tw-divide-x-reverse)) !important; + border-left-width: calc(4px * calc(1 - var(--tw-divide-x-reverse))) !important; + } + + .md\:divide-y-8 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0 !important; + border-top-width: calc(8px * calc(1 - var(--tw-divide-y-reverse))) !important; + border-bottom-width: calc(8px * var(--tw-divide-y-reverse)) !important; + } + + .md\:divide-x-8 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-x-reverse: 0 !important; + border-right-width: calc(8px * var(--tw-divide-x-reverse)) !important; + border-left-width: calc(8px * calc(1 - var(--tw-divide-x-reverse))) !important; + } + + .md\:divide-y > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0 !important; + border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse))) !important; + border-bottom-width: calc(1px * var(--tw-divide-y-reverse)) !important; + } + + .md\:divide-x > :not([hidden]) ~ :not([hidden]) { + --tw-divide-x-reverse: 0 !important; + border-right-width: calc(1px * var(--tw-divide-x-reverse)) !important; + border-left-width: calc(1px * calc(1 - var(--tw-divide-x-reverse))) !important; + } + + .md\:divide-y-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 1 !important; + } + + .md\:divide-x-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-divide-x-reverse: 1 !important; + } + + .md\:divide-transparent > :not([hidden]) ~ :not([hidden]) { + border-color: transparent !important; + } + + .md\:divide-current > :not([hidden]) ~ :not([hidden]) { + border-color: currentColor !important; + } + + .md\:divide-black > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(0, 0, 0, var(--tw-divide-opacity)) !important; + } + + .md\:divide-white > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(255, 255, 255, var(--tw-divide-opacity)) !important; + } + + .md\:divide-gray-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(249, 250, 251, var(--tw-divide-opacity)) !important; + } + + .md\:divide-gray-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(243, 244, 246, var(--tw-divide-opacity)) !important; + } + + .md\:divide-gray-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(229, 231, 235, var(--tw-divide-opacity)) !important; + } + + .md\:divide-gray-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(209, 213, 219, var(--tw-divide-opacity)) !important; + } + + .md\:divide-gray-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(156, 163, 175, var(--tw-divide-opacity)) !important; + } + + .md\:divide-gray-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(107, 114, 128, var(--tw-divide-opacity)) !important; + } + + .md\:divide-gray-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(75, 85, 99, var(--tw-divide-opacity)) !important; + } + + .md\:divide-gray-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(55, 65, 81, var(--tw-divide-opacity)) !important; + } + + .md\:divide-gray-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(31, 41, 55, var(--tw-divide-opacity)) !important; + } + + .md\:divide-gray-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(17, 24, 39, var(--tw-divide-opacity)) !important; + } + + .md\:divide-red-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(254, 242, 242, var(--tw-divide-opacity)) !important; + } + + .md\:divide-red-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(254, 226, 226, var(--tw-divide-opacity)) !important; + } + + .md\:divide-red-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(254, 202, 202, var(--tw-divide-opacity)) !important; + } + + .md\:divide-red-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(252, 165, 165, var(--tw-divide-opacity)) !important; + } + + .md\:divide-red-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(248, 113, 113, var(--tw-divide-opacity)) !important; + } + + .md\:divide-red-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(239, 68, 68, var(--tw-divide-opacity)) !important; + } + + .md\:divide-red-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(220, 38, 38, var(--tw-divide-opacity)) !important; + } + + .md\:divide-red-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(185, 28, 28, var(--tw-divide-opacity)) !important; + } + + .md\:divide-red-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(153, 27, 27, var(--tw-divide-opacity)) !important; + } + + .md\:divide-red-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(127, 29, 29, var(--tw-divide-opacity)) !important; + } + + .md\:divide-yellow-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(255, 251, 235, var(--tw-divide-opacity)) !important; + } + + .md\:divide-yellow-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(254, 243, 199, var(--tw-divide-opacity)) !important; + } + + .md\:divide-yellow-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(253, 230, 138, var(--tw-divide-opacity)) !important; + } + + .md\:divide-yellow-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(252, 211, 77, var(--tw-divide-opacity)) !important; + } + + .md\:divide-yellow-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(251, 191, 36, var(--tw-divide-opacity)) !important; + } + + .md\:divide-yellow-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(245, 158, 11, var(--tw-divide-opacity)) !important; + } + + .md\:divide-yellow-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(217, 119, 6, var(--tw-divide-opacity)) !important; + } + + .md\:divide-yellow-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(180, 83, 9, var(--tw-divide-opacity)) !important; + } + + .md\:divide-yellow-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(146, 64, 14, var(--tw-divide-opacity)) !important; + } + + .md\:divide-yellow-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(120, 53, 15, var(--tw-divide-opacity)) !important; + } + + .md\:divide-green-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(236, 253, 245, var(--tw-divide-opacity)) !important; + } + + .md\:divide-green-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(209, 250, 229, var(--tw-divide-opacity)) !important; + } + + .md\:divide-green-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(167, 243, 208, var(--tw-divide-opacity)) !important; + } + + .md\:divide-green-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(110, 231, 183, var(--tw-divide-opacity)) !important; + } + + .md\:divide-green-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(52, 211, 153, var(--tw-divide-opacity)) !important; + } + + .md\:divide-green-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(16, 185, 129, var(--tw-divide-opacity)) !important; + } + + .md\:divide-green-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(5, 150, 105, var(--tw-divide-opacity)) !important; + } + + .md\:divide-green-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(4, 120, 87, var(--tw-divide-opacity)) !important; + } + + .md\:divide-green-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(6, 95, 70, var(--tw-divide-opacity)) !important; + } + + .md\:divide-green-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(6, 78, 59, var(--tw-divide-opacity)) !important; + } + + .md\:divide-blue-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(239, 246, 255, var(--tw-divide-opacity)) !important; + } + + .md\:divide-blue-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(219, 234, 254, var(--tw-divide-opacity)) !important; + } + + .md\:divide-blue-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(191, 219, 254, var(--tw-divide-opacity)) !important; + } + + .md\:divide-blue-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(147, 197, 253, var(--tw-divide-opacity)) !important; + } + + .md\:divide-blue-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(96, 165, 250, var(--tw-divide-opacity)) !important; + } + + .md\:divide-blue-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(59, 130, 246, var(--tw-divide-opacity)) !important; + } + + .md\:divide-blue-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(37, 99, 235, var(--tw-divide-opacity)) !important; + } + + .md\:divide-blue-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(29, 78, 216, var(--tw-divide-opacity)) !important; + } + + .md\:divide-blue-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(30, 64, 175, var(--tw-divide-opacity)) !important; + } + + .md\:divide-blue-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(30, 58, 138, var(--tw-divide-opacity)) !important; + } + + .md\:divide-indigo-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(238, 242, 255, var(--tw-divide-opacity)) !important; + } + + .md\:divide-indigo-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(224, 231, 255, var(--tw-divide-opacity)) !important; + } + + .md\:divide-indigo-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(199, 210, 254, var(--tw-divide-opacity)) !important; + } + + .md\:divide-indigo-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(165, 180, 252, var(--tw-divide-opacity)) !important; + } + + .md\:divide-indigo-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(129, 140, 248, var(--tw-divide-opacity)) !important; + } + + .md\:divide-indigo-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(99, 102, 241, var(--tw-divide-opacity)) !important; + } + + .md\:divide-indigo-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(79, 70, 229, var(--tw-divide-opacity)) !important; + } + + .md\:divide-indigo-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(67, 56, 202, var(--tw-divide-opacity)) !important; + } + + .md\:divide-indigo-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(55, 48, 163, var(--tw-divide-opacity)) !important; + } + + .md\:divide-indigo-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(49, 46, 129, var(--tw-divide-opacity)) !important; + } + + .md\:divide-purple-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(245, 243, 255, var(--tw-divide-opacity)) !important; + } + + .md\:divide-purple-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(237, 233, 254, var(--tw-divide-opacity)) !important; + } + + .md\:divide-purple-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(221, 214, 254, var(--tw-divide-opacity)) !important; + } + + .md\:divide-purple-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(196, 181, 253, var(--tw-divide-opacity)) !important; + } + + .md\:divide-purple-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(167, 139, 250, var(--tw-divide-opacity)) !important; + } + + .md\:divide-purple-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(139, 92, 246, var(--tw-divide-opacity)) !important; + } + + .md\:divide-purple-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(124, 58, 237, var(--tw-divide-opacity)) !important; + } + + .md\:divide-purple-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(109, 40, 217, var(--tw-divide-opacity)) !important; + } + + .md\:divide-purple-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(91, 33, 182, var(--tw-divide-opacity)) !important; + } + + .md\:divide-purple-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(76, 29, 149, var(--tw-divide-opacity)) !important; + } + + .md\:divide-pink-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(253, 242, 248, var(--tw-divide-opacity)) !important; + } + + .md\:divide-pink-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(252, 231, 243, var(--tw-divide-opacity)) !important; + } + + .md\:divide-pink-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(251, 207, 232, var(--tw-divide-opacity)) !important; + } + + .md\:divide-pink-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(249, 168, 212, var(--tw-divide-opacity)) !important; + } + + .md\:divide-pink-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(244, 114, 182, var(--tw-divide-opacity)) !important; + } + + .md\:divide-pink-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(236, 72, 153, var(--tw-divide-opacity)) !important; + } + + .md\:divide-pink-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(219, 39, 119, var(--tw-divide-opacity)) !important; + } + + .md\:divide-pink-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(190, 24, 93, var(--tw-divide-opacity)) !important; + } + + .md\:divide-pink-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(157, 23, 77, var(--tw-divide-opacity)) !important; + } + + .md\:divide-pink-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(131, 24, 67, var(--tw-divide-opacity)) !important; + } + + .md\:divide-primary > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(0, 49, 151, var(--tw-divide-opacity)) !important; + } + + .md\:divide-solid > :not([hidden]) ~ :not([hidden]) { + border-style: solid !important; + } + + .md\:divide-dashed > :not([hidden]) ~ :not([hidden]) { + border-style: dashed !important; + } + + .md\:divide-dotted > :not([hidden]) ~ :not([hidden]) { + border-style: dotted !important; + } + + .md\:divide-double > :not([hidden]) ~ :not([hidden]) { + border-style: double !important; + } + + .md\:divide-none > :not([hidden]) ~ :not([hidden]) { + border-style: none !important; + } + + .md\:divide-opacity-0 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0 !important; + } + + .md\:divide-opacity-5 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.05 !important; + } + + .md\:divide-opacity-10 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.1 !important; + } + + .md\:divide-opacity-20 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.2 !important; + } + + .md\:divide-opacity-25 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.25 !important; + } + + .md\:divide-opacity-30 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.3 !important; + } + + .md\:divide-opacity-40 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.4 !important; + } + + .md\:divide-opacity-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.5 !important; + } + + .md\:divide-opacity-60 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.6 !important; + } + + .md\:divide-opacity-70 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.7 !important; + } + + .md\:divide-opacity-75 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.75 !important; + } + + .md\:divide-opacity-80 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.8 !important; + } + + .md\:divide-opacity-90 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.9 !important; + } + + .md\:divide-opacity-95 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.95 !important; + } + + .md\:divide-opacity-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + } + + .md\:sr-only { + position: absolute !important; + width: 1px !important; + height: 1px !important; + padding: 0 !important; + margin: -1px !important; + overflow: hidden !important; + clip: rect(0, 0, 0, 0) !important; + white-space: nowrap !important; + border-width: 0 !important; + } + + .md\:not-sr-only { + position: static !important; + width: auto !important; + height: auto !important; + padding: 0 !important; + margin: 0 !important; + overflow: visible !important; + clip: auto !important; + white-space: normal !important; + } + + .md\:focus-within\:sr-only:focus-within { + position: absolute !important; + width: 1px !important; + height: 1px !important; + padding: 0 !important; + margin: -1px !important; + overflow: hidden !important; + clip: rect(0, 0, 0, 0) !important; + white-space: nowrap !important; + border-width: 0 !important; + } + + .md\:focus-within\:not-sr-only:focus-within { + position: static !important; + width: auto !important; + height: auto !important; + padding: 0 !important; + margin: 0 !important; + overflow: visible !important; + clip: auto !important; + white-space: normal !important; + } + + .md\:focus\:sr-only:focus { + position: absolute !important; + width: 1px !important; + height: 1px !important; + padding: 0 !important; + margin: -1px !important; + overflow: hidden !important; + clip: rect(0, 0, 0, 0) !important; + white-space: nowrap !important; + border-width: 0 !important; + } + + .md\:focus\:not-sr-only:focus { + position: static !important; + width: auto !important; + height: auto !important; + padding: 0 !important; + margin: 0 !important; + overflow: visible !important; + clip: auto !important; + white-space: normal !important; + } + + .md\:appearance-none { + -webkit-appearance: none !important; + -moz-appearance: none !important; + appearance: none !important; + } + + .md\:bg-fixed { + background-attachment: fixed !important; + } + + .md\:bg-local { + background-attachment: local !important; + } + + .md\:bg-scroll { + background-attachment: scroll !important; + } + + .md\:bg-clip-border { + background-clip: border-box !important; + } + + .md\:bg-clip-padding { + background-clip: padding-box !important; + } + + .md\:bg-clip-content { + background-clip: content-box !important; + } + + .md\:bg-clip-text { + -webkit-background-clip: text !important; + background-clip: text !important; + } + + .md\:bg-transparent { + background-color: transparent !important; + } + + .md\:bg-current { + background-color: currentColor !important; + } + + .md\:bg-black { + --tw-bg-opacity: 1 !important; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important; + } + + .md\:bg-white { + --tw-bg-opacity: 1 !important; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important; + } + + .md\:bg-gray-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)) !important; + } + + .md\:bg-gray-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)) !important; + } + + .md\:bg-gray-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)) !important; + } + + .md\:bg-gray-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)) !important; + } + + .md\:bg-gray-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)) !important; + } + + .md\:bg-gray-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)) !important; + } + + .md\:bg-gray-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)) !important; + } + + .md\:bg-gray-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)) !important; + } + + .md\:bg-gray-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)) !important; + } + + .md\:bg-gray-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)) !important; + } + + .md\:bg-red-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 242, 242, var(--tw-bg-opacity)) !important; + } + + .md\:bg-red-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 226, 226, var(--tw-bg-opacity)) !important; + } + + .md\:bg-red-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 202, 202, var(--tw-bg-opacity)) !important; + } + + .md\:bg-red-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 165, 165, var(--tw-bg-opacity)) !important; + } + + .md\:bg-red-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(248, 113, 113, var(--tw-bg-opacity)) !important; + } + + .md\:bg-red-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(239, 68, 68, var(--tw-bg-opacity)) !important; + } + + .md\:bg-red-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(220, 38, 38, var(--tw-bg-opacity)) !important; + } + + .md\:bg-red-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(185, 28, 28, var(--tw-bg-opacity)) !important; + } + + .md\:bg-red-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(153, 27, 27, var(--tw-bg-opacity)) !important; + } + + .md\:bg-red-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(127, 29, 29, var(--tw-bg-opacity)) !important; + } + + .md\:bg-yellow-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(255, 251, 235, var(--tw-bg-opacity)) !important; + } + + .md\:bg-yellow-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 243, 199, var(--tw-bg-opacity)) !important; + } + + .md\:bg-yellow-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(253, 230, 138, var(--tw-bg-opacity)) !important; + } + + .md\:bg-yellow-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 211, 77, var(--tw-bg-opacity)) !important; + } + + .md\:bg-yellow-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(251, 191, 36, var(--tw-bg-opacity)) !important; + } + + .md\:bg-yellow-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)) !important; + } + + .md\:bg-yellow-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(217, 119, 6, var(--tw-bg-opacity)) !important; + } + + .md\:bg-yellow-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(180, 83, 9, var(--tw-bg-opacity)) !important; + } + + .md\:bg-yellow-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(146, 64, 14, var(--tw-bg-opacity)) !important; + } + + .md\:bg-yellow-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(120, 53, 15, var(--tw-bg-opacity)) !important; + } + + .md\:bg-green-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(236, 253, 245, var(--tw-bg-opacity)) !important; + } + + .md\:bg-green-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(209, 250, 229, var(--tw-bg-opacity)) !important; + } + + .md\:bg-green-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(167, 243, 208, var(--tw-bg-opacity)) !important; + } + + .md\:bg-green-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(110, 231, 183, var(--tw-bg-opacity)) !important; + } + + .md\:bg-green-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(52, 211, 153, var(--tw-bg-opacity)) !important; + } + + .md\:bg-green-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(16, 185, 129, var(--tw-bg-opacity)) !important; + } + + .md\:bg-green-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(5, 150, 105, var(--tw-bg-opacity)) !important; + } + + .md\:bg-green-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(4, 120, 87, var(--tw-bg-opacity)) !important; + } + + .md\:bg-green-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(6, 95, 70, var(--tw-bg-opacity)) !important; + } + + .md\:bg-green-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(6, 78, 59, var(--tw-bg-opacity)) !important; + } + + .md\:bg-blue-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(239, 246, 255, var(--tw-bg-opacity)) !important; + } + + .md\:bg-blue-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(219, 234, 254, var(--tw-bg-opacity)) !important; + } + + .md\:bg-blue-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(191, 219, 254, var(--tw-bg-opacity)) !important; + } + + .md\:bg-blue-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(147, 197, 253, var(--tw-bg-opacity)) !important; + } + + .md\:bg-blue-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(96, 165, 250, var(--tw-bg-opacity)) !important; + } + + .md\:bg-blue-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)) !important; + } + + .md\:bg-blue-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(37, 99, 235, var(--tw-bg-opacity)) !important; + } + + .md\:bg-blue-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(29, 78, 216, var(--tw-bg-opacity)) !important; + } + + .md\:bg-blue-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(30, 64, 175, var(--tw-bg-opacity)) !important; + } + + .md\:bg-blue-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(30, 58, 138, var(--tw-bg-opacity)) !important; + } + + .md\:bg-indigo-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(238, 242, 255, var(--tw-bg-opacity)) !important; + } + + .md\:bg-indigo-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(224, 231, 255, var(--tw-bg-opacity)) !important; + } + + .md\:bg-indigo-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(199, 210, 254, var(--tw-bg-opacity)) !important; + } + + .md\:bg-indigo-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(165, 180, 252, var(--tw-bg-opacity)) !important; + } + + .md\:bg-indigo-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(129, 140, 248, var(--tw-bg-opacity)) !important; + } + + .md\:bg-indigo-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(99, 102, 241, var(--tw-bg-opacity)) !important; + } + + .md\:bg-indigo-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(79, 70, 229, var(--tw-bg-opacity)) !important; + } + + .md\:bg-indigo-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(67, 56, 202, var(--tw-bg-opacity)) !important; + } + + .md\:bg-indigo-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(55, 48, 163, var(--tw-bg-opacity)) !important; + } + + .md\:bg-indigo-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(49, 46, 129, var(--tw-bg-opacity)) !important; + } + + .md\:bg-purple-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(245, 243, 255, var(--tw-bg-opacity)) !important; + } + + .md\:bg-purple-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(237, 233, 254, var(--tw-bg-opacity)) !important; + } + + .md\:bg-purple-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(221, 214, 254, var(--tw-bg-opacity)) !important; + } + + .md\:bg-purple-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(196, 181, 253, var(--tw-bg-opacity)) !important; + } + + .md\:bg-purple-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(167, 139, 250, var(--tw-bg-opacity)) !important; + } + + .md\:bg-purple-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(139, 92, 246, var(--tw-bg-opacity)) !important; + } + + .md\:bg-purple-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(124, 58, 237, var(--tw-bg-opacity)) !important; + } + + .md\:bg-purple-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(109, 40, 217, var(--tw-bg-opacity)) !important; + } + + .md\:bg-purple-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(91, 33, 182, var(--tw-bg-opacity)) !important; + } + + .md\:bg-purple-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(76, 29, 149, var(--tw-bg-opacity)) !important; + } + + .md\:bg-pink-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(253, 242, 248, var(--tw-bg-opacity)) !important; + } + + .md\:bg-pink-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 231, 243, var(--tw-bg-opacity)) !important; + } + + .md\:bg-pink-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(251, 207, 232, var(--tw-bg-opacity)) !important; + } + + .md\:bg-pink-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(249, 168, 212, var(--tw-bg-opacity)) !important; + } + + .md\:bg-pink-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(244, 114, 182, var(--tw-bg-opacity)) !important; + } + + .md\:bg-pink-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(236, 72, 153, var(--tw-bg-opacity)) !important; + } + + .md\:bg-pink-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(219, 39, 119, var(--tw-bg-opacity)) !important; + } + + .md\:bg-pink-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(190, 24, 93, var(--tw-bg-opacity)) !important; + } + + .md\:bg-pink-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(157, 23, 77, var(--tw-bg-opacity)) !important; + } + + .md\:bg-pink-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(131, 24, 67, var(--tw-bg-opacity)) !important; + } + + .md\:bg-primary { + --tw-bg-opacity: 1 !important; + background-color: rgba(0, 49, 151, var(--tw-bg-opacity)) !important; + } + + .group:hover .md\:group-hover\:bg-transparent { + background-color: transparent !important; + } + + .group:hover .md\:group-hover\:bg-current { + background-color: currentColor !important; + } + + .group:hover .md\:group-hover\:bg-black { + --tw-bg-opacity: 1 !important; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important; + } + + .group:hover .md\:group-hover\:bg-white { + --tw-bg-opacity: 1 !important; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important; + } + + .group:hover .md\:group-hover\:bg-gray-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)) !important; + } + + .group:hover .md\:group-hover\:bg-gray-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)) !important; + } + + .group:hover .md\:group-hover\:bg-gray-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)) !important; + } + + .group:hover .md\:group-hover\:bg-gray-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)) !important; + } + + .group:hover .md\:group-hover\:bg-gray-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)) !important; + } + + .group:hover .md\:group-hover\:bg-gray-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)) !important; + } + + .group:hover .md\:group-hover\:bg-gray-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)) !important; + } + + .group:hover .md\:group-hover\:bg-gray-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)) !important; + } + + .group:hover .md\:group-hover\:bg-gray-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)) !important; + } + + .group:hover .md\:group-hover\:bg-gray-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)) !important; + } + + .group:hover .md\:group-hover\:bg-red-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 242, 242, var(--tw-bg-opacity)) !important; + } + + .group:hover .md\:group-hover\:bg-red-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 226, 226, var(--tw-bg-opacity)) !important; + } + + .group:hover .md\:group-hover\:bg-red-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 202, 202, var(--tw-bg-opacity)) !important; + } + + .group:hover .md\:group-hover\:bg-red-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 165, 165, var(--tw-bg-opacity)) !important; + } + + .group:hover .md\:group-hover\:bg-red-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(248, 113, 113, var(--tw-bg-opacity)) !important; + } + + .group:hover .md\:group-hover\:bg-red-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(239, 68, 68, var(--tw-bg-opacity)) !important; + } + + .group:hover .md\:group-hover\:bg-red-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(220, 38, 38, var(--tw-bg-opacity)) !important; + } + + .group:hover .md\:group-hover\:bg-red-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(185, 28, 28, var(--tw-bg-opacity)) !important; + } + + .group:hover .md\:group-hover\:bg-red-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(153, 27, 27, var(--tw-bg-opacity)) !important; + } + + .group:hover .md\:group-hover\:bg-red-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(127, 29, 29, var(--tw-bg-opacity)) !important; + } + + .group:hover .md\:group-hover\:bg-yellow-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(255, 251, 235, var(--tw-bg-opacity)) !important; + } + + .group:hover .md\:group-hover\:bg-yellow-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 243, 199, var(--tw-bg-opacity)) !important; + } + + .group:hover .md\:group-hover\:bg-yellow-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(253, 230, 138, var(--tw-bg-opacity)) !important; + } + + .group:hover .md\:group-hover\:bg-yellow-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 211, 77, var(--tw-bg-opacity)) !important; + } + + .group:hover .md\:group-hover\:bg-yellow-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(251, 191, 36, var(--tw-bg-opacity)) !important; + } + + .group:hover .md\:group-hover\:bg-yellow-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)) !important; + } + + .group:hover .md\:group-hover\:bg-yellow-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(217, 119, 6, var(--tw-bg-opacity)) !important; + } + + .group:hover .md\:group-hover\:bg-yellow-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(180, 83, 9, var(--tw-bg-opacity)) !important; + } + + .group:hover .md\:group-hover\:bg-yellow-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(146, 64, 14, var(--tw-bg-opacity)) !important; + } + + .group:hover .md\:group-hover\:bg-yellow-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(120, 53, 15, var(--tw-bg-opacity)) !important; + } + + .group:hover .md\:group-hover\:bg-green-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(236, 253, 245, var(--tw-bg-opacity)) !important; + } + + .group:hover .md\:group-hover\:bg-green-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(209, 250, 229, var(--tw-bg-opacity)) !important; + } + + .group:hover .md\:group-hover\:bg-green-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(167, 243, 208, var(--tw-bg-opacity)) !important; + } + + .group:hover .md\:group-hover\:bg-green-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(110, 231, 183, var(--tw-bg-opacity)) !important; + } + + .group:hover .md\:group-hover\:bg-green-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(52, 211, 153, var(--tw-bg-opacity)) !important; + } + + .group:hover .md\:group-hover\:bg-green-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(16, 185, 129, var(--tw-bg-opacity)) !important; + } + + .group:hover .md\:group-hover\:bg-green-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(5, 150, 105, var(--tw-bg-opacity)) !important; + } + + .group:hover .md\:group-hover\:bg-green-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(4, 120, 87, var(--tw-bg-opacity)) !important; + } + + .group:hover .md\:group-hover\:bg-green-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(6, 95, 70, var(--tw-bg-opacity)) !important; + } + + .group:hover .md\:group-hover\:bg-green-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(6, 78, 59, var(--tw-bg-opacity)) !important; + } + + .group:hover .md\:group-hover\:bg-blue-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(239, 246, 255, var(--tw-bg-opacity)) !important; + } + + .group:hover .md\:group-hover\:bg-blue-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(219, 234, 254, var(--tw-bg-opacity)) !important; + } + + .group:hover .md\:group-hover\:bg-blue-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(191, 219, 254, var(--tw-bg-opacity)) !important; + } + + .group:hover .md\:group-hover\:bg-blue-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(147, 197, 253, var(--tw-bg-opacity)) !important; + } + + .group:hover .md\:group-hover\:bg-blue-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(96, 165, 250, var(--tw-bg-opacity)) !important; + } + + .group:hover .md\:group-hover\:bg-blue-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)) !important; + } + + .group:hover .md\:group-hover\:bg-blue-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(37, 99, 235, var(--tw-bg-opacity)) !important; + } + + .group:hover .md\:group-hover\:bg-blue-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(29, 78, 216, var(--tw-bg-opacity)) !important; + } + + .group:hover .md\:group-hover\:bg-blue-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(30, 64, 175, var(--tw-bg-opacity)) !important; + } + + .group:hover .md\:group-hover\:bg-blue-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(30, 58, 138, var(--tw-bg-opacity)) !important; + } + + .group:hover .md\:group-hover\:bg-indigo-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(238, 242, 255, var(--tw-bg-opacity)) !important; + } + + .group:hover .md\:group-hover\:bg-indigo-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(224, 231, 255, var(--tw-bg-opacity)) !important; + } + + .group:hover .md\:group-hover\:bg-indigo-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(199, 210, 254, var(--tw-bg-opacity)) !important; + } + + .group:hover .md\:group-hover\:bg-indigo-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(165, 180, 252, var(--tw-bg-opacity)) !important; + } + + .group:hover .md\:group-hover\:bg-indigo-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(129, 140, 248, var(--tw-bg-opacity)) !important; + } + + .group:hover .md\:group-hover\:bg-indigo-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(99, 102, 241, var(--tw-bg-opacity)) !important; + } + + .group:hover .md\:group-hover\:bg-indigo-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(79, 70, 229, var(--tw-bg-opacity)) !important; + } + + .group:hover .md\:group-hover\:bg-indigo-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(67, 56, 202, var(--tw-bg-opacity)) !important; + } + + .group:hover .md\:group-hover\:bg-indigo-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(55, 48, 163, var(--tw-bg-opacity)) !important; + } + + .group:hover .md\:group-hover\:bg-indigo-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(49, 46, 129, var(--tw-bg-opacity)) !important; + } + + .group:hover .md\:group-hover\:bg-purple-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(245, 243, 255, var(--tw-bg-opacity)) !important; + } + + .group:hover .md\:group-hover\:bg-purple-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(237, 233, 254, var(--tw-bg-opacity)) !important; + } + + .group:hover .md\:group-hover\:bg-purple-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(221, 214, 254, var(--tw-bg-opacity)) !important; + } + + .group:hover .md\:group-hover\:bg-purple-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(196, 181, 253, var(--tw-bg-opacity)) !important; + } + + .group:hover .md\:group-hover\:bg-purple-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(167, 139, 250, var(--tw-bg-opacity)) !important; + } + + .group:hover .md\:group-hover\:bg-purple-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(139, 92, 246, var(--tw-bg-opacity)) !important; + } + + .group:hover .md\:group-hover\:bg-purple-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(124, 58, 237, var(--tw-bg-opacity)) !important; + } + + .group:hover .md\:group-hover\:bg-purple-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(109, 40, 217, var(--tw-bg-opacity)) !important; + } + + .group:hover .md\:group-hover\:bg-purple-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(91, 33, 182, var(--tw-bg-opacity)) !important; + } + + .group:hover .md\:group-hover\:bg-purple-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(76, 29, 149, var(--tw-bg-opacity)) !important; + } + + .group:hover .md\:group-hover\:bg-pink-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(253, 242, 248, var(--tw-bg-opacity)) !important; + } + + .group:hover .md\:group-hover\:bg-pink-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 231, 243, var(--tw-bg-opacity)) !important; + } + + .group:hover .md\:group-hover\:bg-pink-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(251, 207, 232, var(--tw-bg-opacity)) !important; + } + + .group:hover .md\:group-hover\:bg-pink-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(249, 168, 212, var(--tw-bg-opacity)) !important; + } + + .group:hover .md\:group-hover\:bg-pink-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(244, 114, 182, var(--tw-bg-opacity)) !important; + } + + .group:hover .md\:group-hover\:bg-pink-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(236, 72, 153, var(--tw-bg-opacity)) !important; + } + + .group:hover .md\:group-hover\:bg-pink-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(219, 39, 119, var(--tw-bg-opacity)) !important; + } + + .group:hover .md\:group-hover\:bg-pink-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(190, 24, 93, var(--tw-bg-opacity)) !important; + } + + .group:hover .md\:group-hover\:bg-pink-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(157, 23, 77, var(--tw-bg-opacity)) !important; + } + + .group:hover .md\:group-hover\:bg-pink-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(131, 24, 67, var(--tw-bg-opacity)) !important; + } + + .group:hover .md\:group-hover\:bg-primary { + --tw-bg-opacity: 1 !important; + background-color: rgba(0, 49, 151, var(--tw-bg-opacity)) !important; + } + + .md\:focus-within\:bg-transparent:focus-within { + background-color: transparent !important; + } + + .md\:focus-within\:bg-current:focus-within { + background-color: currentColor !important; + } + + .md\:focus-within\:bg-black:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important; + } + + .md\:focus-within\:bg-white:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important; + } + + .md\:focus-within\:bg-gray-50:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)) !important; + } + + .md\:focus-within\:bg-gray-100:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)) !important; + } + + .md\:focus-within\:bg-gray-200:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)) !important; + } + + .md\:focus-within\:bg-gray-300:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)) !important; + } + + .md\:focus-within\:bg-gray-400:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)) !important; + } + + .md\:focus-within\:bg-gray-500:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)) !important; + } + + .md\:focus-within\:bg-gray-600:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)) !important; + } + + .md\:focus-within\:bg-gray-700:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)) !important; + } + + .md\:focus-within\:bg-gray-800:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)) !important; + } + + .md\:focus-within\:bg-gray-900:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)) !important; + } + + .md\:focus-within\:bg-red-50:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 242, 242, var(--tw-bg-opacity)) !important; + } + + .md\:focus-within\:bg-red-100:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 226, 226, var(--tw-bg-opacity)) !important; + } + + .md\:focus-within\:bg-red-200:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 202, 202, var(--tw-bg-opacity)) !important; + } + + .md\:focus-within\:bg-red-300:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 165, 165, var(--tw-bg-opacity)) !important; + } + + .md\:focus-within\:bg-red-400:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(248, 113, 113, var(--tw-bg-opacity)) !important; + } + + .md\:focus-within\:bg-red-500:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(239, 68, 68, var(--tw-bg-opacity)) !important; + } + + .md\:focus-within\:bg-red-600:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(220, 38, 38, var(--tw-bg-opacity)) !important; + } + + .md\:focus-within\:bg-red-700:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(185, 28, 28, var(--tw-bg-opacity)) !important; + } + + .md\:focus-within\:bg-red-800:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(153, 27, 27, var(--tw-bg-opacity)) !important; + } + + .md\:focus-within\:bg-red-900:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(127, 29, 29, var(--tw-bg-opacity)) !important; + } + + .md\:focus-within\:bg-yellow-50:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(255, 251, 235, var(--tw-bg-opacity)) !important; + } + + .md\:focus-within\:bg-yellow-100:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 243, 199, var(--tw-bg-opacity)) !important; + } + + .md\:focus-within\:bg-yellow-200:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(253, 230, 138, var(--tw-bg-opacity)) !important; + } + + .md\:focus-within\:bg-yellow-300:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 211, 77, var(--tw-bg-opacity)) !important; + } + + .md\:focus-within\:bg-yellow-400:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(251, 191, 36, var(--tw-bg-opacity)) !important; + } + + .md\:focus-within\:bg-yellow-500:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)) !important; + } + + .md\:focus-within\:bg-yellow-600:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(217, 119, 6, var(--tw-bg-opacity)) !important; + } + + .md\:focus-within\:bg-yellow-700:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(180, 83, 9, var(--tw-bg-opacity)) !important; + } + + .md\:focus-within\:bg-yellow-800:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(146, 64, 14, var(--tw-bg-opacity)) !important; + } + + .md\:focus-within\:bg-yellow-900:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(120, 53, 15, var(--tw-bg-opacity)) !important; + } + + .md\:focus-within\:bg-green-50:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(236, 253, 245, var(--tw-bg-opacity)) !important; + } + + .md\:focus-within\:bg-green-100:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(209, 250, 229, var(--tw-bg-opacity)) !important; + } + + .md\:focus-within\:bg-green-200:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(167, 243, 208, var(--tw-bg-opacity)) !important; + } + + .md\:focus-within\:bg-green-300:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(110, 231, 183, var(--tw-bg-opacity)) !important; + } + + .md\:focus-within\:bg-green-400:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(52, 211, 153, var(--tw-bg-opacity)) !important; + } + + .md\:focus-within\:bg-green-500:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(16, 185, 129, var(--tw-bg-opacity)) !important; + } + + .md\:focus-within\:bg-green-600:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(5, 150, 105, var(--tw-bg-opacity)) !important; + } + + .md\:focus-within\:bg-green-700:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(4, 120, 87, var(--tw-bg-opacity)) !important; + } + + .md\:focus-within\:bg-green-800:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(6, 95, 70, var(--tw-bg-opacity)) !important; + } + + .md\:focus-within\:bg-green-900:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(6, 78, 59, var(--tw-bg-opacity)) !important; + } + + .md\:focus-within\:bg-blue-50:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(239, 246, 255, var(--tw-bg-opacity)) !important; + } + + .md\:focus-within\:bg-blue-100:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(219, 234, 254, var(--tw-bg-opacity)) !important; + } + + .md\:focus-within\:bg-blue-200:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(191, 219, 254, var(--tw-bg-opacity)) !important; + } + + .md\:focus-within\:bg-blue-300:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(147, 197, 253, var(--tw-bg-opacity)) !important; + } + + .md\:focus-within\:bg-blue-400:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(96, 165, 250, var(--tw-bg-opacity)) !important; + } + + .md\:focus-within\:bg-blue-500:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)) !important; + } + + .md\:focus-within\:bg-blue-600:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(37, 99, 235, var(--tw-bg-opacity)) !important; + } + + .md\:focus-within\:bg-blue-700:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(29, 78, 216, var(--tw-bg-opacity)) !important; + } + + .md\:focus-within\:bg-blue-800:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(30, 64, 175, var(--tw-bg-opacity)) !important; + } + + .md\:focus-within\:bg-blue-900:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(30, 58, 138, var(--tw-bg-opacity)) !important; + } + + .md\:focus-within\:bg-indigo-50:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(238, 242, 255, var(--tw-bg-opacity)) !important; + } + + .md\:focus-within\:bg-indigo-100:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(224, 231, 255, var(--tw-bg-opacity)) !important; + } + + .md\:focus-within\:bg-indigo-200:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(199, 210, 254, var(--tw-bg-opacity)) !important; + } + + .md\:focus-within\:bg-indigo-300:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(165, 180, 252, var(--tw-bg-opacity)) !important; + } + + .md\:focus-within\:bg-indigo-400:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(129, 140, 248, var(--tw-bg-opacity)) !important; + } + + .md\:focus-within\:bg-indigo-500:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(99, 102, 241, var(--tw-bg-opacity)) !important; + } + + .md\:focus-within\:bg-indigo-600:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(79, 70, 229, var(--tw-bg-opacity)) !important; + } + + .md\:focus-within\:bg-indigo-700:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(67, 56, 202, var(--tw-bg-opacity)) !important; + } + + .md\:focus-within\:bg-indigo-800:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(55, 48, 163, var(--tw-bg-opacity)) !important; + } + + .md\:focus-within\:bg-indigo-900:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(49, 46, 129, var(--tw-bg-opacity)) !important; + } + + .md\:focus-within\:bg-purple-50:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(245, 243, 255, var(--tw-bg-opacity)) !important; + } + + .md\:focus-within\:bg-purple-100:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(237, 233, 254, var(--tw-bg-opacity)) !important; + } + + .md\:focus-within\:bg-purple-200:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(221, 214, 254, var(--tw-bg-opacity)) !important; + } + + .md\:focus-within\:bg-purple-300:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(196, 181, 253, var(--tw-bg-opacity)) !important; + } + + .md\:focus-within\:bg-purple-400:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(167, 139, 250, var(--tw-bg-opacity)) !important; + } + + .md\:focus-within\:bg-purple-500:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(139, 92, 246, var(--tw-bg-opacity)) !important; + } + + .md\:focus-within\:bg-purple-600:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(124, 58, 237, var(--tw-bg-opacity)) !important; + } + + .md\:focus-within\:bg-purple-700:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(109, 40, 217, var(--tw-bg-opacity)) !important; + } + + .md\:focus-within\:bg-purple-800:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(91, 33, 182, var(--tw-bg-opacity)) !important; + } + + .md\:focus-within\:bg-purple-900:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(76, 29, 149, var(--tw-bg-opacity)) !important; + } + + .md\:focus-within\:bg-pink-50:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(253, 242, 248, var(--tw-bg-opacity)) !important; + } + + .md\:focus-within\:bg-pink-100:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 231, 243, var(--tw-bg-opacity)) !important; + } + + .md\:focus-within\:bg-pink-200:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(251, 207, 232, var(--tw-bg-opacity)) !important; + } + + .md\:focus-within\:bg-pink-300:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(249, 168, 212, var(--tw-bg-opacity)) !important; + } + + .md\:focus-within\:bg-pink-400:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(244, 114, 182, var(--tw-bg-opacity)) !important; + } + + .md\:focus-within\:bg-pink-500:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(236, 72, 153, var(--tw-bg-opacity)) !important; + } + + .md\:focus-within\:bg-pink-600:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(219, 39, 119, var(--tw-bg-opacity)) !important; + } + + .md\:focus-within\:bg-pink-700:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(190, 24, 93, var(--tw-bg-opacity)) !important; + } + + .md\:focus-within\:bg-pink-800:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(157, 23, 77, var(--tw-bg-opacity)) !important; + } + + .md\:focus-within\:bg-pink-900:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(131, 24, 67, var(--tw-bg-opacity)) !important; + } + + .md\:focus-within\:bg-primary:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(0, 49, 151, var(--tw-bg-opacity)) !important; + } + + .md\:hover\:bg-transparent:hover { + background-color: transparent !important; + } + + .md\:hover\:bg-current:hover { + background-color: currentColor !important; + } + + .md\:hover\:bg-black:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important; + } + + .md\:hover\:bg-white:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important; + } + + .md\:hover\:bg-gray-50:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)) !important; + } + + .md\:hover\:bg-gray-100:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)) !important; + } + + .md\:hover\:bg-gray-200:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)) !important; + } + + .md\:hover\:bg-gray-300:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)) !important; + } + + .md\:hover\:bg-gray-400:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)) !important; + } + + .md\:hover\:bg-gray-500:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)) !important; + } + + .md\:hover\:bg-gray-600:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)) !important; + } + + .md\:hover\:bg-gray-700:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)) !important; + } + + .md\:hover\:bg-gray-800:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)) !important; + } + + .md\:hover\:bg-gray-900:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)) !important; + } + + .md\:hover\:bg-red-50:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 242, 242, var(--tw-bg-opacity)) !important; + } + + .md\:hover\:bg-red-100:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 226, 226, var(--tw-bg-opacity)) !important; + } + + .md\:hover\:bg-red-200:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 202, 202, var(--tw-bg-opacity)) !important; + } + + .md\:hover\:bg-red-300:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 165, 165, var(--tw-bg-opacity)) !important; + } + + .md\:hover\:bg-red-400:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(248, 113, 113, var(--tw-bg-opacity)) !important; + } + + .md\:hover\:bg-red-500:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(239, 68, 68, var(--tw-bg-opacity)) !important; + } + + .md\:hover\:bg-red-600:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(220, 38, 38, var(--tw-bg-opacity)) !important; + } + + .md\:hover\:bg-red-700:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(185, 28, 28, var(--tw-bg-opacity)) !important; + } + + .md\:hover\:bg-red-800:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(153, 27, 27, var(--tw-bg-opacity)) !important; + } + + .md\:hover\:bg-red-900:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(127, 29, 29, var(--tw-bg-opacity)) !important; + } + + .md\:hover\:bg-yellow-50:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(255, 251, 235, var(--tw-bg-opacity)) !important; + } + + .md\:hover\:bg-yellow-100:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 243, 199, var(--tw-bg-opacity)) !important; + } + + .md\:hover\:bg-yellow-200:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(253, 230, 138, var(--tw-bg-opacity)) !important; + } + + .md\:hover\:bg-yellow-300:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 211, 77, var(--tw-bg-opacity)) !important; + } + + .md\:hover\:bg-yellow-400:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(251, 191, 36, var(--tw-bg-opacity)) !important; + } + + .md\:hover\:bg-yellow-500:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)) !important; + } + + .md\:hover\:bg-yellow-600:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(217, 119, 6, var(--tw-bg-opacity)) !important; + } + + .md\:hover\:bg-yellow-700:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(180, 83, 9, var(--tw-bg-opacity)) !important; + } + + .md\:hover\:bg-yellow-800:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(146, 64, 14, var(--tw-bg-opacity)) !important; + } + + .md\:hover\:bg-yellow-900:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(120, 53, 15, var(--tw-bg-opacity)) !important; + } + + .md\:hover\:bg-green-50:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(236, 253, 245, var(--tw-bg-opacity)) !important; + } + + .md\:hover\:bg-green-100:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(209, 250, 229, var(--tw-bg-opacity)) !important; + } + + .md\:hover\:bg-green-200:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(167, 243, 208, var(--tw-bg-opacity)) !important; + } + + .md\:hover\:bg-green-300:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(110, 231, 183, var(--tw-bg-opacity)) !important; + } + + .md\:hover\:bg-green-400:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(52, 211, 153, var(--tw-bg-opacity)) !important; + } + + .md\:hover\:bg-green-500:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(16, 185, 129, var(--tw-bg-opacity)) !important; + } + + .md\:hover\:bg-green-600:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(5, 150, 105, var(--tw-bg-opacity)) !important; + } + + .md\:hover\:bg-green-700:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(4, 120, 87, var(--tw-bg-opacity)) !important; + } + + .md\:hover\:bg-green-800:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(6, 95, 70, var(--tw-bg-opacity)) !important; + } + + .md\:hover\:bg-green-900:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(6, 78, 59, var(--tw-bg-opacity)) !important; + } + + .md\:hover\:bg-blue-50:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(239, 246, 255, var(--tw-bg-opacity)) !important; + } + + .md\:hover\:bg-blue-100:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(219, 234, 254, var(--tw-bg-opacity)) !important; + } + + .md\:hover\:bg-blue-200:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(191, 219, 254, var(--tw-bg-opacity)) !important; + } + + .md\:hover\:bg-blue-300:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(147, 197, 253, var(--tw-bg-opacity)) !important; + } + + .md\:hover\:bg-blue-400:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(96, 165, 250, var(--tw-bg-opacity)) !important; + } + + .md\:hover\:bg-blue-500:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)) !important; + } + + .md\:hover\:bg-blue-600:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(37, 99, 235, var(--tw-bg-opacity)) !important; + } + + .md\:hover\:bg-blue-700:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(29, 78, 216, var(--tw-bg-opacity)) !important; + } + + .md\:hover\:bg-blue-800:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(30, 64, 175, var(--tw-bg-opacity)) !important; + } + + .md\:hover\:bg-blue-900:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(30, 58, 138, var(--tw-bg-opacity)) !important; + } + + .md\:hover\:bg-indigo-50:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(238, 242, 255, var(--tw-bg-opacity)) !important; + } + + .md\:hover\:bg-indigo-100:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(224, 231, 255, var(--tw-bg-opacity)) !important; + } + + .md\:hover\:bg-indigo-200:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(199, 210, 254, var(--tw-bg-opacity)) !important; + } + + .md\:hover\:bg-indigo-300:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(165, 180, 252, var(--tw-bg-opacity)) !important; + } + + .md\:hover\:bg-indigo-400:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(129, 140, 248, var(--tw-bg-opacity)) !important; + } + + .md\:hover\:bg-indigo-500:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(99, 102, 241, var(--tw-bg-opacity)) !important; + } + + .md\:hover\:bg-indigo-600:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(79, 70, 229, var(--tw-bg-opacity)) !important; + } + + .md\:hover\:bg-indigo-700:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(67, 56, 202, var(--tw-bg-opacity)) !important; + } + + .md\:hover\:bg-indigo-800:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(55, 48, 163, var(--tw-bg-opacity)) !important; + } + + .md\:hover\:bg-indigo-900:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(49, 46, 129, var(--tw-bg-opacity)) !important; + } + + .md\:hover\:bg-purple-50:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(245, 243, 255, var(--tw-bg-opacity)) !important; + } + + .md\:hover\:bg-purple-100:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(237, 233, 254, var(--tw-bg-opacity)) !important; + } + + .md\:hover\:bg-purple-200:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(221, 214, 254, var(--tw-bg-opacity)) !important; + } + + .md\:hover\:bg-purple-300:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(196, 181, 253, var(--tw-bg-opacity)) !important; + } + + .md\:hover\:bg-purple-400:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(167, 139, 250, var(--tw-bg-opacity)) !important; + } + + .md\:hover\:bg-purple-500:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(139, 92, 246, var(--tw-bg-opacity)) !important; + } + + .md\:hover\:bg-purple-600:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(124, 58, 237, var(--tw-bg-opacity)) !important; + } + + .md\:hover\:bg-purple-700:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(109, 40, 217, var(--tw-bg-opacity)) !important; + } + + .md\:hover\:bg-purple-800:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(91, 33, 182, var(--tw-bg-opacity)) !important; + } + + .md\:hover\:bg-purple-900:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(76, 29, 149, var(--tw-bg-opacity)) !important; + } + + .md\:hover\:bg-pink-50:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(253, 242, 248, var(--tw-bg-opacity)) !important; + } + + .md\:hover\:bg-pink-100:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 231, 243, var(--tw-bg-opacity)) !important; + } + + .md\:hover\:bg-pink-200:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(251, 207, 232, var(--tw-bg-opacity)) !important; + } + + .md\:hover\:bg-pink-300:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(249, 168, 212, var(--tw-bg-opacity)) !important; + } + + .md\:hover\:bg-pink-400:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(244, 114, 182, var(--tw-bg-opacity)) !important; + } + + .md\:hover\:bg-pink-500:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(236, 72, 153, var(--tw-bg-opacity)) !important; + } + + .md\:hover\:bg-pink-600:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(219, 39, 119, var(--tw-bg-opacity)) !important; + } + + .md\:hover\:bg-pink-700:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(190, 24, 93, var(--tw-bg-opacity)) !important; + } + + .md\:hover\:bg-pink-800:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(157, 23, 77, var(--tw-bg-opacity)) !important; + } + + .md\:hover\:bg-pink-900:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(131, 24, 67, var(--tw-bg-opacity)) !important; + } + + .md\:hover\:bg-primary:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(0, 49, 151, var(--tw-bg-opacity)) !important; + } + + .md\:focus\:bg-transparent:focus { + background-color: transparent !important; + } + + .md\:focus\:bg-current:focus { + background-color: currentColor !important; + } + + .md\:focus\:bg-black:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important; + } + + .md\:focus\:bg-white:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important; + } + + .md\:focus\:bg-gray-50:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)) !important; + } + + .md\:focus\:bg-gray-100:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)) !important; + } + + .md\:focus\:bg-gray-200:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)) !important; + } + + .md\:focus\:bg-gray-300:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)) !important; + } + + .md\:focus\:bg-gray-400:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)) !important; + } + + .md\:focus\:bg-gray-500:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)) !important; + } + + .md\:focus\:bg-gray-600:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)) !important; + } + + .md\:focus\:bg-gray-700:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)) !important; + } + + .md\:focus\:bg-gray-800:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)) !important; + } + + .md\:focus\:bg-gray-900:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)) !important; + } + + .md\:focus\:bg-red-50:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 242, 242, var(--tw-bg-opacity)) !important; + } + + .md\:focus\:bg-red-100:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 226, 226, var(--tw-bg-opacity)) !important; + } + + .md\:focus\:bg-red-200:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 202, 202, var(--tw-bg-opacity)) !important; + } + + .md\:focus\:bg-red-300:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 165, 165, var(--tw-bg-opacity)) !important; + } + + .md\:focus\:bg-red-400:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(248, 113, 113, var(--tw-bg-opacity)) !important; + } + + .md\:focus\:bg-red-500:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(239, 68, 68, var(--tw-bg-opacity)) !important; + } + + .md\:focus\:bg-red-600:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(220, 38, 38, var(--tw-bg-opacity)) !important; + } + + .md\:focus\:bg-red-700:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(185, 28, 28, var(--tw-bg-opacity)) !important; + } + + .md\:focus\:bg-red-800:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(153, 27, 27, var(--tw-bg-opacity)) !important; + } + + .md\:focus\:bg-red-900:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(127, 29, 29, var(--tw-bg-opacity)) !important; + } + + .md\:focus\:bg-yellow-50:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(255, 251, 235, var(--tw-bg-opacity)) !important; + } + + .md\:focus\:bg-yellow-100:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 243, 199, var(--tw-bg-opacity)) !important; + } + + .md\:focus\:bg-yellow-200:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(253, 230, 138, var(--tw-bg-opacity)) !important; + } + + .md\:focus\:bg-yellow-300:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 211, 77, var(--tw-bg-opacity)) !important; + } + + .md\:focus\:bg-yellow-400:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(251, 191, 36, var(--tw-bg-opacity)) !important; + } + + .md\:focus\:bg-yellow-500:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)) !important; + } + + .md\:focus\:bg-yellow-600:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(217, 119, 6, var(--tw-bg-opacity)) !important; + } + + .md\:focus\:bg-yellow-700:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(180, 83, 9, var(--tw-bg-opacity)) !important; + } + + .md\:focus\:bg-yellow-800:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(146, 64, 14, var(--tw-bg-opacity)) !important; + } + + .md\:focus\:bg-yellow-900:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(120, 53, 15, var(--tw-bg-opacity)) !important; + } + + .md\:focus\:bg-green-50:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(236, 253, 245, var(--tw-bg-opacity)) !important; + } + + .md\:focus\:bg-green-100:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(209, 250, 229, var(--tw-bg-opacity)) !important; + } + + .md\:focus\:bg-green-200:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(167, 243, 208, var(--tw-bg-opacity)) !important; + } + + .md\:focus\:bg-green-300:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(110, 231, 183, var(--tw-bg-opacity)) !important; + } + + .md\:focus\:bg-green-400:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(52, 211, 153, var(--tw-bg-opacity)) !important; + } + + .md\:focus\:bg-green-500:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(16, 185, 129, var(--tw-bg-opacity)) !important; + } + + .md\:focus\:bg-green-600:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(5, 150, 105, var(--tw-bg-opacity)) !important; + } + + .md\:focus\:bg-green-700:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(4, 120, 87, var(--tw-bg-opacity)) !important; + } + + .md\:focus\:bg-green-800:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(6, 95, 70, var(--tw-bg-opacity)) !important; + } + + .md\:focus\:bg-green-900:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(6, 78, 59, var(--tw-bg-opacity)) !important; + } + + .md\:focus\:bg-blue-50:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(239, 246, 255, var(--tw-bg-opacity)) !important; + } + + .md\:focus\:bg-blue-100:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(219, 234, 254, var(--tw-bg-opacity)) !important; + } + + .md\:focus\:bg-blue-200:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(191, 219, 254, var(--tw-bg-opacity)) !important; + } + + .md\:focus\:bg-blue-300:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(147, 197, 253, var(--tw-bg-opacity)) !important; + } + + .md\:focus\:bg-blue-400:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(96, 165, 250, var(--tw-bg-opacity)) !important; + } + + .md\:focus\:bg-blue-500:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)) !important; + } + + .md\:focus\:bg-blue-600:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(37, 99, 235, var(--tw-bg-opacity)) !important; + } + + .md\:focus\:bg-blue-700:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(29, 78, 216, var(--tw-bg-opacity)) !important; + } + + .md\:focus\:bg-blue-800:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(30, 64, 175, var(--tw-bg-opacity)) !important; + } + + .md\:focus\:bg-blue-900:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(30, 58, 138, var(--tw-bg-opacity)) !important; + } + + .md\:focus\:bg-indigo-50:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(238, 242, 255, var(--tw-bg-opacity)) !important; + } + + .md\:focus\:bg-indigo-100:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(224, 231, 255, var(--tw-bg-opacity)) !important; + } + + .md\:focus\:bg-indigo-200:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(199, 210, 254, var(--tw-bg-opacity)) !important; + } + + .md\:focus\:bg-indigo-300:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(165, 180, 252, var(--tw-bg-opacity)) !important; + } + + .md\:focus\:bg-indigo-400:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(129, 140, 248, var(--tw-bg-opacity)) !important; + } + + .md\:focus\:bg-indigo-500:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(99, 102, 241, var(--tw-bg-opacity)) !important; + } + + .md\:focus\:bg-indigo-600:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(79, 70, 229, var(--tw-bg-opacity)) !important; + } + + .md\:focus\:bg-indigo-700:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(67, 56, 202, var(--tw-bg-opacity)) !important; + } + + .md\:focus\:bg-indigo-800:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(55, 48, 163, var(--tw-bg-opacity)) !important; + } + + .md\:focus\:bg-indigo-900:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(49, 46, 129, var(--tw-bg-opacity)) !important; + } + + .md\:focus\:bg-purple-50:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(245, 243, 255, var(--tw-bg-opacity)) !important; + } + + .md\:focus\:bg-purple-100:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(237, 233, 254, var(--tw-bg-opacity)) !important; + } + + .md\:focus\:bg-purple-200:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(221, 214, 254, var(--tw-bg-opacity)) !important; + } + + .md\:focus\:bg-purple-300:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(196, 181, 253, var(--tw-bg-opacity)) !important; + } + + .md\:focus\:bg-purple-400:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(167, 139, 250, var(--tw-bg-opacity)) !important; + } + + .md\:focus\:bg-purple-500:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(139, 92, 246, var(--tw-bg-opacity)) !important; + } + + .md\:focus\:bg-purple-600:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(124, 58, 237, var(--tw-bg-opacity)) !important; + } + + .md\:focus\:bg-purple-700:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(109, 40, 217, var(--tw-bg-opacity)) !important; + } + + .md\:focus\:bg-purple-800:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(91, 33, 182, var(--tw-bg-opacity)) !important; + } + + .md\:focus\:bg-purple-900:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(76, 29, 149, var(--tw-bg-opacity)) !important; + } + + .md\:focus\:bg-pink-50:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(253, 242, 248, var(--tw-bg-opacity)) !important; + } + + .md\:focus\:bg-pink-100:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 231, 243, var(--tw-bg-opacity)) !important; + } + + .md\:focus\:bg-pink-200:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(251, 207, 232, var(--tw-bg-opacity)) !important; + } + + .md\:focus\:bg-pink-300:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(249, 168, 212, var(--tw-bg-opacity)) !important; + } + + .md\:focus\:bg-pink-400:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(244, 114, 182, var(--tw-bg-opacity)) !important; + } + + .md\:focus\:bg-pink-500:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(236, 72, 153, var(--tw-bg-opacity)) !important; + } + + .md\:focus\:bg-pink-600:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(219, 39, 119, var(--tw-bg-opacity)) !important; + } + + .md\:focus\:bg-pink-700:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(190, 24, 93, var(--tw-bg-opacity)) !important; + } + + .md\:focus\:bg-pink-800:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(157, 23, 77, var(--tw-bg-opacity)) !important; + } + + .md\:focus\:bg-pink-900:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(131, 24, 67, var(--tw-bg-opacity)) !important; + } + + .md\:focus\:bg-primary:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(0, 49, 151, var(--tw-bg-opacity)) !important; + } + + .md\:bg-none { + background-image: none !important; + } + + .md\:bg-gradient-to-t { + background-image: linear-gradient(to top, var(--tw-gradient-stops)) !important; + } + + .md\:bg-gradient-to-tr { + background-image: linear-gradient(to top right, var(--tw-gradient-stops)) !important; + } + + .md\:bg-gradient-to-r { + background-image: linear-gradient(to right, var(--tw-gradient-stops)) !important; + } + + .md\:bg-gradient-to-br { + background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)) !important; + } + + .md\:bg-gradient-to-b { + background-image: linear-gradient(to bottom, var(--tw-gradient-stops)) !important; + } + + .md\:bg-gradient-to-bl { + background-image: linear-gradient(to bottom left, var(--tw-gradient-stops)) !important; + } + + .md\:bg-gradient-to-l { + background-image: linear-gradient(to left, var(--tw-gradient-stops)) !important; + } + + .md\:bg-gradient-to-tl { + background-image: linear-gradient(to top left, var(--tw-gradient-stops)) !important; + } + + .md\:from-transparent { + --tw-gradient-from: transparent !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; + } + + .md\:from-current { + --tw-gradient-from: currentColor !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; + } + + .md\:from-black { + --tw-gradient-from: #000 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; + } + + .md\:from-white { + --tw-gradient-from: #fff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; + } + + .md\:from-gray-50 { + --tw-gradient-from: #f9fafb !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)) !important; + } + + .md\:from-gray-100 { + --tw-gradient-from: #f3f4f6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)) !important; + } + + .md\:from-gray-200 { + --tw-gradient-from: #e5e7eb !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)) !important; + } + + .md\:from-gray-300 { + --tw-gradient-from: #d1d5db !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)) !important; + } + + .md\:from-gray-400 { + --tw-gradient-from: #9ca3af !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)) !important; + } + + .md\:from-gray-500 { + --tw-gradient-from: #6b7280 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)) !important; + } + + .md\:from-gray-600 { + --tw-gradient-from: #4b5563 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)) !important; + } + + .md\:from-gray-700 { + --tw-gradient-from: #374151 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)) !important; + } + + .md\:from-gray-800 { + --tw-gradient-from: #1f2937 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)) !important; + } + + .md\:from-gray-900 { + --tw-gradient-from: #111827 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)) !important; + } + + .md\:from-red-50 { + --tw-gradient-from: #fef2f2 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)) !important; + } + + .md\:from-red-100 { + --tw-gradient-from: #fee2e2 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)) !important; + } + + .md\:from-red-200 { + --tw-gradient-from: #fecaca !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)) !important; + } + + .md\:from-red-300 { + --tw-gradient-from: #fca5a5 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)) !important; + } + + .md\:from-red-400 { + --tw-gradient-from: #f87171 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)) !important; + } + + .md\:from-red-500 { + --tw-gradient-from: #ef4444 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)) !important; + } + + .md\:from-red-600 { + --tw-gradient-from: #dc2626 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)) !important; + } + + .md\:from-red-700 { + --tw-gradient-from: #b91c1c !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)) !important; + } + + .md\:from-red-800 { + --tw-gradient-from: #991b1b !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)) !important; + } + + .md\:from-red-900 { + --tw-gradient-from: #7f1d1d !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important; + } + + .md\:from-yellow-50 { + --tw-gradient-from: #fffbeb !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)) !important; + } + + .md\:from-yellow-100 { + --tw-gradient-from: #fef3c7 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)) !important; + } + + .md\:from-yellow-200 { + --tw-gradient-from: #fde68a !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)) !important; + } + + .md\:from-yellow-300 { + --tw-gradient-from: #fcd34d !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)) !important; + } + + .md\:from-yellow-400 { + --tw-gradient-from: #fbbf24 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)) !important; + } + + .md\:from-yellow-500 { + --tw-gradient-from: #f59e0b !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)) !important; + } + + .md\:from-yellow-600 { + --tw-gradient-from: #d97706 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)) !important; + } + + .md\:from-yellow-700 { + --tw-gradient-from: #b45309 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)) !important; + } + + .md\:from-yellow-800 { + --tw-gradient-from: #92400e !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)) !important; + } + + .md\:from-yellow-900 { + --tw-gradient-from: #78350f !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)) !important; + } + + .md\:from-green-50 { + --tw-gradient-from: #ecfdf5 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)) !important; + } + + .md\:from-green-100 { + --tw-gradient-from: #d1fae5 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)) !important; + } + + .md\:from-green-200 { + --tw-gradient-from: #a7f3d0 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)) !important; + } + + .md\:from-green-300 { + --tw-gradient-from: #6ee7b7 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)) !important; + } + + .md\:from-green-400 { + --tw-gradient-from: #34d399 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)) !important; + } + + .md\:from-green-500 { + --tw-gradient-from: #10b981 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)) !important; + } + + .md\:from-green-600 { + --tw-gradient-from: #059669 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)) !important; + } + + .md\:from-green-700 { + --tw-gradient-from: #047857 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)) !important; + } + + .md\:from-green-800 { + --tw-gradient-from: #065f46 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)) !important; + } + + .md\:from-green-900 { + --tw-gradient-from: #064e3b !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)) !important; + } + + .md\:from-blue-50 { + --tw-gradient-from: #eff6ff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)) !important; + } + + .md\:from-blue-100 { + --tw-gradient-from: #dbeafe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)) !important; + } + + .md\:from-blue-200 { + --tw-gradient-from: #bfdbfe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)) !important; + } + + .md\:from-blue-300 { + --tw-gradient-from: #93c5fd !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)) !important; + } + + .md\:from-blue-400 { + --tw-gradient-from: #60a5fa !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)) !important; + } + + .md\:from-blue-500 { + --tw-gradient-from: #3b82f6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)) !important; + } + + .md\:from-blue-600 { + --tw-gradient-from: #2563eb !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)) !important; + } + + .md\:from-blue-700 { + --tw-gradient-from: #1d4ed8 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)) !important; + } + + .md\:from-blue-800 { + --tw-gradient-from: #1e40af !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)) !important; + } + + .md\:from-blue-900 { + --tw-gradient-from: #1e3a8a !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)) !important; + } + + .md\:from-indigo-50 { + --tw-gradient-from: #eef2ff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)) !important; + } + + .md\:from-indigo-100 { + --tw-gradient-from: #e0e7ff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)) !important; + } + + .md\:from-indigo-200 { + --tw-gradient-from: #c7d2fe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)) !important; + } + + .md\:from-indigo-300 { + --tw-gradient-from: #a5b4fc !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)) !important; + } + + .md\:from-indigo-400 { + --tw-gradient-from: #818cf8 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)) !important; + } + + .md\:from-indigo-500 { + --tw-gradient-from: #6366f1 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)) !important; + } + + .md\:from-indigo-600 { + --tw-gradient-from: #4f46e5 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)) !important; + } + + .md\:from-indigo-700 { + --tw-gradient-from: #4338ca !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)) !important; + } + + .md\:from-indigo-800 { + --tw-gradient-from: #3730a3 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)) !important; + } + + .md\:from-indigo-900 { + --tw-gradient-from: #312e81 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)) !important; + } + + .md\:from-purple-50 { + --tw-gradient-from: #f5f3ff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)) !important; + } + + .md\:from-purple-100 { + --tw-gradient-from: #ede9fe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)) !important; + } + + .md\:from-purple-200 { + --tw-gradient-from: #ddd6fe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)) !important; + } + + .md\:from-purple-300 { + --tw-gradient-from: #c4b5fd !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)) !important; + } + + .md\:from-purple-400 { + --tw-gradient-from: #a78bfa !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)) !important; + } + + .md\:from-purple-500 { + --tw-gradient-from: #8b5cf6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)) !important; + } + + .md\:from-purple-600 { + --tw-gradient-from: #7c3aed !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)) !important; + } + + .md\:from-purple-700 { + --tw-gradient-from: #6d28d9 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)) !important; + } + + .md\:from-purple-800 { + --tw-gradient-from: #5b21b6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)) !important; + } + + .md\:from-purple-900 { + --tw-gradient-from: #4c1d95 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)) !important; + } + + .md\:from-pink-50 { + --tw-gradient-from: #fdf2f8 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)) !important; + } + + .md\:from-pink-100 { + --tw-gradient-from: #fce7f3 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)) !important; + } + + .md\:from-pink-200 { + --tw-gradient-from: #fbcfe8 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)) !important; + } + + .md\:from-pink-300 { + --tw-gradient-from: #f9a8d4 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)) !important; + } + + .md\:from-pink-400 { + --tw-gradient-from: #f472b6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)) !important; + } + + .md\:from-pink-500 { + --tw-gradient-from: #ec4899 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)) !important; + } + + .md\:from-pink-600 { + --tw-gradient-from: #db2777 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)) !important; + } + + .md\:from-pink-700 { + --tw-gradient-from: #be185d !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)) !important; + } + + .md\:from-pink-800 { + --tw-gradient-from: #9d174d !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)) !important; + } + + .md\:from-pink-900 { + --tw-gradient-from: #831843 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)) !important; + } + + .md\:from-primary { + --tw-gradient-from: #003197 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 49, 151, 0)) !important; + } + + .md\:via-transparent { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; + } + + .md\:via-current { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; + } + + .md\:via-black { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; + } + + .md\:via-white { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; + } + + .md\:via-gray-50 { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)) !important; + } + + .md\:via-gray-100 { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)) !important; + } + + .md\:via-gray-200 { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)) !important; + } + + .md\:via-gray-300 { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)) !important; + } + + .md\:via-gray-400 { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)) !important; + } + + .md\:via-gray-500 { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)) !important; + } + + .md\:via-gray-600 { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)) !important; + } + + .md\:via-gray-700 { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)) !important; + } + + .md\:via-gray-800 { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)) !important; + } + + .md\:via-gray-900 { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)) !important; + } + + .md\:via-red-50 { + --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)) !important; + } + + .md\:via-red-100 { + --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)) !important; + } + + .md\:via-red-200 { + --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)) !important; + } + + .md\:via-red-300 { + --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)) !important; + } + + .md\:via-red-400 { + --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)) !important; + } + + .md\:via-red-500 { + --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)) !important; + } + + .md\:via-red-600 { + --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)) !important; + } + + .md\:via-red-700 { + --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)) !important; + } + + .md\:via-red-800 { + --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)) !important; + } + + .md\:via-red-900 { + --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important; + } + + .md\:via-yellow-50 { + --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)) !important; + } + + .md\:via-yellow-100 { + --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)) !important; + } + + .md\:via-yellow-200 { + --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)) !important; + } + + .md\:via-yellow-300 { + --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)) !important; + } + + .md\:via-yellow-400 { + --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)) !important; + } + + .md\:via-yellow-500 { + --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)) !important; + } + + .md\:via-yellow-600 { + --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)) !important; + } + + .md\:via-yellow-700 { + --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)) !important; + } + + .md\:via-yellow-800 { + --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)) !important; + } + + .md\:via-yellow-900 { + --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)) !important; + } + + .md\:via-green-50 { + --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)) !important; + } + + .md\:via-green-100 { + --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)) !important; + } + + .md\:via-green-200 { + --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)) !important; + } + + .md\:via-green-300 { + --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)) !important; + } + + .md\:via-green-400 { + --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)) !important; + } + + .md\:via-green-500 { + --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)) !important; + } + + .md\:via-green-600 { + --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)) !important; + } + + .md\:via-green-700 { + --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)) !important; + } + + .md\:via-green-800 { + --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)) !important; + } + + .md\:via-green-900 { + --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)) !important; + } + + .md\:via-blue-50 { + --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)) !important; + } + + .md\:via-blue-100 { + --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)) !important; + } + + .md\:via-blue-200 { + --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)) !important; + } + + .md\:via-blue-300 { + --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)) !important; + } + + .md\:via-blue-400 { + --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)) !important; + } + + .md\:via-blue-500 { + --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)) !important; + } + + .md\:via-blue-600 { + --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)) !important; + } + + .md\:via-blue-700 { + --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)) !important; + } + + .md\:via-blue-800 { + --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)) !important; + } + + .md\:via-blue-900 { + --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)) !important; + } + + .md\:via-indigo-50 { + --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)) !important; + } + + .md\:via-indigo-100 { + --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)) !important; + } + + .md\:via-indigo-200 { + --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)) !important; + } + + .md\:via-indigo-300 { + --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)) !important; + } + + .md\:via-indigo-400 { + --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)) !important; + } + + .md\:via-indigo-500 { + --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)) !important; + } + + .md\:via-indigo-600 { + --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)) !important; + } + + .md\:via-indigo-700 { + --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)) !important; + } + + .md\:via-indigo-800 { + --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)) !important; + } + + .md\:via-indigo-900 { + --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)) !important; + } + + .md\:via-purple-50 { + --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)) !important; + } + + .md\:via-purple-100 { + --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)) !important; + } + + .md\:via-purple-200 { + --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)) !important; + } + + .md\:via-purple-300 { + --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)) !important; + } + + .md\:via-purple-400 { + --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)) !important; + } + + .md\:via-purple-500 { + --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)) !important; + } + + .md\:via-purple-600 { + --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)) !important; + } + + .md\:via-purple-700 { + --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)) !important; + } + + .md\:via-purple-800 { + --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)) !important; + } + + .md\:via-purple-900 { + --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)) !important; + } + + .md\:via-pink-50 { + --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)) !important; + } + + .md\:via-pink-100 { + --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)) !important; + } + + .md\:via-pink-200 { + --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)) !important; + } + + .md\:via-pink-300 { + --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)) !important; + } + + .md\:via-pink-400 { + --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)) !important; + } + + .md\:via-pink-500 { + --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)) !important; + } + + .md\:via-pink-600 { + --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)) !important; + } + + .md\:via-pink-700 { + --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)) !important; + } + + .md\:via-pink-800 { + --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)) !important; + } + + .md\:via-pink-900 { + --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)) !important; + } + + .md\:via-primary { + --tw-gradient-stops: var(--tw-gradient-from), #003197, var(--tw-gradient-to, rgba(0, 49, 151, 0)) !important; + } + + .md\:to-transparent { + --tw-gradient-to: transparent !important; + } + + .md\:to-current { + --tw-gradient-to: currentColor !important; + } + + .md\:to-black { + --tw-gradient-to: #000 !important; + } + + .md\:to-white { + --tw-gradient-to: #fff !important; + } + + .md\:to-gray-50 { + --tw-gradient-to: #f9fafb !important; + } + + .md\:to-gray-100 { + --tw-gradient-to: #f3f4f6 !important; + } + + .md\:to-gray-200 { + --tw-gradient-to: #e5e7eb !important; + } + + .md\:to-gray-300 { + --tw-gradient-to: #d1d5db !important; + } + + .md\:to-gray-400 { + --tw-gradient-to: #9ca3af !important; + } + + .md\:to-gray-500 { + --tw-gradient-to: #6b7280 !important; + } + + .md\:to-gray-600 { + --tw-gradient-to: #4b5563 !important; + } + + .md\:to-gray-700 { + --tw-gradient-to: #374151 !important; + } + + .md\:to-gray-800 { + --tw-gradient-to: #1f2937 !important; + } + + .md\:to-gray-900 { + --tw-gradient-to: #111827 !important; + } + + .md\:to-red-50 { + --tw-gradient-to: #fef2f2 !important; + } + + .md\:to-red-100 { + --tw-gradient-to: #fee2e2 !important; + } + + .md\:to-red-200 { + --tw-gradient-to: #fecaca !important; + } + + .md\:to-red-300 { + --tw-gradient-to: #fca5a5 !important; + } + + .md\:to-red-400 { + --tw-gradient-to: #f87171 !important; + } + + .md\:to-red-500 { + --tw-gradient-to: #ef4444 !important; + } + + .md\:to-red-600 { + --tw-gradient-to: #dc2626 !important; + } + + .md\:to-red-700 { + --tw-gradient-to: #b91c1c !important; + } + + .md\:to-red-800 { + --tw-gradient-to: #991b1b !important; + } + + .md\:to-red-900 { + --tw-gradient-to: #7f1d1d !important; + } + + .md\:to-yellow-50 { + --tw-gradient-to: #fffbeb !important; + } + + .md\:to-yellow-100 { + --tw-gradient-to: #fef3c7 !important; + } + + .md\:to-yellow-200 { + --tw-gradient-to: #fde68a !important; + } + + .md\:to-yellow-300 { + --tw-gradient-to: #fcd34d !important; + } + + .md\:to-yellow-400 { + --tw-gradient-to: #fbbf24 !important; + } + + .md\:to-yellow-500 { + --tw-gradient-to: #f59e0b !important; + } + + .md\:to-yellow-600 { + --tw-gradient-to: #d97706 !important; + } + + .md\:to-yellow-700 { + --tw-gradient-to: #b45309 !important; + } + + .md\:to-yellow-800 { + --tw-gradient-to: #92400e !important; + } + + .md\:to-yellow-900 { + --tw-gradient-to: #78350f !important; + } + + .md\:to-green-50 { + --tw-gradient-to: #ecfdf5 !important; + } + + .md\:to-green-100 { + --tw-gradient-to: #d1fae5 !important; + } + + .md\:to-green-200 { + --tw-gradient-to: #a7f3d0 !important; + } + + .md\:to-green-300 { + --tw-gradient-to: #6ee7b7 !important; + } + + .md\:to-green-400 { + --tw-gradient-to: #34d399 !important; + } + + .md\:to-green-500 { + --tw-gradient-to: #10b981 !important; + } + + .md\:to-green-600 { + --tw-gradient-to: #059669 !important; + } + + .md\:to-green-700 { + --tw-gradient-to: #047857 !important; + } + + .md\:to-green-800 { + --tw-gradient-to: #065f46 !important; + } + + .md\:to-green-900 { + --tw-gradient-to: #064e3b !important; + } + + .md\:to-blue-50 { + --tw-gradient-to: #eff6ff !important; + } + + .md\:to-blue-100 { + --tw-gradient-to: #dbeafe !important; + } + + .md\:to-blue-200 { + --tw-gradient-to: #bfdbfe !important; + } + + .md\:to-blue-300 { + --tw-gradient-to: #93c5fd !important; + } + + .md\:to-blue-400 { + --tw-gradient-to: #60a5fa !important; + } + + .md\:to-blue-500 { + --tw-gradient-to: #3b82f6 !important; + } + + .md\:to-blue-600 { + --tw-gradient-to: #2563eb !important; + } + + .md\:to-blue-700 { + --tw-gradient-to: #1d4ed8 !important; + } + + .md\:to-blue-800 { + --tw-gradient-to: #1e40af !important; + } + + .md\:to-blue-900 { + --tw-gradient-to: #1e3a8a !important; + } + + .md\:to-indigo-50 { + --tw-gradient-to: #eef2ff !important; + } + + .md\:to-indigo-100 { + --tw-gradient-to: #e0e7ff !important; + } + + .md\:to-indigo-200 { + --tw-gradient-to: #c7d2fe !important; + } + + .md\:to-indigo-300 { + --tw-gradient-to: #a5b4fc !important; + } + + .md\:to-indigo-400 { + --tw-gradient-to: #818cf8 !important; + } + + .md\:to-indigo-500 { + --tw-gradient-to: #6366f1 !important; + } + + .md\:to-indigo-600 { + --tw-gradient-to: #4f46e5 !important; + } + + .md\:to-indigo-700 { + --tw-gradient-to: #4338ca !important; + } + + .md\:to-indigo-800 { + --tw-gradient-to: #3730a3 !important; + } + + .md\:to-indigo-900 { + --tw-gradient-to: #312e81 !important; + } + + .md\:to-purple-50 { + --tw-gradient-to: #f5f3ff !important; + } + + .md\:to-purple-100 { + --tw-gradient-to: #ede9fe !important; + } + + .md\:to-purple-200 { + --tw-gradient-to: #ddd6fe !important; + } + + .md\:to-purple-300 { + --tw-gradient-to: #c4b5fd !important; + } + + .md\:to-purple-400 { + --tw-gradient-to: #a78bfa !important; + } + + .md\:to-purple-500 { + --tw-gradient-to: #8b5cf6 !important; + } + + .md\:to-purple-600 { + --tw-gradient-to: #7c3aed !important; + } + + .md\:to-purple-700 { + --tw-gradient-to: #6d28d9 !important; + } + + .md\:to-purple-800 { + --tw-gradient-to: #5b21b6 !important; + } + + .md\:to-purple-900 { + --tw-gradient-to: #4c1d95 !important; + } + + .md\:to-pink-50 { + --tw-gradient-to: #fdf2f8 !important; + } + + .md\:to-pink-100 { + --tw-gradient-to: #fce7f3 !important; + } + + .md\:to-pink-200 { + --tw-gradient-to: #fbcfe8 !important; + } + + .md\:to-pink-300 { + --tw-gradient-to: #f9a8d4 !important; + } + + .md\:to-pink-400 { + --tw-gradient-to: #f472b6 !important; + } + + .md\:to-pink-500 { + --tw-gradient-to: #ec4899 !important; + } + + .md\:to-pink-600 { + --tw-gradient-to: #db2777 !important; + } + + .md\:to-pink-700 { + --tw-gradient-to: #be185d !important; + } + + .md\:to-pink-800 { + --tw-gradient-to: #9d174d !important; + } + + .md\:to-pink-900 { + --tw-gradient-to: #831843 !important; + } + + .md\:to-primary { + --tw-gradient-to: #003197 !important; + } + + .md\:hover\:from-transparent:hover { + --tw-gradient-from: transparent !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; + } + + .md\:hover\:from-current:hover { + --tw-gradient-from: currentColor !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; + } + + .md\:hover\:from-black:hover { + --tw-gradient-from: #000 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; + } + + .md\:hover\:from-white:hover { + --tw-gradient-from: #fff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; + } + + .md\:hover\:from-gray-50:hover { + --tw-gradient-from: #f9fafb !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)) !important; + } + + .md\:hover\:from-gray-100:hover { + --tw-gradient-from: #f3f4f6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)) !important; + } + + .md\:hover\:from-gray-200:hover { + --tw-gradient-from: #e5e7eb !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)) !important; + } + + .md\:hover\:from-gray-300:hover { + --tw-gradient-from: #d1d5db !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)) !important; + } + + .md\:hover\:from-gray-400:hover { + --tw-gradient-from: #9ca3af !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)) !important; + } + + .md\:hover\:from-gray-500:hover { + --tw-gradient-from: #6b7280 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)) !important; + } + + .md\:hover\:from-gray-600:hover { + --tw-gradient-from: #4b5563 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)) !important; + } + + .md\:hover\:from-gray-700:hover { + --tw-gradient-from: #374151 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)) !important; + } + + .md\:hover\:from-gray-800:hover { + --tw-gradient-from: #1f2937 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)) !important; + } + + .md\:hover\:from-gray-900:hover { + --tw-gradient-from: #111827 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)) !important; + } + + .md\:hover\:from-red-50:hover { + --tw-gradient-from: #fef2f2 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)) !important; + } + + .md\:hover\:from-red-100:hover { + --tw-gradient-from: #fee2e2 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)) !important; + } + + .md\:hover\:from-red-200:hover { + --tw-gradient-from: #fecaca !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)) !important; + } + + .md\:hover\:from-red-300:hover { + --tw-gradient-from: #fca5a5 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)) !important; + } + + .md\:hover\:from-red-400:hover { + --tw-gradient-from: #f87171 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)) !important; + } + + .md\:hover\:from-red-500:hover { + --tw-gradient-from: #ef4444 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)) !important; + } + + .md\:hover\:from-red-600:hover { + --tw-gradient-from: #dc2626 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)) !important; + } + + .md\:hover\:from-red-700:hover { + --tw-gradient-from: #b91c1c !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)) !important; + } + + .md\:hover\:from-red-800:hover { + --tw-gradient-from: #991b1b !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)) !important; + } + + .md\:hover\:from-red-900:hover { + --tw-gradient-from: #7f1d1d !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important; + } + + .md\:hover\:from-yellow-50:hover { + --tw-gradient-from: #fffbeb !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)) !important; + } + + .md\:hover\:from-yellow-100:hover { + --tw-gradient-from: #fef3c7 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)) !important; + } + + .md\:hover\:from-yellow-200:hover { + --tw-gradient-from: #fde68a !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)) !important; + } + + .md\:hover\:from-yellow-300:hover { + --tw-gradient-from: #fcd34d !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)) !important; + } + + .md\:hover\:from-yellow-400:hover { + --tw-gradient-from: #fbbf24 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)) !important; + } + + .md\:hover\:from-yellow-500:hover { + --tw-gradient-from: #f59e0b !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)) !important; + } + + .md\:hover\:from-yellow-600:hover { + --tw-gradient-from: #d97706 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)) !important; + } + + .md\:hover\:from-yellow-700:hover { + --tw-gradient-from: #b45309 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)) !important; + } + + .md\:hover\:from-yellow-800:hover { + --tw-gradient-from: #92400e !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)) !important; + } + + .md\:hover\:from-yellow-900:hover { + --tw-gradient-from: #78350f !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)) !important; + } + + .md\:hover\:from-green-50:hover { + --tw-gradient-from: #ecfdf5 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)) !important; + } + + .md\:hover\:from-green-100:hover { + --tw-gradient-from: #d1fae5 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)) !important; + } + + .md\:hover\:from-green-200:hover { + --tw-gradient-from: #a7f3d0 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)) !important; + } + + .md\:hover\:from-green-300:hover { + --tw-gradient-from: #6ee7b7 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)) !important; + } + + .md\:hover\:from-green-400:hover { + --tw-gradient-from: #34d399 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)) !important; + } + + .md\:hover\:from-green-500:hover { + --tw-gradient-from: #10b981 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)) !important; + } + + .md\:hover\:from-green-600:hover { + --tw-gradient-from: #059669 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)) !important; + } + + .md\:hover\:from-green-700:hover { + --tw-gradient-from: #047857 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)) !important; + } + + .md\:hover\:from-green-800:hover { + --tw-gradient-from: #065f46 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)) !important; + } + + .md\:hover\:from-green-900:hover { + --tw-gradient-from: #064e3b !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)) !important; + } + + .md\:hover\:from-blue-50:hover { + --tw-gradient-from: #eff6ff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)) !important; + } + + .md\:hover\:from-blue-100:hover { + --tw-gradient-from: #dbeafe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)) !important; + } + + .md\:hover\:from-blue-200:hover { + --tw-gradient-from: #bfdbfe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)) !important; + } + + .md\:hover\:from-blue-300:hover { + --tw-gradient-from: #93c5fd !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)) !important; + } + + .md\:hover\:from-blue-400:hover { + --tw-gradient-from: #60a5fa !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)) !important; + } + + .md\:hover\:from-blue-500:hover { + --tw-gradient-from: #3b82f6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)) !important; + } + + .md\:hover\:from-blue-600:hover { + --tw-gradient-from: #2563eb !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)) !important; + } + + .md\:hover\:from-blue-700:hover { + --tw-gradient-from: #1d4ed8 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)) !important; + } + + .md\:hover\:from-blue-800:hover { + --tw-gradient-from: #1e40af !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)) !important; + } + + .md\:hover\:from-blue-900:hover { + --tw-gradient-from: #1e3a8a !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)) !important; + } + + .md\:hover\:from-indigo-50:hover { + --tw-gradient-from: #eef2ff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)) !important; + } + + .md\:hover\:from-indigo-100:hover { + --tw-gradient-from: #e0e7ff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)) !important; + } + + .md\:hover\:from-indigo-200:hover { + --tw-gradient-from: #c7d2fe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)) !important; + } + + .md\:hover\:from-indigo-300:hover { + --tw-gradient-from: #a5b4fc !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)) !important; + } + + .md\:hover\:from-indigo-400:hover { + --tw-gradient-from: #818cf8 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)) !important; + } + + .md\:hover\:from-indigo-500:hover { + --tw-gradient-from: #6366f1 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)) !important; + } + + .md\:hover\:from-indigo-600:hover { + --tw-gradient-from: #4f46e5 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)) !important; + } + + .md\:hover\:from-indigo-700:hover { + --tw-gradient-from: #4338ca !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)) !important; + } + + .md\:hover\:from-indigo-800:hover { + --tw-gradient-from: #3730a3 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)) !important; + } + + .md\:hover\:from-indigo-900:hover { + --tw-gradient-from: #312e81 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)) !important; + } + + .md\:hover\:from-purple-50:hover { + --tw-gradient-from: #f5f3ff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)) !important; + } + + .md\:hover\:from-purple-100:hover { + --tw-gradient-from: #ede9fe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)) !important; + } + + .md\:hover\:from-purple-200:hover { + --tw-gradient-from: #ddd6fe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)) !important; + } + + .md\:hover\:from-purple-300:hover { + --tw-gradient-from: #c4b5fd !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)) !important; + } + + .md\:hover\:from-purple-400:hover { + --tw-gradient-from: #a78bfa !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)) !important; + } + + .md\:hover\:from-purple-500:hover { + --tw-gradient-from: #8b5cf6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)) !important; + } + + .md\:hover\:from-purple-600:hover { + --tw-gradient-from: #7c3aed !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)) !important; + } + + .md\:hover\:from-purple-700:hover { + --tw-gradient-from: #6d28d9 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)) !important; + } + + .md\:hover\:from-purple-800:hover { + --tw-gradient-from: #5b21b6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)) !important; + } + + .md\:hover\:from-purple-900:hover { + --tw-gradient-from: #4c1d95 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)) !important; + } + + .md\:hover\:from-pink-50:hover { + --tw-gradient-from: #fdf2f8 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)) !important; + } + + .md\:hover\:from-pink-100:hover { + --tw-gradient-from: #fce7f3 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)) !important; + } + + .md\:hover\:from-pink-200:hover { + --tw-gradient-from: #fbcfe8 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)) !important; + } + + .md\:hover\:from-pink-300:hover { + --tw-gradient-from: #f9a8d4 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)) !important; + } + + .md\:hover\:from-pink-400:hover { + --tw-gradient-from: #f472b6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)) !important; + } + + .md\:hover\:from-pink-500:hover { + --tw-gradient-from: #ec4899 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)) !important; + } + + .md\:hover\:from-pink-600:hover { + --tw-gradient-from: #db2777 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)) !important; + } + + .md\:hover\:from-pink-700:hover { + --tw-gradient-from: #be185d !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)) !important; + } + + .md\:hover\:from-pink-800:hover { + --tw-gradient-from: #9d174d !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)) !important; + } + + .md\:hover\:from-pink-900:hover { + --tw-gradient-from: #831843 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)) !important; + } + + .md\:hover\:from-primary:hover { + --tw-gradient-from: #003197 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 49, 151, 0)) !important; + } + + .md\:hover\:via-transparent:hover { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; + } + + .md\:hover\:via-current:hover { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; + } + + .md\:hover\:via-black:hover { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; + } + + .md\:hover\:via-white:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; + } + + .md\:hover\:via-gray-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)) !important; + } + + .md\:hover\:via-gray-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)) !important; + } + + .md\:hover\:via-gray-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)) !important; + } + + .md\:hover\:via-gray-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)) !important; + } + + .md\:hover\:via-gray-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)) !important; + } + + .md\:hover\:via-gray-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)) !important; + } + + .md\:hover\:via-gray-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)) !important; + } + + .md\:hover\:via-gray-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)) !important; + } + + .md\:hover\:via-gray-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)) !important; + } + + .md\:hover\:via-gray-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)) !important; + } + + .md\:hover\:via-red-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)) !important; + } + + .md\:hover\:via-red-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)) !important; + } + + .md\:hover\:via-red-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)) !important; + } + + .md\:hover\:via-red-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)) !important; + } + + .md\:hover\:via-red-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)) !important; + } + + .md\:hover\:via-red-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)) !important; + } + + .md\:hover\:via-red-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)) !important; + } + + .md\:hover\:via-red-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)) !important; + } + + .md\:hover\:via-red-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)) !important; + } + + .md\:hover\:via-red-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important; + } + + .md\:hover\:via-yellow-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)) !important; + } + + .md\:hover\:via-yellow-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)) !important; + } + + .md\:hover\:via-yellow-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)) !important; + } + + .md\:hover\:via-yellow-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)) !important; + } + + .md\:hover\:via-yellow-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)) !important; + } + + .md\:hover\:via-yellow-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)) !important; + } + + .md\:hover\:via-yellow-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)) !important; + } + + .md\:hover\:via-yellow-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)) !important; + } + + .md\:hover\:via-yellow-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)) !important; + } + + .md\:hover\:via-yellow-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)) !important; + } + + .md\:hover\:via-green-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)) !important; + } + + .md\:hover\:via-green-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)) !important; + } + + .md\:hover\:via-green-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)) !important; + } + + .md\:hover\:via-green-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)) !important; + } + + .md\:hover\:via-green-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)) !important; + } + + .md\:hover\:via-green-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)) !important; + } + + .md\:hover\:via-green-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)) !important; + } + + .md\:hover\:via-green-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)) !important; + } + + .md\:hover\:via-green-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)) !important; + } + + .md\:hover\:via-green-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)) !important; + } + + .md\:hover\:via-blue-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)) !important; + } + + .md\:hover\:via-blue-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)) !important; + } + + .md\:hover\:via-blue-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)) !important; + } + + .md\:hover\:via-blue-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)) !important; + } + + .md\:hover\:via-blue-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)) !important; + } + + .md\:hover\:via-blue-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)) !important; + } + + .md\:hover\:via-blue-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)) !important; + } + + .md\:hover\:via-blue-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)) !important; + } + + .md\:hover\:via-blue-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)) !important; + } + + .md\:hover\:via-blue-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)) !important; + } + + .md\:hover\:via-indigo-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)) !important; + } + + .md\:hover\:via-indigo-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)) !important; + } + + .md\:hover\:via-indigo-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)) !important; + } + + .md\:hover\:via-indigo-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)) !important; + } + + .md\:hover\:via-indigo-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)) !important; + } + + .md\:hover\:via-indigo-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)) !important; + } + + .md\:hover\:via-indigo-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)) !important; + } + + .md\:hover\:via-indigo-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)) !important; + } + + .md\:hover\:via-indigo-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)) !important; + } + + .md\:hover\:via-indigo-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)) !important; + } + + .md\:hover\:via-purple-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)) !important; + } + + .md\:hover\:via-purple-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)) !important; + } + + .md\:hover\:via-purple-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)) !important; + } + + .md\:hover\:via-purple-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)) !important; + } + + .md\:hover\:via-purple-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)) !important; + } + + .md\:hover\:via-purple-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)) !important; + } + + .md\:hover\:via-purple-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)) !important; + } + + .md\:hover\:via-purple-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)) !important; + } + + .md\:hover\:via-purple-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)) !important; + } + + .md\:hover\:via-purple-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)) !important; + } + + .md\:hover\:via-pink-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)) !important; + } + + .md\:hover\:via-pink-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)) !important; + } + + .md\:hover\:via-pink-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)) !important; + } + + .md\:hover\:via-pink-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)) !important; + } + + .md\:hover\:via-pink-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)) !important; + } + + .md\:hover\:via-pink-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)) !important; + } + + .md\:hover\:via-pink-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)) !important; + } + + .md\:hover\:via-pink-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)) !important; + } + + .md\:hover\:via-pink-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)) !important; + } + + .md\:hover\:via-pink-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)) !important; + } + + .md\:hover\:via-primary:hover { + --tw-gradient-stops: var(--tw-gradient-from), #003197, var(--tw-gradient-to, rgba(0, 49, 151, 0)) !important; + } + + .md\:hover\:to-transparent:hover { + --tw-gradient-to: transparent !important; + } + + .md\:hover\:to-current:hover { + --tw-gradient-to: currentColor !important; + } + + .md\:hover\:to-black:hover { + --tw-gradient-to: #000 !important; + } + + .md\:hover\:to-white:hover { + --tw-gradient-to: #fff !important; + } + + .md\:hover\:to-gray-50:hover { + --tw-gradient-to: #f9fafb !important; + } + + .md\:hover\:to-gray-100:hover { + --tw-gradient-to: #f3f4f6 !important; + } + + .md\:hover\:to-gray-200:hover { + --tw-gradient-to: #e5e7eb !important; + } + + .md\:hover\:to-gray-300:hover { + --tw-gradient-to: #d1d5db !important; + } + + .md\:hover\:to-gray-400:hover { + --tw-gradient-to: #9ca3af !important; + } + + .md\:hover\:to-gray-500:hover { + --tw-gradient-to: #6b7280 !important; + } + + .md\:hover\:to-gray-600:hover { + --tw-gradient-to: #4b5563 !important; + } + + .md\:hover\:to-gray-700:hover { + --tw-gradient-to: #374151 !important; + } + + .md\:hover\:to-gray-800:hover { + --tw-gradient-to: #1f2937 !important; + } + + .md\:hover\:to-gray-900:hover { + --tw-gradient-to: #111827 !important; + } + + .md\:hover\:to-red-50:hover { + --tw-gradient-to: #fef2f2 !important; + } + + .md\:hover\:to-red-100:hover { + --tw-gradient-to: #fee2e2 !important; + } + + .md\:hover\:to-red-200:hover { + --tw-gradient-to: #fecaca !important; + } + + .md\:hover\:to-red-300:hover { + --tw-gradient-to: #fca5a5 !important; + } + + .md\:hover\:to-red-400:hover { + --tw-gradient-to: #f87171 !important; + } + + .md\:hover\:to-red-500:hover { + --tw-gradient-to: #ef4444 !important; + } + + .md\:hover\:to-red-600:hover { + --tw-gradient-to: #dc2626 !important; + } + + .md\:hover\:to-red-700:hover { + --tw-gradient-to: #b91c1c !important; + } + + .md\:hover\:to-red-800:hover { + --tw-gradient-to: #991b1b !important; + } + + .md\:hover\:to-red-900:hover { + --tw-gradient-to: #7f1d1d !important; + } + + .md\:hover\:to-yellow-50:hover { + --tw-gradient-to: #fffbeb !important; + } + + .md\:hover\:to-yellow-100:hover { + --tw-gradient-to: #fef3c7 !important; + } + + .md\:hover\:to-yellow-200:hover { + --tw-gradient-to: #fde68a !important; + } + + .md\:hover\:to-yellow-300:hover { + --tw-gradient-to: #fcd34d !important; + } + + .md\:hover\:to-yellow-400:hover { + --tw-gradient-to: #fbbf24 !important; + } + + .md\:hover\:to-yellow-500:hover { + --tw-gradient-to: #f59e0b !important; + } + + .md\:hover\:to-yellow-600:hover { + --tw-gradient-to: #d97706 !important; + } + + .md\:hover\:to-yellow-700:hover { + --tw-gradient-to: #b45309 !important; + } + + .md\:hover\:to-yellow-800:hover { + --tw-gradient-to: #92400e !important; + } + + .md\:hover\:to-yellow-900:hover { + --tw-gradient-to: #78350f !important; + } + + .md\:hover\:to-green-50:hover { + --tw-gradient-to: #ecfdf5 !important; + } + + .md\:hover\:to-green-100:hover { + --tw-gradient-to: #d1fae5 !important; + } + + .md\:hover\:to-green-200:hover { + --tw-gradient-to: #a7f3d0 !important; + } + + .md\:hover\:to-green-300:hover { + --tw-gradient-to: #6ee7b7 !important; + } + + .md\:hover\:to-green-400:hover { + --tw-gradient-to: #34d399 !important; + } + + .md\:hover\:to-green-500:hover { + --tw-gradient-to: #10b981 !important; + } + + .md\:hover\:to-green-600:hover { + --tw-gradient-to: #059669 !important; + } + + .md\:hover\:to-green-700:hover { + --tw-gradient-to: #047857 !important; + } + + .md\:hover\:to-green-800:hover { + --tw-gradient-to: #065f46 !important; + } + + .md\:hover\:to-green-900:hover { + --tw-gradient-to: #064e3b !important; + } + + .md\:hover\:to-blue-50:hover { + --tw-gradient-to: #eff6ff !important; + } + + .md\:hover\:to-blue-100:hover { + --tw-gradient-to: #dbeafe !important; + } + + .md\:hover\:to-blue-200:hover { + --tw-gradient-to: #bfdbfe !important; + } + + .md\:hover\:to-blue-300:hover { + --tw-gradient-to: #93c5fd !important; + } + + .md\:hover\:to-blue-400:hover { + --tw-gradient-to: #60a5fa !important; + } + + .md\:hover\:to-blue-500:hover { + --tw-gradient-to: #3b82f6 !important; + } + + .md\:hover\:to-blue-600:hover { + --tw-gradient-to: #2563eb !important; + } + + .md\:hover\:to-blue-700:hover { + --tw-gradient-to: #1d4ed8 !important; + } + + .md\:hover\:to-blue-800:hover { + --tw-gradient-to: #1e40af !important; + } + + .md\:hover\:to-blue-900:hover { + --tw-gradient-to: #1e3a8a !important; + } + + .md\:hover\:to-indigo-50:hover { + --tw-gradient-to: #eef2ff !important; + } + + .md\:hover\:to-indigo-100:hover { + --tw-gradient-to: #e0e7ff !important; + } + + .md\:hover\:to-indigo-200:hover { + --tw-gradient-to: #c7d2fe !important; + } + + .md\:hover\:to-indigo-300:hover { + --tw-gradient-to: #a5b4fc !important; + } + + .md\:hover\:to-indigo-400:hover { + --tw-gradient-to: #818cf8 !important; + } + + .md\:hover\:to-indigo-500:hover { + --tw-gradient-to: #6366f1 !important; + } + + .md\:hover\:to-indigo-600:hover { + --tw-gradient-to: #4f46e5 !important; + } + + .md\:hover\:to-indigo-700:hover { + --tw-gradient-to: #4338ca !important; + } + + .md\:hover\:to-indigo-800:hover { + --tw-gradient-to: #3730a3 !important; + } + + .md\:hover\:to-indigo-900:hover { + --tw-gradient-to: #312e81 !important; + } + + .md\:hover\:to-purple-50:hover { + --tw-gradient-to: #f5f3ff !important; + } + + .md\:hover\:to-purple-100:hover { + --tw-gradient-to: #ede9fe !important; + } + + .md\:hover\:to-purple-200:hover { + --tw-gradient-to: #ddd6fe !important; + } + + .md\:hover\:to-purple-300:hover { + --tw-gradient-to: #c4b5fd !important; + } + + .md\:hover\:to-purple-400:hover { + --tw-gradient-to: #a78bfa !important; + } + + .md\:hover\:to-purple-500:hover { + --tw-gradient-to: #8b5cf6 !important; + } + + .md\:hover\:to-purple-600:hover { + --tw-gradient-to: #7c3aed !important; + } + + .md\:hover\:to-purple-700:hover { + --tw-gradient-to: #6d28d9 !important; + } + + .md\:hover\:to-purple-800:hover { + --tw-gradient-to: #5b21b6 !important; + } + + .md\:hover\:to-purple-900:hover { + --tw-gradient-to: #4c1d95 !important; + } + + .md\:hover\:to-pink-50:hover { + --tw-gradient-to: #fdf2f8 !important; + } + + .md\:hover\:to-pink-100:hover { + --tw-gradient-to: #fce7f3 !important; + } + + .md\:hover\:to-pink-200:hover { + --tw-gradient-to: #fbcfe8 !important; + } + + .md\:hover\:to-pink-300:hover { + --tw-gradient-to: #f9a8d4 !important; + } + + .md\:hover\:to-pink-400:hover { + --tw-gradient-to: #f472b6 !important; + } + + .md\:hover\:to-pink-500:hover { + --tw-gradient-to: #ec4899 !important; + } + + .md\:hover\:to-pink-600:hover { + --tw-gradient-to: #db2777 !important; + } + + .md\:hover\:to-pink-700:hover { + --tw-gradient-to: #be185d !important; + } + + .md\:hover\:to-pink-800:hover { + --tw-gradient-to: #9d174d !important; + } + + .md\:hover\:to-pink-900:hover { + --tw-gradient-to: #831843 !important; + } + + .md\:hover\:to-primary:hover { + --tw-gradient-to: #003197 !important; + } + + .md\:focus\:from-transparent:focus { + --tw-gradient-from: transparent !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; + } + + .md\:focus\:from-current:focus { + --tw-gradient-from: currentColor !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; + } + + .md\:focus\:from-black:focus { + --tw-gradient-from: #000 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; + } + + .md\:focus\:from-white:focus { + --tw-gradient-from: #fff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; + } + + .md\:focus\:from-gray-50:focus { + --tw-gradient-from: #f9fafb !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)) !important; + } + + .md\:focus\:from-gray-100:focus { + --tw-gradient-from: #f3f4f6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)) !important; + } + + .md\:focus\:from-gray-200:focus { + --tw-gradient-from: #e5e7eb !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)) !important; + } + + .md\:focus\:from-gray-300:focus { + --tw-gradient-from: #d1d5db !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)) !important; + } + + .md\:focus\:from-gray-400:focus { + --tw-gradient-from: #9ca3af !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)) !important; + } + + .md\:focus\:from-gray-500:focus { + --tw-gradient-from: #6b7280 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)) !important; + } + + .md\:focus\:from-gray-600:focus { + --tw-gradient-from: #4b5563 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)) !important; + } + + .md\:focus\:from-gray-700:focus { + --tw-gradient-from: #374151 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)) !important; + } + + .md\:focus\:from-gray-800:focus { + --tw-gradient-from: #1f2937 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)) !important; + } + + .md\:focus\:from-gray-900:focus { + --tw-gradient-from: #111827 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)) !important; + } + + .md\:focus\:from-red-50:focus { + --tw-gradient-from: #fef2f2 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)) !important; + } + + .md\:focus\:from-red-100:focus { + --tw-gradient-from: #fee2e2 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)) !important; + } + + .md\:focus\:from-red-200:focus { + --tw-gradient-from: #fecaca !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)) !important; + } + + .md\:focus\:from-red-300:focus { + --tw-gradient-from: #fca5a5 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)) !important; + } + + .md\:focus\:from-red-400:focus { + --tw-gradient-from: #f87171 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)) !important; + } + + .md\:focus\:from-red-500:focus { + --tw-gradient-from: #ef4444 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)) !important; + } + + .md\:focus\:from-red-600:focus { + --tw-gradient-from: #dc2626 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)) !important; + } + + .md\:focus\:from-red-700:focus { + --tw-gradient-from: #b91c1c !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)) !important; + } + + .md\:focus\:from-red-800:focus { + --tw-gradient-from: #991b1b !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)) !important; + } + + .md\:focus\:from-red-900:focus { + --tw-gradient-from: #7f1d1d !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important; + } + + .md\:focus\:from-yellow-50:focus { + --tw-gradient-from: #fffbeb !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)) !important; + } + + .md\:focus\:from-yellow-100:focus { + --tw-gradient-from: #fef3c7 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)) !important; + } + + .md\:focus\:from-yellow-200:focus { + --tw-gradient-from: #fde68a !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)) !important; + } + + .md\:focus\:from-yellow-300:focus { + --tw-gradient-from: #fcd34d !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)) !important; + } + + .md\:focus\:from-yellow-400:focus { + --tw-gradient-from: #fbbf24 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)) !important; + } + + .md\:focus\:from-yellow-500:focus { + --tw-gradient-from: #f59e0b !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)) !important; + } + + .md\:focus\:from-yellow-600:focus { + --tw-gradient-from: #d97706 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)) !important; + } + + .md\:focus\:from-yellow-700:focus { + --tw-gradient-from: #b45309 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)) !important; + } + + .md\:focus\:from-yellow-800:focus { + --tw-gradient-from: #92400e !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)) !important; + } + + .md\:focus\:from-yellow-900:focus { + --tw-gradient-from: #78350f !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)) !important; + } + + .md\:focus\:from-green-50:focus { + --tw-gradient-from: #ecfdf5 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)) !important; + } + + .md\:focus\:from-green-100:focus { + --tw-gradient-from: #d1fae5 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)) !important; + } + + .md\:focus\:from-green-200:focus { + --tw-gradient-from: #a7f3d0 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)) !important; + } + + .md\:focus\:from-green-300:focus { + --tw-gradient-from: #6ee7b7 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)) !important; + } + + .md\:focus\:from-green-400:focus { + --tw-gradient-from: #34d399 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)) !important; + } + + .md\:focus\:from-green-500:focus { + --tw-gradient-from: #10b981 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)) !important; + } + + .md\:focus\:from-green-600:focus { + --tw-gradient-from: #059669 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)) !important; + } + + .md\:focus\:from-green-700:focus { + --tw-gradient-from: #047857 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)) !important; + } + + .md\:focus\:from-green-800:focus { + --tw-gradient-from: #065f46 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)) !important; + } + + .md\:focus\:from-green-900:focus { + --tw-gradient-from: #064e3b !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)) !important; + } + + .md\:focus\:from-blue-50:focus { + --tw-gradient-from: #eff6ff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)) !important; + } + + .md\:focus\:from-blue-100:focus { + --tw-gradient-from: #dbeafe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)) !important; + } + + .md\:focus\:from-blue-200:focus { + --tw-gradient-from: #bfdbfe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)) !important; + } + + .md\:focus\:from-blue-300:focus { + --tw-gradient-from: #93c5fd !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)) !important; + } + + .md\:focus\:from-blue-400:focus { + --tw-gradient-from: #60a5fa !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)) !important; + } + + .md\:focus\:from-blue-500:focus { + --tw-gradient-from: #3b82f6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)) !important; + } + + .md\:focus\:from-blue-600:focus { + --tw-gradient-from: #2563eb !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)) !important; + } + + .md\:focus\:from-blue-700:focus { + --tw-gradient-from: #1d4ed8 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)) !important; + } + + .md\:focus\:from-blue-800:focus { + --tw-gradient-from: #1e40af !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)) !important; + } + + .md\:focus\:from-blue-900:focus { + --tw-gradient-from: #1e3a8a !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)) !important; + } + + .md\:focus\:from-indigo-50:focus { + --tw-gradient-from: #eef2ff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)) !important; + } + + .md\:focus\:from-indigo-100:focus { + --tw-gradient-from: #e0e7ff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)) !important; + } + + .md\:focus\:from-indigo-200:focus { + --tw-gradient-from: #c7d2fe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)) !important; + } + + .md\:focus\:from-indigo-300:focus { + --tw-gradient-from: #a5b4fc !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)) !important; + } + + .md\:focus\:from-indigo-400:focus { + --tw-gradient-from: #818cf8 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)) !important; + } + + .md\:focus\:from-indigo-500:focus { + --tw-gradient-from: #6366f1 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)) !important; + } + + .md\:focus\:from-indigo-600:focus { + --tw-gradient-from: #4f46e5 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)) !important; + } + + .md\:focus\:from-indigo-700:focus { + --tw-gradient-from: #4338ca !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)) !important; + } + + .md\:focus\:from-indigo-800:focus { + --tw-gradient-from: #3730a3 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)) !important; + } + + .md\:focus\:from-indigo-900:focus { + --tw-gradient-from: #312e81 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)) !important; + } + + .md\:focus\:from-purple-50:focus { + --tw-gradient-from: #f5f3ff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)) !important; + } + + .md\:focus\:from-purple-100:focus { + --tw-gradient-from: #ede9fe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)) !important; + } + + .md\:focus\:from-purple-200:focus { + --tw-gradient-from: #ddd6fe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)) !important; + } + + .md\:focus\:from-purple-300:focus { + --tw-gradient-from: #c4b5fd !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)) !important; + } + + .md\:focus\:from-purple-400:focus { + --tw-gradient-from: #a78bfa !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)) !important; + } + + .md\:focus\:from-purple-500:focus { + --tw-gradient-from: #8b5cf6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)) !important; + } + + .md\:focus\:from-purple-600:focus { + --tw-gradient-from: #7c3aed !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)) !important; + } + + .md\:focus\:from-purple-700:focus { + --tw-gradient-from: #6d28d9 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)) !important; + } + + .md\:focus\:from-purple-800:focus { + --tw-gradient-from: #5b21b6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)) !important; + } + + .md\:focus\:from-purple-900:focus { + --tw-gradient-from: #4c1d95 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)) !important; + } + + .md\:focus\:from-pink-50:focus { + --tw-gradient-from: #fdf2f8 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)) !important; + } + + .md\:focus\:from-pink-100:focus { + --tw-gradient-from: #fce7f3 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)) !important; + } + + .md\:focus\:from-pink-200:focus { + --tw-gradient-from: #fbcfe8 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)) !important; + } + + .md\:focus\:from-pink-300:focus { + --tw-gradient-from: #f9a8d4 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)) !important; + } + + .md\:focus\:from-pink-400:focus { + --tw-gradient-from: #f472b6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)) !important; + } + + .md\:focus\:from-pink-500:focus { + --tw-gradient-from: #ec4899 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)) !important; + } + + .md\:focus\:from-pink-600:focus { + --tw-gradient-from: #db2777 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)) !important; + } + + .md\:focus\:from-pink-700:focus { + --tw-gradient-from: #be185d !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)) !important; + } + + .md\:focus\:from-pink-800:focus { + --tw-gradient-from: #9d174d !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)) !important; + } + + .md\:focus\:from-pink-900:focus { + --tw-gradient-from: #831843 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)) !important; + } + + .md\:focus\:from-primary:focus { + --tw-gradient-from: #003197 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 49, 151, 0)) !important; + } + + .md\:focus\:via-transparent:focus { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; + } + + .md\:focus\:via-current:focus { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; + } + + .md\:focus\:via-black:focus { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; + } + + .md\:focus\:via-white:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; + } + + .md\:focus\:via-gray-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)) !important; + } + + .md\:focus\:via-gray-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)) !important; + } + + .md\:focus\:via-gray-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)) !important; + } + + .md\:focus\:via-gray-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)) !important; + } + + .md\:focus\:via-gray-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)) !important; + } + + .md\:focus\:via-gray-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)) !important; + } + + .md\:focus\:via-gray-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)) !important; + } + + .md\:focus\:via-gray-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)) !important; + } + + .md\:focus\:via-gray-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)) !important; + } + + .md\:focus\:via-gray-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)) !important; + } + + .md\:focus\:via-red-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)) !important; + } + + .md\:focus\:via-red-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)) !important; + } + + .md\:focus\:via-red-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)) !important; + } + + .md\:focus\:via-red-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)) !important; + } + + .md\:focus\:via-red-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)) !important; + } + + .md\:focus\:via-red-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)) !important; + } + + .md\:focus\:via-red-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)) !important; + } + + .md\:focus\:via-red-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)) !important; + } + + .md\:focus\:via-red-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)) !important; + } + + .md\:focus\:via-red-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important; + } + + .md\:focus\:via-yellow-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)) !important; + } + + .md\:focus\:via-yellow-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)) !important; + } + + .md\:focus\:via-yellow-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)) !important; + } + + .md\:focus\:via-yellow-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)) !important; + } + + .md\:focus\:via-yellow-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)) !important; + } + + .md\:focus\:via-yellow-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)) !important; + } + + .md\:focus\:via-yellow-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)) !important; + } + + .md\:focus\:via-yellow-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)) !important; + } + + .md\:focus\:via-yellow-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)) !important; + } + + .md\:focus\:via-yellow-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)) !important; + } + + .md\:focus\:via-green-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)) !important; + } + + .md\:focus\:via-green-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)) !important; + } + + .md\:focus\:via-green-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)) !important; + } + + .md\:focus\:via-green-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)) !important; + } + + .md\:focus\:via-green-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)) !important; + } + + .md\:focus\:via-green-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)) !important; + } + + .md\:focus\:via-green-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)) !important; + } + + .md\:focus\:via-green-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)) !important; + } + + .md\:focus\:via-green-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)) !important; + } + + .md\:focus\:via-green-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)) !important; + } + + .md\:focus\:via-blue-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)) !important; + } + + .md\:focus\:via-blue-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)) !important; + } + + .md\:focus\:via-blue-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)) !important; + } + + .md\:focus\:via-blue-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)) !important; + } + + .md\:focus\:via-blue-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)) !important; + } + + .md\:focus\:via-blue-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)) !important; + } + + .md\:focus\:via-blue-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)) !important; + } + + .md\:focus\:via-blue-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)) !important; + } + + .md\:focus\:via-blue-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)) !important; + } + + .md\:focus\:via-blue-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)) !important; + } + + .md\:focus\:via-indigo-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)) !important; + } + + .md\:focus\:via-indigo-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)) !important; + } + + .md\:focus\:via-indigo-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)) !important; + } + + .md\:focus\:via-indigo-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)) !important; + } + + .md\:focus\:via-indigo-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)) !important; + } + + .md\:focus\:via-indigo-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)) !important; + } + + .md\:focus\:via-indigo-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)) !important; + } + + .md\:focus\:via-indigo-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)) !important; + } + + .md\:focus\:via-indigo-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)) !important; + } + + .md\:focus\:via-indigo-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)) !important; + } + + .md\:focus\:via-purple-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)) !important; + } + + .md\:focus\:via-purple-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)) !important; + } + + .md\:focus\:via-purple-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)) !important; + } + + .md\:focus\:via-purple-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)) !important; + } + + .md\:focus\:via-purple-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)) !important; + } + + .md\:focus\:via-purple-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)) !important; + } + + .md\:focus\:via-purple-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)) !important; + } + + .md\:focus\:via-purple-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)) !important; + } + + .md\:focus\:via-purple-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)) !important; + } + + .md\:focus\:via-purple-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)) !important; + } + + .md\:focus\:via-pink-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)) !important; + } + + .md\:focus\:via-pink-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)) !important; + } + + .md\:focus\:via-pink-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)) !important; + } + + .md\:focus\:via-pink-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)) !important; + } + + .md\:focus\:via-pink-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)) !important; + } + + .md\:focus\:via-pink-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)) !important; + } + + .md\:focus\:via-pink-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)) !important; + } + + .md\:focus\:via-pink-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)) !important; + } + + .md\:focus\:via-pink-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)) !important; + } + + .md\:focus\:via-pink-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)) !important; + } + + .md\:focus\:via-primary:focus { + --tw-gradient-stops: var(--tw-gradient-from), #003197, var(--tw-gradient-to, rgba(0, 49, 151, 0)) !important; + } + + .md\:focus\:to-transparent:focus { + --tw-gradient-to: transparent !important; + } + + .md\:focus\:to-current:focus { + --tw-gradient-to: currentColor !important; + } + + .md\:focus\:to-black:focus { + --tw-gradient-to: #000 !important; + } + + .md\:focus\:to-white:focus { + --tw-gradient-to: #fff !important; + } + + .md\:focus\:to-gray-50:focus { + --tw-gradient-to: #f9fafb !important; + } + + .md\:focus\:to-gray-100:focus { + --tw-gradient-to: #f3f4f6 !important; + } + + .md\:focus\:to-gray-200:focus { + --tw-gradient-to: #e5e7eb !important; + } + + .md\:focus\:to-gray-300:focus { + --tw-gradient-to: #d1d5db !important; + } + + .md\:focus\:to-gray-400:focus { + --tw-gradient-to: #9ca3af !important; + } + + .md\:focus\:to-gray-500:focus { + --tw-gradient-to: #6b7280 !important; + } + + .md\:focus\:to-gray-600:focus { + --tw-gradient-to: #4b5563 !important; + } + + .md\:focus\:to-gray-700:focus { + --tw-gradient-to: #374151 !important; + } + + .md\:focus\:to-gray-800:focus { + --tw-gradient-to: #1f2937 !important; + } + + .md\:focus\:to-gray-900:focus { + --tw-gradient-to: #111827 !important; + } + + .md\:focus\:to-red-50:focus { + --tw-gradient-to: #fef2f2 !important; + } + + .md\:focus\:to-red-100:focus { + --tw-gradient-to: #fee2e2 !important; + } + + .md\:focus\:to-red-200:focus { + --tw-gradient-to: #fecaca !important; + } + + .md\:focus\:to-red-300:focus { + --tw-gradient-to: #fca5a5 !important; + } + + .md\:focus\:to-red-400:focus { + --tw-gradient-to: #f87171 !important; + } + + .md\:focus\:to-red-500:focus { + --tw-gradient-to: #ef4444 !important; + } + + .md\:focus\:to-red-600:focus { + --tw-gradient-to: #dc2626 !important; + } + + .md\:focus\:to-red-700:focus { + --tw-gradient-to: #b91c1c !important; + } + + .md\:focus\:to-red-800:focus { + --tw-gradient-to: #991b1b !important; + } + + .md\:focus\:to-red-900:focus { + --tw-gradient-to: #7f1d1d !important; + } + + .md\:focus\:to-yellow-50:focus { + --tw-gradient-to: #fffbeb !important; + } + + .md\:focus\:to-yellow-100:focus { + --tw-gradient-to: #fef3c7 !important; + } + + .md\:focus\:to-yellow-200:focus { + --tw-gradient-to: #fde68a !important; + } + + .md\:focus\:to-yellow-300:focus { + --tw-gradient-to: #fcd34d !important; + } + + .md\:focus\:to-yellow-400:focus { + --tw-gradient-to: #fbbf24 !important; + } + + .md\:focus\:to-yellow-500:focus { + --tw-gradient-to: #f59e0b !important; + } + + .md\:focus\:to-yellow-600:focus { + --tw-gradient-to: #d97706 !important; + } + + .md\:focus\:to-yellow-700:focus { + --tw-gradient-to: #b45309 !important; + } + + .md\:focus\:to-yellow-800:focus { + --tw-gradient-to: #92400e !important; + } + + .md\:focus\:to-yellow-900:focus { + --tw-gradient-to: #78350f !important; + } + + .md\:focus\:to-green-50:focus { + --tw-gradient-to: #ecfdf5 !important; + } + + .md\:focus\:to-green-100:focus { + --tw-gradient-to: #d1fae5 !important; + } + + .md\:focus\:to-green-200:focus { + --tw-gradient-to: #a7f3d0 !important; + } + + .md\:focus\:to-green-300:focus { + --tw-gradient-to: #6ee7b7 !important; + } + + .md\:focus\:to-green-400:focus { + --tw-gradient-to: #34d399 !important; + } + + .md\:focus\:to-green-500:focus { + --tw-gradient-to: #10b981 !important; + } + + .md\:focus\:to-green-600:focus { + --tw-gradient-to: #059669 !important; + } + + .md\:focus\:to-green-700:focus { + --tw-gradient-to: #047857 !important; + } + + .md\:focus\:to-green-800:focus { + --tw-gradient-to: #065f46 !important; + } + + .md\:focus\:to-green-900:focus { + --tw-gradient-to: #064e3b !important; + } + + .md\:focus\:to-blue-50:focus { + --tw-gradient-to: #eff6ff !important; + } + + .md\:focus\:to-blue-100:focus { + --tw-gradient-to: #dbeafe !important; + } + + .md\:focus\:to-blue-200:focus { + --tw-gradient-to: #bfdbfe !important; + } + + .md\:focus\:to-blue-300:focus { + --tw-gradient-to: #93c5fd !important; + } + + .md\:focus\:to-blue-400:focus { + --tw-gradient-to: #60a5fa !important; + } + + .md\:focus\:to-blue-500:focus { + --tw-gradient-to: #3b82f6 !important; + } + + .md\:focus\:to-blue-600:focus { + --tw-gradient-to: #2563eb !important; + } + + .md\:focus\:to-blue-700:focus { + --tw-gradient-to: #1d4ed8 !important; + } + + .md\:focus\:to-blue-800:focus { + --tw-gradient-to: #1e40af !important; + } + + .md\:focus\:to-blue-900:focus { + --tw-gradient-to: #1e3a8a !important; + } + + .md\:focus\:to-indigo-50:focus { + --tw-gradient-to: #eef2ff !important; + } + + .md\:focus\:to-indigo-100:focus { + --tw-gradient-to: #e0e7ff !important; + } + + .md\:focus\:to-indigo-200:focus { + --tw-gradient-to: #c7d2fe !important; + } + + .md\:focus\:to-indigo-300:focus { + --tw-gradient-to: #a5b4fc !important; + } + + .md\:focus\:to-indigo-400:focus { + --tw-gradient-to: #818cf8 !important; + } + + .md\:focus\:to-indigo-500:focus { + --tw-gradient-to: #6366f1 !important; + } + + .md\:focus\:to-indigo-600:focus { + --tw-gradient-to: #4f46e5 !important; + } + + .md\:focus\:to-indigo-700:focus { + --tw-gradient-to: #4338ca !important; + } + + .md\:focus\:to-indigo-800:focus { + --tw-gradient-to: #3730a3 !important; + } + + .md\:focus\:to-indigo-900:focus { + --tw-gradient-to: #312e81 !important; + } + + .md\:focus\:to-purple-50:focus { + --tw-gradient-to: #f5f3ff !important; + } + + .md\:focus\:to-purple-100:focus { + --tw-gradient-to: #ede9fe !important; + } + + .md\:focus\:to-purple-200:focus { + --tw-gradient-to: #ddd6fe !important; + } + + .md\:focus\:to-purple-300:focus { + --tw-gradient-to: #c4b5fd !important; + } + + .md\:focus\:to-purple-400:focus { + --tw-gradient-to: #a78bfa !important; + } + + .md\:focus\:to-purple-500:focus { + --tw-gradient-to: #8b5cf6 !important; + } + + .md\:focus\:to-purple-600:focus { + --tw-gradient-to: #7c3aed !important; + } + + .md\:focus\:to-purple-700:focus { + --tw-gradient-to: #6d28d9 !important; + } + + .md\:focus\:to-purple-800:focus { + --tw-gradient-to: #5b21b6 !important; + } + + .md\:focus\:to-purple-900:focus { + --tw-gradient-to: #4c1d95 !important; + } + + .md\:focus\:to-pink-50:focus { + --tw-gradient-to: #fdf2f8 !important; + } + + .md\:focus\:to-pink-100:focus { + --tw-gradient-to: #fce7f3 !important; + } + + .md\:focus\:to-pink-200:focus { + --tw-gradient-to: #fbcfe8 !important; + } + + .md\:focus\:to-pink-300:focus { + --tw-gradient-to: #f9a8d4 !important; + } + + .md\:focus\:to-pink-400:focus { + --tw-gradient-to: #f472b6 !important; + } + + .md\:focus\:to-pink-500:focus { + --tw-gradient-to: #ec4899 !important; + } + + .md\:focus\:to-pink-600:focus { + --tw-gradient-to: #db2777 !important; + } + + .md\:focus\:to-pink-700:focus { + --tw-gradient-to: #be185d !important; + } + + .md\:focus\:to-pink-800:focus { + --tw-gradient-to: #9d174d !important; + } + + .md\:focus\:to-pink-900:focus { + --tw-gradient-to: #831843 !important; + } + + .md\:focus\:to-primary:focus { + --tw-gradient-to: #003197 !important; + } + + .md\:bg-opacity-0 { + --tw-bg-opacity: 0 !important; + } + + .md\:bg-opacity-5 { + --tw-bg-opacity: 0.05 !important; + } + + .md\:bg-opacity-10 { + --tw-bg-opacity: 0.1 !important; + } + + .md\:bg-opacity-20 { + --tw-bg-opacity: 0.2 !important; + } + + .md\:bg-opacity-25 { + --tw-bg-opacity: 0.25 !important; + } + + .md\:bg-opacity-30 { + --tw-bg-opacity: 0.3 !important; + } + + .md\:bg-opacity-40 { + --tw-bg-opacity: 0.4 !important; + } + + .md\:bg-opacity-50 { + --tw-bg-opacity: 0.5 !important; + } + + .md\:bg-opacity-60 { + --tw-bg-opacity: 0.6 !important; + } + + .md\:bg-opacity-70 { + --tw-bg-opacity: 0.7 !important; + } + + .md\:bg-opacity-75 { + --tw-bg-opacity: 0.75 !important; + } + + .md\:bg-opacity-80 { + --tw-bg-opacity: 0.8 !important; + } + + .md\:bg-opacity-90 { + --tw-bg-opacity: 0.9 !important; + } + + .md\:bg-opacity-95 { + --tw-bg-opacity: 0.95 !important; + } + + .md\:bg-opacity-100 { + --tw-bg-opacity: 1 !important; + } + + .group:hover .md\:group-hover\:bg-opacity-0 { + --tw-bg-opacity: 0 !important; + } + + .group:hover .md\:group-hover\:bg-opacity-5 { + --tw-bg-opacity: 0.05 !important; + } + + .group:hover .md\:group-hover\:bg-opacity-10 { + --tw-bg-opacity: 0.1 !important; + } + + .group:hover .md\:group-hover\:bg-opacity-20 { + --tw-bg-opacity: 0.2 !important; + } + + .group:hover .md\:group-hover\:bg-opacity-25 { + --tw-bg-opacity: 0.25 !important; + } + + .group:hover .md\:group-hover\:bg-opacity-30 { + --tw-bg-opacity: 0.3 !important; + } + + .group:hover .md\:group-hover\:bg-opacity-40 { + --tw-bg-opacity: 0.4 !important; + } + + .group:hover .md\:group-hover\:bg-opacity-50 { + --tw-bg-opacity: 0.5 !important; + } + + .group:hover .md\:group-hover\:bg-opacity-60 { + --tw-bg-opacity: 0.6 !important; + } + + .group:hover .md\:group-hover\:bg-opacity-70 { + --tw-bg-opacity: 0.7 !important; + } + + .group:hover .md\:group-hover\:bg-opacity-75 { + --tw-bg-opacity: 0.75 !important; + } + + .group:hover .md\:group-hover\:bg-opacity-80 { + --tw-bg-opacity: 0.8 !important; + } + + .group:hover .md\:group-hover\:bg-opacity-90 { + --tw-bg-opacity: 0.9 !important; + } + + .group:hover .md\:group-hover\:bg-opacity-95 { + --tw-bg-opacity: 0.95 !important; + } + + .group:hover .md\:group-hover\:bg-opacity-100 { + --tw-bg-opacity: 1 !important; + } + + .md\:focus-within\:bg-opacity-0:focus-within { + --tw-bg-opacity: 0 !important; + } + + .md\:focus-within\:bg-opacity-5:focus-within { + --tw-bg-opacity: 0.05 !important; + } + + .md\:focus-within\:bg-opacity-10:focus-within { + --tw-bg-opacity: 0.1 !important; + } + + .md\:focus-within\:bg-opacity-20:focus-within { + --tw-bg-opacity: 0.2 !important; + } + + .md\:focus-within\:bg-opacity-25:focus-within { + --tw-bg-opacity: 0.25 !important; + } + + .md\:focus-within\:bg-opacity-30:focus-within { + --tw-bg-opacity: 0.3 !important; + } + + .md\:focus-within\:bg-opacity-40:focus-within { + --tw-bg-opacity: 0.4 !important; + } + + .md\:focus-within\:bg-opacity-50:focus-within { + --tw-bg-opacity: 0.5 !important; + } + + .md\:focus-within\:bg-opacity-60:focus-within { + --tw-bg-opacity: 0.6 !important; + } + + .md\:focus-within\:bg-opacity-70:focus-within { + --tw-bg-opacity: 0.7 !important; + } + + .md\:focus-within\:bg-opacity-75:focus-within { + --tw-bg-opacity: 0.75 !important; + } + + .md\:focus-within\:bg-opacity-80:focus-within { + --tw-bg-opacity: 0.8 !important; + } + + .md\:focus-within\:bg-opacity-90:focus-within { + --tw-bg-opacity: 0.9 !important; + } + + .md\:focus-within\:bg-opacity-95:focus-within { + --tw-bg-opacity: 0.95 !important; + } + + .md\:focus-within\:bg-opacity-100:focus-within { + --tw-bg-opacity: 1 !important; + } + + .md\:hover\:bg-opacity-0:hover { + --tw-bg-opacity: 0 !important; + } + + .md\:hover\:bg-opacity-5:hover { + --tw-bg-opacity: 0.05 !important; + } + + .md\:hover\:bg-opacity-10:hover { + --tw-bg-opacity: 0.1 !important; + } + + .md\:hover\:bg-opacity-20:hover { + --tw-bg-opacity: 0.2 !important; + } + + .md\:hover\:bg-opacity-25:hover { + --tw-bg-opacity: 0.25 !important; + } + + .md\:hover\:bg-opacity-30:hover { + --tw-bg-opacity: 0.3 !important; + } + + .md\:hover\:bg-opacity-40:hover { + --tw-bg-opacity: 0.4 !important; + } + + .md\:hover\:bg-opacity-50:hover { + --tw-bg-opacity: 0.5 !important; + } + + .md\:hover\:bg-opacity-60:hover { + --tw-bg-opacity: 0.6 !important; + } + + .md\:hover\:bg-opacity-70:hover { + --tw-bg-opacity: 0.7 !important; + } + + .md\:hover\:bg-opacity-75:hover { + --tw-bg-opacity: 0.75 !important; + } + + .md\:hover\:bg-opacity-80:hover { + --tw-bg-opacity: 0.8 !important; + } + + .md\:hover\:bg-opacity-90:hover { + --tw-bg-opacity: 0.9 !important; + } + + .md\:hover\:bg-opacity-95:hover { + --tw-bg-opacity: 0.95 !important; + } + + .md\:hover\:bg-opacity-100:hover { + --tw-bg-opacity: 1 !important; + } + + .md\:focus\:bg-opacity-0:focus { + --tw-bg-opacity: 0 !important; + } + + .md\:focus\:bg-opacity-5:focus { + --tw-bg-opacity: 0.05 !important; + } + + .md\:focus\:bg-opacity-10:focus { + --tw-bg-opacity: 0.1 !important; + } + + .md\:focus\:bg-opacity-20:focus { + --tw-bg-opacity: 0.2 !important; + } + + .md\:focus\:bg-opacity-25:focus { + --tw-bg-opacity: 0.25 !important; + } + + .md\:focus\:bg-opacity-30:focus { + --tw-bg-opacity: 0.3 !important; + } + + .md\:focus\:bg-opacity-40:focus { + --tw-bg-opacity: 0.4 !important; + } + + .md\:focus\:bg-opacity-50:focus { + --tw-bg-opacity: 0.5 !important; + } + + .md\:focus\:bg-opacity-60:focus { + --tw-bg-opacity: 0.6 !important; + } + + .md\:focus\:bg-opacity-70:focus { + --tw-bg-opacity: 0.7 !important; + } + + .md\:focus\:bg-opacity-75:focus { + --tw-bg-opacity: 0.75 !important; + } + + .md\:focus\:bg-opacity-80:focus { + --tw-bg-opacity: 0.8 !important; + } + + .md\:focus\:bg-opacity-90:focus { + --tw-bg-opacity: 0.9 !important; + } + + .md\:focus\:bg-opacity-95:focus { + --tw-bg-opacity: 0.95 !important; + } + + .md\:focus\:bg-opacity-100:focus { + --tw-bg-opacity: 1 !important; + } + + .md\:bg-bottom { + background-position: bottom !important; + } + + .md\:bg-center { + background-position: center !important; + } + + .md\:bg-left { + background-position: left !important; + } + + .md\:bg-left-bottom { + background-position: left bottom !important; + } + + .md\:bg-left-top { + background-position: left top !important; + } + + .md\:bg-right { + background-position: right !important; + } + + .md\:bg-right-bottom { + background-position: right bottom !important; + } + + .md\:bg-right-top { + background-position: right top !important; + } + + .md\:bg-top { + background-position: top !important; + } + + .md\:bg-repeat { + background-repeat: repeat !important; + } + + .md\:bg-no-repeat { + background-repeat: no-repeat !important; + } + + .md\:bg-repeat-x { + background-repeat: repeat-x !important; + } + + .md\:bg-repeat-y { + background-repeat: repeat-y !important; + } + + .md\:bg-repeat-round { + background-repeat: round !important; + } + + .md\:bg-repeat-space { + background-repeat: space !important; + } + + .md\:bg-auto { + background-size: auto !important; + } + + .md\:bg-cover { + background-size: cover !important; + } + + .md\:bg-contain { + background-size: contain !important; + } + + .md\:border-collapse { + border-collapse: collapse !important; + } + + .md\:border-separate { + border-collapse: separate !important; + } + + .md\:border-transparent { + border-color: transparent !important; + } + + .md\:border-current { + border-color: currentColor !important; + } + + .md\:border-black { + --tw-border-opacity: 1 !important; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important; + } + + .md\:border-white { + --tw-border-opacity: 1 !important; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important; + } + + .md\:border-gray-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)) !important; + } + + .md\:border-gray-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)) !important; + } + + .md\:border-gray-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)) !important; + } + + .md\:border-gray-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)) !important; + } + + .md\:border-gray-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)) !important; + } + + .md\:border-gray-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)) !important; + } + + .md\:border-gray-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)) !important; + } + + .md\:border-gray-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)) !important; + } + + .md\:border-gray-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)) !important; + } + + .md\:border-gray-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)) !important; + } + + .md\:border-red-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 242, 242, var(--tw-border-opacity)) !important; + } + + .md\:border-red-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 226, 226, var(--tw-border-opacity)) !important; + } + + .md\:border-red-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 202, 202, var(--tw-border-opacity)) !important; + } + + .md\:border-red-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 165, 165, var(--tw-border-opacity)) !important; + } + + .md\:border-red-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(248, 113, 113, var(--tw-border-opacity)) !important; + } + + .md\:border-red-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(239, 68, 68, var(--tw-border-opacity)) !important; + } + + .md\:border-red-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(220, 38, 38, var(--tw-border-opacity)) !important; + } + + .md\:border-red-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(185, 28, 28, var(--tw-border-opacity)) !important; + } + + .md\:border-red-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(153, 27, 27, var(--tw-border-opacity)) !important; + } + + .md\:border-red-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(127, 29, 29, var(--tw-border-opacity)) !important; + } + + .md\:border-yellow-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(255, 251, 235, var(--tw-border-opacity)) !important; + } + + .md\:border-yellow-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 243, 199, var(--tw-border-opacity)) !important; + } + + .md\:border-yellow-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(253, 230, 138, var(--tw-border-opacity)) !important; + } + + .md\:border-yellow-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 211, 77, var(--tw-border-opacity)) !important; + } + + .md\:border-yellow-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(251, 191, 36, var(--tw-border-opacity)) !important; + } + + .md\:border-yellow-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)) !important; + } + + .md\:border-yellow-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(217, 119, 6, var(--tw-border-opacity)) !important; + } + + .md\:border-yellow-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(180, 83, 9, var(--tw-border-opacity)) !important; + } + + .md\:border-yellow-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(146, 64, 14, var(--tw-border-opacity)) !important; + } + + .md\:border-yellow-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(120, 53, 15, var(--tw-border-opacity)) !important; + } + + .md\:border-green-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(236, 253, 245, var(--tw-border-opacity)) !important; + } + + .md\:border-green-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(209, 250, 229, var(--tw-border-opacity)) !important; + } + + .md\:border-green-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(167, 243, 208, var(--tw-border-opacity)) !important; + } + + .md\:border-green-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(110, 231, 183, var(--tw-border-opacity)) !important; + } + + .md\:border-green-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(52, 211, 153, var(--tw-border-opacity)) !important; + } + + .md\:border-green-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(16, 185, 129, var(--tw-border-opacity)) !important; + } + + .md\:border-green-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(5, 150, 105, var(--tw-border-opacity)) !important; + } + + .md\:border-green-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(4, 120, 87, var(--tw-border-opacity)) !important; + } + + .md\:border-green-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(6, 95, 70, var(--tw-border-opacity)) !important; + } + + .md\:border-green-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(6, 78, 59, var(--tw-border-opacity)) !important; + } + + .md\:border-blue-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(239, 246, 255, var(--tw-border-opacity)) !important; + } + + .md\:border-blue-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(219, 234, 254, var(--tw-border-opacity)) !important; + } + + .md\:border-blue-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(191, 219, 254, var(--tw-border-opacity)) !important; + } + + .md\:border-blue-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(147, 197, 253, var(--tw-border-opacity)) !important; + } + + .md\:border-blue-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(96, 165, 250, var(--tw-border-opacity)) !important; + } + + .md\:border-blue-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)) !important; + } + + .md\:border-blue-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(37, 99, 235, var(--tw-border-opacity)) !important; + } + + .md\:border-blue-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(29, 78, 216, var(--tw-border-opacity)) !important; + } + + .md\:border-blue-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(30, 64, 175, var(--tw-border-opacity)) !important; + } + + .md\:border-blue-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(30, 58, 138, var(--tw-border-opacity)) !important; + } + + .md\:border-indigo-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(238, 242, 255, var(--tw-border-opacity)) !important; + } + + .md\:border-indigo-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(224, 231, 255, var(--tw-border-opacity)) !important; + } + + .md\:border-indigo-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(199, 210, 254, var(--tw-border-opacity)) !important; + } + + .md\:border-indigo-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(165, 180, 252, var(--tw-border-opacity)) !important; + } + + .md\:border-indigo-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(129, 140, 248, var(--tw-border-opacity)) !important; + } + + .md\:border-indigo-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(99, 102, 241, var(--tw-border-opacity)) !important; + } + + .md\:border-indigo-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(79, 70, 229, var(--tw-border-opacity)) !important; + } + + .md\:border-indigo-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(67, 56, 202, var(--tw-border-opacity)) !important; + } + + .md\:border-indigo-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(55, 48, 163, var(--tw-border-opacity)) !important; + } + + .md\:border-indigo-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(49, 46, 129, var(--tw-border-opacity)) !important; + } + + .md\:border-purple-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(245, 243, 255, var(--tw-border-opacity)) !important; + } + + .md\:border-purple-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(237, 233, 254, var(--tw-border-opacity)) !important; + } + + .md\:border-purple-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(221, 214, 254, var(--tw-border-opacity)) !important; + } + + .md\:border-purple-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(196, 181, 253, var(--tw-border-opacity)) !important; + } + + .md\:border-purple-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(167, 139, 250, var(--tw-border-opacity)) !important; + } + + .md\:border-purple-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(139, 92, 246, var(--tw-border-opacity)) !important; + } + + .md\:border-purple-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(124, 58, 237, var(--tw-border-opacity)) !important; + } + + .md\:border-purple-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(109, 40, 217, var(--tw-border-opacity)) !important; + } + + .md\:border-purple-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(91, 33, 182, var(--tw-border-opacity)) !important; + } + + .md\:border-purple-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(76, 29, 149, var(--tw-border-opacity)) !important; + } + + .md\:border-pink-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(253, 242, 248, var(--tw-border-opacity)) !important; + } + + .md\:border-pink-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 231, 243, var(--tw-border-opacity)) !important; + } + + .md\:border-pink-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(251, 207, 232, var(--tw-border-opacity)) !important; + } + + .md\:border-pink-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(249, 168, 212, var(--tw-border-opacity)) !important; + } + + .md\:border-pink-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(244, 114, 182, var(--tw-border-opacity)) !important; + } + + .md\:border-pink-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(236, 72, 153, var(--tw-border-opacity)) !important; + } + + .md\:border-pink-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(219, 39, 119, var(--tw-border-opacity)) !important; + } + + .md\:border-pink-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(190, 24, 93, var(--tw-border-opacity)) !important; + } + + .md\:border-pink-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(157, 23, 77, var(--tw-border-opacity)) !important; + } + + .md\:border-pink-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(131, 24, 67, var(--tw-border-opacity)) !important; + } + + .md\:border-primary { + --tw-border-opacity: 1 !important; + border-color: rgba(0, 49, 151, var(--tw-border-opacity)) !important; + } + + .group:hover .md\:group-hover\:border-transparent { + border-color: transparent !important; + } + + .group:hover .md\:group-hover\:border-current { + border-color: currentColor !important; + } + + .group:hover .md\:group-hover\:border-black { + --tw-border-opacity: 1 !important; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important; + } + + .group:hover .md\:group-hover\:border-white { + --tw-border-opacity: 1 !important; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important; + } + + .group:hover .md\:group-hover\:border-gray-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)) !important; + } + + .group:hover .md\:group-hover\:border-gray-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)) !important; + } + + .group:hover .md\:group-hover\:border-gray-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)) !important; + } + + .group:hover .md\:group-hover\:border-gray-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)) !important; + } + + .group:hover .md\:group-hover\:border-gray-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)) !important; + } + + .group:hover .md\:group-hover\:border-gray-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)) !important; + } + + .group:hover .md\:group-hover\:border-gray-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)) !important; + } + + .group:hover .md\:group-hover\:border-gray-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)) !important; + } + + .group:hover .md\:group-hover\:border-gray-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)) !important; + } + + .group:hover .md\:group-hover\:border-gray-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)) !important; + } + + .group:hover .md\:group-hover\:border-red-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 242, 242, var(--tw-border-opacity)) !important; + } + + .group:hover .md\:group-hover\:border-red-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 226, 226, var(--tw-border-opacity)) !important; + } + + .group:hover .md\:group-hover\:border-red-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 202, 202, var(--tw-border-opacity)) !important; + } + + .group:hover .md\:group-hover\:border-red-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 165, 165, var(--tw-border-opacity)) !important; + } + + .group:hover .md\:group-hover\:border-red-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(248, 113, 113, var(--tw-border-opacity)) !important; + } + + .group:hover .md\:group-hover\:border-red-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(239, 68, 68, var(--tw-border-opacity)) !important; + } + + .group:hover .md\:group-hover\:border-red-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(220, 38, 38, var(--tw-border-opacity)) !important; + } + + .group:hover .md\:group-hover\:border-red-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(185, 28, 28, var(--tw-border-opacity)) !important; + } + + .group:hover .md\:group-hover\:border-red-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(153, 27, 27, var(--tw-border-opacity)) !important; + } + + .group:hover .md\:group-hover\:border-red-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(127, 29, 29, var(--tw-border-opacity)) !important; + } + + .group:hover .md\:group-hover\:border-yellow-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(255, 251, 235, var(--tw-border-opacity)) !important; + } + + .group:hover .md\:group-hover\:border-yellow-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 243, 199, var(--tw-border-opacity)) !important; + } + + .group:hover .md\:group-hover\:border-yellow-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(253, 230, 138, var(--tw-border-opacity)) !important; + } + + .group:hover .md\:group-hover\:border-yellow-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 211, 77, var(--tw-border-opacity)) !important; + } + + .group:hover .md\:group-hover\:border-yellow-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(251, 191, 36, var(--tw-border-opacity)) !important; + } + + .group:hover .md\:group-hover\:border-yellow-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)) !important; + } + + .group:hover .md\:group-hover\:border-yellow-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(217, 119, 6, var(--tw-border-opacity)) !important; + } + + .group:hover .md\:group-hover\:border-yellow-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(180, 83, 9, var(--tw-border-opacity)) !important; + } + + .group:hover .md\:group-hover\:border-yellow-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(146, 64, 14, var(--tw-border-opacity)) !important; + } + + .group:hover .md\:group-hover\:border-yellow-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(120, 53, 15, var(--tw-border-opacity)) !important; + } + + .group:hover .md\:group-hover\:border-green-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(236, 253, 245, var(--tw-border-opacity)) !important; + } + + .group:hover .md\:group-hover\:border-green-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(209, 250, 229, var(--tw-border-opacity)) !important; + } + + .group:hover .md\:group-hover\:border-green-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(167, 243, 208, var(--tw-border-opacity)) !important; + } + + .group:hover .md\:group-hover\:border-green-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(110, 231, 183, var(--tw-border-opacity)) !important; + } + + .group:hover .md\:group-hover\:border-green-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(52, 211, 153, var(--tw-border-opacity)) !important; + } + + .group:hover .md\:group-hover\:border-green-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(16, 185, 129, var(--tw-border-opacity)) !important; + } + + .group:hover .md\:group-hover\:border-green-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(5, 150, 105, var(--tw-border-opacity)) !important; + } + + .group:hover .md\:group-hover\:border-green-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(4, 120, 87, var(--tw-border-opacity)) !important; + } + + .group:hover .md\:group-hover\:border-green-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(6, 95, 70, var(--tw-border-opacity)) !important; + } + + .group:hover .md\:group-hover\:border-green-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(6, 78, 59, var(--tw-border-opacity)) !important; + } + + .group:hover .md\:group-hover\:border-blue-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(239, 246, 255, var(--tw-border-opacity)) !important; + } + + .group:hover .md\:group-hover\:border-blue-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(219, 234, 254, var(--tw-border-opacity)) !important; + } + + .group:hover .md\:group-hover\:border-blue-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(191, 219, 254, var(--tw-border-opacity)) !important; + } + + .group:hover .md\:group-hover\:border-blue-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(147, 197, 253, var(--tw-border-opacity)) !important; + } + + .group:hover .md\:group-hover\:border-blue-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(96, 165, 250, var(--tw-border-opacity)) !important; + } + + .group:hover .md\:group-hover\:border-blue-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)) !important; + } + + .group:hover .md\:group-hover\:border-blue-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(37, 99, 235, var(--tw-border-opacity)) !important; + } + + .group:hover .md\:group-hover\:border-blue-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(29, 78, 216, var(--tw-border-opacity)) !important; + } + + .group:hover .md\:group-hover\:border-blue-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(30, 64, 175, var(--tw-border-opacity)) !important; + } + + .group:hover .md\:group-hover\:border-blue-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(30, 58, 138, var(--tw-border-opacity)) !important; + } + + .group:hover .md\:group-hover\:border-indigo-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(238, 242, 255, var(--tw-border-opacity)) !important; + } + + .group:hover .md\:group-hover\:border-indigo-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(224, 231, 255, var(--tw-border-opacity)) !important; + } + + .group:hover .md\:group-hover\:border-indigo-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(199, 210, 254, var(--tw-border-opacity)) !important; + } + + .group:hover .md\:group-hover\:border-indigo-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(165, 180, 252, var(--tw-border-opacity)) !important; + } + + .group:hover .md\:group-hover\:border-indigo-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(129, 140, 248, var(--tw-border-opacity)) !important; + } + + .group:hover .md\:group-hover\:border-indigo-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(99, 102, 241, var(--tw-border-opacity)) !important; + } + + .group:hover .md\:group-hover\:border-indigo-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(79, 70, 229, var(--tw-border-opacity)) !important; + } + + .group:hover .md\:group-hover\:border-indigo-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(67, 56, 202, var(--tw-border-opacity)) !important; + } + + .group:hover .md\:group-hover\:border-indigo-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(55, 48, 163, var(--tw-border-opacity)) !important; + } + + .group:hover .md\:group-hover\:border-indigo-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(49, 46, 129, var(--tw-border-opacity)) !important; + } + + .group:hover .md\:group-hover\:border-purple-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(245, 243, 255, var(--tw-border-opacity)) !important; + } + + .group:hover .md\:group-hover\:border-purple-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(237, 233, 254, var(--tw-border-opacity)) !important; + } + + .group:hover .md\:group-hover\:border-purple-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(221, 214, 254, var(--tw-border-opacity)) !important; + } + + .group:hover .md\:group-hover\:border-purple-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(196, 181, 253, var(--tw-border-opacity)) !important; + } + + .group:hover .md\:group-hover\:border-purple-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(167, 139, 250, var(--tw-border-opacity)) !important; + } + + .group:hover .md\:group-hover\:border-purple-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(139, 92, 246, var(--tw-border-opacity)) !important; + } + + .group:hover .md\:group-hover\:border-purple-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(124, 58, 237, var(--tw-border-opacity)) !important; + } + + .group:hover .md\:group-hover\:border-purple-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(109, 40, 217, var(--tw-border-opacity)) !important; + } + + .group:hover .md\:group-hover\:border-purple-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(91, 33, 182, var(--tw-border-opacity)) !important; + } + + .group:hover .md\:group-hover\:border-purple-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(76, 29, 149, var(--tw-border-opacity)) !important; + } + + .group:hover .md\:group-hover\:border-pink-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(253, 242, 248, var(--tw-border-opacity)) !important; + } + + .group:hover .md\:group-hover\:border-pink-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 231, 243, var(--tw-border-opacity)) !important; + } + + .group:hover .md\:group-hover\:border-pink-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(251, 207, 232, var(--tw-border-opacity)) !important; + } + + .group:hover .md\:group-hover\:border-pink-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(249, 168, 212, var(--tw-border-opacity)) !important; + } + + .group:hover .md\:group-hover\:border-pink-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(244, 114, 182, var(--tw-border-opacity)) !important; + } + + .group:hover .md\:group-hover\:border-pink-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(236, 72, 153, var(--tw-border-opacity)) !important; + } + + .group:hover .md\:group-hover\:border-pink-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(219, 39, 119, var(--tw-border-opacity)) !important; + } + + .group:hover .md\:group-hover\:border-pink-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(190, 24, 93, var(--tw-border-opacity)) !important; + } + + .group:hover .md\:group-hover\:border-pink-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(157, 23, 77, var(--tw-border-opacity)) !important; + } + + .group:hover .md\:group-hover\:border-pink-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(131, 24, 67, var(--tw-border-opacity)) !important; + } + + .group:hover .md\:group-hover\:border-primary { + --tw-border-opacity: 1 !important; + border-color: rgba(0, 49, 151, var(--tw-border-opacity)) !important; + } + + .md\:focus-within\:border-transparent:focus-within { + border-color: transparent !important; + } + + .md\:focus-within\:border-current:focus-within { + border-color: currentColor !important; + } + + .md\:focus-within\:border-black:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important; + } + + .md\:focus-within\:border-white:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important; + } + + .md\:focus-within\:border-gray-50:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)) !important; + } + + .md\:focus-within\:border-gray-100:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)) !important; + } + + .md\:focus-within\:border-gray-200:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)) !important; + } + + .md\:focus-within\:border-gray-300:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)) !important; + } + + .md\:focus-within\:border-gray-400:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)) !important; + } + + .md\:focus-within\:border-gray-500:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)) !important; + } + + .md\:focus-within\:border-gray-600:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)) !important; + } + + .md\:focus-within\:border-gray-700:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)) !important; + } + + .md\:focus-within\:border-gray-800:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)) !important; + } + + .md\:focus-within\:border-gray-900:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)) !important; + } + + .md\:focus-within\:border-red-50:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 242, 242, var(--tw-border-opacity)) !important; + } + + .md\:focus-within\:border-red-100:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 226, 226, var(--tw-border-opacity)) !important; + } + + .md\:focus-within\:border-red-200:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 202, 202, var(--tw-border-opacity)) !important; + } + + .md\:focus-within\:border-red-300:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 165, 165, var(--tw-border-opacity)) !important; + } + + .md\:focus-within\:border-red-400:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(248, 113, 113, var(--tw-border-opacity)) !important; + } + + .md\:focus-within\:border-red-500:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(239, 68, 68, var(--tw-border-opacity)) !important; + } + + .md\:focus-within\:border-red-600:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(220, 38, 38, var(--tw-border-opacity)) !important; + } + + .md\:focus-within\:border-red-700:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(185, 28, 28, var(--tw-border-opacity)) !important; + } + + .md\:focus-within\:border-red-800:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(153, 27, 27, var(--tw-border-opacity)) !important; + } + + .md\:focus-within\:border-red-900:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(127, 29, 29, var(--tw-border-opacity)) !important; + } + + .md\:focus-within\:border-yellow-50:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(255, 251, 235, var(--tw-border-opacity)) !important; + } + + .md\:focus-within\:border-yellow-100:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 243, 199, var(--tw-border-opacity)) !important; + } + + .md\:focus-within\:border-yellow-200:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(253, 230, 138, var(--tw-border-opacity)) !important; + } + + .md\:focus-within\:border-yellow-300:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 211, 77, var(--tw-border-opacity)) !important; + } + + .md\:focus-within\:border-yellow-400:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(251, 191, 36, var(--tw-border-opacity)) !important; + } + + .md\:focus-within\:border-yellow-500:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)) !important; + } + + .md\:focus-within\:border-yellow-600:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(217, 119, 6, var(--tw-border-opacity)) !important; + } + + .md\:focus-within\:border-yellow-700:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(180, 83, 9, var(--tw-border-opacity)) !important; + } + + .md\:focus-within\:border-yellow-800:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(146, 64, 14, var(--tw-border-opacity)) !important; + } + + .md\:focus-within\:border-yellow-900:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(120, 53, 15, var(--tw-border-opacity)) !important; + } + + .md\:focus-within\:border-green-50:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(236, 253, 245, var(--tw-border-opacity)) !important; + } + + .md\:focus-within\:border-green-100:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(209, 250, 229, var(--tw-border-opacity)) !important; + } + + .md\:focus-within\:border-green-200:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(167, 243, 208, var(--tw-border-opacity)) !important; + } + + .md\:focus-within\:border-green-300:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(110, 231, 183, var(--tw-border-opacity)) !important; + } + + .md\:focus-within\:border-green-400:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(52, 211, 153, var(--tw-border-opacity)) !important; + } + + .md\:focus-within\:border-green-500:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(16, 185, 129, var(--tw-border-opacity)) !important; + } + + .md\:focus-within\:border-green-600:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(5, 150, 105, var(--tw-border-opacity)) !important; + } + + .md\:focus-within\:border-green-700:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(4, 120, 87, var(--tw-border-opacity)) !important; + } + + .md\:focus-within\:border-green-800:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(6, 95, 70, var(--tw-border-opacity)) !important; + } + + .md\:focus-within\:border-green-900:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(6, 78, 59, var(--tw-border-opacity)) !important; + } + + .md\:focus-within\:border-blue-50:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(239, 246, 255, var(--tw-border-opacity)) !important; + } + + .md\:focus-within\:border-blue-100:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(219, 234, 254, var(--tw-border-opacity)) !important; + } + + .md\:focus-within\:border-blue-200:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(191, 219, 254, var(--tw-border-opacity)) !important; + } + + .md\:focus-within\:border-blue-300:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(147, 197, 253, var(--tw-border-opacity)) !important; + } + + .md\:focus-within\:border-blue-400:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(96, 165, 250, var(--tw-border-opacity)) !important; + } + + .md\:focus-within\:border-blue-500:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)) !important; + } + + .md\:focus-within\:border-blue-600:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(37, 99, 235, var(--tw-border-opacity)) !important; + } + + .md\:focus-within\:border-blue-700:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(29, 78, 216, var(--tw-border-opacity)) !important; + } + + .md\:focus-within\:border-blue-800:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(30, 64, 175, var(--tw-border-opacity)) !important; + } + + .md\:focus-within\:border-blue-900:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(30, 58, 138, var(--tw-border-opacity)) !important; + } + + .md\:focus-within\:border-indigo-50:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(238, 242, 255, var(--tw-border-opacity)) !important; + } + + .md\:focus-within\:border-indigo-100:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(224, 231, 255, var(--tw-border-opacity)) !important; + } + + .md\:focus-within\:border-indigo-200:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(199, 210, 254, var(--tw-border-opacity)) !important; + } + + .md\:focus-within\:border-indigo-300:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(165, 180, 252, var(--tw-border-opacity)) !important; + } + + .md\:focus-within\:border-indigo-400:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(129, 140, 248, var(--tw-border-opacity)) !important; + } + + .md\:focus-within\:border-indigo-500:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(99, 102, 241, var(--tw-border-opacity)) !important; + } + + .md\:focus-within\:border-indigo-600:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(79, 70, 229, var(--tw-border-opacity)) !important; + } + + .md\:focus-within\:border-indigo-700:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(67, 56, 202, var(--tw-border-opacity)) !important; + } + + .md\:focus-within\:border-indigo-800:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(55, 48, 163, var(--tw-border-opacity)) !important; + } + + .md\:focus-within\:border-indigo-900:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(49, 46, 129, var(--tw-border-opacity)) !important; + } + + .md\:focus-within\:border-purple-50:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(245, 243, 255, var(--tw-border-opacity)) !important; + } + + .md\:focus-within\:border-purple-100:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(237, 233, 254, var(--tw-border-opacity)) !important; + } + + .md\:focus-within\:border-purple-200:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(221, 214, 254, var(--tw-border-opacity)) !important; + } + + .md\:focus-within\:border-purple-300:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(196, 181, 253, var(--tw-border-opacity)) !important; + } + + .md\:focus-within\:border-purple-400:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(167, 139, 250, var(--tw-border-opacity)) !important; + } + + .md\:focus-within\:border-purple-500:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(139, 92, 246, var(--tw-border-opacity)) !important; + } + + .md\:focus-within\:border-purple-600:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(124, 58, 237, var(--tw-border-opacity)) !important; + } + + .md\:focus-within\:border-purple-700:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(109, 40, 217, var(--tw-border-opacity)) !important; + } + + .md\:focus-within\:border-purple-800:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(91, 33, 182, var(--tw-border-opacity)) !important; + } + + .md\:focus-within\:border-purple-900:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(76, 29, 149, var(--tw-border-opacity)) !important; + } + + .md\:focus-within\:border-pink-50:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(253, 242, 248, var(--tw-border-opacity)) !important; + } + + .md\:focus-within\:border-pink-100:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 231, 243, var(--tw-border-opacity)) !important; + } + + .md\:focus-within\:border-pink-200:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(251, 207, 232, var(--tw-border-opacity)) !important; + } + + .md\:focus-within\:border-pink-300:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(249, 168, 212, var(--tw-border-opacity)) !important; + } + + .md\:focus-within\:border-pink-400:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(244, 114, 182, var(--tw-border-opacity)) !important; + } + + .md\:focus-within\:border-pink-500:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(236, 72, 153, var(--tw-border-opacity)) !important; + } + + .md\:focus-within\:border-pink-600:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(219, 39, 119, var(--tw-border-opacity)) !important; + } + + .md\:focus-within\:border-pink-700:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(190, 24, 93, var(--tw-border-opacity)) !important; + } + + .md\:focus-within\:border-pink-800:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(157, 23, 77, var(--tw-border-opacity)) !important; + } + + .md\:focus-within\:border-pink-900:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(131, 24, 67, var(--tw-border-opacity)) !important; + } + + .md\:focus-within\:border-primary:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(0, 49, 151, var(--tw-border-opacity)) !important; + } + + .md\:hover\:border-transparent:hover { + border-color: transparent !important; + } + + .md\:hover\:border-current:hover { + border-color: currentColor !important; + } + + .md\:hover\:border-black:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important; + } + + .md\:hover\:border-white:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important; + } + + .md\:hover\:border-gray-50:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)) !important; + } + + .md\:hover\:border-gray-100:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)) !important; + } + + .md\:hover\:border-gray-200:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)) !important; + } + + .md\:hover\:border-gray-300:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)) !important; + } + + .md\:hover\:border-gray-400:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)) !important; + } + + .md\:hover\:border-gray-500:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)) !important; + } + + .md\:hover\:border-gray-600:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)) !important; + } + + .md\:hover\:border-gray-700:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)) !important; + } + + .md\:hover\:border-gray-800:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)) !important; + } + + .md\:hover\:border-gray-900:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)) !important; + } + + .md\:hover\:border-red-50:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 242, 242, var(--tw-border-opacity)) !important; + } + + .md\:hover\:border-red-100:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 226, 226, var(--tw-border-opacity)) !important; + } + + .md\:hover\:border-red-200:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 202, 202, var(--tw-border-opacity)) !important; + } + + .md\:hover\:border-red-300:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 165, 165, var(--tw-border-opacity)) !important; + } + + .md\:hover\:border-red-400:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(248, 113, 113, var(--tw-border-opacity)) !important; + } + + .md\:hover\:border-red-500:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(239, 68, 68, var(--tw-border-opacity)) !important; + } + + .md\:hover\:border-red-600:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(220, 38, 38, var(--tw-border-opacity)) !important; + } + + .md\:hover\:border-red-700:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(185, 28, 28, var(--tw-border-opacity)) !important; + } + + .md\:hover\:border-red-800:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(153, 27, 27, var(--tw-border-opacity)) !important; + } + + .md\:hover\:border-red-900:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(127, 29, 29, var(--tw-border-opacity)) !important; + } + + .md\:hover\:border-yellow-50:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(255, 251, 235, var(--tw-border-opacity)) !important; + } + + .md\:hover\:border-yellow-100:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 243, 199, var(--tw-border-opacity)) !important; + } + + .md\:hover\:border-yellow-200:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(253, 230, 138, var(--tw-border-opacity)) !important; + } + + .md\:hover\:border-yellow-300:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 211, 77, var(--tw-border-opacity)) !important; + } + + .md\:hover\:border-yellow-400:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(251, 191, 36, var(--tw-border-opacity)) !important; + } + + .md\:hover\:border-yellow-500:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)) !important; + } + + .md\:hover\:border-yellow-600:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(217, 119, 6, var(--tw-border-opacity)) !important; + } + + .md\:hover\:border-yellow-700:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(180, 83, 9, var(--tw-border-opacity)) !important; + } + + .md\:hover\:border-yellow-800:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(146, 64, 14, var(--tw-border-opacity)) !important; + } + + .md\:hover\:border-yellow-900:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(120, 53, 15, var(--tw-border-opacity)) !important; + } + + .md\:hover\:border-green-50:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(236, 253, 245, var(--tw-border-opacity)) !important; + } + + .md\:hover\:border-green-100:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(209, 250, 229, var(--tw-border-opacity)) !important; + } + + .md\:hover\:border-green-200:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(167, 243, 208, var(--tw-border-opacity)) !important; + } + + .md\:hover\:border-green-300:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(110, 231, 183, var(--tw-border-opacity)) !important; + } + + .md\:hover\:border-green-400:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(52, 211, 153, var(--tw-border-opacity)) !important; + } + + .md\:hover\:border-green-500:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(16, 185, 129, var(--tw-border-opacity)) !important; + } + + .md\:hover\:border-green-600:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(5, 150, 105, var(--tw-border-opacity)) !important; + } + + .md\:hover\:border-green-700:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(4, 120, 87, var(--tw-border-opacity)) !important; + } + + .md\:hover\:border-green-800:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(6, 95, 70, var(--tw-border-opacity)) !important; + } + + .md\:hover\:border-green-900:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(6, 78, 59, var(--tw-border-opacity)) !important; + } + + .md\:hover\:border-blue-50:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(239, 246, 255, var(--tw-border-opacity)) !important; + } + + .md\:hover\:border-blue-100:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(219, 234, 254, var(--tw-border-opacity)) !important; + } + + .md\:hover\:border-blue-200:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(191, 219, 254, var(--tw-border-opacity)) !important; + } + + .md\:hover\:border-blue-300:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(147, 197, 253, var(--tw-border-opacity)) !important; + } + + .md\:hover\:border-blue-400:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(96, 165, 250, var(--tw-border-opacity)) !important; + } + + .md\:hover\:border-blue-500:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)) !important; + } + + .md\:hover\:border-blue-600:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(37, 99, 235, var(--tw-border-opacity)) !important; + } + + .md\:hover\:border-blue-700:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(29, 78, 216, var(--tw-border-opacity)) !important; + } + + .md\:hover\:border-blue-800:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(30, 64, 175, var(--tw-border-opacity)) !important; + } + + .md\:hover\:border-blue-900:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(30, 58, 138, var(--tw-border-opacity)) !important; + } + + .md\:hover\:border-indigo-50:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(238, 242, 255, var(--tw-border-opacity)) !important; + } + + .md\:hover\:border-indigo-100:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(224, 231, 255, var(--tw-border-opacity)) !important; + } + + .md\:hover\:border-indigo-200:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(199, 210, 254, var(--tw-border-opacity)) !important; + } + + .md\:hover\:border-indigo-300:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(165, 180, 252, var(--tw-border-opacity)) !important; + } + + .md\:hover\:border-indigo-400:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(129, 140, 248, var(--tw-border-opacity)) !important; + } + + .md\:hover\:border-indigo-500:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(99, 102, 241, var(--tw-border-opacity)) !important; + } + + .md\:hover\:border-indigo-600:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(79, 70, 229, var(--tw-border-opacity)) !important; + } + + .md\:hover\:border-indigo-700:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(67, 56, 202, var(--tw-border-opacity)) !important; + } + + .md\:hover\:border-indigo-800:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(55, 48, 163, var(--tw-border-opacity)) !important; + } + + .md\:hover\:border-indigo-900:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(49, 46, 129, var(--tw-border-opacity)) !important; + } + + .md\:hover\:border-purple-50:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(245, 243, 255, var(--tw-border-opacity)) !important; + } + + .md\:hover\:border-purple-100:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(237, 233, 254, var(--tw-border-opacity)) !important; + } + + .md\:hover\:border-purple-200:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(221, 214, 254, var(--tw-border-opacity)) !important; + } + + .md\:hover\:border-purple-300:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(196, 181, 253, var(--tw-border-opacity)) !important; + } + + .md\:hover\:border-purple-400:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(167, 139, 250, var(--tw-border-opacity)) !important; + } + + .md\:hover\:border-purple-500:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(139, 92, 246, var(--tw-border-opacity)) !important; + } + + .md\:hover\:border-purple-600:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(124, 58, 237, var(--tw-border-opacity)) !important; + } + + .md\:hover\:border-purple-700:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(109, 40, 217, var(--tw-border-opacity)) !important; + } + + .md\:hover\:border-purple-800:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(91, 33, 182, var(--tw-border-opacity)) !important; + } + + .md\:hover\:border-purple-900:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(76, 29, 149, var(--tw-border-opacity)) !important; + } + + .md\:hover\:border-pink-50:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(253, 242, 248, var(--tw-border-opacity)) !important; + } + + .md\:hover\:border-pink-100:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 231, 243, var(--tw-border-opacity)) !important; + } + + .md\:hover\:border-pink-200:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(251, 207, 232, var(--tw-border-opacity)) !important; + } + + .md\:hover\:border-pink-300:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(249, 168, 212, var(--tw-border-opacity)) !important; + } + + .md\:hover\:border-pink-400:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(244, 114, 182, var(--tw-border-opacity)) !important; + } + + .md\:hover\:border-pink-500:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(236, 72, 153, var(--tw-border-opacity)) !important; + } + + .md\:hover\:border-pink-600:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(219, 39, 119, var(--tw-border-opacity)) !important; + } + + .md\:hover\:border-pink-700:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(190, 24, 93, var(--tw-border-opacity)) !important; + } + + .md\:hover\:border-pink-800:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(157, 23, 77, var(--tw-border-opacity)) !important; + } + + .md\:hover\:border-pink-900:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(131, 24, 67, var(--tw-border-opacity)) !important; + } + + .md\:hover\:border-primary:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(0, 49, 151, var(--tw-border-opacity)) !important; + } + + .md\:focus\:border-transparent:focus { + border-color: transparent !important; + } + + .md\:focus\:border-current:focus { + border-color: currentColor !important; + } + + .md\:focus\:border-black:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important; + } + + .md\:focus\:border-white:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important; + } + + .md\:focus\:border-gray-50:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)) !important; + } + + .md\:focus\:border-gray-100:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)) !important; + } + + .md\:focus\:border-gray-200:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)) !important; + } + + .md\:focus\:border-gray-300:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)) !important; + } + + .md\:focus\:border-gray-400:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)) !important; + } + + .md\:focus\:border-gray-500:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)) !important; + } + + .md\:focus\:border-gray-600:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)) !important; + } + + .md\:focus\:border-gray-700:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)) !important; + } + + .md\:focus\:border-gray-800:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)) !important; + } + + .md\:focus\:border-gray-900:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)) !important; + } + + .md\:focus\:border-red-50:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 242, 242, var(--tw-border-opacity)) !important; + } + + .md\:focus\:border-red-100:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 226, 226, var(--tw-border-opacity)) !important; + } + + .md\:focus\:border-red-200:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 202, 202, var(--tw-border-opacity)) !important; + } + + .md\:focus\:border-red-300:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 165, 165, var(--tw-border-opacity)) !important; + } + + .md\:focus\:border-red-400:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(248, 113, 113, var(--tw-border-opacity)) !important; + } + + .md\:focus\:border-red-500:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(239, 68, 68, var(--tw-border-opacity)) !important; + } + + .md\:focus\:border-red-600:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(220, 38, 38, var(--tw-border-opacity)) !important; + } + + .md\:focus\:border-red-700:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(185, 28, 28, var(--tw-border-opacity)) !important; + } + + .md\:focus\:border-red-800:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(153, 27, 27, var(--tw-border-opacity)) !important; + } + + .md\:focus\:border-red-900:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(127, 29, 29, var(--tw-border-opacity)) !important; + } + + .md\:focus\:border-yellow-50:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(255, 251, 235, var(--tw-border-opacity)) !important; + } + + .md\:focus\:border-yellow-100:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 243, 199, var(--tw-border-opacity)) !important; + } + + .md\:focus\:border-yellow-200:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(253, 230, 138, var(--tw-border-opacity)) !important; + } + + .md\:focus\:border-yellow-300:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 211, 77, var(--tw-border-opacity)) !important; + } + + .md\:focus\:border-yellow-400:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(251, 191, 36, var(--tw-border-opacity)) !important; + } + + .md\:focus\:border-yellow-500:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)) !important; + } + + .md\:focus\:border-yellow-600:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(217, 119, 6, var(--tw-border-opacity)) !important; + } + + .md\:focus\:border-yellow-700:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(180, 83, 9, var(--tw-border-opacity)) !important; + } + + .md\:focus\:border-yellow-800:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(146, 64, 14, var(--tw-border-opacity)) !important; + } + + .md\:focus\:border-yellow-900:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(120, 53, 15, var(--tw-border-opacity)) !important; + } + + .md\:focus\:border-green-50:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(236, 253, 245, var(--tw-border-opacity)) !important; + } + + .md\:focus\:border-green-100:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(209, 250, 229, var(--tw-border-opacity)) !important; + } + + .md\:focus\:border-green-200:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(167, 243, 208, var(--tw-border-opacity)) !important; + } + + .md\:focus\:border-green-300:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(110, 231, 183, var(--tw-border-opacity)) !important; + } + + .md\:focus\:border-green-400:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(52, 211, 153, var(--tw-border-opacity)) !important; + } + + .md\:focus\:border-green-500:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(16, 185, 129, var(--tw-border-opacity)) !important; + } + + .md\:focus\:border-green-600:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(5, 150, 105, var(--tw-border-opacity)) !important; + } + + .md\:focus\:border-green-700:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(4, 120, 87, var(--tw-border-opacity)) !important; + } + + .md\:focus\:border-green-800:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(6, 95, 70, var(--tw-border-opacity)) !important; + } + + .md\:focus\:border-green-900:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(6, 78, 59, var(--tw-border-opacity)) !important; + } + + .md\:focus\:border-blue-50:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(239, 246, 255, var(--tw-border-opacity)) !important; + } + + .md\:focus\:border-blue-100:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(219, 234, 254, var(--tw-border-opacity)) !important; + } + + .md\:focus\:border-blue-200:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(191, 219, 254, var(--tw-border-opacity)) !important; + } + + .md\:focus\:border-blue-300:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(147, 197, 253, var(--tw-border-opacity)) !important; + } + + .md\:focus\:border-blue-400:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(96, 165, 250, var(--tw-border-opacity)) !important; + } + + .md\:focus\:border-blue-500:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)) !important; + } + + .md\:focus\:border-blue-600:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(37, 99, 235, var(--tw-border-opacity)) !important; + } + + .md\:focus\:border-blue-700:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(29, 78, 216, var(--tw-border-opacity)) !important; + } + + .md\:focus\:border-blue-800:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(30, 64, 175, var(--tw-border-opacity)) !important; + } + + .md\:focus\:border-blue-900:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(30, 58, 138, var(--tw-border-opacity)) !important; + } + + .md\:focus\:border-indigo-50:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(238, 242, 255, var(--tw-border-opacity)) !important; + } + + .md\:focus\:border-indigo-100:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(224, 231, 255, var(--tw-border-opacity)) !important; + } + + .md\:focus\:border-indigo-200:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(199, 210, 254, var(--tw-border-opacity)) !important; + } + + .md\:focus\:border-indigo-300:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(165, 180, 252, var(--tw-border-opacity)) !important; + } + + .md\:focus\:border-indigo-400:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(129, 140, 248, var(--tw-border-opacity)) !important; + } + + .md\:focus\:border-indigo-500:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(99, 102, 241, var(--tw-border-opacity)) !important; + } + + .md\:focus\:border-indigo-600:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(79, 70, 229, var(--tw-border-opacity)) !important; + } + + .md\:focus\:border-indigo-700:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(67, 56, 202, var(--tw-border-opacity)) !important; + } + + .md\:focus\:border-indigo-800:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(55, 48, 163, var(--tw-border-opacity)) !important; + } + + .md\:focus\:border-indigo-900:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(49, 46, 129, var(--tw-border-opacity)) !important; + } + + .md\:focus\:border-purple-50:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(245, 243, 255, var(--tw-border-opacity)) !important; + } + + .md\:focus\:border-purple-100:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(237, 233, 254, var(--tw-border-opacity)) !important; + } + + .md\:focus\:border-purple-200:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(221, 214, 254, var(--tw-border-opacity)) !important; + } + + .md\:focus\:border-purple-300:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(196, 181, 253, var(--tw-border-opacity)) !important; + } + + .md\:focus\:border-purple-400:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(167, 139, 250, var(--tw-border-opacity)) !important; + } + + .md\:focus\:border-purple-500:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(139, 92, 246, var(--tw-border-opacity)) !important; + } + + .md\:focus\:border-purple-600:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(124, 58, 237, var(--tw-border-opacity)) !important; + } + + .md\:focus\:border-purple-700:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(109, 40, 217, var(--tw-border-opacity)) !important; + } + + .md\:focus\:border-purple-800:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(91, 33, 182, var(--tw-border-opacity)) !important; + } + + .md\:focus\:border-purple-900:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(76, 29, 149, var(--tw-border-opacity)) !important; + } + + .md\:focus\:border-pink-50:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(253, 242, 248, var(--tw-border-opacity)) !important; + } + + .md\:focus\:border-pink-100:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 231, 243, var(--tw-border-opacity)) !important; + } + + .md\:focus\:border-pink-200:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(251, 207, 232, var(--tw-border-opacity)) !important; + } + + .md\:focus\:border-pink-300:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(249, 168, 212, var(--tw-border-opacity)) !important; + } + + .md\:focus\:border-pink-400:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(244, 114, 182, var(--tw-border-opacity)) !important; + } + + .md\:focus\:border-pink-500:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(236, 72, 153, var(--tw-border-opacity)) !important; + } + + .md\:focus\:border-pink-600:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(219, 39, 119, var(--tw-border-opacity)) !important; + } + + .md\:focus\:border-pink-700:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(190, 24, 93, var(--tw-border-opacity)) !important; + } + + .md\:focus\:border-pink-800:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(157, 23, 77, var(--tw-border-opacity)) !important; + } + + .md\:focus\:border-pink-900:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(131, 24, 67, var(--tw-border-opacity)) !important; + } + + .md\:focus\:border-primary:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(0, 49, 151, var(--tw-border-opacity)) !important; + } + + .md\:border-opacity-0 { + --tw-border-opacity: 0 !important; + } + + .md\:border-opacity-5 { + --tw-border-opacity: 0.05 !important; + } + + .md\:border-opacity-10 { + --tw-border-opacity: 0.1 !important; + } + + .md\:border-opacity-20 { + --tw-border-opacity: 0.2 !important; + } + + .md\:border-opacity-25 { + --tw-border-opacity: 0.25 !important; + } + + .md\:border-opacity-30 { + --tw-border-opacity: 0.3 !important; + } + + .md\:border-opacity-40 { + --tw-border-opacity: 0.4 !important; + } + + .md\:border-opacity-50 { + --tw-border-opacity: 0.5 !important; + } + + .md\:border-opacity-60 { + --tw-border-opacity: 0.6 !important; + } + + .md\:border-opacity-70 { + --tw-border-opacity: 0.7 !important; + } + + .md\:border-opacity-75 { + --tw-border-opacity: 0.75 !important; + } + + .md\:border-opacity-80 { + --tw-border-opacity: 0.8 !important; + } + + .md\:border-opacity-90 { + --tw-border-opacity: 0.9 !important; + } + + .md\:border-opacity-95 { + --tw-border-opacity: 0.95 !important; + } + + .md\:border-opacity-100 { + --tw-border-opacity: 1 !important; + } + + .group:hover .md\:group-hover\:border-opacity-0 { + --tw-border-opacity: 0 !important; + } + + .group:hover .md\:group-hover\:border-opacity-5 { + --tw-border-opacity: 0.05 !important; + } + + .group:hover .md\:group-hover\:border-opacity-10 { + --tw-border-opacity: 0.1 !important; + } + + .group:hover .md\:group-hover\:border-opacity-20 { + --tw-border-opacity: 0.2 !important; + } + + .group:hover .md\:group-hover\:border-opacity-25 { + --tw-border-opacity: 0.25 !important; + } + + .group:hover .md\:group-hover\:border-opacity-30 { + --tw-border-opacity: 0.3 !important; + } + + .group:hover .md\:group-hover\:border-opacity-40 { + --tw-border-opacity: 0.4 !important; + } + + .group:hover .md\:group-hover\:border-opacity-50 { + --tw-border-opacity: 0.5 !important; + } + + .group:hover .md\:group-hover\:border-opacity-60 { + --tw-border-opacity: 0.6 !important; + } + + .group:hover .md\:group-hover\:border-opacity-70 { + --tw-border-opacity: 0.7 !important; + } + + .group:hover .md\:group-hover\:border-opacity-75 { + --tw-border-opacity: 0.75 !important; + } + + .group:hover .md\:group-hover\:border-opacity-80 { + --tw-border-opacity: 0.8 !important; + } + + .group:hover .md\:group-hover\:border-opacity-90 { + --tw-border-opacity: 0.9 !important; + } + + .group:hover .md\:group-hover\:border-opacity-95 { + --tw-border-opacity: 0.95 !important; + } + + .group:hover .md\:group-hover\:border-opacity-100 { + --tw-border-opacity: 1 !important; + } + + .md\:focus-within\:border-opacity-0:focus-within { + --tw-border-opacity: 0 !important; + } + + .md\:focus-within\:border-opacity-5:focus-within { + --tw-border-opacity: 0.05 !important; + } + + .md\:focus-within\:border-opacity-10:focus-within { + --tw-border-opacity: 0.1 !important; + } + + .md\:focus-within\:border-opacity-20:focus-within { + --tw-border-opacity: 0.2 !important; + } + + .md\:focus-within\:border-opacity-25:focus-within { + --tw-border-opacity: 0.25 !important; + } + + .md\:focus-within\:border-opacity-30:focus-within { + --tw-border-opacity: 0.3 !important; + } + + .md\:focus-within\:border-opacity-40:focus-within { + --tw-border-opacity: 0.4 !important; + } + + .md\:focus-within\:border-opacity-50:focus-within { + --tw-border-opacity: 0.5 !important; + } + + .md\:focus-within\:border-opacity-60:focus-within { + --tw-border-opacity: 0.6 !important; + } + + .md\:focus-within\:border-opacity-70:focus-within { + --tw-border-opacity: 0.7 !important; + } + + .md\:focus-within\:border-opacity-75:focus-within { + --tw-border-opacity: 0.75 !important; + } + + .md\:focus-within\:border-opacity-80:focus-within { + --tw-border-opacity: 0.8 !important; + } + + .md\:focus-within\:border-opacity-90:focus-within { + --tw-border-opacity: 0.9 !important; + } + + .md\:focus-within\:border-opacity-95:focus-within { + --tw-border-opacity: 0.95 !important; + } + + .md\:focus-within\:border-opacity-100:focus-within { + --tw-border-opacity: 1 !important; + } + + .md\:hover\:border-opacity-0:hover { + --tw-border-opacity: 0 !important; + } + + .md\:hover\:border-opacity-5:hover { + --tw-border-opacity: 0.05 !important; + } + + .md\:hover\:border-opacity-10:hover { + --tw-border-opacity: 0.1 !important; + } + + .md\:hover\:border-opacity-20:hover { + --tw-border-opacity: 0.2 !important; + } + + .md\:hover\:border-opacity-25:hover { + --tw-border-opacity: 0.25 !important; + } + + .md\:hover\:border-opacity-30:hover { + --tw-border-opacity: 0.3 !important; + } + + .md\:hover\:border-opacity-40:hover { + --tw-border-opacity: 0.4 !important; + } + + .md\:hover\:border-opacity-50:hover { + --tw-border-opacity: 0.5 !important; + } + + .md\:hover\:border-opacity-60:hover { + --tw-border-opacity: 0.6 !important; + } + + .md\:hover\:border-opacity-70:hover { + --tw-border-opacity: 0.7 !important; + } + + .md\:hover\:border-opacity-75:hover { + --tw-border-opacity: 0.75 !important; + } + + .md\:hover\:border-opacity-80:hover { + --tw-border-opacity: 0.8 !important; + } + + .md\:hover\:border-opacity-90:hover { + --tw-border-opacity: 0.9 !important; + } + + .md\:hover\:border-opacity-95:hover { + --tw-border-opacity: 0.95 !important; + } + + .md\:hover\:border-opacity-100:hover { + --tw-border-opacity: 1 !important; + } + + .md\:focus\:border-opacity-0:focus { + --tw-border-opacity: 0 !important; + } + + .md\:focus\:border-opacity-5:focus { + --tw-border-opacity: 0.05 !important; + } + + .md\:focus\:border-opacity-10:focus { + --tw-border-opacity: 0.1 !important; + } + + .md\:focus\:border-opacity-20:focus { + --tw-border-opacity: 0.2 !important; + } + + .md\:focus\:border-opacity-25:focus { + --tw-border-opacity: 0.25 !important; + } + + .md\:focus\:border-opacity-30:focus { + --tw-border-opacity: 0.3 !important; + } + + .md\:focus\:border-opacity-40:focus { + --tw-border-opacity: 0.4 !important; + } + + .md\:focus\:border-opacity-50:focus { + --tw-border-opacity: 0.5 !important; + } + + .md\:focus\:border-opacity-60:focus { + --tw-border-opacity: 0.6 !important; + } + + .md\:focus\:border-opacity-70:focus { + --tw-border-opacity: 0.7 !important; + } + + .md\:focus\:border-opacity-75:focus { + --tw-border-opacity: 0.75 !important; + } + + .md\:focus\:border-opacity-80:focus { + --tw-border-opacity: 0.8 !important; + } + + .md\:focus\:border-opacity-90:focus { + --tw-border-opacity: 0.9 !important; + } + + .md\:focus\:border-opacity-95:focus { + --tw-border-opacity: 0.95 !important; + } + + .md\:focus\:border-opacity-100:focus { + --tw-border-opacity: 1 !important; + } + + .md\:rounded-none { + border-radius: 0px !important; + } + + .md\:rounded-sm { + border-radius: 0.125rem !important; + } + + .md\:rounded { + border-radius: 0.25rem !important; + } + + .md\:rounded-md { + border-radius: 0.375rem !important; + } + + .md\:rounded-lg { + border-radius: 0.5rem !important; + } + + .md\:rounded-xl { + border-radius: 0.75rem !important; + } + + .md\:rounded-2xl { + border-radius: 1rem !important; + } + + .md\:rounded-3xl { + border-radius: 1.5rem !important; + } + + .md\:rounded-full { + border-radius: 9999px !important; + } + + .md\:rounded-t-none { + border-top-left-radius: 0px !important; + border-top-right-radius: 0px !important; + } + + .md\:rounded-r-none { + border-top-right-radius: 0px !important; + border-bottom-right-radius: 0px !important; + } + + .md\:rounded-b-none { + border-bottom-right-radius: 0px !important; + border-bottom-left-radius: 0px !important; + } + + .md\:rounded-l-none { + border-top-left-radius: 0px !important; + border-bottom-left-radius: 0px !important; + } + + .md\:rounded-t-sm { + border-top-left-radius: 0.125rem !important; + border-top-right-radius: 0.125rem !important; + } + + .md\:rounded-r-sm { + border-top-right-radius: 0.125rem !important; + border-bottom-right-radius: 0.125rem !important; + } + + .md\:rounded-b-sm { + border-bottom-right-radius: 0.125rem !important; + border-bottom-left-radius: 0.125rem !important; + } + + .md\:rounded-l-sm { + border-top-left-radius: 0.125rem !important; + border-bottom-left-radius: 0.125rem !important; + } + + .md\:rounded-t { + border-top-left-radius: 0.25rem !important; + border-top-right-radius: 0.25rem !important; + } + + .md\:rounded-r { + border-top-right-radius: 0.25rem !important; + border-bottom-right-radius: 0.25rem !important; + } + + .md\:rounded-b { + border-bottom-right-radius: 0.25rem !important; + border-bottom-left-radius: 0.25rem !important; + } + + .md\:rounded-l { + border-top-left-radius: 0.25rem !important; + border-bottom-left-radius: 0.25rem !important; + } + + .md\:rounded-t-md { + border-top-left-radius: 0.375rem !important; + border-top-right-radius: 0.375rem !important; + } + + .md\:rounded-r-md { + border-top-right-radius: 0.375rem !important; + border-bottom-right-radius: 0.375rem !important; + } + + .md\:rounded-b-md { + border-bottom-right-radius: 0.375rem !important; + border-bottom-left-radius: 0.375rem !important; + } + + .md\:rounded-l-md { + border-top-left-radius: 0.375rem !important; + border-bottom-left-radius: 0.375rem !important; + } + + .md\:rounded-t-lg { + border-top-left-radius: 0.5rem !important; + border-top-right-radius: 0.5rem !important; + } + + .md\:rounded-r-lg { + border-top-right-radius: 0.5rem !important; + border-bottom-right-radius: 0.5rem !important; + } + + .md\:rounded-b-lg { + border-bottom-right-radius: 0.5rem !important; + border-bottom-left-radius: 0.5rem !important; + } + + .md\:rounded-l-lg { + border-top-left-radius: 0.5rem !important; + border-bottom-left-radius: 0.5rem !important; + } + + .md\:rounded-t-xl { + border-top-left-radius: 0.75rem !important; + border-top-right-radius: 0.75rem !important; + } + + .md\:rounded-r-xl { + border-top-right-radius: 0.75rem !important; + border-bottom-right-radius: 0.75rem !important; + } + + .md\:rounded-b-xl { + border-bottom-right-radius: 0.75rem !important; + border-bottom-left-radius: 0.75rem !important; + } + + .md\:rounded-l-xl { + border-top-left-radius: 0.75rem !important; + border-bottom-left-radius: 0.75rem !important; + } + + .md\:rounded-t-2xl { + border-top-left-radius: 1rem !important; + border-top-right-radius: 1rem !important; + } + + .md\:rounded-r-2xl { + border-top-right-radius: 1rem !important; + border-bottom-right-radius: 1rem !important; + } + + .md\:rounded-b-2xl { + border-bottom-right-radius: 1rem !important; + border-bottom-left-radius: 1rem !important; + } + + .md\:rounded-l-2xl { + border-top-left-radius: 1rem !important; + border-bottom-left-radius: 1rem !important; + } + + .md\:rounded-t-3xl { + border-top-left-radius: 1.5rem !important; + border-top-right-radius: 1.5rem !important; + } + + .md\:rounded-r-3xl { + border-top-right-radius: 1.5rem !important; + border-bottom-right-radius: 1.5rem !important; + } + + .md\:rounded-b-3xl { + border-bottom-right-radius: 1.5rem !important; + border-bottom-left-radius: 1.5rem !important; + } + + .md\:rounded-l-3xl { + border-top-left-radius: 1.5rem !important; + border-bottom-left-radius: 1.5rem !important; + } + + .md\:rounded-t-full { + border-top-left-radius: 9999px !important; + border-top-right-radius: 9999px !important; + } + + .md\:rounded-r-full { + border-top-right-radius: 9999px !important; + border-bottom-right-radius: 9999px !important; + } + + .md\:rounded-b-full { + border-bottom-right-radius: 9999px !important; + border-bottom-left-radius: 9999px !important; + } + + .md\:rounded-l-full { + border-top-left-radius: 9999px !important; + border-bottom-left-radius: 9999px !important; + } + + .md\:rounded-tl-none { + border-top-left-radius: 0px !important; + } + + .md\:rounded-tr-none { + border-top-right-radius: 0px !important; + } + + .md\:rounded-br-none { + border-bottom-right-radius: 0px !important; + } + + .md\:rounded-bl-none { + border-bottom-left-radius: 0px !important; + } + + .md\:rounded-tl-sm { + border-top-left-radius: 0.125rem !important; + } + + .md\:rounded-tr-sm { + border-top-right-radius: 0.125rem !important; + } + + .md\:rounded-br-sm { + border-bottom-right-radius: 0.125rem !important; + } + + .md\:rounded-bl-sm { + border-bottom-left-radius: 0.125rem !important; + } + + .md\:rounded-tl { + border-top-left-radius: 0.25rem !important; + } + + .md\:rounded-tr { + border-top-right-radius: 0.25rem !important; + } + + .md\:rounded-br { + border-bottom-right-radius: 0.25rem !important; + } + + .md\:rounded-bl { + border-bottom-left-radius: 0.25rem !important; + } + + .md\:rounded-tl-md { + border-top-left-radius: 0.375rem !important; + } + + .md\:rounded-tr-md { + border-top-right-radius: 0.375rem !important; + } + + .md\:rounded-br-md { + border-bottom-right-radius: 0.375rem !important; + } + + .md\:rounded-bl-md { + border-bottom-left-radius: 0.375rem !important; + } + + .md\:rounded-tl-lg { + border-top-left-radius: 0.5rem !important; + } + + .md\:rounded-tr-lg { + border-top-right-radius: 0.5rem !important; + } + + .md\:rounded-br-lg { + border-bottom-right-radius: 0.5rem !important; + } + + .md\:rounded-bl-lg { + border-bottom-left-radius: 0.5rem !important; + } + + .md\:rounded-tl-xl { + border-top-left-radius: 0.75rem !important; + } + + .md\:rounded-tr-xl { + border-top-right-radius: 0.75rem !important; + } + + .md\:rounded-br-xl { + border-bottom-right-radius: 0.75rem !important; + } + + .md\:rounded-bl-xl { + border-bottom-left-radius: 0.75rem !important; + } + + .md\:rounded-tl-2xl { + border-top-left-radius: 1rem !important; + } + + .md\:rounded-tr-2xl { + border-top-right-radius: 1rem !important; + } + + .md\:rounded-br-2xl { + border-bottom-right-radius: 1rem !important; + } + + .md\:rounded-bl-2xl { + border-bottom-left-radius: 1rem !important; + } + + .md\:rounded-tl-3xl { + border-top-left-radius: 1.5rem !important; + } + + .md\:rounded-tr-3xl { + border-top-right-radius: 1.5rem !important; + } + + .md\:rounded-br-3xl { + border-bottom-right-radius: 1.5rem !important; + } + + .md\:rounded-bl-3xl { + border-bottom-left-radius: 1.5rem !important; + } + + .md\:rounded-tl-full { + border-top-left-radius: 9999px !important; + } + + .md\:rounded-tr-full { + border-top-right-radius: 9999px !important; + } + + .md\:rounded-br-full { + border-bottom-right-radius: 9999px !important; + } + + .md\:rounded-bl-full { + border-bottom-left-radius: 9999px !important; + } + + .md\:border-solid { + border-style: solid !important; + } + + .md\:border-dashed { + border-style: dashed !important; + } + + .md\:border-dotted { + border-style: dotted !important; + } + + .md\:border-double { + border-style: double !important; + } + + .md\:border-none { + border-style: none !important; + } + + .md\:border-0 { + border-width: 0px !important; + } + + .md\:border-2 { + border-width: 2px !important; + } + + .md\:border-4 { + border-width: 4px !important; + } + + .md\:border-8 { + border-width: 8px !important; + } + + .md\:border { + border-width: 1px !important; + } + + .md\:border-t-0 { + border-top-width: 0px !important; + } + + .md\:border-r-0 { + border-right-width: 0px !important; + } + + .md\:border-b-0 { + border-bottom-width: 0px !important; + } + + .md\:border-l-0 { + border-left-width: 0px !important; + } + + .md\:border-t-2 { + border-top-width: 2px !important; + } + + .md\:border-r-2 { + border-right-width: 2px !important; + } + + .md\:border-b-2 { + border-bottom-width: 2px !important; + } + + .md\:border-l-2 { + border-left-width: 2px !important; + } + + .md\:border-t-4 { + border-top-width: 4px !important; + } + + .md\:border-r-4 { + border-right-width: 4px !important; + } + + .md\:border-b-4 { + border-bottom-width: 4px !important; + } + + .md\:border-l-4 { + border-left-width: 4px !important; + } + + .md\:border-t-8 { + border-top-width: 8px !important; + } + + .md\:border-r-8 { + border-right-width: 8px !important; + } + + .md\:border-b-8 { + border-bottom-width: 8px !important; + } + + .md\:border-l-8 { + border-left-width: 8px !important; + } + + .md\:border-t { + border-top-width: 1px !important; + } + + .md\:border-r { + border-right-width: 1px !important; + } + + .md\:border-b { + border-bottom-width: 1px !important; + } + + .md\:border-l { + border-left-width: 1px !important; + } + + .md\:decoration-slice { + -webkit-box-decoration-break: slice !important; + box-decoration-break: slice !important; + } + + .md\:decoration-clone { + -webkit-box-decoration-break: clone !important; + box-decoration-break: clone !important; + } + + .md\:box-border { + box-sizing: border-box !important; + } + + .md\:box-content { + box-sizing: content-box !important; + } + + .md\:cursor-auto { + cursor: auto !important; + } + + .md\:cursor-default { + cursor: default !important; + } + + .md\:cursor-pointer { + cursor: pointer !important; + } + + .md\:cursor-wait { + cursor: wait !important; + } + + .md\:cursor-text { + cursor: text !important; + } + + .md\:cursor-move { + cursor: move !important; + } + + .md\:cursor-help { + cursor: help !important; + } + + .md\:cursor-not-allowed { + cursor: not-allowed !important; + } + + .md\:block { + display: block !important; + } + + .md\:inline-block { + display: inline-block !important; + } + + .md\:inline { + display: inline !important; + } + + .md\:flex { + display: flex !important; + } + + .md\:inline-flex { + display: inline-flex !important; + } + + .md\:table { + display: table !important; + } + + .md\:inline-table { + display: inline-table !important; + } + + .md\:table-caption { + display: table-caption !important; + } + + .md\:table-cell { + display: table-cell !important; + } + + .md\:table-column { + display: table-column !important; + } + + .md\:table-column-group { + display: table-column-group !important; + } + + .md\:table-footer-group { + display: table-footer-group !important; + } + + .md\:table-header-group { + display: table-header-group !important; + } + + .md\:table-row-group { + display: table-row-group !important; + } + + .md\:table-row { + display: table-row !important; + } + + .md\:flow-root { + display: flow-root !important; + } + + .md\:grid { + display: grid !important; + } + + .md\:inline-grid { + display: inline-grid !important; + } + + .md\:contents { + display: contents !important; + } + + .md\:list-item { + display: list-item !important; + } + + .md\:hidden { + display: none !important; + } + + .md\:flex-row { + flex-direction: row !important; + } + + .md\:flex-row-reverse { + flex-direction: row-reverse !important; + } + + .md\:flex-col { + flex-direction: column !important; + } + + .md\:flex-col-reverse { + flex-direction: column-reverse !important; + } + + .md\:flex-wrap { + flex-wrap: wrap !important; + } + + .md\:flex-wrap-reverse { + flex-wrap: wrap-reverse !important; + } + + .md\:flex-nowrap { + flex-wrap: nowrap !important; + } + + .md\:place-items-start { + place-items: start !important; + } + + .md\:place-items-end { + place-items: end !important; + } + + .md\:place-items-center { + place-items: center !important; + } + + .md\:place-items-stretch { + place-items: stretch !important; + } + + .md\:place-content-center { + place-content: center !important; + } + + .md\:place-content-start { + place-content: start !important; + } + + .md\:place-content-end { + place-content: end !important; + } + + .md\:place-content-between { + place-content: space-between !important; + } + + .md\:place-content-around { + place-content: space-around !important; + } + + .md\:place-content-evenly { + place-content: space-evenly !important; + } + + .md\:place-content-stretch { + place-content: stretch !important; + } + + .md\:place-self-auto { + place-self: auto !important; + } + + .md\:place-self-start { + place-self: start !important; + } + + .md\:place-self-end { + place-self: end !important; + } + + .md\:place-self-center { + place-self: center !important; + } + + .md\:place-self-stretch { + place-self: stretch !important; + } + + .md\:items-start { + align-items: flex-start !important; + } + + .md\:items-end { + align-items: flex-end !important; + } + + .md\:items-center { + align-items: center !important; + } + + .md\:items-baseline { + align-items: baseline !important; + } + + .md\:items-stretch { + align-items: stretch !important; + } + + .md\:content-center { + align-content: center !important; + } + + .md\:content-start { + align-content: flex-start !important; + } + + .md\:content-end { + align-content: flex-end !important; + } + + .md\:content-between { + align-content: space-between !important; + } + + .md\:content-around { + align-content: space-around !important; + } + + .md\:content-evenly { + align-content: space-evenly !important; + } + + .md\:self-auto { + align-self: auto !important; + } + + .md\:self-start { + align-self: flex-start !important; + } + + .md\:self-end { + align-self: flex-end !important; + } + + .md\:self-center { + align-self: center !important; + } + + .md\:self-stretch { + align-self: stretch !important; + } + + .md\:justify-items-start { + justify-items: start !important; + } + + .md\:justify-items-end { + justify-items: end !important; + } + + .md\:justify-items-center { + justify-items: center !important; + } + + .md\:justify-items-stretch { + justify-items: stretch !important; + } + + .md\:justify-start { + justify-content: flex-start !important; + } + + .md\:justify-end { + justify-content: flex-end !important; + } + + .md\:justify-center { + justify-content: center !important; + } + + .md\:justify-between { + justify-content: space-between !important; + } + + .md\:justify-around { + justify-content: space-around !important; + } + + .md\:justify-evenly { + justify-content: space-evenly !important; + } + + .md\:justify-self-auto { + justify-self: auto !important; + } + + .md\:justify-self-start { + justify-self: start !important; + } + + .md\:justify-self-end { + justify-self: end !important; + } + + .md\:justify-self-center { + justify-self: center !important; + } + + .md\:justify-self-stretch { + justify-self: stretch !important; + } + + .md\:flex-1 { + flex: 1 1 0% !important; + } + + .md\:flex-auto { + flex: 1 1 auto !important; + } + + .md\:flex-initial { + flex: 0 1 auto !important; + } + + .md\:flex-none { + flex: none !important; + } + + .md\:flex-grow-0 { + flex-grow: 0 !important; + } + + .md\:flex-grow { + flex-grow: 1 !important; + } + + .md\:flex-shrink-0 { + flex-shrink: 0 !important; + } + + .md\:flex-shrink { + flex-shrink: 1 !important; + } + + .md\:order-1 { + order: 1 !important; + } + + .md\:order-2 { + order: 2 !important; + } + + .md\:order-3 { + order: 3 !important; + } + + .md\:order-4 { + order: 4 !important; + } + + .md\:order-5 { + order: 5 !important; + } + + .md\:order-6 { + order: 6 !important; + } + + .md\:order-7 { + order: 7 !important; + } + + .md\:order-8 { + order: 8 !important; + } + + .md\:order-9 { + order: 9 !important; + } + + .md\:order-10 { + order: 10 !important; + } + + .md\:order-11 { + order: 11 !important; + } + + .md\:order-12 { + order: 12 !important; + } + + .md\:order-first { + order: -9999 !important; + } + + .md\:order-last { + order: 9999 !important; + } + + .md\:order-none { + order: 0 !important; + } + + .md\:float-right { + float: right !important; + } + + .md\:float-left { + float: left !important; + } + + .md\:float-none { + float: none !important; + } + + .md\:clear-left { + clear: left !important; + } + + .md\:clear-right { + clear: right !important; + } + + .md\:clear-both { + clear: both !important; + } + + .md\:clear-none { + clear: none !important; + } + + .md\:font-sans { + font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important; + } + + .md\:font-serif { + font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif !important; + } + + .md\:font-mono { + font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important; + } + + .md\:font-thin { + font-weight: 100 !important; + } + + .md\:font-extralight { + font-weight: 200 !important; + } + + .md\:font-light { + font-weight: 300 !important; + } + + .md\:font-normal { + font-weight: 400 !important; + } + + .md\:font-medium { + font-weight: 500 !important; + } + + .md\:font-semibold { + font-weight: 600 !important; + } + + .md\:font-bold { + font-weight: 700 !important; + } + + .md\:font-extrabold { + font-weight: 800 !important; + } + + .md\:font-black { + font-weight: 900 !important; + } + + .md\:h-0 { + height: 0px !important; + } + + .md\:h-1 { + height: 0.25rem !important; + } + + .md\:h-2 { + height: 0.5rem !important; + } + + .md\:h-3 { + height: 0.75rem !important; + } + + .md\:h-4 { + height: 1rem !important; + } + + .md\:h-5 { + height: 1.25rem !important; + } + + .md\:h-6 { + height: 1.5rem !important; + } + + .md\:h-7 { + height: 1.75rem !important; + } + + .md\:h-8 { + height: 2rem !important; + } + + .md\:h-9 { + height: 2.25rem !important; + } + + .md\:h-10 { + height: 2.5rem !important; + } + + .md\:h-11 { + height: 2.75rem !important; + } + + .md\:h-12 { + height: 3rem !important; + } + + .md\:h-14 { + height: 3.5rem !important; + } + + .md\:h-16 { + height: 4rem !important; + } + + .md\:h-20 { + height: 5rem !important; + } + + .md\:h-24 { + height: 6rem !important; + } + + .md\:h-28 { + height: 7rem !important; + } + + .md\:h-32 { + height: 8rem !important; + } + + .md\:h-36 { + height: 9rem !important; + } + + .md\:h-40 { + height: 10rem !important; + } + + .md\:h-44 { + height: 11rem !important; + } + + .md\:h-48 { + height: 12rem !important; + } + + .md\:h-52 { + height: 13rem !important; + } + + .md\:h-56 { + height: 14rem !important; + } + + .md\:h-60 { + height: 15rem !important; + } + + .md\:h-64 { + height: 16rem !important; + } + + .md\:h-72 { + height: 18rem !important; + } + + .md\:h-80 { + height: 20rem !important; + } + + .md\:h-96 { + height: 24rem !important; + } + + .md\:h-auto { + height: auto !important; + } + + .md\:h-px { + height: 1px !important; + } + + .md\:h-0\.5 { + height: 0.125rem !important; + } + + .md\:h-1\.5 { + height: 0.375rem !important; + } + + .md\:h-2\.5 { + height: 0.625rem !important; + } + + .md\:h-3\.5 { + height: 0.875rem !important; + } + + .md\:h-1\/2 { + height: 50% !important; + } + + .md\:h-1\/3 { + height: 33.333333% !important; + } + + .md\:h-2\/3 { + height: 66.666667% !important; + } + + .md\:h-1\/4 { + height: 25% !important; + } + + .md\:h-2\/4 { + height: 50% !important; + } + + .md\:h-3\/4 { + height: 75% !important; + } + + .md\:h-1\/5 { + height: 20% !important; + } + + .md\:h-2\/5 { + height: 40% !important; + } + + .md\:h-3\/5 { + height: 60% !important; + } + + .md\:h-4\/5 { + height: 80% !important; + } + + .md\:h-1\/6 { + height: 16.666667% !important; + } + + .md\:h-2\/6 { + height: 33.333333% !important; + } + + .md\:h-3\/6 { + height: 50% !important; + } + + .md\:h-4\/6 { + height: 66.666667% !important; + } + + .md\:h-5\/6 { + height: 83.333333% !important; + } + + .md\:h-full { + height: 100% !important; + } + + .md\:h-screen { + height: 100vh !important; + } + + .md\:text-xs { + font-size: 0.75rem !important; + line-height: 1rem !important; + } + + .md\:text-sm { + font-size: 0.875rem !important; + line-height: 1.25rem !important; + } + + .md\:text-base { + font-size: 1rem !important; + line-height: 1.5rem !important; + } + + .md\:text-lg { + font-size: 1.125rem !important; + line-height: 1.75rem !important; + } + + .md\:text-xl { + font-size: 1.25rem !important; + line-height: 1.75rem !important; + } + + .md\:text-2xl { + font-size: 1.5rem !important; + line-height: 2rem !important; + } + + .md\:text-3xl { + font-size: 1.875rem !important; + line-height: 2.25rem !important; + } + + .md\:text-4xl { + font-size: 2.25rem !important; + line-height: 2.5rem !important; + } + + .md\:text-5xl { + font-size: 3rem !important; + line-height: 1 !important; + } + + .md\:text-6xl { + font-size: 3.75rem !important; + line-height: 1 !important; + } + + .md\:text-7xl { + font-size: 4.5rem !important; + line-height: 1 !important; + } + + .md\:text-8xl { + font-size: 6rem !important; + line-height: 1 !important; + } + + .md\:text-9xl { + font-size: 8rem !important; + line-height: 1 !important; + } + + .md\:leading-3 { + line-height: .75rem !important; + } + + .md\:leading-4 { + line-height: 1rem !important; + } + + .md\:leading-5 { + line-height: 1.25rem !important; + } + + .md\:leading-6 { + line-height: 1.5rem !important; + } + + .md\:leading-7 { + line-height: 1.75rem !important; + } + + .md\:leading-8 { + line-height: 2rem !important; + } + + .md\:leading-9 { + line-height: 2.25rem !important; + } + + .md\:leading-10 { + line-height: 2.5rem !important; + } + + .md\:leading-none { + line-height: 1 !important; + } + + .md\:leading-tight { + line-height: 1.25 !important; + } + + .md\:leading-snug { + line-height: 1.375 !important; + } + + .md\:leading-normal { + line-height: 1.5 !important; + } + + .md\:leading-relaxed { + line-height: 1.625 !important; + } + + .md\:leading-loose { + line-height: 2 !important; + } + + .md\:list-inside { + list-style-position: inside !important; + } + + .md\:list-outside { + list-style-position: outside !important; + } + + .md\:list-none { + list-style-type: none !important; + } + + .md\:list-disc { + list-style-type: disc !important; + } + + .md\:list-decimal { + list-style-type: decimal !important; + } + + .md\:m-0 { + margin: 0px !important; + } + + .md\:m-1 { + margin: 0.25rem !important; + } + + .md\:m-2 { + margin: 0.5rem !important; + } + + .md\:m-3 { + margin: 0.75rem !important; + } + + .md\:m-4 { + margin: 1rem !important; + } + + .md\:m-5 { + margin: 1.25rem !important; + } + + .md\:m-6 { + margin: 1.5rem !important; + } + + .md\:m-7 { + margin: 1.75rem !important; + } + + .md\:m-8 { + margin: 2rem !important; + } + + .md\:m-9 { + margin: 2.25rem !important; + } + + .md\:m-10 { + margin: 2.5rem !important; + } + + .md\:m-11 { + margin: 2.75rem !important; + } + + .md\:m-12 { + margin: 3rem !important; + } + + .md\:m-14 { + margin: 3.5rem !important; + } + + .md\:m-16 { + margin: 4rem !important; + } + + .md\:m-20 { + margin: 5rem !important; + } + + .md\:m-24 { + margin: 6rem !important; + } + + .md\:m-28 { + margin: 7rem !important; + } + + .md\:m-32 { + margin: 8rem !important; + } + + .md\:m-36 { + margin: 9rem !important; + } + + .md\:m-40 { + margin: 10rem !important; + } + + .md\:m-44 { + margin: 11rem !important; + } + + .md\:m-48 { + margin: 12rem !important; + } + + .md\:m-52 { + margin: 13rem !important; + } + + .md\:m-56 { + margin: 14rem !important; + } + + .md\:m-60 { + margin: 15rem !important; + } + + .md\:m-64 { + margin: 16rem !important; + } + + .md\:m-72 { + margin: 18rem !important; + } + + .md\:m-80 { + margin: 20rem !important; + } + + .md\:m-96 { + margin: 24rem !important; + } + + .md\:m-auto { + margin: auto !important; + } + + .md\:m-px { + margin: 1px !important; + } + + .md\:m-0\.5 { + margin: 0.125rem !important; + } + + .md\:m-1\.5 { + margin: 0.375rem !important; + } + + .md\:m-2\.5 { + margin: 0.625rem !important; + } + + .md\:m-3\.5 { + margin: 0.875rem !important; + } + + .md\:-m-0 { + margin: 0px !important; + } + + .md\:-m-1 { + margin: -0.25rem !important; + } + + .md\:-m-2 { + margin: -0.5rem !important; + } + + .md\:-m-3 { + margin: -0.75rem !important; + } + + .md\:-m-4 { + margin: -1rem !important; + } + + .md\:-m-5 { + margin: -1.25rem !important; + } + + .md\:-m-6 { + margin: -1.5rem !important; + } + + .md\:-m-7 { + margin: -1.75rem !important; + } + + .md\:-m-8 { + margin: -2rem !important; + } + + .md\:-m-9 { + margin: -2.25rem !important; + } + + .md\:-m-10 { + margin: -2.5rem !important; + } + + .md\:-m-11 { + margin: -2.75rem !important; + } + + .md\:-m-12 { + margin: -3rem !important; + } + + .md\:-m-14 { + margin: -3.5rem !important; + } + + .md\:-m-16 { + margin: -4rem !important; + } + + .md\:-m-20 { + margin: -5rem !important; + } + + .md\:-m-24 { + margin: -6rem !important; + } + + .md\:-m-28 { + margin: -7rem !important; + } + + .md\:-m-32 { + margin: -8rem !important; + } + + .md\:-m-36 { + margin: -9rem !important; + } + + .md\:-m-40 { + margin: -10rem !important; + } + + .md\:-m-44 { + margin: -11rem !important; + } + + .md\:-m-48 { + margin: -12rem !important; + } + + .md\:-m-52 { + margin: -13rem !important; + } + + .md\:-m-56 { + margin: -14rem !important; + } + + .md\:-m-60 { + margin: -15rem !important; + } + + .md\:-m-64 { + margin: -16rem !important; + } + + .md\:-m-72 { + margin: -18rem !important; + } + + .md\:-m-80 { + margin: -20rem !important; + } + + .md\:-m-96 { + margin: -24rem !important; + } + + .md\:-m-px { + margin: -1px !important; + } + + .md\:-m-0\.5 { + margin: -0.125rem !important; + } + + .md\:-m-1\.5 { + margin: -0.375rem !important; + } + + .md\:-m-2\.5 { + margin: -0.625rem !important; + } + + .md\:-m-3\.5 { + margin: -0.875rem !important; + } + + .md\:my-0 { + margin-top: 0px !important; + margin-bottom: 0px !important; + } + + .md\:mx-0 { + margin-left: 0px !important; + margin-right: 0px !important; + } + + .md\:my-1 { + margin-top: 0.25rem !important; + margin-bottom: 0.25rem !important; + } + + .md\:mx-1 { + margin-left: 0.25rem !important; + margin-right: 0.25rem !important; + } + + .md\:my-2 { + margin-top: 0.5rem !important; + margin-bottom: 0.5rem !important; + } + + .md\:mx-2 { + margin-left: 0.5rem !important; + margin-right: 0.5rem !important; + } + + .md\:my-3 { + margin-top: 0.75rem !important; + margin-bottom: 0.75rem !important; + } + + .md\:mx-3 { + margin-left: 0.75rem !important; + margin-right: 0.75rem !important; + } + + .md\:my-4 { + margin-top: 1rem !important; + margin-bottom: 1rem !important; + } + + .md\:mx-4 { + margin-left: 1rem !important; + margin-right: 1rem !important; + } + + .md\:my-5 { + margin-top: 1.25rem !important; + margin-bottom: 1.25rem !important; + } + + .md\:mx-5 { + margin-left: 1.25rem !important; + margin-right: 1.25rem !important; + } + + .md\:my-6 { + margin-top: 1.5rem !important; + margin-bottom: 1.5rem !important; + } + + .md\:mx-6 { + margin-left: 1.5rem !important; + margin-right: 1.5rem !important; + } + + .md\:my-7 { + margin-top: 1.75rem !important; + margin-bottom: 1.75rem !important; + } + + .md\:mx-7 { + margin-left: 1.75rem !important; + margin-right: 1.75rem !important; + } + + .md\:my-8 { + margin-top: 2rem !important; + margin-bottom: 2rem !important; + } + + .md\:mx-8 { + margin-left: 2rem !important; + margin-right: 2rem !important; + } + + .md\:my-9 { + margin-top: 2.25rem !important; + margin-bottom: 2.25rem !important; + } + + .md\:mx-9 { + margin-left: 2.25rem !important; + margin-right: 2.25rem !important; + } + + .md\:my-10 { + margin-top: 2.5rem !important; + margin-bottom: 2.5rem !important; + } + + .md\:mx-10 { + margin-left: 2.5rem !important; + margin-right: 2.5rem !important; + } + + .md\:my-11 { + margin-top: 2.75rem !important; + margin-bottom: 2.75rem !important; + } + + .md\:mx-11 { + margin-left: 2.75rem !important; + margin-right: 2.75rem !important; + } + + .md\:my-12 { + margin-top: 3rem !important; + margin-bottom: 3rem !important; + } + + .md\:mx-12 { + margin-left: 3rem !important; + margin-right: 3rem !important; + } + + .md\:my-14 { + margin-top: 3.5rem !important; + margin-bottom: 3.5rem !important; + } + + .md\:mx-14 { + margin-left: 3.5rem !important; + margin-right: 3.5rem !important; + } + + .md\:my-16 { + margin-top: 4rem !important; + margin-bottom: 4rem !important; + } + + .md\:mx-16 { + margin-left: 4rem !important; + margin-right: 4rem !important; + } + + .md\:my-20 { + margin-top: 5rem !important; + margin-bottom: 5rem !important; + } + + .md\:mx-20 { + margin-left: 5rem !important; + margin-right: 5rem !important; + } + + .md\:my-24 { + margin-top: 6rem !important; + margin-bottom: 6rem !important; + } + + .md\:mx-24 { + margin-left: 6rem !important; + margin-right: 6rem !important; + } + + .md\:my-28 { + margin-top: 7rem !important; + margin-bottom: 7rem !important; + } + + .md\:mx-28 { + margin-left: 7rem !important; + margin-right: 7rem !important; + } + + .md\:my-32 { + margin-top: 8rem !important; + margin-bottom: 8rem !important; + } + + .md\:mx-32 { + margin-left: 8rem !important; + margin-right: 8rem !important; + } + + .md\:my-36 { + margin-top: 9rem !important; + margin-bottom: 9rem !important; + } + + .md\:mx-36 { + margin-left: 9rem !important; + margin-right: 9rem !important; + } + + .md\:my-40 { + margin-top: 10rem !important; + margin-bottom: 10rem !important; + } + + .md\:mx-40 { + margin-left: 10rem !important; + margin-right: 10rem !important; + } + + .md\:my-44 { + margin-top: 11rem !important; + margin-bottom: 11rem !important; + } + + .md\:mx-44 { + margin-left: 11rem !important; + margin-right: 11rem !important; + } + + .md\:my-48 { + margin-top: 12rem !important; + margin-bottom: 12rem !important; + } + + .md\:mx-48 { + margin-left: 12rem !important; + margin-right: 12rem !important; + } + + .md\:my-52 { + margin-top: 13rem !important; + margin-bottom: 13rem !important; + } + + .md\:mx-52 { + margin-left: 13rem !important; + margin-right: 13rem !important; + } + + .md\:my-56 { + margin-top: 14rem !important; + margin-bottom: 14rem !important; + } + + .md\:mx-56 { + margin-left: 14rem !important; + margin-right: 14rem !important; + } + + .md\:my-60 { + margin-top: 15rem !important; + margin-bottom: 15rem !important; + } + + .md\:mx-60 { + margin-left: 15rem !important; + margin-right: 15rem !important; + } + + .md\:my-64 { + margin-top: 16rem !important; + margin-bottom: 16rem !important; + } + + .md\:mx-64 { + margin-left: 16rem !important; + margin-right: 16rem !important; + } + + .md\:my-72 { + margin-top: 18rem !important; + margin-bottom: 18rem !important; + } + + .md\:mx-72 { + margin-left: 18rem !important; + margin-right: 18rem !important; + } + + .md\:my-80 { + margin-top: 20rem !important; + margin-bottom: 20rem !important; + } + + .md\:mx-80 { + margin-left: 20rem !important; + margin-right: 20rem !important; + } + + .md\:my-96 { + margin-top: 24rem !important; + margin-bottom: 24rem !important; + } + + .md\:mx-96 { + margin-left: 24rem !important; + margin-right: 24rem !important; + } + + .md\:my-auto { + margin-top: auto !important; + margin-bottom: auto !important; + } + + .md\:mx-auto { + margin-left: auto !important; + margin-right: auto !important; + } + + .md\:my-px { + margin-top: 1px !important; + margin-bottom: 1px !important; + } + + .md\:mx-px { + margin-left: 1px !important; + margin-right: 1px !important; + } + + .md\:my-0\.5 { + margin-top: 0.125rem !important; + margin-bottom: 0.125rem !important; + } + + .md\:mx-0\.5 { + margin-left: 0.125rem !important; + margin-right: 0.125rem !important; + } + + .md\:my-1\.5 { + margin-top: 0.375rem !important; + margin-bottom: 0.375rem !important; + } + + .md\:mx-1\.5 { + margin-left: 0.375rem !important; + margin-right: 0.375rem !important; + } + + .md\:my-2\.5 { + margin-top: 0.625rem !important; + margin-bottom: 0.625rem !important; + } + + .md\:mx-2\.5 { + margin-left: 0.625rem !important; + margin-right: 0.625rem !important; + } + + .md\:my-3\.5 { + margin-top: 0.875rem !important; + margin-bottom: 0.875rem !important; + } + + .md\:mx-3\.5 { + margin-left: 0.875rem !important; + margin-right: 0.875rem !important; + } + + .md\:-my-0 { + margin-top: 0px !important; + margin-bottom: 0px !important; + } + + .md\:-mx-0 { + margin-left: 0px !important; + margin-right: 0px !important; + } + + .md\:-my-1 { + margin-top: -0.25rem !important; + margin-bottom: -0.25rem !important; + } + + .md\:-mx-1 { + margin-left: -0.25rem !important; + margin-right: -0.25rem !important; + } + + .md\:-my-2 { + margin-top: -0.5rem !important; + margin-bottom: -0.5rem !important; + } + + .md\:-mx-2 { + margin-left: -0.5rem !important; + margin-right: -0.5rem !important; + } + + .md\:-my-3 { + margin-top: -0.75rem !important; + margin-bottom: -0.75rem !important; + } + + .md\:-mx-3 { + margin-left: -0.75rem !important; + margin-right: -0.75rem !important; + } + + .md\:-my-4 { + margin-top: -1rem !important; + margin-bottom: -1rem !important; + } + + .md\:-mx-4 { + margin-left: -1rem !important; + margin-right: -1rem !important; + } + + .md\:-my-5 { + margin-top: -1.25rem !important; + margin-bottom: -1.25rem !important; + } + + .md\:-mx-5 { + margin-left: -1.25rem !important; + margin-right: -1.25rem !important; + } + + .md\:-my-6 { + margin-top: -1.5rem !important; + margin-bottom: -1.5rem !important; + } + + .md\:-mx-6 { + margin-left: -1.5rem !important; + margin-right: -1.5rem !important; + } + + .md\:-my-7 { + margin-top: -1.75rem !important; + margin-bottom: -1.75rem !important; + } + + .md\:-mx-7 { + margin-left: -1.75rem !important; + margin-right: -1.75rem !important; + } + + .md\:-my-8 { + margin-top: -2rem !important; + margin-bottom: -2rem !important; + } + + .md\:-mx-8 { + margin-left: -2rem !important; + margin-right: -2rem !important; + } + + .md\:-my-9 { + margin-top: -2.25rem !important; + margin-bottom: -2.25rem !important; + } + + .md\:-mx-9 { + margin-left: -2.25rem !important; + margin-right: -2.25rem !important; + } + + .md\:-my-10 { + margin-top: -2.5rem !important; + margin-bottom: -2.5rem !important; + } + + .md\:-mx-10 { + margin-left: -2.5rem !important; + margin-right: -2.5rem !important; + } + + .md\:-my-11 { + margin-top: -2.75rem !important; + margin-bottom: -2.75rem !important; + } + + .md\:-mx-11 { + margin-left: -2.75rem !important; + margin-right: -2.75rem !important; + } + + .md\:-my-12 { + margin-top: -3rem !important; + margin-bottom: -3rem !important; + } + + .md\:-mx-12 { + margin-left: -3rem !important; + margin-right: -3rem !important; + } + + .md\:-my-14 { + margin-top: -3.5rem !important; + margin-bottom: -3.5rem !important; + } + + .md\:-mx-14 { + margin-left: -3.5rem !important; + margin-right: -3.5rem !important; + } + + .md\:-my-16 { + margin-top: -4rem !important; + margin-bottom: -4rem !important; + } + + .md\:-mx-16 { + margin-left: -4rem !important; + margin-right: -4rem !important; + } + + .md\:-my-20 { + margin-top: -5rem !important; + margin-bottom: -5rem !important; + } + + .md\:-mx-20 { + margin-left: -5rem !important; + margin-right: -5rem !important; + } + + .md\:-my-24 { + margin-top: -6rem !important; + margin-bottom: -6rem !important; + } + + .md\:-mx-24 { + margin-left: -6rem !important; + margin-right: -6rem !important; + } + + .md\:-my-28 { + margin-top: -7rem !important; + margin-bottom: -7rem !important; + } + + .md\:-mx-28 { + margin-left: -7rem !important; + margin-right: -7rem !important; + } + + .md\:-my-32 { + margin-top: -8rem !important; + margin-bottom: -8rem !important; + } + + .md\:-mx-32 { + margin-left: -8rem !important; + margin-right: -8rem !important; + } + + .md\:-my-36 { + margin-top: -9rem !important; + margin-bottom: -9rem !important; + } + + .md\:-mx-36 { + margin-left: -9rem !important; + margin-right: -9rem !important; + } + + .md\:-my-40 { + margin-top: -10rem !important; + margin-bottom: -10rem !important; + } + + .md\:-mx-40 { + margin-left: -10rem !important; + margin-right: -10rem !important; + } + + .md\:-my-44 { + margin-top: -11rem !important; + margin-bottom: -11rem !important; + } + + .md\:-mx-44 { + margin-left: -11rem !important; + margin-right: -11rem !important; + } + + .md\:-my-48 { + margin-top: -12rem !important; + margin-bottom: -12rem !important; + } + + .md\:-mx-48 { + margin-left: -12rem !important; + margin-right: -12rem !important; + } + + .md\:-my-52 { + margin-top: -13rem !important; + margin-bottom: -13rem !important; + } + + .md\:-mx-52 { + margin-left: -13rem !important; + margin-right: -13rem !important; + } + + .md\:-my-56 { + margin-top: -14rem !important; + margin-bottom: -14rem !important; + } + + .md\:-mx-56 { + margin-left: -14rem !important; + margin-right: -14rem !important; + } + + .md\:-my-60 { + margin-top: -15rem !important; + margin-bottom: -15rem !important; + } + + .md\:-mx-60 { + margin-left: -15rem !important; + margin-right: -15rem !important; + } + + .md\:-my-64 { + margin-top: -16rem !important; + margin-bottom: -16rem !important; + } + + .md\:-mx-64 { + margin-left: -16rem !important; + margin-right: -16rem !important; + } + + .md\:-my-72 { + margin-top: -18rem !important; + margin-bottom: -18rem !important; + } + + .md\:-mx-72 { + margin-left: -18rem !important; + margin-right: -18rem !important; + } + + .md\:-my-80 { + margin-top: -20rem !important; + margin-bottom: -20rem !important; + } + + .md\:-mx-80 { + margin-left: -20rem !important; + margin-right: -20rem !important; + } + + .md\:-my-96 { + margin-top: -24rem !important; + margin-bottom: -24rem !important; + } + + .md\:-mx-96 { + margin-left: -24rem !important; + margin-right: -24rem !important; + } + + .md\:-my-px { + margin-top: -1px !important; + margin-bottom: -1px !important; + } + + .md\:-mx-px { + margin-left: -1px !important; + margin-right: -1px !important; + } + + .md\:-my-0\.5 { + margin-top: -0.125rem !important; + margin-bottom: -0.125rem !important; + } + + .md\:-mx-0\.5 { + margin-left: -0.125rem !important; + margin-right: -0.125rem !important; + } + + .md\:-my-1\.5 { + margin-top: -0.375rem !important; + margin-bottom: -0.375rem !important; + } + + .md\:-mx-1\.5 { + margin-left: -0.375rem !important; + margin-right: -0.375rem !important; + } + + .md\:-my-2\.5 { + margin-top: -0.625rem !important; + margin-bottom: -0.625rem !important; + } + + .md\:-mx-2\.5 { + margin-left: -0.625rem !important; + margin-right: -0.625rem !important; + } + + .md\:-my-3\.5 { + margin-top: -0.875rem !important; + margin-bottom: -0.875rem !important; + } + + .md\:-mx-3\.5 { + margin-left: -0.875rem !important; + margin-right: -0.875rem !important; + } + + .md\:mt-0 { + margin-top: 0px !important; + } + + .md\:mr-0 { + margin-right: 0px !important; + } + + .md\:mb-0 { + margin-bottom: 0px !important; + } + + .md\:ml-0 { + margin-left: 0px !important; + } + + .md\:mt-1 { + margin-top: 0.25rem !important; + } + + .md\:mr-1 { + margin-right: 0.25rem !important; + } + + .md\:mb-1 { + margin-bottom: 0.25rem !important; + } + + .md\:ml-1 { + margin-left: 0.25rem !important; + } + + .md\:mt-2 { + margin-top: 0.5rem !important; + } + + .md\:mr-2 { + margin-right: 0.5rem !important; + } + + .md\:mb-2 { + margin-bottom: 0.5rem !important; + } + + .md\:ml-2 { + margin-left: 0.5rem !important; + } + + .md\:mt-3 { + margin-top: 0.75rem !important; + } + + .md\:mr-3 { + margin-right: 0.75rem !important; + } + + .md\:mb-3 { + margin-bottom: 0.75rem !important; + } + + .md\:ml-3 { + margin-left: 0.75rem !important; + } + + .md\:mt-4 { + margin-top: 1rem !important; + } + + .md\:mr-4 { + margin-right: 1rem !important; + } + + .md\:mb-4 { + margin-bottom: 1rem !important; + } + + .md\:ml-4 { + margin-left: 1rem !important; + } + + .md\:mt-5 { + margin-top: 1.25rem !important; + } + + .md\:mr-5 { + margin-right: 1.25rem !important; + } + + .md\:mb-5 { + margin-bottom: 1.25rem !important; + } + + .md\:ml-5 { + margin-left: 1.25rem !important; + } + + .md\:mt-6 { + margin-top: 1.5rem !important; + } + + .md\:mr-6 { + margin-right: 1.5rem !important; + } + + .md\:mb-6 { + margin-bottom: 1.5rem !important; + } + + .md\:ml-6 { + margin-left: 1.5rem !important; + } + + .md\:mt-7 { + margin-top: 1.75rem !important; + } + + .md\:mr-7 { + margin-right: 1.75rem !important; + } + + .md\:mb-7 { + margin-bottom: 1.75rem !important; + } + + .md\:ml-7 { + margin-left: 1.75rem !important; + } + + .md\:mt-8 { + margin-top: 2rem !important; + } + + .md\:mr-8 { + margin-right: 2rem !important; + } + + .md\:mb-8 { + margin-bottom: 2rem !important; + } + + .md\:ml-8 { + margin-left: 2rem !important; + } + + .md\:mt-9 { + margin-top: 2.25rem !important; + } + + .md\:mr-9 { + margin-right: 2.25rem !important; + } + + .md\:mb-9 { + margin-bottom: 2.25rem !important; + } + + .md\:ml-9 { + margin-left: 2.25rem !important; + } + + .md\:mt-10 { + margin-top: 2.5rem !important; + } + + .md\:mr-10 { + margin-right: 2.5rem !important; + } + + .md\:mb-10 { + margin-bottom: 2.5rem !important; + } + + .md\:ml-10 { + margin-left: 2.5rem !important; + } + + .md\:mt-11 { + margin-top: 2.75rem !important; + } + + .md\:mr-11 { + margin-right: 2.75rem !important; + } + + .md\:mb-11 { + margin-bottom: 2.75rem !important; + } + + .md\:ml-11 { + margin-left: 2.75rem !important; + } + + .md\:mt-12 { + margin-top: 3rem !important; + } + + .md\:mr-12 { + margin-right: 3rem !important; + } + + .md\:mb-12 { + margin-bottom: 3rem !important; + } + + .md\:ml-12 { + margin-left: 3rem !important; + } + + .md\:mt-14 { + margin-top: 3.5rem !important; + } + + .md\:mr-14 { + margin-right: 3.5rem !important; + } + + .md\:mb-14 { + margin-bottom: 3.5rem !important; + } + + .md\:ml-14 { + margin-left: 3.5rem !important; + } + + .md\:mt-16 { + margin-top: 4rem !important; + } + + .md\:mr-16 { + margin-right: 4rem !important; + } + + .md\:mb-16 { + margin-bottom: 4rem !important; + } + + .md\:ml-16 { + margin-left: 4rem !important; + } + + .md\:mt-20 { + margin-top: 5rem !important; + } + + .md\:mr-20 { + margin-right: 5rem !important; + } + + .md\:mb-20 { + margin-bottom: 5rem !important; + } + + .md\:ml-20 { + margin-left: 5rem !important; + } + + .md\:mt-24 { + margin-top: 6rem !important; + } + + .md\:mr-24 { + margin-right: 6rem !important; + } + + .md\:mb-24 { + margin-bottom: 6rem !important; + } + + .md\:ml-24 { + margin-left: 6rem !important; + } + + .md\:mt-28 { + margin-top: 7rem !important; + } + + .md\:mr-28 { + margin-right: 7rem !important; + } + + .md\:mb-28 { + margin-bottom: 7rem !important; + } + + .md\:ml-28 { + margin-left: 7rem !important; + } + + .md\:mt-32 { + margin-top: 8rem !important; + } + + .md\:mr-32 { + margin-right: 8rem !important; + } + + .md\:mb-32 { + margin-bottom: 8rem !important; + } + + .md\:ml-32 { + margin-left: 8rem !important; + } + + .md\:mt-36 { + margin-top: 9rem !important; + } + + .md\:mr-36 { + margin-right: 9rem !important; + } + + .md\:mb-36 { + margin-bottom: 9rem !important; + } + + .md\:ml-36 { + margin-left: 9rem !important; + } + + .md\:mt-40 { + margin-top: 10rem !important; + } + + .md\:mr-40 { + margin-right: 10rem !important; + } + + .md\:mb-40 { + margin-bottom: 10rem !important; + } + + .md\:ml-40 { + margin-left: 10rem !important; + } + + .md\:mt-44 { + margin-top: 11rem !important; + } + + .md\:mr-44 { + margin-right: 11rem !important; + } + + .md\:mb-44 { + margin-bottom: 11rem !important; + } + + .md\:ml-44 { + margin-left: 11rem !important; + } + + .md\:mt-48 { + margin-top: 12rem !important; + } + + .md\:mr-48 { + margin-right: 12rem !important; + } + + .md\:mb-48 { + margin-bottom: 12rem !important; + } + + .md\:ml-48 { + margin-left: 12rem !important; + } + + .md\:mt-52 { + margin-top: 13rem !important; + } + + .md\:mr-52 { + margin-right: 13rem !important; + } + + .md\:mb-52 { + margin-bottom: 13rem !important; + } + + .md\:ml-52 { + margin-left: 13rem !important; + } + + .md\:mt-56 { + margin-top: 14rem !important; + } + + .md\:mr-56 { + margin-right: 14rem !important; + } + + .md\:mb-56 { + margin-bottom: 14rem !important; + } + + .md\:ml-56 { + margin-left: 14rem !important; + } + + .md\:mt-60 { + margin-top: 15rem !important; + } + + .md\:mr-60 { + margin-right: 15rem !important; + } + + .md\:mb-60 { + margin-bottom: 15rem !important; + } + + .md\:ml-60 { + margin-left: 15rem !important; + } + + .md\:mt-64 { + margin-top: 16rem !important; + } + + .md\:mr-64 { + margin-right: 16rem !important; + } + + .md\:mb-64 { + margin-bottom: 16rem !important; + } + + .md\:ml-64 { + margin-left: 16rem !important; + } + + .md\:mt-72 { + margin-top: 18rem !important; + } + + .md\:mr-72 { + margin-right: 18rem !important; + } + + .md\:mb-72 { + margin-bottom: 18rem !important; + } + + .md\:ml-72 { + margin-left: 18rem !important; + } + + .md\:mt-80 { + margin-top: 20rem !important; + } + + .md\:mr-80 { + margin-right: 20rem !important; + } + + .md\:mb-80 { + margin-bottom: 20rem !important; + } + + .md\:ml-80 { + margin-left: 20rem !important; + } + + .md\:mt-96 { + margin-top: 24rem !important; + } + + .md\:mr-96 { + margin-right: 24rem !important; + } + + .md\:mb-96 { + margin-bottom: 24rem !important; + } + + .md\:ml-96 { + margin-left: 24rem !important; + } + + .md\:mt-auto { + margin-top: auto !important; + } + + .md\:mr-auto { + margin-right: auto !important; + } + + .md\:mb-auto { + margin-bottom: auto !important; + } + + .md\:ml-auto { + margin-left: auto !important; + } + + .md\:mt-px { + margin-top: 1px !important; + } + + .md\:mr-px { + margin-right: 1px !important; + } + + .md\:mb-px { + margin-bottom: 1px !important; + } + + .md\:ml-px { + margin-left: 1px !important; + } + + .md\:mt-0\.5 { + margin-top: 0.125rem !important; + } + + .md\:mr-0\.5 { + margin-right: 0.125rem !important; + } + + .md\:mb-0\.5 { + margin-bottom: 0.125rem !important; + } + + .md\:ml-0\.5 { + margin-left: 0.125rem !important; + } + + .md\:mt-1\.5 { + margin-top: 0.375rem !important; + } + + .md\:mr-1\.5 { + margin-right: 0.375rem !important; + } + + .md\:mb-1\.5 { + margin-bottom: 0.375rem !important; + } + + .md\:ml-1\.5 { + margin-left: 0.375rem !important; + } + + .md\:mt-2\.5 { + margin-top: 0.625rem !important; + } + + .md\:mr-2\.5 { + margin-right: 0.625rem !important; + } + + .md\:mb-2\.5 { + margin-bottom: 0.625rem !important; + } + + .md\:ml-2\.5 { + margin-left: 0.625rem !important; + } + + .md\:mt-3\.5 { + margin-top: 0.875rem !important; + } + + .md\:mr-3\.5 { + margin-right: 0.875rem !important; + } + + .md\:mb-3\.5 { + margin-bottom: 0.875rem !important; + } + + .md\:ml-3\.5 { + margin-left: 0.875rem !important; + } + + .md\:-mt-0 { + margin-top: 0px !important; + } + + .md\:-mr-0 { + margin-right: 0px !important; + } + + .md\:-mb-0 { + margin-bottom: 0px !important; + } + + .md\:-ml-0 { + margin-left: 0px !important; + } + + .md\:-mt-1 { + margin-top: -0.25rem !important; + } + + .md\:-mr-1 { + margin-right: -0.25rem !important; + } + + .md\:-mb-1 { + margin-bottom: -0.25rem !important; + } + + .md\:-ml-1 { + margin-left: -0.25rem !important; + } + + .md\:-mt-2 { + margin-top: -0.5rem !important; + } + + .md\:-mr-2 { + margin-right: -0.5rem !important; + } + + .md\:-mb-2 { + margin-bottom: -0.5rem !important; + } + + .md\:-ml-2 { + margin-left: -0.5rem !important; + } + + .md\:-mt-3 { + margin-top: -0.75rem !important; + } + + .md\:-mr-3 { + margin-right: -0.75rem !important; + } + + .md\:-mb-3 { + margin-bottom: -0.75rem !important; + } + + .md\:-ml-3 { + margin-left: -0.75rem !important; + } + + .md\:-mt-4 { + margin-top: -1rem !important; + } + + .md\:-mr-4 { + margin-right: -1rem !important; + } + + .md\:-mb-4 { + margin-bottom: -1rem !important; + } + + .md\:-ml-4 { + margin-left: -1rem !important; + } + + .md\:-mt-5 { + margin-top: -1.25rem !important; + } + + .md\:-mr-5 { + margin-right: -1.25rem !important; + } + + .md\:-mb-5 { + margin-bottom: -1.25rem !important; + } + + .md\:-ml-5 { + margin-left: -1.25rem !important; + } + + .md\:-mt-6 { + margin-top: -1.5rem !important; + } + + .md\:-mr-6 { + margin-right: -1.5rem !important; + } + + .md\:-mb-6 { + margin-bottom: -1.5rem !important; + } + + .md\:-ml-6 { + margin-left: -1.5rem !important; + } + + .md\:-mt-7 { + margin-top: -1.75rem !important; + } + + .md\:-mr-7 { + margin-right: -1.75rem !important; + } + + .md\:-mb-7 { + margin-bottom: -1.75rem !important; + } + + .md\:-ml-7 { + margin-left: -1.75rem !important; + } + + .md\:-mt-8 { + margin-top: -2rem !important; + } + + .md\:-mr-8 { + margin-right: -2rem !important; + } + + .md\:-mb-8 { + margin-bottom: -2rem !important; + } + + .md\:-ml-8 { + margin-left: -2rem !important; + } + + .md\:-mt-9 { + margin-top: -2.25rem !important; + } + + .md\:-mr-9 { + margin-right: -2.25rem !important; + } + + .md\:-mb-9 { + margin-bottom: -2.25rem !important; + } + + .md\:-ml-9 { + margin-left: -2.25rem !important; + } + + .md\:-mt-10 { + margin-top: -2.5rem !important; + } + + .md\:-mr-10 { + margin-right: -2.5rem !important; + } + + .md\:-mb-10 { + margin-bottom: -2.5rem !important; + } + + .md\:-ml-10 { + margin-left: -2.5rem !important; + } + + .md\:-mt-11 { + margin-top: -2.75rem !important; + } + + .md\:-mr-11 { + margin-right: -2.75rem !important; + } + + .md\:-mb-11 { + margin-bottom: -2.75rem !important; + } + + .md\:-ml-11 { + margin-left: -2.75rem !important; + } + + .md\:-mt-12 { + margin-top: -3rem !important; + } + + .md\:-mr-12 { + margin-right: -3rem !important; + } + + .md\:-mb-12 { + margin-bottom: -3rem !important; + } + + .md\:-ml-12 { + margin-left: -3rem !important; + } + + .md\:-mt-14 { + margin-top: -3.5rem !important; + } + + .md\:-mr-14 { + margin-right: -3.5rem !important; + } + + .md\:-mb-14 { + margin-bottom: -3.5rem !important; + } + + .md\:-ml-14 { + margin-left: -3.5rem !important; + } + + .md\:-mt-16 { + margin-top: -4rem !important; + } + + .md\:-mr-16 { + margin-right: -4rem !important; + } + + .md\:-mb-16 { + margin-bottom: -4rem !important; + } + + .md\:-ml-16 { + margin-left: -4rem !important; + } + + .md\:-mt-20 { + margin-top: -5rem !important; + } + + .md\:-mr-20 { + margin-right: -5rem !important; + } + + .md\:-mb-20 { + margin-bottom: -5rem !important; + } + + .md\:-ml-20 { + margin-left: -5rem !important; + } + + .md\:-mt-24 { + margin-top: -6rem !important; + } + + .md\:-mr-24 { + margin-right: -6rem !important; + } + + .md\:-mb-24 { + margin-bottom: -6rem !important; + } + + .md\:-ml-24 { + margin-left: -6rem !important; + } + + .md\:-mt-28 { + margin-top: -7rem !important; + } + + .md\:-mr-28 { + margin-right: -7rem !important; + } + + .md\:-mb-28 { + margin-bottom: -7rem !important; + } + + .md\:-ml-28 { + margin-left: -7rem !important; + } + + .md\:-mt-32 { + margin-top: -8rem !important; + } + + .md\:-mr-32 { + margin-right: -8rem !important; + } + + .md\:-mb-32 { + margin-bottom: -8rem !important; + } + + .md\:-ml-32 { + margin-left: -8rem !important; + } + + .md\:-mt-36 { + margin-top: -9rem !important; + } + + .md\:-mr-36 { + margin-right: -9rem !important; + } + + .md\:-mb-36 { + margin-bottom: -9rem !important; + } + + .md\:-ml-36 { + margin-left: -9rem !important; + } + + .md\:-mt-40 { + margin-top: -10rem !important; + } + + .md\:-mr-40 { + margin-right: -10rem !important; + } + + .md\:-mb-40 { + margin-bottom: -10rem !important; + } + + .md\:-ml-40 { + margin-left: -10rem !important; + } + + .md\:-mt-44 { + margin-top: -11rem !important; + } + + .md\:-mr-44 { + margin-right: -11rem !important; + } + + .md\:-mb-44 { + margin-bottom: -11rem !important; + } + + .md\:-ml-44 { + margin-left: -11rem !important; + } + + .md\:-mt-48 { + margin-top: -12rem !important; + } + + .md\:-mr-48 { + margin-right: -12rem !important; + } + + .md\:-mb-48 { + margin-bottom: -12rem !important; + } + + .md\:-ml-48 { + margin-left: -12rem !important; + } + + .md\:-mt-52 { + margin-top: -13rem !important; + } + + .md\:-mr-52 { + margin-right: -13rem !important; + } + + .md\:-mb-52 { + margin-bottom: -13rem !important; + } + + .md\:-ml-52 { + margin-left: -13rem !important; + } + + .md\:-mt-56 { + margin-top: -14rem !important; + } + + .md\:-mr-56 { + margin-right: -14rem !important; + } + + .md\:-mb-56 { + margin-bottom: -14rem !important; + } + + .md\:-ml-56 { + margin-left: -14rem !important; + } + + .md\:-mt-60 { + margin-top: -15rem !important; + } + + .md\:-mr-60 { + margin-right: -15rem !important; + } + + .md\:-mb-60 { + margin-bottom: -15rem !important; + } + + .md\:-ml-60 { + margin-left: -15rem !important; + } + + .md\:-mt-64 { + margin-top: -16rem !important; + } + + .md\:-mr-64 { + margin-right: -16rem !important; + } + + .md\:-mb-64 { + margin-bottom: -16rem !important; + } + + .md\:-ml-64 { + margin-left: -16rem !important; + } + + .md\:-mt-72 { + margin-top: -18rem !important; + } + + .md\:-mr-72 { + margin-right: -18rem !important; + } + + .md\:-mb-72 { + margin-bottom: -18rem !important; + } + + .md\:-ml-72 { + margin-left: -18rem !important; + } + + .md\:-mt-80 { + margin-top: -20rem !important; + } + + .md\:-mr-80 { + margin-right: -20rem !important; + } + + .md\:-mb-80 { + margin-bottom: -20rem !important; + } + + .md\:-ml-80 { + margin-left: -20rem !important; + } + + .md\:-mt-96 { + margin-top: -24rem !important; + } + + .md\:-mr-96 { + margin-right: -24rem !important; + } + + .md\:-mb-96 { + margin-bottom: -24rem !important; + } + + .md\:-ml-96 { + margin-left: -24rem !important; + } + + .md\:-mt-px { + margin-top: -1px !important; + } + + .md\:-mr-px { + margin-right: -1px !important; + } + + .md\:-mb-px { + margin-bottom: -1px !important; + } + + .md\:-ml-px { + margin-left: -1px !important; + } + + .md\:-mt-0\.5 { + margin-top: -0.125rem !important; + } + + .md\:-mr-0\.5 { + margin-right: -0.125rem !important; + } + + .md\:-mb-0\.5 { + margin-bottom: -0.125rem !important; + } + + .md\:-ml-0\.5 { + margin-left: -0.125rem !important; + } + + .md\:-mt-1\.5 { + margin-top: -0.375rem !important; + } + + .md\:-mr-1\.5 { + margin-right: -0.375rem !important; + } + + .md\:-mb-1\.5 { + margin-bottom: -0.375rem !important; + } + + .md\:-ml-1\.5 { + margin-left: -0.375rem !important; + } + + .md\:-mt-2\.5 { + margin-top: -0.625rem !important; + } + + .md\:-mr-2\.5 { + margin-right: -0.625rem !important; + } + + .md\:-mb-2\.5 { + margin-bottom: -0.625rem !important; + } + + .md\:-ml-2\.5 { + margin-left: -0.625rem !important; + } + + .md\:-mt-3\.5 { + margin-top: -0.875rem !important; + } + + .md\:-mr-3\.5 { + margin-right: -0.875rem !important; + } + + .md\:-mb-3\.5 { + margin-bottom: -0.875rem !important; + } + + .md\:-ml-3\.5 { + margin-left: -0.875rem !important; + } + + .md\:max-h-0 { + max-height: 0px !important; + } + + .md\:max-h-1 { + max-height: 0.25rem !important; + } + + .md\:max-h-2 { + max-height: 0.5rem !important; + } + + .md\:max-h-3 { + max-height: 0.75rem !important; + } + + .md\:max-h-4 { + max-height: 1rem !important; + } + + .md\:max-h-5 { + max-height: 1.25rem !important; + } + + .md\:max-h-6 { + max-height: 1.5rem !important; + } + + .md\:max-h-7 { + max-height: 1.75rem !important; + } + + .md\:max-h-8 { + max-height: 2rem !important; + } + + .md\:max-h-9 { + max-height: 2.25rem !important; + } + + .md\:max-h-10 { + max-height: 2.5rem !important; + } + + .md\:max-h-11 { + max-height: 2.75rem !important; + } + + .md\:max-h-12 { + max-height: 3rem !important; + } + + .md\:max-h-14 { + max-height: 3.5rem !important; + } + + .md\:max-h-16 { + max-height: 4rem !important; + } + + .md\:max-h-20 { + max-height: 5rem !important; + } + + .md\:max-h-24 { + max-height: 6rem !important; + } + + .md\:max-h-28 { + max-height: 7rem !important; + } + + .md\:max-h-32 { + max-height: 8rem !important; + } + + .md\:max-h-36 { + max-height: 9rem !important; + } + + .md\:max-h-40 { + max-height: 10rem !important; + } + + .md\:max-h-44 { + max-height: 11rem !important; + } + + .md\:max-h-48 { + max-height: 12rem !important; + } + + .md\:max-h-52 { + max-height: 13rem !important; + } + + .md\:max-h-56 { + max-height: 14rem !important; + } + + .md\:max-h-60 { + max-height: 15rem !important; + } + + .md\:max-h-64 { + max-height: 16rem !important; + } + + .md\:max-h-72 { + max-height: 18rem !important; + } + + .md\:max-h-80 { + max-height: 20rem !important; + } + + .md\:max-h-96 { + max-height: 24rem !important; + } + + .md\:max-h-px { + max-height: 1px !important; + } + + .md\:max-h-0\.5 { + max-height: 0.125rem !important; + } + + .md\:max-h-1\.5 { + max-height: 0.375rem !important; + } + + .md\:max-h-2\.5 { + max-height: 0.625rem !important; + } + + .md\:max-h-3\.5 { + max-height: 0.875rem !important; + } + + .md\:max-h-full { + max-height: 100% !important; + } + + .md\:max-h-screen { + max-height: 100vh !important; + } + + .md\:max-w-0 { + max-width: 0rem !important; + } + + .md\:max-w-none { + max-width: none !important; + } + + .md\:max-w-xs { + max-width: 20rem !important; + } + + .md\:max-w-sm { + max-width: 24rem !important; + } + + .md\:max-w-md { + max-width: 28rem !important; + } + + .md\:max-w-lg { + max-width: 32rem !important; + } + + .md\:max-w-xl { + max-width: 36rem !important; + } + + .md\:max-w-2xl { + max-width: 42rem !important; + } + + .md\:max-w-3xl { + max-width: 48rem !important; + } + + .md\:max-w-4xl { + max-width: 56rem !important; + } + + .md\:max-w-5xl { + max-width: 64rem !important; + } + + .md\:max-w-6xl { + max-width: 72rem !important; + } + + .md\:max-w-7xl { + max-width: 80rem !important; + } + + .md\:max-w-full { + max-width: 100% !important; + } + + .md\:max-w-min { + max-width: -webkit-min-content !important; + max-width: -moz-min-content !important; + max-width: min-content !important; + } + + .md\:max-w-max { + max-width: -webkit-max-content !important; + max-width: -moz-max-content !important; + max-width: max-content !important; + } + + .md\:max-w-prose { + max-width: 65ch !important; + } + + .md\:max-w-screen-sm { + max-width: 640px !important; + } + + .md\:max-w-screen-md { + max-width: 768px !important; + } + + .md\:max-w-screen-lg { + max-width: 1024px !important; + } + + .md\:max-w-screen-xl { + max-width: 1280px !important; + } + + .md\:max-w-screen-2xl { + max-width: 1536px !important; + } + + .md\:min-h-0 { + min-height: 0px !important; + } + + .md\:min-h-full { + min-height: 100% !important; + } + + .md\:min-h-screen { + min-height: 100vh !important; + } + + .md\:min-w-0 { + min-width: 0px !important; + } + + .md\:min-w-full { + min-width: 100% !important; + } + + .md\:min-w-min { + min-width: -webkit-min-content !important; + min-width: -moz-min-content !important; + min-width: min-content !important; + } + + .md\:min-w-max { + min-width: -webkit-max-content !important; + min-width: -moz-max-content !important; + min-width: max-content !important; + } + + .md\:object-contain { + -o-object-fit: contain !important; + object-fit: contain !important; + } + + .md\:object-cover { + -o-object-fit: cover !important; + object-fit: cover !important; + } + + .md\:object-fill { + -o-object-fit: fill !important; + object-fit: fill !important; + } + + .md\:object-none { + -o-object-fit: none !important; + object-fit: none !important; + } + + .md\:object-scale-down { + -o-object-fit: scale-down !important; + object-fit: scale-down !important; + } + + .md\:object-bottom { + -o-object-position: bottom !important; + object-position: bottom !important; + } + + .md\:object-center { + -o-object-position: center !important; + object-position: center !important; + } + + .md\:object-left { + -o-object-position: left !important; + object-position: left !important; + } + + .md\:object-left-bottom { + -o-object-position: left bottom !important; + object-position: left bottom !important; + } + + .md\:object-left-top { + -o-object-position: left top !important; + object-position: left top !important; + } + + .md\:object-right { + -o-object-position: right !important; + object-position: right !important; + } + + .md\:object-right-bottom { + -o-object-position: right bottom !important; + object-position: right bottom !important; + } + + .md\:object-right-top { + -o-object-position: right top !important; + object-position: right top !important; + } + + .md\:object-top { + -o-object-position: top !important; + object-position: top !important; + } + + .md\:opacity-0 { + opacity: 0 !important; + } + + .md\:opacity-5 { + opacity: 0.05 !important; + } + + .md\:opacity-10 { + opacity: 0.1 !important; + } + + .md\:opacity-20 { + opacity: 0.2 !important; + } + + .md\:opacity-25 { + opacity: 0.25 !important; + } + + .md\:opacity-30 { + opacity: 0.3 !important; + } + + .md\:opacity-40 { + opacity: 0.4 !important; + } + + .md\:opacity-50 { + opacity: 0.5 !important; + } + + .md\:opacity-60 { + opacity: 0.6 !important; + } + + .md\:opacity-70 { + opacity: 0.7 !important; + } + + .md\:opacity-75 { + opacity: 0.75 !important; + } + + .md\:opacity-80 { + opacity: 0.8 !important; + } + + .md\:opacity-90 { + opacity: 0.9 !important; + } + + .md\:opacity-95 { + opacity: 0.95 !important; + } + + .md\:opacity-100 { + opacity: 1 !important; + } + + .group:hover .md\:group-hover\:opacity-0 { + opacity: 0 !important; + } + + .group:hover .md\:group-hover\:opacity-5 { + opacity: 0.05 !important; + } + + .group:hover .md\:group-hover\:opacity-10 { + opacity: 0.1 !important; + } + + .group:hover .md\:group-hover\:opacity-20 { + opacity: 0.2 !important; + } + + .group:hover .md\:group-hover\:opacity-25 { + opacity: 0.25 !important; + } + + .group:hover .md\:group-hover\:opacity-30 { + opacity: 0.3 !important; + } + + .group:hover .md\:group-hover\:opacity-40 { + opacity: 0.4 !important; + } + + .group:hover .md\:group-hover\:opacity-50 { + opacity: 0.5 !important; + } + + .group:hover .md\:group-hover\:opacity-60 { + opacity: 0.6 !important; + } + + .group:hover .md\:group-hover\:opacity-70 { + opacity: 0.7 !important; + } + + .group:hover .md\:group-hover\:opacity-75 { + opacity: 0.75 !important; + } + + .group:hover .md\:group-hover\:opacity-80 { + opacity: 0.8 !important; + } + + .group:hover .md\:group-hover\:opacity-90 { + opacity: 0.9 !important; + } + + .group:hover .md\:group-hover\:opacity-95 { + opacity: 0.95 !important; + } + + .group:hover .md\:group-hover\:opacity-100 { + opacity: 1 !important; + } + + .md\:focus-within\:opacity-0:focus-within { + opacity: 0 !important; + } + + .md\:focus-within\:opacity-5:focus-within { + opacity: 0.05 !important; + } + + .md\:focus-within\:opacity-10:focus-within { + opacity: 0.1 !important; + } + + .md\:focus-within\:opacity-20:focus-within { + opacity: 0.2 !important; + } + + .md\:focus-within\:opacity-25:focus-within { + opacity: 0.25 !important; + } + + .md\:focus-within\:opacity-30:focus-within { + opacity: 0.3 !important; + } + + .md\:focus-within\:opacity-40:focus-within { + opacity: 0.4 !important; + } + + .md\:focus-within\:opacity-50:focus-within { + opacity: 0.5 !important; + } + + .md\:focus-within\:opacity-60:focus-within { + opacity: 0.6 !important; + } + + .md\:focus-within\:opacity-70:focus-within { + opacity: 0.7 !important; + } + + .md\:focus-within\:opacity-75:focus-within { + opacity: 0.75 !important; + } + + .md\:focus-within\:opacity-80:focus-within { + opacity: 0.8 !important; + } + + .md\:focus-within\:opacity-90:focus-within { + opacity: 0.9 !important; + } + + .md\:focus-within\:opacity-95:focus-within { + opacity: 0.95 !important; + } + + .md\:focus-within\:opacity-100:focus-within { + opacity: 1 !important; + } + + .md\:hover\:opacity-0:hover { + opacity: 0 !important; + } + + .md\:hover\:opacity-5:hover { + opacity: 0.05 !important; + } + + .md\:hover\:opacity-10:hover { + opacity: 0.1 !important; + } + + .md\:hover\:opacity-20:hover { + opacity: 0.2 !important; + } + + .md\:hover\:opacity-25:hover { + opacity: 0.25 !important; + } + + .md\:hover\:opacity-30:hover { + opacity: 0.3 !important; + } + + .md\:hover\:opacity-40:hover { + opacity: 0.4 !important; + } + + .md\:hover\:opacity-50:hover { + opacity: 0.5 !important; + } + + .md\:hover\:opacity-60:hover { + opacity: 0.6 !important; + } + + .md\:hover\:opacity-70:hover { + opacity: 0.7 !important; + } + + .md\:hover\:opacity-75:hover { + opacity: 0.75 !important; + } + + .md\:hover\:opacity-80:hover { + opacity: 0.8 !important; + } + + .md\:hover\:opacity-90:hover { + opacity: 0.9 !important; + } + + .md\:hover\:opacity-95:hover { + opacity: 0.95 !important; + } + + .md\:hover\:opacity-100:hover { + opacity: 1 !important; + } + + .md\:focus\:opacity-0:focus { + opacity: 0 !important; + } + + .md\:focus\:opacity-5:focus { + opacity: 0.05 !important; + } + + .md\:focus\:opacity-10:focus { + opacity: 0.1 !important; + } + + .md\:focus\:opacity-20:focus { + opacity: 0.2 !important; + } + + .md\:focus\:opacity-25:focus { + opacity: 0.25 !important; + } + + .md\:focus\:opacity-30:focus { + opacity: 0.3 !important; + } + + .md\:focus\:opacity-40:focus { + opacity: 0.4 !important; + } + + .md\:focus\:opacity-50:focus { + opacity: 0.5 !important; + } + + .md\:focus\:opacity-60:focus { + opacity: 0.6 !important; + } + + .md\:focus\:opacity-70:focus { + opacity: 0.7 !important; + } + + .md\:focus\:opacity-75:focus { + opacity: 0.75 !important; + } + + .md\:focus\:opacity-80:focus { + opacity: 0.8 !important; + } + + .md\:focus\:opacity-90:focus { + opacity: 0.9 !important; + } + + .md\:focus\:opacity-95:focus { + opacity: 0.95 !important; + } + + .md\:focus\:opacity-100:focus { + opacity: 1 !important; + } + + .md\:disabled\:opacity-0:disabled { + opacity: 0 !important; + } + + .md\:disabled\:opacity-5:disabled { + opacity: 0.05 !important; + } + + .md\:disabled\:opacity-10:disabled { + opacity: 0.1 !important; + } + + .md\:disabled\:opacity-20:disabled { + opacity: 0.2 !important; + } + + .md\:disabled\:opacity-25:disabled { + opacity: 0.25 !important; + } + + .md\:disabled\:opacity-30:disabled { + opacity: 0.3 !important; + } + + .md\:disabled\:opacity-40:disabled { + opacity: 0.4 !important; + } + + .md\:disabled\:opacity-50:disabled { + opacity: 0.5 !important; + } + + .md\:disabled\:opacity-60:disabled { + opacity: 0.6 !important; + } + + .md\:disabled\:opacity-70:disabled { + opacity: 0.7 !important; + } + + .md\:disabled\:opacity-75:disabled { + opacity: 0.75 !important; + } + + .md\:disabled\:opacity-80:disabled { + opacity: 0.8 !important; + } + + .md\:disabled\:opacity-90:disabled { + opacity: 0.9 !important; + } + + .md\:disabled\:opacity-95:disabled { + opacity: 0.95 !important; + } + + .md\:disabled\:opacity-100:disabled { + opacity: 1 !important; + } + + .md\:outline-none { + outline: 2px solid transparent !important; + outline-offset: 2px !important; + } + + .md\:outline-white { + outline: 2px dotted white !important; + outline-offset: 2px !important; + } + + .md\:outline-black { + outline: 2px dotted black !important; + outline-offset: 2px !important; + } + + .md\:focus-within\:outline-none:focus-within { + outline: 2px solid transparent !important; + outline-offset: 2px !important; + } + + .md\:focus-within\:outline-white:focus-within { + outline: 2px dotted white !important; + outline-offset: 2px !important; + } + + .md\:focus-within\:outline-black:focus-within { + outline: 2px dotted black !important; + outline-offset: 2px !important; + } + + .md\:focus\:outline-none:focus { + outline: 2px solid transparent !important; + outline-offset: 2px !important; + } + + .md\:focus\:outline-white:focus { + outline: 2px dotted white !important; + outline-offset: 2px !important; + } + + .md\:focus\:outline-black:focus { + outline: 2px dotted black !important; + outline-offset: 2px !important; + } + + .md\:overflow-auto { + overflow: auto !important; + } + + .md\:overflow-hidden { + overflow: hidden !important; + } + + .md\:overflow-visible { + overflow: visible !important; + } + + .md\:overflow-scroll { + overflow: scroll !important; + } + + .md\:overflow-x-auto { + overflow-x: auto !important; + } + + .md\:overflow-y-auto { + overflow-y: auto !important; + } + + .md\:overflow-x-hidden { + overflow-x: hidden !important; + } + + .md\:overflow-y-hidden { + overflow-y: hidden !important; + } + + .md\:overflow-x-visible { + overflow-x: visible !important; + } + + .md\:overflow-y-visible { + overflow-y: visible !important; + } + + .md\:overflow-x-scroll { + overflow-x: scroll !important; + } + + .md\:overflow-y-scroll { + overflow-y: scroll !important; + } + + .md\:overscroll-auto { + -ms-scroll-chaining: chained !important; + overscroll-behavior: auto !important; + } + + .md\:overscroll-contain { + -ms-scroll-chaining: none !important; + overscroll-behavior: contain !important; + } + + .md\:overscroll-none { + -ms-scroll-chaining: none !important; + overscroll-behavior: none !important; + } + + .md\:overscroll-y-auto { + overscroll-behavior-y: auto !important; + } + + .md\:overscroll-y-contain { + overscroll-behavior-y: contain !important; + } + + .md\:overscroll-y-none { + overscroll-behavior-y: none !important; + } + + .md\:overscroll-x-auto { + overscroll-behavior-x: auto !important; + } + + .md\:overscroll-x-contain { + overscroll-behavior-x: contain !important; + } + + .md\:overscroll-x-none { + overscroll-behavior-x: none !important; + } + + .md\:p-0 { + padding: 0px !important; + } + + .md\:p-1 { + padding: 0.25rem !important; + } + + .md\:p-2 { + padding: 0.5rem !important; + } + + .md\:p-3 { + padding: 0.75rem !important; + } + + .md\:p-4 { + padding: 1rem !important; + } + + .md\:p-5 { + padding: 1.25rem !important; + } + + .md\:p-6 { + padding: 1.5rem !important; + } + + .md\:p-7 { + padding: 1.75rem !important; + } + + .md\:p-8 { + padding: 2rem !important; + } + + .md\:p-9 { + padding: 2.25rem !important; + } + + .md\:p-10 { + padding: 2.5rem !important; + } + + .md\:p-11 { + padding: 2.75rem !important; + } + + .md\:p-12 { + padding: 3rem !important; + } + + .md\:p-14 { + padding: 3.5rem !important; + } + + .md\:p-16 { + padding: 4rem !important; + } + + .md\:p-20 { + padding: 5rem !important; + } + + .md\:p-24 { + padding: 6rem !important; + } + + .md\:p-28 { + padding: 7rem !important; + } + + .md\:p-32 { + padding: 8rem !important; + } + + .md\:p-36 { + padding: 9rem !important; + } + + .md\:p-40 { + padding: 10rem !important; + } + + .md\:p-44 { + padding: 11rem !important; + } + + .md\:p-48 { + padding: 12rem !important; + } + + .md\:p-52 { + padding: 13rem !important; + } + + .md\:p-56 { + padding: 14rem !important; + } + + .md\:p-60 { + padding: 15rem !important; + } + + .md\:p-64 { + padding: 16rem !important; + } + + .md\:p-72 { + padding: 18rem !important; + } + + .md\:p-80 { + padding: 20rem !important; + } + + .md\:p-96 { + padding: 24rem !important; + } + + .md\:p-px { + padding: 1px !important; + } + + .md\:p-0\.5 { + padding: 0.125rem !important; + } + + .md\:p-1\.5 { + padding: 0.375rem !important; + } + + .md\:p-2\.5 { + padding: 0.625rem !important; + } + + .md\:p-3\.5 { + padding: 0.875rem !important; + } + + .md\:py-0 { + padding-top: 0px !important; + padding-bottom: 0px !important; + } + + .md\:px-0 { + padding-left: 0px !important; + padding-right: 0px !important; + } + + .md\:py-1 { + padding-top: 0.25rem !important; + padding-bottom: 0.25rem !important; + } + + .md\:px-1 { + padding-left: 0.25rem !important; + padding-right: 0.25rem !important; + } + + .md\:py-2 { + padding-top: 0.5rem !important; + padding-bottom: 0.5rem !important; + } + + .md\:px-2 { + padding-left: 0.5rem !important; + padding-right: 0.5rem !important; + } + + .md\:py-3 { + padding-top: 0.75rem !important; + padding-bottom: 0.75rem !important; + } + + .md\:px-3 { + padding-left: 0.75rem !important; + padding-right: 0.75rem !important; + } + + .md\:py-4 { + padding-top: 1rem !important; + padding-bottom: 1rem !important; + } + + .md\:px-4 { + padding-left: 1rem !important; + padding-right: 1rem !important; + } + + .md\:py-5 { + padding-top: 1.25rem !important; + padding-bottom: 1.25rem !important; + } + + .md\:px-5 { + padding-left: 1.25rem !important; + padding-right: 1.25rem !important; + } + + .md\:py-6 { + padding-top: 1.5rem !important; + padding-bottom: 1.5rem !important; + } + + .md\:px-6 { + padding-left: 1.5rem !important; + padding-right: 1.5rem !important; + } + + .md\:py-7 { + padding-top: 1.75rem !important; + padding-bottom: 1.75rem !important; + } + + .md\:px-7 { + padding-left: 1.75rem !important; + padding-right: 1.75rem !important; + } + + .md\:py-8 { + padding-top: 2rem !important; + padding-bottom: 2rem !important; + } + + .md\:px-8 { + padding-left: 2rem !important; + padding-right: 2rem !important; + } + + .md\:py-9 { + padding-top: 2.25rem !important; + padding-bottom: 2.25rem !important; + } + + .md\:px-9 { + padding-left: 2.25rem !important; + padding-right: 2.25rem !important; + } + + .md\:py-10 { + padding-top: 2.5rem !important; + padding-bottom: 2.5rem !important; + } + + .md\:px-10 { + padding-left: 2.5rem !important; + padding-right: 2.5rem !important; + } + + .md\:py-11 { + padding-top: 2.75rem !important; + padding-bottom: 2.75rem !important; + } + + .md\:px-11 { + padding-left: 2.75rem !important; + padding-right: 2.75rem !important; + } + + .md\:py-12 { + padding-top: 3rem !important; + padding-bottom: 3rem !important; + } + + .md\:px-12 { + padding-left: 3rem !important; + padding-right: 3rem !important; + } + + .md\:py-14 { + padding-top: 3.5rem !important; + padding-bottom: 3.5rem !important; + } + + .md\:px-14 { + padding-left: 3.5rem !important; + padding-right: 3.5rem !important; + } + + .md\:py-16 { + padding-top: 4rem !important; + padding-bottom: 4rem !important; + } + + .md\:px-16 { + padding-left: 4rem !important; + padding-right: 4rem !important; + } + + .md\:py-20 { + padding-top: 5rem !important; + padding-bottom: 5rem !important; + } + + .md\:px-20 { + padding-left: 5rem !important; + padding-right: 5rem !important; + } + + .md\:py-24 { + padding-top: 6rem !important; + padding-bottom: 6rem !important; + } + + .md\:px-24 { + padding-left: 6rem !important; + padding-right: 6rem !important; + } + + .md\:py-28 { + padding-top: 7rem !important; + padding-bottom: 7rem !important; + } + + .md\:px-28 { + padding-left: 7rem !important; + padding-right: 7rem !important; + } + + .md\:py-32 { + padding-top: 8rem !important; + padding-bottom: 8rem !important; + } + + .md\:px-32 { + padding-left: 8rem !important; + padding-right: 8rem !important; + } + + .md\:py-36 { + padding-top: 9rem !important; + padding-bottom: 9rem !important; + } + + .md\:px-36 { + padding-left: 9rem !important; + padding-right: 9rem !important; + } + + .md\:py-40 { + padding-top: 10rem !important; + padding-bottom: 10rem !important; + } + + .md\:px-40 { + padding-left: 10rem !important; + padding-right: 10rem !important; + } + + .md\:py-44 { + padding-top: 11rem !important; + padding-bottom: 11rem !important; + } + + .md\:px-44 { + padding-left: 11rem !important; + padding-right: 11rem !important; + } + + .md\:py-48 { + padding-top: 12rem !important; + padding-bottom: 12rem !important; + } + + .md\:px-48 { + padding-left: 12rem !important; + padding-right: 12rem !important; + } + + .md\:py-52 { + padding-top: 13rem !important; + padding-bottom: 13rem !important; + } + + .md\:px-52 { + padding-left: 13rem !important; + padding-right: 13rem !important; + } + + .md\:py-56 { + padding-top: 14rem !important; + padding-bottom: 14rem !important; + } + + .md\:px-56 { + padding-left: 14rem !important; + padding-right: 14rem !important; + } + + .md\:py-60 { + padding-top: 15rem !important; + padding-bottom: 15rem !important; + } + + .md\:px-60 { + padding-left: 15rem !important; + padding-right: 15rem !important; + } + + .md\:py-64 { + padding-top: 16rem !important; + padding-bottom: 16rem !important; + } + + .md\:px-64 { + padding-left: 16rem !important; + padding-right: 16rem !important; + } + + .md\:py-72 { + padding-top: 18rem !important; + padding-bottom: 18rem !important; + } + + .md\:px-72 { + padding-left: 18rem !important; + padding-right: 18rem !important; + } + + .md\:py-80 { + padding-top: 20rem !important; + padding-bottom: 20rem !important; + } + + .md\:px-80 { + padding-left: 20rem !important; + padding-right: 20rem !important; + } + + .md\:py-96 { + padding-top: 24rem !important; + padding-bottom: 24rem !important; + } + + .md\:px-96 { + padding-left: 24rem !important; + padding-right: 24rem !important; + } + + .md\:py-px { + padding-top: 1px !important; + padding-bottom: 1px !important; + } + + .md\:px-px { + padding-left: 1px !important; + padding-right: 1px !important; + } + + .md\:py-0\.5 { + padding-top: 0.125rem !important; + padding-bottom: 0.125rem !important; + } + + .md\:px-0\.5 { + padding-left: 0.125rem !important; + padding-right: 0.125rem !important; + } + + .md\:py-1\.5 { + padding-top: 0.375rem !important; + padding-bottom: 0.375rem !important; + } + + .md\:px-1\.5 { + padding-left: 0.375rem !important; + padding-right: 0.375rem !important; + } + + .md\:py-2\.5 { + padding-top: 0.625rem !important; + padding-bottom: 0.625rem !important; + } + + .md\:px-2\.5 { + padding-left: 0.625rem !important; + padding-right: 0.625rem !important; + } + + .md\:py-3\.5 { + padding-top: 0.875rem !important; + padding-bottom: 0.875rem !important; + } + + .md\:px-3\.5 { + padding-left: 0.875rem !important; + padding-right: 0.875rem !important; + } + + .md\:pt-0 { + padding-top: 0px !important; + } + + .md\:pr-0 { + padding-right: 0px !important; + } + + .md\:pb-0 { + padding-bottom: 0px !important; + } + + .md\:pl-0 { + padding-left: 0px !important; + } + + .md\:pt-1 { + padding-top: 0.25rem !important; + } + + .md\:pr-1 { + padding-right: 0.25rem !important; + } + + .md\:pb-1 { + padding-bottom: 0.25rem !important; + } + + .md\:pl-1 { + padding-left: 0.25rem !important; + } + + .md\:pt-2 { + padding-top: 0.5rem !important; + } + + .md\:pr-2 { + padding-right: 0.5rem !important; + } + + .md\:pb-2 { + padding-bottom: 0.5rem !important; + } + + .md\:pl-2 { + padding-left: 0.5rem !important; + } + + .md\:pt-3 { + padding-top: 0.75rem !important; + } + + .md\:pr-3 { + padding-right: 0.75rem !important; + } + + .md\:pb-3 { + padding-bottom: 0.75rem !important; + } + + .md\:pl-3 { + padding-left: 0.75rem !important; + } + + .md\:pt-4 { + padding-top: 1rem !important; + } + + .md\:pr-4 { + padding-right: 1rem !important; + } + + .md\:pb-4 { + padding-bottom: 1rem !important; + } + + .md\:pl-4 { + padding-left: 1rem !important; + } + + .md\:pt-5 { + padding-top: 1.25rem !important; + } + + .md\:pr-5 { + padding-right: 1.25rem !important; + } + + .md\:pb-5 { + padding-bottom: 1.25rem !important; + } + + .md\:pl-5 { + padding-left: 1.25rem !important; + } + + .md\:pt-6 { + padding-top: 1.5rem !important; + } + + .md\:pr-6 { + padding-right: 1.5rem !important; + } + + .md\:pb-6 { + padding-bottom: 1.5rem !important; + } + + .md\:pl-6 { + padding-left: 1.5rem !important; + } + + .md\:pt-7 { + padding-top: 1.75rem !important; + } + + .md\:pr-7 { + padding-right: 1.75rem !important; + } + + .md\:pb-7 { + padding-bottom: 1.75rem !important; + } + + .md\:pl-7 { + padding-left: 1.75rem !important; + } + + .md\:pt-8 { + padding-top: 2rem !important; + } + + .md\:pr-8 { + padding-right: 2rem !important; + } + + .md\:pb-8 { + padding-bottom: 2rem !important; + } + + .md\:pl-8 { + padding-left: 2rem !important; + } + + .md\:pt-9 { + padding-top: 2.25rem !important; + } + + .md\:pr-9 { + padding-right: 2.25rem !important; + } + + .md\:pb-9 { + padding-bottom: 2.25rem !important; + } + + .md\:pl-9 { + padding-left: 2.25rem !important; + } + + .md\:pt-10 { + padding-top: 2.5rem !important; + } + + .md\:pr-10 { + padding-right: 2.5rem !important; + } + + .md\:pb-10 { + padding-bottom: 2.5rem !important; + } + + .md\:pl-10 { + padding-left: 2.5rem !important; + } + + .md\:pt-11 { + padding-top: 2.75rem !important; + } + + .md\:pr-11 { + padding-right: 2.75rem !important; + } + + .md\:pb-11 { + padding-bottom: 2.75rem !important; + } + + .md\:pl-11 { + padding-left: 2.75rem !important; + } + + .md\:pt-12 { + padding-top: 3rem !important; + } + + .md\:pr-12 { + padding-right: 3rem !important; + } + + .md\:pb-12 { + padding-bottom: 3rem !important; + } + + .md\:pl-12 { + padding-left: 3rem !important; + } + + .md\:pt-14 { + padding-top: 3.5rem !important; + } + + .md\:pr-14 { + padding-right: 3.5rem !important; + } + + .md\:pb-14 { + padding-bottom: 3.5rem !important; + } + + .md\:pl-14 { + padding-left: 3.5rem !important; + } + + .md\:pt-16 { + padding-top: 4rem !important; + } + + .md\:pr-16 { + padding-right: 4rem !important; + } + + .md\:pb-16 { + padding-bottom: 4rem !important; + } + + .md\:pl-16 { + padding-left: 4rem !important; + } + + .md\:pt-20 { + padding-top: 5rem !important; + } + + .md\:pr-20 { + padding-right: 5rem !important; + } + + .md\:pb-20 { + padding-bottom: 5rem !important; + } + + .md\:pl-20 { + padding-left: 5rem !important; + } + + .md\:pt-24 { + padding-top: 6rem !important; + } + + .md\:pr-24 { + padding-right: 6rem !important; + } + + .md\:pb-24 { + padding-bottom: 6rem !important; + } + + .md\:pl-24 { + padding-left: 6rem !important; + } + + .md\:pt-28 { + padding-top: 7rem !important; + } + + .md\:pr-28 { + padding-right: 7rem !important; + } + + .md\:pb-28 { + padding-bottom: 7rem !important; + } + + .md\:pl-28 { + padding-left: 7rem !important; + } + + .md\:pt-32 { + padding-top: 8rem !important; + } + + .md\:pr-32 { + padding-right: 8rem !important; + } + + .md\:pb-32 { + padding-bottom: 8rem !important; + } + + .md\:pl-32 { + padding-left: 8rem !important; + } + + .md\:pt-36 { + padding-top: 9rem !important; + } + + .md\:pr-36 { + padding-right: 9rem !important; + } + + .md\:pb-36 { + padding-bottom: 9rem !important; + } + + .md\:pl-36 { + padding-left: 9rem !important; + } + + .md\:pt-40 { + padding-top: 10rem !important; + } + + .md\:pr-40 { + padding-right: 10rem !important; + } + + .md\:pb-40 { + padding-bottom: 10rem !important; + } + + .md\:pl-40 { + padding-left: 10rem !important; + } + + .md\:pt-44 { + padding-top: 11rem !important; + } + + .md\:pr-44 { + padding-right: 11rem !important; + } + + .md\:pb-44 { + padding-bottom: 11rem !important; + } + + .md\:pl-44 { + padding-left: 11rem !important; + } + + .md\:pt-48 { + padding-top: 12rem !important; + } + + .md\:pr-48 { + padding-right: 12rem !important; + } + + .md\:pb-48 { + padding-bottom: 12rem !important; + } + + .md\:pl-48 { + padding-left: 12rem !important; + } + + .md\:pt-52 { + padding-top: 13rem !important; + } + + .md\:pr-52 { + padding-right: 13rem !important; + } + + .md\:pb-52 { + padding-bottom: 13rem !important; + } + + .md\:pl-52 { + padding-left: 13rem !important; + } + + .md\:pt-56 { + padding-top: 14rem !important; + } + + .md\:pr-56 { + padding-right: 14rem !important; + } + + .md\:pb-56 { + padding-bottom: 14rem !important; + } + + .md\:pl-56 { + padding-left: 14rem !important; + } + + .md\:pt-60 { + padding-top: 15rem !important; + } + + .md\:pr-60 { + padding-right: 15rem !important; + } + + .md\:pb-60 { + padding-bottom: 15rem !important; + } + + .md\:pl-60 { + padding-left: 15rem !important; + } + + .md\:pt-64 { + padding-top: 16rem !important; + } + + .md\:pr-64 { + padding-right: 16rem !important; + } + + .md\:pb-64 { + padding-bottom: 16rem !important; + } + + .md\:pl-64 { + padding-left: 16rem !important; + } + + .md\:pt-72 { + padding-top: 18rem !important; + } + + .md\:pr-72 { + padding-right: 18rem !important; + } + + .md\:pb-72 { + padding-bottom: 18rem !important; + } + + .md\:pl-72 { + padding-left: 18rem !important; + } + + .md\:pt-80 { + padding-top: 20rem !important; + } + + .md\:pr-80 { + padding-right: 20rem !important; + } + + .md\:pb-80 { + padding-bottom: 20rem !important; + } + + .md\:pl-80 { + padding-left: 20rem !important; + } + + .md\:pt-96 { + padding-top: 24rem !important; + } + + .md\:pr-96 { + padding-right: 24rem !important; + } + + .md\:pb-96 { + padding-bottom: 24rem !important; + } + + .md\:pl-96 { + padding-left: 24rem !important; + } + + .md\:pt-px { + padding-top: 1px !important; + } + + .md\:pr-px { + padding-right: 1px !important; + } + + .md\:pb-px { + padding-bottom: 1px !important; + } + + .md\:pl-px { + padding-left: 1px !important; + } + + .md\:pt-0\.5 { + padding-top: 0.125rem !important; + } + + .md\:pr-0\.5 { + padding-right: 0.125rem !important; + } + + .md\:pb-0\.5 { + padding-bottom: 0.125rem !important; + } + + .md\:pl-0\.5 { + padding-left: 0.125rem !important; + } + + .md\:pt-1\.5 { + padding-top: 0.375rem !important; + } + + .md\:pr-1\.5 { + padding-right: 0.375rem !important; + } + + .md\:pb-1\.5 { + padding-bottom: 0.375rem !important; + } + + .md\:pl-1\.5 { + padding-left: 0.375rem !important; + } + + .md\:pt-2\.5 { + padding-top: 0.625rem !important; + } + + .md\:pr-2\.5 { + padding-right: 0.625rem !important; + } + + .md\:pb-2\.5 { + padding-bottom: 0.625rem !important; + } + + .md\:pl-2\.5 { + padding-left: 0.625rem !important; + } + + .md\:pt-3\.5 { + padding-top: 0.875rem !important; + } + + .md\:pr-3\.5 { + padding-right: 0.875rem !important; + } + + .md\:pb-3\.5 { + padding-bottom: 0.875rem !important; + } + + .md\:pl-3\.5 { + padding-left: 0.875rem !important; + } + + .md\:placeholder-transparent::-moz-placeholder { + color: transparent !important; + } + + .md\:placeholder-transparent:-ms-input-placeholder { + color: transparent !important; + } + + .md\:placeholder-transparent::placeholder { + color: transparent !important; + } + + .md\:placeholder-current::-moz-placeholder { + color: currentColor !important; + } + + .md\:placeholder-current:-ms-input-placeholder { + color: currentColor !important; + } + + .md\:placeholder-current::placeholder { + color: currentColor !important; + } + + .md\:placeholder-black::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-black:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-black::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-white::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-white:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-white::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-gray-50::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-gray-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-gray-50::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-gray-100::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-gray-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-gray-100::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-gray-200::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-gray-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-gray-200::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-gray-300::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-gray-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-gray-300::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-gray-400::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-gray-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-gray-400::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-gray-500::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-gray-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-gray-500::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-gray-600::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-gray-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-gray-600::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-gray-700::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-gray-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-gray-700::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-gray-800::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-gray-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-gray-800::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-gray-900::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-gray-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-gray-900::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-red-50::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 242, 242, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-red-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 242, 242, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-red-50::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 242, 242, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-red-100::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 226, 226, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-red-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 226, 226, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-red-100::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 226, 226, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-red-200::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 202, 202, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-red-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 202, 202, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-red-200::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 202, 202, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-red-300::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 165, 165, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-red-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 165, 165, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-red-300::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 165, 165, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-red-400::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(248, 113, 113, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-red-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(248, 113, 113, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-red-400::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(248, 113, 113, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-red-500::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(239, 68, 68, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-red-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(239, 68, 68, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-red-500::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(239, 68, 68, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-red-600::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(220, 38, 38, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-red-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(220, 38, 38, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-red-600::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(220, 38, 38, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-red-700::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(185, 28, 28, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-red-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(185, 28, 28, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-red-700::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(185, 28, 28, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-red-800::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(153, 27, 27, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-red-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(153, 27, 27, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-red-800::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(153, 27, 27, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-red-900::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(127, 29, 29, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-red-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(127, 29, 29, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-red-900::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(127, 29, 29, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-yellow-50::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(255, 251, 235, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-yellow-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(255, 251, 235, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-yellow-50::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(255, 251, 235, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-yellow-100::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 243, 199, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-yellow-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 243, 199, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-yellow-100::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 243, 199, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-yellow-200::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(253, 230, 138, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-yellow-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(253, 230, 138, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-yellow-200::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(253, 230, 138, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-yellow-300::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 211, 77, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-yellow-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 211, 77, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-yellow-300::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 211, 77, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-yellow-400::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(251, 191, 36, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-yellow-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(251, 191, 36, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-yellow-400::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(251, 191, 36, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-yellow-500::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-yellow-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-yellow-500::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-yellow-600::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(217, 119, 6, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-yellow-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(217, 119, 6, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-yellow-600::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(217, 119, 6, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-yellow-700::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(180, 83, 9, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-yellow-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(180, 83, 9, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-yellow-700::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(180, 83, 9, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-yellow-800::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(146, 64, 14, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-yellow-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(146, 64, 14, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-yellow-800::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(146, 64, 14, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-yellow-900::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(120, 53, 15, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-yellow-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(120, 53, 15, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-yellow-900::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(120, 53, 15, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-green-50::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(236, 253, 245, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-green-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(236, 253, 245, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-green-50::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(236, 253, 245, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-green-100::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(209, 250, 229, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-green-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(209, 250, 229, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-green-100::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(209, 250, 229, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-green-200::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(167, 243, 208, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-green-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(167, 243, 208, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-green-200::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(167, 243, 208, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-green-300::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(110, 231, 183, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-green-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(110, 231, 183, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-green-300::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(110, 231, 183, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-green-400::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(52, 211, 153, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-green-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(52, 211, 153, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-green-400::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(52, 211, 153, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-green-500::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(16, 185, 129, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-green-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(16, 185, 129, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-green-500::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(16, 185, 129, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-green-600::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(5, 150, 105, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-green-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(5, 150, 105, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-green-600::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(5, 150, 105, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-green-700::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(4, 120, 87, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-green-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(4, 120, 87, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-green-700::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(4, 120, 87, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-green-800::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(6, 95, 70, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-green-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(6, 95, 70, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-green-800::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(6, 95, 70, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-green-900::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(6, 78, 59, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-green-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(6, 78, 59, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-green-900::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(6, 78, 59, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-blue-50::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(239, 246, 255, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-blue-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(239, 246, 255, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-blue-50::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(239, 246, 255, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-blue-100::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(219, 234, 254, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-blue-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(219, 234, 254, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-blue-100::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(219, 234, 254, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-blue-200::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(191, 219, 254, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-blue-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(191, 219, 254, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-blue-200::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(191, 219, 254, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-blue-300::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(147, 197, 253, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-blue-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(147, 197, 253, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-blue-300::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(147, 197, 253, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-blue-400::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(96, 165, 250, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-blue-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(96, 165, 250, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-blue-400::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(96, 165, 250, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-blue-500::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-blue-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-blue-500::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-blue-600::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(37, 99, 235, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-blue-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(37, 99, 235, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-blue-600::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(37, 99, 235, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-blue-700::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(29, 78, 216, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-blue-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(29, 78, 216, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-blue-700::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(29, 78, 216, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-blue-800::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(30, 64, 175, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-blue-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(30, 64, 175, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-blue-800::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(30, 64, 175, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-blue-900::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(30, 58, 138, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-blue-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(30, 58, 138, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-blue-900::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(30, 58, 138, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-indigo-50::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(238, 242, 255, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-indigo-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(238, 242, 255, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-indigo-50::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(238, 242, 255, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-indigo-100::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(224, 231, 255, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-indigo-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(224, 231, 255, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-indigo-100::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(224, 231, 255, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-indigo-200::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(199, 210, 254, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-indigo-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(199, 210, 254, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-indigo-200::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(199, 210, 254, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-indigo-300::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(165, 180, 252, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-indigo-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(165, 180, 252, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-indigo-300::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(165, 180, 252, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-indigo-400::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(129, 140, 248, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-indigo-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(129, 140, 248, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-indigo-400::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(129, 140, 248, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-indigo-500::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(99, 102, 241, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-indigo-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(99, 102, 241, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-indigo-500::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(99, 102, 241, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-indigo-600::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(79, 70, 229, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-indigo-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(79, 70, 229, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-indigo-600::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(79, 70, 229, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-indigo-700::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(67, 56, 202, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-indigo-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(67, 56, 202, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-indigo-700::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(67, 56, 202, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-indigo-800::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(55, 48, 163, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-indigo-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(55, 48, 163, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-indigo-800::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(55, 48, 163, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-indigo-900::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(49, 46, 129, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-indigo-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(49, 46, 129, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-indigo-900::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(49, 46, 129, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-purple-50::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(245, 243, 255, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-purple-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(245, 243, 255, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-purple-50::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(245, 243, 255, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-purple-100::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(237, 233, 254, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-purple-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(237, 233, 254, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-purple-100::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(237, 233, 254, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-purple-200::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(221, 214, 254, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-purple-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(221, 214, 254, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-purple-200::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(221, 214, 254, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-purple-300::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(196, 181, 253, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-purple-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(196, 181, 253, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-purple-300::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(196, 181, 253, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-purple-400::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(167, 139, 250, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-purple-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(167, 139, 250, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-purple-400::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(167, 139, 250, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-purple-500::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(139, 92, 246, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-purple-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(139, 92, 246, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-purple-500::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(139, 92, 246, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-purple-600::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(124, 58, 237, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-purple-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(124, 58, 237, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-purple-600::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(124, 58, 237, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-purple-700::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(109, 40, 217, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-purple-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(109, 40, 217, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-purple-700::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(109, 40, 217, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-purple-800::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(91, 33, 182, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-purple-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(91, 33, 182, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-purple-800::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(91, 33, 182, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-purple-900::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(76, 29, 149, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-purple-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(76, 29, 149, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-purple-900::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(76, 29, 149, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-pink-50::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(253, 242, 248, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-pink-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(253, 242, 248, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-pink-50::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(253, 242, 248, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-pink-100::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 231, 243, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-pink-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 231, 243, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-pink-100::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 231, 243, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-pink-200::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(251, 207, 232, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-pink-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(251, 207, 232, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-pink-200::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(251, 207, 232, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-pink-300::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(249, 168, 212, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-pink-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(249, 168, 212, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-pink-300::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(249, 168, 212, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-pink-400::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(244, 114, 182, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-pink-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(244, 114, 182, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-pink-400::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(244, 114, 182, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-pink-500::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(236, 72, 153, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-pink-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(236, 72, 153, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-pink-500::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(236, 72, 153, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-pink-600::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(219, 39, 119, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-pink-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(219, 39, 119, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-pink-600::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(219, 39, 119, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-pink-700::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(190, 24, 93, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-pink-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(190, 24, 93, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-pink-700::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(190, 24, 93, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-pink-800::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(157, 23, 77, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-pink-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(157, 23, 77, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-pink-800::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(157, 23, 77, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-pink-900::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(131, 24, 67, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-pink-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(131, 24, 67, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-pink-900::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(131, 24, 67, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-primary::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(0, 49, 151, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-primary:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(0, 49, 151, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-primary::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(0, 49, 151, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-transparent:focus::-moz-placeholder { + color: transparent !important; + } + + .md\:focus\:placeholder-transparent:focus:-ms-input-placeholder { + color: transparent !important; + } + + .md\:focus\:placeholder-transparent:focus::placeholder { + color: transparent !important; + } + + .md\:focus\:placeholder-current:focus::-moz-placeholder { + color: currentColor !important; + } + + .md\:focus\:placeholder-current:focus:-ms-input-placeholder { + color: currentColor !important; + } + + .md\:focus\:placeholder-current:focus::placeholder { + color: currentColor !important; + } + + .md\:focus\:placeholder-black:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-black:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-black:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-white:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-white:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-white:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-gray-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-gray-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-gray-50:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-gray-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-gray-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-gray-100:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-gray-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-gray-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-gray-200:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-gray-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-gray-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-gray-300:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-gray-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-gray-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-gray-400:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-gray-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-gray-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-gray-500:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-gray-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-gray-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-gray-600:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-gray-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-gray-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-gray-700:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-gray-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-gray-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-gray-800:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-gray-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-gray-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-gray-900:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-red-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 242, 242, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-red-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 242, 242, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-red-50:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 242, 242, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-red-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 226, 226, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-red-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 226, 226, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-red-100:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 226, 226, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-red-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 202, 202, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-red-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 202, 202, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-red-200:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 202, 202, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-red-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 165, 165, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-red-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 165, 165, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-red-300:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 165, 165, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-red-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(248, 113, 113, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-red-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(248, 113, 113, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-red-400:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(248, 113, 113, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-red-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(239, 68, 68, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-red-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(239, 68, 68, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-red-500:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(239, 68, 68, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-red-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(220, 38, 38, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-red-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(220, 38, 38, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-red-600:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(220, 38, 38, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-red-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(185, 28, 28, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-red-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(185, 28, 28, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-red-700:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(185, 28, 28, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-red-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(153, 27, 27, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-red-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(153, 27, 27, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-red-800:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(153, 27, 27, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-red-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(127, 29, 29, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-red-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(127, 29, 29, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-red-900:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(127, 29, 29, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-yellow-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(255, 251, 235, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-yellow-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(255, 251, 235, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-yellow-50:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(255, 251, 235, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-yellow-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 243, 199, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-yellow-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 243, 199, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-yellow-100:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 243, 199, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-yellow-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(253, 230, 138, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-yellow-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(253, 230, 138, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-yellow-200:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(253, 230, 138, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-yellow-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 211, 77, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-yellow-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 211, 77, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-yellow-300:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 211, 77, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-yellow-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(251, 191, 36, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-yellow-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(251, 191, 36, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-yellow-400:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(251, 191, 36, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-yellow-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-yellow-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-yellow-500:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-yellow-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(217, 119, 6, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-yellow-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(217, 119, 6, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-yellow-600:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(217, 119, 6, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-yellow-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(180, 83, 9, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-yellow-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(180, 83, 9, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-yellow-700:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(180, 83, 9, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-yellow-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(146, 64, 14, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-yellow-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(146, 64, 14, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-yellow-800:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(146, 64, 14, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-yellow-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(120, 53, 15, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-yellow-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(120, 53, 15, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-yellow-900:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(120, 53, 15, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-green-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(236, 253, 245, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-green-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(236, 253, 245, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-green-50:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(236, 253, 245, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-green-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(209, 250, 229, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-green-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(209, 250, 229, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-green-100:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(209, 250, 229, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-green-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(167, 243, 208, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-green-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(167, 243, 208, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-green-200:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(167, 243, 208, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-green-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(110, 231, 183, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-green-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(110, 231, 183, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-green-300:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(110, 231, 183, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-green-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(52, 211, 153, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-green-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(52, 211, 153, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-green-400:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(52, 211, 153, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-green-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(16, 185, 129, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-green-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(16, 185, 129, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-green-500:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(16, 185, 129, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-green-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(5, 150, 105, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-green-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(5, 150, 105, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-green-600:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(5, 150, 105, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-green-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(4, 120, 87, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-green-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(4, 120, 87, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-green-700:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(4, 120, 87, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-green-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(6, 95, 70, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-green-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(6, 95, 70, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-green-800:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(6, 95, 70, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-green-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(6, 78, 59, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-green-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(6, 78, 59, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-green-900:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(6, 78, 59, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-blue-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(239, 246, 255, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-blue-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(239, 246, 255, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-blue-50:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(239, 246, 255, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-blue-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(219, 234, 254, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-blue-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(219, 234, 254, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-blue-100:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(219, 234, 254, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-blue-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(191, 219, 254, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-blue-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(191, 219, 254, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-blue-200:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(191, 219, 254, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-blue-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(147, 197, 253, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-blue-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(147, 197, 253, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-blue-300:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(147, 197, 253, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-blue-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(96, 165, 250, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-blue-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(96, 165, 250, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-blue-400:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(96, 165, 250, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-blue-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-blue-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-blue-500:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-blue-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(37, 99, 235, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-blue-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(37, 99, 235, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-blue-600:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(37, 99, 235, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-blue-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(29, 78, 216, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-blue-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(29, 78, 216, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-blue-700:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(29, 78, 216, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-blue-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(30, 64, 175, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-blue-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(30, 64, 175, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-blue-800:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(30, 64, 175, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-blue-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(30, 58, 138, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-blue-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(30, 58, 138, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-blue-900:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(30, 58, 138, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-indigo-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(238, 242, 255, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-indigo-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(238, 242, 255, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-indigo-50:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(238, 242, 255, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-indigo-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(224, 231, 255, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-indigo-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(224, 231, 255, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-indigo-100:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(224, 231, 255, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-indigo-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(199, 210, 254, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-indigo-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(199, 210, 254, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-indigo-200:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(199, 210, 254, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-indigo-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(165, 180, 252, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-indigo-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(165, 180, 252, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-indigo-300:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(165, 180, 252, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-indigo-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(129, 140, 248, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-indigo-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(129, 140, 248, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-indigo-400:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(129, 140, 248, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-indigo-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(99, 102, 241, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-indigo-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(99, 102, 241, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-indigo-500:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(99, 102, 241, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-indigo-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(79, 70, 229, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-indigo-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(79, 70, 229, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-indigo-600:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(79, 70, 229, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-indigo-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(67, 56, 202, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-indigo-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(67, 56, 202, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-indigo-700:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(67, 56, 202, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-indigo-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(55, 48, 163, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-indigo-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(55, 48, 163, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-indigo-800:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(55, 48, 163, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-indigo-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(49, 46, 129, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-indigo-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(49, 46, 129, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-indigo-900:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(49, 46, 129, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-purple-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(245, 243, 255, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-purple-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(245, 243, 255, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-purple-50:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(245, 243, 255, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-purple-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(237, 233, 254, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-purple-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(237, 233, 254, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-purple-100:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(237, 233, 254, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-purple-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(221, 214, 254, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-purple-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(221, 214, 254, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-purple-200:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(221, 214, 254, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-purple-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(196, 181, 253, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-purple-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(196, 181, 253, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-purple-300:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(196, 181, 253, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-purple-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(167, 139, 250, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-purple-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(167, 139, 250, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-purple-400:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(167, 139, 250, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-purple-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(139, 92, 246, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-purple-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(139, 92, 246, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-purple-500:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(139, 92, 246, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-purple-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(124, 58, 237, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-purple-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(124, 58, 237, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-purple-600:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(124, 58, 237, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-purple-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(109, 40, 217, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-purple-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(109, 40, 217, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-purple-700:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(109, 40, 217, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-purple-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(91, 33, 182, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-purple-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(91, 33, 182, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-purple-800:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(91, 33, 182, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-purple-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(76, 29, 149, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-purple-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(76, 29, 149, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-purple-900:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(76, 29, 149, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-pink-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(253, 242, 248, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-pink-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(253, 242, 248, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-pink-50:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(253, 242, 248, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-pink-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 231, 243, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-pink-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 231, 243, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-pink-100:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 231, 243, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-pink-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(251, 207, 232, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-pink-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(251, 207, 232, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-pink-200:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(251, 207, 232, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-pink-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(249, 168, 212, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-pink-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(249, 168, 212, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-pink-300:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(249, 168, 212, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-pink-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(244, 114, 182, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-pink-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(244, 114, 182, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-pink-400:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(244, 114, 182, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-pink-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(236, 72, 153, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-pink-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(236, 72, 153, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-pink-500:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(236, 72, 153, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-pink-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(219, 39, 119, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-pink-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(219, 39, 119, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-pink-600:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(219, 39, 119, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-pink-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(190, 24, 93, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-pink-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(190, 24, 93, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-pink-700:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(190, 24, 93, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-pink-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(157, 23, 77, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-pink-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(157, 23, 77, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-pink-800:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(157, 23, 77, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-pink-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(131, 24, 67, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-pink-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(131, 24, 67, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-pink-900:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(131, 24, 67, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-primary:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(0, 49, 151, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-primary:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(0, 49, 151, var(--tw-placeholder-opacity)) !important; + } + + .md\:focus\:placeholder-primary:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(0, 49, 151, var(--tw-placeholder-opacity)) !important; + } + + .md\:placeholder-opacity-0::-moz-placeholder { + --tw-placeholder-opacity: 0 !important; + } + + .md\:placeholder-opacity-0:-ms-input-placeholder { + --tw-placeholder-opacity: 0 !important; + } + + .md\:placeholder-opacity-0::placeholder { + --tw-placeholder-opacity: 0 !important; + } + + .md\:placeholder-opacity-5::-moz-placeholder { + --tw-placeholder-opacity: 0.05 !important; + } + + .md\:placeholder-opacity-5:-ms-input-placeholder { + --tw-placeholder-opacity: 0.05 !important; + } + + .md\:placeholder-opacity-5::placeholder { + --tw-placeholder-opacity: 0.05 !important; + } + + .md\:placeholder-opacity-10::-moz-placeholder { + --tw-placeholder-opacity: 0.1 !important; + } + + .md\:placeholder-opacity-10:-ms-input-placeholder { + --tw-placeholder-opacity: 0.1 !important; + } + + .md\:placeholder-opacity-10::placeholder { + --tw-placeholder-opacity: 0.1 !important; + } + + .md\:placeholder-opacity-20::-moz-placeholder { + --tw-placeholder-opacity: 0.2 !important; + } + + .md\:placeholder-opacity-20:-ms-input-placeholder { + --tw-placeholder-opacity: 0.2 !important; + } + + .md\:placeholder-opacity-20::placeholder { + --tw-placeholder-opacity: 0.2 !important; + } + + .md\:placeholder-opacity-25::-moz-placeholder { + --tw-placeholder-opacity: 0.25 !important; + } + + .md\:placeholder-opacity-25:-ms-input-placeholder { + --tw-placeholder-opacity: 0.25 !important; + } + + .md\:placeholder-opacity-25::placeholder { + --tw-placeholder-opacity: 0.25 !important; + } + + .md\:placeholder-opacity-30::-moz-placeholder { + --tw-placeholder-opacity: 0.3 !important; + } + + .md\:placeholder-opacity-30:-ms-input-placeholder { + --tw-placeholder-opacity: 0.3 !important; + } + + .md\:placeholder-opacity-30::placeholder { + --tw-placeholder-opacity: 0.3 !important; + } + + .md\:placeholder-opacity-40::-moz-placeholder { + --tw-placeholder-opacity: 0.4 !important; + } + + .md\:placeholder-opacity-40:-ms-input-placeholder { + --tw-placeholder-opacity: 0.4 !important; + } + + .md\:placeholder-opacity-40::placeholder { + --tw-placeholder-opacity: 0.4 !important; + } + + .md\:placeholder-opacity-50::-moz-placeholder { + --tw-placeholder-opacity: 0.5 !important; + } + + .md\:placeholder-opacity-50:-ms-input-placeholder { + --tw-placeholder-opacity: 0.5 !important; + } + + .md\:placeholder-opacity-50::placeholder { + --tw-placeholder-opacity: 0.5 !important; + } + + .md\:placeholder-opacity-60::-moz-placeholder { + --tw-placeholder-opacity: 0.6 !important; + } + + .md\:placeholder-opacity-60:-ms-input-placeholder { + --tw-placeholder-opacity: 0.6 !important; + } + + .md\:placeholder-opacity-60::placeholder { + --tw-placeholder-opacity: 0.6 !important; + } + + .md\:placeholder-opacity-70::-moz-placeholder { + --tw-placeholder-opacity: 0.7 !important; + } + + .md\:placeholder-opacity-70:-ms-input-placeholder { + --tw-placeholder-opacity: 0.7 !important; + } + + .md\:placeholder-opacity-70::placeholder { + --tw-placeholder-opacity: 0.7 !important; + } + + .md\:placeholder-opacity-75::-moz-placeholder { + --tw-placeholder-opacity: 0.75 !important; + } + + .md\:placeholder-opacity-75:-ms-input-placeholder { + --tw-placeholder-opacity: 0.75 !important; + } + + .md\:placeholder-opacity-75::placeholder { + --tw-placeholder-opacity: 0.75 !important; + } + + .md\:placeholder-opacity-80::-moz-placeholder { + --tw-placeholder-opacity: 0.8 !important; + } + + .md\:placeholder-opacity-80:-ms-input-placeholder { + --tw-placeholder-opacity: 0.8 !important; + } + + .md\:placeholder-opacity-80::placeholder { + --tw-placeholder-opacity: 0.8 !important; + } + + .md\:placeholder-opacity-90::-moz-placeholder { + --tw-placeholder-opacity: 0.9 !important; + } + + .md\:placeholder-opacity-90:-ms-input-placeholder { + --tw-placeholder-opacity: 0.9 !important; + } + + .md\:placeholder-opacity-90::placeholder { + --tw-placeholder-opacity: 0.9 !important; + } + + .md\:placeholder-opacity-95::-moz-placeholder { + --tw-placeholder-opacity: 0.95 !important; + } + + .md\:placeholder-opacity-95:-ms-input-placeholder { + --tw-placeholder-opacity: 0.95 !important; + } + + .md\:placeholder-opacity-95::placeholder { + --tw-placeholder-opacity: 0.95 !important; + } + + .md\:placeholder-opacity-100::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + } + + .md\:placeholder-opacity-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + } + + .md\:placeholder-opacity-100::placeholder { + --tw-placeholder-opacity: 1 !important; + } + + .md\:focus\:placeholder-opacity-0:focus::-moz-placeholder { + --tw-placeholder-opacity: 0 !important; + } + + .md\:focus\:placeholder-opacity-0:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0 !important; + } + + .md\:focus\:placeholder-opacity-0:focus::placeholder { + --tw-placeholder-opacity: 0 !important; + } + + .md\:focus\:placeholder-opacity-5:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.05 !important; + } + + .md\:focus\:placeholder-opacity-5:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.05 !important; + } + + .md\:focus\:placeholder-opacity-5:focus::placeholder { + --tw-placeholder-opacity: 0.05 !important; + } + + .md\:focus\:placeholder-opacity-10:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.1 !important; + } + + .md\:focus\:placeholder-opacity-10:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.1 !important; + } + + .md\:focus\:placeholder-opacity-10:focus::placeholder { + --tw-placeholder-opacity: 0.1 !important; + } + + .md\:focus\:placeholder-opacity-20:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.2 !important; + } + + .md\:focus\:placeholder-opacity-20:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.2 !important; + } + + .md\:focus\:placeholder-opacity-20:focus::placeholder { + --tw-placeholder-opacity: 0.2 !important; + } + + .md\:focus\:placeholder-opacity-25:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.25 !important; + } + + .md\:focus\:placeholder-opacity-25:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.25 !important; + } + + .md\:focus\:placeholder-opacity-25:focus::placeholder { + --tw-placeholder-opacity: 0.25 !important; + } + + .md\:focus\:placeholder-opacity-30:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.3 !important; + } + + .md\:focus\:placeholder-opacity-30:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.3 !important; + } + + .md\:focus\:placeholder-opacity-30:focus::placeholder { + --tw-placeholder-opacity: 0.3 !important; + } + + .md\:focus\:placeholder-opacity-40:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.4 !important; + } + + .md\:focus\:placeholder-opacity-40:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.4 !important; + } + + .md\:focus\:placeholder-opacity-40:focus::placeholder { + --tw-placeholder-opacity: 0.4 !important; + } + + .md\:focus\:placeholder-opacity-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.5 !important; + } + + .md\:focus\:placeholder-opacity-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.5 !important; + } + + .md\:focus\:placeholder-opacity-50:focus::placeholder { + --tw-placeholder-opacity: 0.5 !important; + } + + .md\:focus\:placeholder-opacity-60:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.6 !important; + } + + .md\:focus\:placeholder-opacity-60:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.6 !important; + } + + .md\:focus\:placeholder-opacity-60:focus::placeholder { + --tw-placeholder-opacity: 0.6 !important; + } + + .md\:focus\:placeholder-opacity-70:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.7 !important; + } + + .md\:focus\:placeholder-opacity-70:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.7 !important; + } + + .md\:focus\:placeholder-opacity-70:focus::placeholder { + --tw-placeholder-opacity: 0.7 !important; + } + + .md\:focus\:placeholder-opacity-75:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.75 !important; + } + + .md\:focus\:placeholder-opacity-75:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.75 !important; + } + + .md\:focus\:placeholder-opacity-75:focus::placeholder { + --tw-placeholder-opacity: 0.75 !important; + } + + .md\:focus\:placeholder-opacity-80:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.8 !important; + } + + .md\:focus\:placeholder-opacity-80:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.8 !important; + } + + .md\:focus\:placeholder-opacity-80:focus::placeholder { + --tw-placeholder-opacity: 0.8 !important; + } + + .md\:focus\:placeholder-opacity-90:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.9 !important; + } + + .md\:focus\:placeholder-opacity-90:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.9 !important; + } + + .md\:focus\:placeholder-opacity-90:focus::placeholder { + --tw-placeholder-opacity: 0.9 !important; + } + + .md\:focus\:placeholder-opacity-95:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.95 !important; + } + + .md\:focus\:placeholder-opacity-95:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.95 !important; + } + + .md\:focus\:placeholder-opacity-95:focus::placeholder { + --tw-placeholder-opacity: 0.95 !important; + } + + .md\:focus\:placeholder-opacity-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + } + + .md\:focus\:placeholder-opacity-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + } + + .md\:focus\:placeholder-opacity-100:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + } + + .md\:pointer-events-none { + pointer-events: none !important; + } + + .md\:pointer-events-auto { + pointer-events: auto !important; + } + + .md\:static { + position: static !important; + } + + .md\:fixed { + position: fixed !important; + } + + .md\:absolute { + position: absolute !important; + } + + .md\:relative { + position: relative !important; + } + + .md\:sticky { + position: sticky !important; + } + + .md\:inset-0 { + top: 0px !important; + right: 0px !important; + bottom: 0px !important; + left: 0px !important; + } + + .md\:inset-1 { + top: 0.25rem !important; + right: 0.25rem !important; + bottom: 0.25rem !important; + left: 0.25rem !important; + } + + .md\:inset-2 { + top: 0.5rem !important; + right: 0.5rem !important; + bottom: 0.5rem !important; + left: 0.5rem !important; + } + + .md\:inset-3 { + top: 0.75rem !important; + right: 0.75rem !important; + bottom: 0.75rem !important; + left: 0.75rem !important; + } + + .md\:inset-4 { + top: 1rem !important; + right: 1rem !important; + bottom: 1rem !important; + left: 1rem !important; + } + + .md\:inset-5 { + top: 1.25rem !important; + right: 1.25rem !important; + bottom: 1.25rem !important; + left: 1.25rem !important; + } + + .md\:inset-6 { + top: 1.5rem !important; + right: 1.5rem !important; + bottom: 1.5rem !important; + left: 1.5rem !important; + } + + .md\:inset-7 { + top: 1.75rem !important; + right: 1.75rem !important; + bottom: 1.75rem !important; + left: 1.75rem !important; + } + + .md\:inset-8 { + top: 2rem !important; + right: 2rem !important; + bottom: 2rem !important; + left: 2rem !important; + } + + .md\:inset-9 { + top: 2.25rem !important; + right: 2.25rem !important; + bottom: 2.25rem !important; + left: 2.25rem !important; + } + + .md\:inset-10 { + top: 2.5rem !important; + right: 2.5rem !important; + bottom: 2.5rem !important; + left: 2.5rem !important; + } + + .md\:inset-11 { + top: 2.75rem !important; + right: 2.75rem !important; + bottom: 2.75rem !important; + left: 2.75rem !important; + } + + .md\:inset-12 { + top: 3rem !important; + right: 3rem !important; + bottom: 3rem !important; + left: 3rem !important; + } + + .md\:inset-14 { + top: 3.5rem !important; + right: 3.5rem !important; + bottom: 3.5rem !important; + left: 3.5rem !important; + } + + .md\:inset-16 { + top: 4rem !important; + right: 4rem !important; + bottom: 4rem !important; + left: 4rem !important; + } + + .md\:inset-20 { + top: 5rem !important; + right: 5rem !important; + bottom: 5rem !important; + left: 5rem !important; + } + + .md\:inset-24 { + top: 6rem !important; + right: 6rem !important; + bottom: 6rem !important; + left: 6rem !important; + } + + .md\:inset-28 { + top: 7rem !important; + right: 7rem !important; + bottom: 7rem !important; + left: 7rem !important; + } + + .md\:inset-32 { + top: 8rem !important; + right: 8rem !important; + bottom: 8rem !important; + left: 8rem !important; + } + + .md\:inset-36 { + top: 9rem !important; + right: 9rem !important; + bottom: 9rem !important; + left: 9rem !important; + } + + .md\:inset-40 { + top: 10rem !important; + right: 10rem !important; + bottom: 10rem !important; + left: 10rem !important; + } + + .md\:inset-44 { + top: 11rem !important; + right: 11rem !important; + bottom: 11rem !important; + left: 11rem !important; + } + + .md\:inset-48 { + top: 12rem !important; + right: 12rem !important; + bottom: 12rem !important; + left: 12rem !important; + } + + .md\:inset-52 { + top: 13rem !important; + right: 13rem !important; + bottom: 13rem !important; + left: 13rem !important; + } + + .md\:inset-56 { + top: 14rem !important; + right: 14rem !important; + bottom: 14rem !important; + left: 14rem !important; + } + + .md\:inset-60 { + top: 15rem !important; + right: 15rem !important; + bottom: 15rem !important; + left: 15rem !important; + } + + .md\:inset-64 { + top: 16rem !important; + right: 16rem !important; + bottom: 16rem !important; + left: 16rem !important; + } + + .md\:inset-72 { + top: 18rem !important; + right: 18rem !important; + bottom: 18rem !important; + left: 18rem !important; + } + + .md\:inset-80 { + top: 20rem !important; + right: 20rem !important; + bottom: 20rem !important; + left: 20rem !important; + } + + .md\:inset-96 { + top: 24rem !important; + right: 24rem !important; + bottom: 24rem !important; + left: 24rem !important; + } + + .md\:inset-auto { + top: auto !important; + right: auto !important; + bottom: auto !important; + left: auto !important; + } + + .md\:inset-px { + top: 1px !important; + right: 1px !important; + bottom: 1px !important; + left: 1px !important; + } + + .md\:inset-0\.5 { + top: 0.125rem !important; + right: 0.125rem !important; + bottom: 0.125rem !important; + left: 0.125rem !important; + } + + .md\:inset-1\.5 { + top: 0.375rem !important; + right: 0.375rem !important; + bottom: 0.375rem !important; + left: 0.375rem !important; + } + + .md\:inset-2\.5 { + top: 0.625rem !important; + right: 0.625rem !important; + bottom: 0.625rem !important; + left: 0.625rem !important; + } + + .md\:inset-3\.5 { + top: 0.875rem !important; + right: 0.875rem !important; + bottom: 0.875rem !important; + left: 0.875rem !important; + } + + .md\:-inset-0 { + top: 0px !important; + right: 0px !important; + bottom: 0px !important; + left: 0px !important; + } + + .md\:-inset-1 { + top: -0.25rem !important; + right: -0.25rem !important; + bottom: -0.25rem !important; + left: -0.25rem !important; + } + + .md\:-inset-2 { + top: -0.5rem !important; + right: -0.5rem !important; + bottom: -0.5rem !important; + left: -0.5rem !important; + } + + .md\:-inset-3 { + top: -0.75rem !important; + right: -0.75rem !important; + bottom: -0.75rem !important; + left: -0.75rem !important; + } + + .md\:-inset-4 { + top: -1rem !important; + right: -1rem !important; + bottom: -1rem !important; + left: -1rem !important; + } + + .md\:-inset-5 { + top: -1.25rem !important; + right: -1.25rem !important; + bottom: -1.25rem !important; + left: -1.25rem !important; + } + + .md\:-inset-6 { + top: -1.5rem !important; + right: -1.5rem !important; + bottom: -1.5rem !important; + left: -1.5rem !important; + } + + .md\:-inset-7 { + top: -1.75rem !important; + right: -1.75rem !important; + bottom: -1.75rem !important; + left: -1.75rem !important; + } + + .md\:-inset-8 { + top: -2rem !important; + right: -2rem !important; + bottom: -2rem !important; + left: -2rem !important; + } + + .md\:-inset-9 { + top: -2.25rem !important; + right: -2.25rem !important; + bottom: -2.25rem !important; + left: -2.25rem !important; + } + + .md\:-inset-10 { + top: -2.5rem !important; + right: -2.5rem !important; + bottom: -2.5rem !important; + left: -2.5rem !important; + } + + .md\:-inset-11 { + top: -2.75rem !important; + right: -2.75rem !important; + bottom: -2.75rem !important; + left: -2.75rem !important; + } + + .md\:-inset-12 { + top: -3rem !important; + right: -3rem !important; + bottom: -3rem !important; + left: -3rem !important; + } + + .md\:-inset-14 { + top: -3.5rem !important; + right: -3.5rem !important; + bottom: -3.5rem !important; + left: -3.5rem !important; + } + + .md\:-inset-16 { + top: -4rem !important; + right: -4rem !important; + bottom: -4rem !important; + left: -4rem !important; + } + + .md\:-inset-20 { + top: -5rem !important; + right: -5rem !important; + bottom: -5rem !important; + left: -5rem !important; + } + + .md\:-inset-24 { + top: -6rem !important; + right: -6rem !important; + bottom: -6rem !important; + left: -6rem !important; + } + + .md\:-inset-28 { + top: -7rem !important; + right: -7rem !important; + bottom: -7rem !important; + left: -7rem !important; + } + + .md\:-inset-32 { + top: -8rem !important; + right: -8rem !important; + bottom: -8rem !important; + left: -8rem !important; + } + + .md\:-inset-36 { + top: -9rem !important; + right: -9rem !important; + bottom: -9rem !important; + left: -9rem !important; + } + + .md\:-inset-40 { + top: -10rem !important; + right: -10rem !important; + bottom: -10rem !important; + left: -10rem !important; + } + + .md\:-inset-44 { + top: -11rem !important; + right: -11rem !important; + bottom: -11rem !important; + left: -11rem !important; + } + + .md\:-inset-48 { + top: -12rem !important; + right: -12rem !important; + bottom: -12rem !important; + left: -12rem !important; + } + + .md\:-inset-52 { + top: -13rem !important; + right: -13rem !important; + bottom: -13rem !important; + left: -13rem !important; + } + + .md\:-inset-56 { + top: -14rem !important; + right: -14rem !important; + bottom: -14rem !important; + left: -14rem !important; + } + + .md\:-inset-60 { + top: -15rem !important; + right: -15rem !important; + bottom: -15rem !important; + left: -15rem !important; + } + + .md\:-inset-64 { + top: -16rem !important; + right: -16rem !important; + bottom: -16rem !important; + left: -16rem !important; + } + + .md\:-inset-72 { + top: -18rem !important; + right: -18rem !important; + bottom: -18rem !important; + left: -18rem !important; + } + + .md\:-inset-80 { + top: -20rem !important; + right: -20rem !important; + bottom: -20rem !important; + left: -20rem !important; + } + + .md\:-inset-96 { + top: -24rem !important; + right: -24rem !important; + bottom: -24rem !important; + left: -24rem !important; + } + + .md\:-inset-px { + top: -1px !important; + right: -1px !important; + bottom: -1px !important; + left: -1px !important; + } + + .md\:-inset-0\.5 { + top: -0.125rem !important; + right: -0.125rem !important; + bottom: -0.125rem !important; + left: -0.125rem !important; + } + + .md\:-inset-1\.5 { + top: -0.375rem !important; + right: -0.375rem !important; + bottom: -0.375rem !important; + left: -0.375rem !important; + } + + .md\:-inset-2\.5 { + top: -0.625rem !important; + right: -0.625rem !important; + bottom: -0.625rem !important; + left: -0.625rem !important; + } + + .md\:-inset-3\.5 { + top: -0.875rem !important; + right: -0.875rem !important; + bottom: -0.875rem !important; + left: -0.875rem !important; + } + + .md\:inset-1\/2 { + top: 50% !important; + right: 50% !important; + bottom: 50% !important; + left: 50% !important; + } + + .md\:inset-1\/3 { + top: 33.333333% !important; + right: 33.333333% !important; + bottom: 33.333333% !important; + left: 33.333333% !important; + } + + .md\:inset-2\/3 { + top: 66.666667% !important; + right: 66.666667% !important; + bottom: 66.666667% !important; + left: 66.666667% !important; + } + + .md\:inset-1\/4 { + top: 25% !important; + right: 25% !important; + bottom: 25% !important; + left: 25% !important; + } + + .md\:inset-2\/4 { + top: 50% !important; + right: 50% !important; + bottom: 50% !important; + left: 50% !important; + } + + .md\:inset-3\/4 { + top: 75% !important; + right: 75% !important; + bottom: 75% !important; + left: 75% !important; + } + + .md\:inset-full { + top: 100% !important; + right: 100% !important; + bottom: 100% !important; + left: 100% !important; + } + + .md\:-inset-1\/2 { + top: -50% !important; + right: -50% !important; + bottom: -50% !important; + left: -50% !important; + } + + .md\:-inset-1\/3 { + top: -33.333333% !important; + right: -33.333333% !important; + bottom: -33.333333% !important; + left: -33.333333% !important; + } + + .md\:-inset-2\/3 { + top: -66.666667% !important; + right: -66.666667% !important; + bottom: -66.666667% !important; + left: -66.666667% !important; + } + + .md\:-inset-1\/4 { + top: -25% !important; + right: -25% !important; + bottom: -25% !important; + left: -25% !important; + } + + .md\:-inset-2\/4 { + top: -50% !important; + right: -50% !important; + bottom: -50% !important; + left: -50% !important; + } + + .md\:-inset-3\/4 { + top: -75% !important; + right: -75% !important; + bottom: -75% !important; + left: -75% !important; + } + + .md\:-inset-full { + top: -100% !important; + right: -100% !important; + bottom: -100% !important; + left: -100% !important; + } + + .md\:inset-y-0 { + top: 0px !important; + bottom: 0px !important; + } + + .md\:inset-x-0 { + right: 0px !important; + left: 0px !important; + } + + .md\:inset-y-1 { + top: 0.25rem !important; + bottom: 0.25rem !important; + } + + .md\:inset-x-1 { + right: 0.25rem !important; + left: 0.25rem !important; + } + + .md\:inset-y-2 { + top: 0.5rem !important; + bottom: 0.5rem !important; + } + + .md\:inset-x-2 { + right: 0.5rem !important; + left: 0.5rem !important; + } + + .md\:inset-y-3 { + top: 0.75rem !important; + bottom: 0.75rem !important; + } + + .md\:inset-x-3 { + right: 0.75rem !important; + left: 0.75rem !important; + } + + .md\:inset-y-4 { + top: 1rem !important; + bottom: 1rem !important; + } + + .md\:inset-x-4 { + right: 1rem !important; + left: 1rem !important; + } + + .md\:inset-y-5 { + top: 1.25rem !important; + bottom: 1.25rem !important; + } + + .md\:inset-x-5 { + right: 1.25rem !important; + left: 1.25rem !important; + } + + .md\:inset-y-6 { + top: 1.5rem !important; + bottom: 1.5rem !important; + } + + .md\:inset-x-6 { + right: 1.5rem !important; + left: 1.5rem !important; + } + + .md\:inset-y-7 { + top: 1.75rem !important; + bottom: 1.75rem !important; + } + + .md\:inset-x-7 { + right: 1.75rem !important; + left: 1.75rem !important; + } + + .md\:inset-y-8 { + top: 2rem !important; + bottom: 2rem !important; + } + + .md\:inset-x-8 { + right: 2rem !important; + left: 2rem !important; + } + + .md\:inset-y-9 { + top: 2.25rem !important; + bottom: 2.25rem !important; + } + + .md\:inset-x-9 { + right: 2.25rem !important; + left: 2.25rem !important; + } + + .md\:inset-y-10 { + top: 2.5rem !important; + bottom: 2.5rem !important; + } + + .md\:inset-x-10 { + right: 2.5rem !important; + left: 2.5rem !important; + } + + .md\:inset-y-11 { + top: 2.75rem !important; + bottom: 2.75rem !important; + } + + .md\:inset-x-11 { + right: 2.75rem !important; + left: 2.75rem !important; + } + + .md\:inset-y-12 { + top: 3rem !important; + bottom: 3rem !important; + } + + .md\:inset-x-12 { + right: 3rem !important; + left: 3rem !important; + } + + .md\:inset-y-14 { + top: 3.5rem !important; + bottom: 3.5rem !important; + } + + .md\:inset-x-14 { + right: 3.5rem !important; + left: 3.5rem !important; + } + + .md\:inset-y-16 { + top: 4rem !important; + bottom: 4rem !important; + } + + .md\:inset-x-16 { + right: 4rem !important; + left: 4rem !important; + } + + .md\:inset-y-20 { + top: 5rem !important; + bottom: 5rem !important; + } + + .md\:inset-x-20 { + right: 5rem !important; + left: 5rem !important; + } + + .md\:inset-y-24 { + top: 6rem !important; + bottom: 6rem !important; + } + + .md\:inset-x-24 { + right: 6rem !important; + left: 6rem !important; + } + + .md\:inset-y-28 { + top: 7rem !important; + bottom: 7rem !important; + } + + .md\:inset-x-28 { + right: 7rem !important; + left: 7rem !important; + } + + .md\:inset-y-32 { + top: 8rem !important; + bottom: 8rem !important; + } + + .md\:inset-x-32 { + right: 8rem !important; + left: 8rem !important; + } + + .md\:inset-y-36 { + top: 9rem !important; + bottom: 9rem !important; + } + + .md\:inset-x-36 { + right: 9rem !important; + left: 9rem !important; + } + + .md\:inset-y-40 { + top: 10rem !important; + bottom: 10rem !important; + } + + .md\:inset-x-40 { + right: 10rem !important; + left: 10rem !important; + } + + .md\:inset-y-44 { + top: 11rem !important; + bottom: 11rem !important; + } + + .md\:inset-x-44 { + right: 11rem !important; + left: 11rem !important; + } + + .md\:inset-y-48 { + top: 12rem !important; + bottom: 12rem !important; + } + + .md\:inset-x-48 { + right: 12rem !important; + left: 12rem !important; + } + + .md\:inset-y-52 { + top: 13rem !important; + bottom: 13rem !important; + } + + .md\:inset-x-52 { + right: 13rem !important; + left: 13rem !important; + } + + .md\:inset-y-56 { + top: 14rem !important; + bottom: 14rem !important; + } + + .md\:inset-x-56 { + right: 14rem !important; + left: 14rem !important; + } + + .md\:inset-y-60 { + top: 15rem !important; + bottom: 15rem !important; + } + + .md\:inset-x-60 { + right: 15rem !important; + left: 15rem !important; + } + + .md\:inset-y-64 { + top: 16rem !important; + bottom: 16rem !important; + } + + .md\:inset-x-64 { + right: 16rem !important; + left: 16rem !important; + } + + .md\:inset-y-72 { + top: 18rem !important; + bottom: 18rem !important; + } + + .md\:inset-x-72 { + right: 18rem !important; + left: 18rem !important; + } + + .md\:inset-y-80 { + top: 20rem !important; + bottom: 20rem !important; + } + + .md\:inset-x-80 { + right: 20rem !important; + left: 20rem !important; + } + + .md\:inset-y-96 { + top: 24rem !important; + bottom: 24rem !important; + } + + .md\:inset-x-96 { + right: 24rem !important; + left: 24rem !important; + } + + .md\:inset-y-auto { + top: auto !important; + bottom: auto !important; + } + + .md\:inset-x-auto { + right: auto !important; + left: auto !important; + } + + .md\:inset-y-px { + top: 1px !important; + bottom: 1px !important; + } + + .md\:inset-x-px { + right: 1px !important; + left: 1px !important; + } + + .md\:inset-y-0\.5 { + top: 0.125rem !important; + bottom: 0.125rem !important; + } + + .md\:inset-x-0\.5 { + right: 0.125rem !important; + left: 0.125rem !important; + } + + .md\:inset-y-1\.5 { + top: 0.375rem !important; + bottom: 0.375rem !important; + } + + .md\:inset-x-1\.5 { + right: 0.375rem !important; + left: 0.375rem !important; + } + + .md\:inset-y-2\.5 { + top: 0.625rem !important; + bottom: 0.625rem !important; + } + + .md\:inset-x-2\.5 { + right: 0.625rem !important; + left: 0.625rem !important; + } + + .md\:inset-y-3\.5 { + top: 0.875rem !important; + bottom: 0.875rem !important; + } + + .md\:inset-x-3\.5 { + right: 0.875rem !important; + left: 0.875rem !important; + } + + .md\:-inset-y-0 { + top: 0px !important; + bottom: 0px !important; + } + + .md\:-inset-x-0 { + right: 0px !important; + left: 0px !important; + } + + .md\:-inset-y-1 { + top: -0.25rem !important; + bottom: -0.25rem !important; + } + + .md\:-inset-x-1 { + right: -0.25rem !important; + left: -0.25rem !important; + } + + .md\:-inset-y-2 { + top: -0.5rem !important; + bottom: -0.5rem !important; + } + + .md\:-inset-x-2 { + right: -0.5rem !important; + left: -0.5rem !important; + } + + .md\:-inset-y-3 { + top: -0.75rem !important; + bottom: -0.75rem !important; + } + + .md\:-inset-x-3 { + right: -0.75rem !important; + left: -0.75rem !important; + } + + .md\:-inset-y-4 { + top: -1rem !important; + bottom: -1rem !important; + } + + .md\:-inset-x-4 { + right: -1rem !important; + left: -1rem !important; + } + + .md\:-inset-y-5 { + top: -1.25rem !important; + bottom: -1.25rem !important; + } + + .md\:-inset-x-5 { + right: -1.25rem !important; + left: -1.25rem !important; + } + + .md\:-inset-y-6 { + top: -1.5rem !important; + bottom: -1.5rem !important; + } + + .md\:-inset-x-6 { + right: -1.5rem !important; + left: -1.5rem !important; + } + + .md\:-inset-y-7 { + top: -1.75rem !important; + bottom: -1.75rem !important; + } + + .md\:-inset-x-7 { + right: -1.75rem !important; + left: -1.75rem !important; + } + + .md\:-inset-y-8 { + top: -2rem !important; + bottom: -2rem !important; + } + + .md\:-inset-x-8 { + right: -2rem !important; + left: -2rem !important; + } + + .md\:-inset-y-9 { + top: -2.25rem !important; + bottom: -2.25rem !important; + } + + .md\:-inset-x-9 { + right: -2.25rem !important; + left: -2.25rem !important; + } + + .md\:-inset-y-10 { + top: -2.5rem !important; + bottom: -2.5rem !important; + } + + .md\:-inset-x-10 { + right: -2.5rem !important; + left: -2.5rem !important; + } + + .md\:-inset-y-11 { + top: -2.75rem !important; + bottom: -2.75rem !important; + } + + .md\:-inset-x-11 { + right: -2.75rem !important; + left: -2.75rem !important; + } + + .md\:-inset-y-12 { + top: -3rem !important; + bottom: -3rem !important; + } + + .md\:-inset-x-12 { + right: -3rem !important; + left: -3rem !important; + } + + .md\:-inset-y-14 { + top: -3.5rem !important; + bottom: -3.5rem !important; + } + + .md\:-inset-x-14 { + right: -3.5rem !important; + left: -3.5rem !important; + } + + .md\:-inset-y-16 { + top: -4rem !important; + bottom: -4rem !important; + } + + .md\:-inset-x-16 { + right: -4rem !important; + left: -4rem !important; + } + + .md\:-inset-y-20 { + top: -5rem !important; + bottom: -5rem !important; + } + + .md\:-inset-x-20 { + right: -5rem !important; + left: -5rem !important; + } + + .md\:-inset-y-24 { + top: -6rem !important; + bottom: -6rem !important; + } + + .md\:-inset-x-24 { + right: -6rem !important; + left: -6rem !important; + } + + .md\:-inset-y-28 { + top: -7rem !important; + bottom: -7rem !important; + } + + .md\:-inset-x-28 { + right: -7rem !important; + left: -7rem !important; + } + + .md\:-inset-y-32 { + top: -8rem !important; + bottom: -8rem !important; + } + + .md\:-inset-x-32 { + right: -8rem !important; + left: -8rem !important; + } + + .md\:-inset-y-36 { + top: -9rem !important; + bottom: -9rem !important; + } + + .md\:-inset-x-36 { + right: -9rem !important; + left: -9rem !important; + } + + .md\:-inset-y-40 { + top: -10rem !important; + bottom: -10rem !important; + } + + .md\:-inset-x-40 { + right: -10rem !important; + left: -10rem !important; + } + + .md\:-inset-y-44 { + top: -11rem !important; + bottom: -11rem !important; + } + + .md\:-inset-x-44 { + right: -11rem !important; + left: -11rem !important; + } + + .md\:-inset-y-48 { + top: -12rem !important; + bottom: -12rem !important; + } + + .md\:-inset-x-48 { + right: -12rem !important; + left: -12rem !important; + } + + .md\:-inset-y-52 { + top: -13rem !important; + bottom: -13rem !important; + } + + .md\:-inset-x-52 { + right: -13rem !important; + left: -13rem !important; + } + + .md\:-inset-y-56 { + top: -14rem !important; + bottom: -14rem !important; + } + + .md\:-inset-x-56 { + right: -14rem !important; + left: -14rem !important; + } + + .md\:-inset-y-60 { + top: -15rem !important; + bottom: -15rem !important; + } + + .md\:-inset-x-60 { + right: -15rem !important; + left: -15rem !important; + } + + .md\:-inset-y-64 { + top: -16rem !important; + bottom: -16rem !important; + } + + .md\:-inset-x-64 { + right: -16rem !important; + left: -16rem !important; + } + + .md\:-inset-y-72 { + top: -18rem !important; + bottom: -18rem !important; + } + + .md\:-inset-x-72 { + right: -18rem !important; + left: -18rem !important; + } + + .md\:-inset-y-80 { + top: -20rem !important; + bottom: -20rem !important; + } + + .md\:-inset-x-80 { + right: -20rem !important; + left: -20rem !important; + } + + .md\:-inset-y-96 { + top: -24rem !important; + bottom: -24rem !important; + } + + .md\:-inset-x-96 { + right: -24rem !important; + left: -24rem !important; + } + + .md\:-inset-y-px { + top: -1px !important; + bottom: -1px !important; + } + + .md\:-inset-x-px { + right: -1px !important; + left: -1px !important; + } + + .md\:-inset-y-0\.5 { + top: -0.125rem !important; + bottom: -0.125rem !important; + } + + .md\:-inset-x-0\.5 { + right: -0.125rem !important; + left: -0.125rem !important; + } + + .md\:-inset-y-1\.5 { + top: -0.375rem !important; + bottom: -0.375rem !important; + } + + .md\:-inset-x-1\.5 { + right: -0.375rem !important; + left: -0.375rem !important; + } + + .md\:-inset-y-2\.5 { + top: -0.625rem !important; + bottom: -0.625rem !important; + } + + .md\:-inset-x-2\.5 { + right: -0.625rem !important; + left: -0.625rem !important; + } + + .md\:-inset-y-3\.5 { + top: -0.875rem !important; + bottom: -0.875rem !important; + } + + .md\:-inset-x-3\.5 { + right: -0.875rem !important; + left: -0.875rem !important; + } + + .md\:inset-y-1\/2 { + top: 50% !important; + bottom: 50% !important; + } + + .md\:inset-x-1\/2 { + right: 50% !important; + left: 50% !important; + } + + .md\:inset-y-1\/3 { + top: 33.333333% !important; + bottom: 33.333333% !important; + } + + .md\:inset-x-1\/3 { + right: 33.333333% !important; + left: 33.333333% !important; + } + + .md\:inset-y-2\/3 { + top: 66.666667% !important; + bottom: 66.666667% !important; + } + + .md\:inset-x-2\/3 { + right: 66.666667% !important; + left: 66.666667% !important; + } + + .md\:inset-y-1\/4 { + top: 25% !important; + bottom: 25% !important; + } + + .md\:inset-x-1\/4 { + right: 25% !important; + left: 25% !important; + } + + .md\:inset-y-2\/4 { + top: 50% !important; + bottom: 50% !important; + } + + .md\:inset-x-2\/4 { + right: 50% !important; + left: 50% !important; + } + + .md\:inset-y-3\/4 { + top: 75% !important; + bottom: 75% !important; + } + + .md\:inset-x-3\/4 { + right: 75% !important; + left: 75% !important; + } + + .md\:inset-y-full { + top: 100% !important; + bottom: 100% !important; + } + + .md\:inset-x-full { + right: 100% !important; + left: 100% !important; + } + + .md\:-inset-y-1\/2 { + top: -50% !important; + bottom: -50% !important; + } + + .md\:-inset-x-1\/2 { + right: -50% !important; + left: -50% !important; + } + + .md\:-inset-y-1\/3 { + top: -33.333333% !important; + bottom: -33.333333% !important; + } + + .md\:-inset-x-1\/3 { + right: -33.333333% !important; + left: -33.333333% !important; + } + + .md\:-inset-y-2\/3 { + top: -66.666667% !important; + bottom: -66.666667% !important; + } + + .md\:-inset-x-2\/3 { + right: -66.666667% !important; + left: -66.666667% !important; + } + + .md\:-inset-y-1\/4 { + top: -25% !important; + bottom: -25% !important; + } + + .md\:-inset-x-1\/4 { + right: -25% !important; + left: -25% !important; + } + + .md\:-inset-y-2\/4 { + top: -50% !important; + bottom: -50% !important; + } + + .md\:-inset-x-2\/4 { + right: -50% !important; + left: -50% !important; + } + + .md\:-inset-y-3\/4 { + top: -75% !important; + bottom: -75% !important; + } + + .md\:-inset-x-3\/4 { + right: -75% !important; + left: -75% !important; + } + + .md\:-inset-y-full { + top: -100% !important; + bottom: -100% !important; + } + + .md\:-inset-x-full { + right: -100% !important; + left: -100% !important; + } + + .md\:top-0 { + top: 0px !important; + } + + .md\:right-0 { + right: 0px !important; + } + + .md\:bottom-0 { + bottom: 0px !important; + } + + .md\:left-0 { + left: 0px !important; + } + + .md\:top-1 { + top: 0.25rem !important; + } + + .md\:right-1 { + right: 0.25rem !important; + } + + .md\:bottom-1 { + bottom: 0.25rem !important; + } + + .md\:left-1 { + left: 0.25rem !important; + } + + .md\:top-2 { + top: 0.5rem !important; + } + + .md\:right-2 { + right: 0.5rem !important; + } + + .md\:bottom-2 { + bottom: 0.5rem !important; + } + + .md\:left-2 { + left: 0.5rem !important; + } + + .md\:top-3 { + top: 0.75rem !important; + } + + .md\:right-3 { + right: 0.75rem !important; + } + + .md\:bottom-3 { + bottom: 0.75rem !important; + } + + .md\:left-3 { + left: 0.75rem !important; + } + + .md\:top-4 { + top: 1rem !important; + } + + .md\:right-4 { + right: 1rem !important; + } + + .md\:bottom-4 { + bottom: 1rem !important; + } + + .md\:left-4 { + left: 1rem !important; + } + + .md\:top-5 { + top: 1.25rem !important; + } + + .md\:right-5 { + right: 1.25rem !important; + } + + .md\:bottom-5 { + bottom: 1.25rem !important; + } + + .md\:left-5 { + left: 1.25rem !important; + } + + .md\:top-6 { + top: 1.5rem !important; + } + + .md\:right-6 { + right: 1.5rem !important; + } + + .md\:bottom-6 { + bottom: 1.5rem !important; + } + + .md\:left-6 { + left: 1.5rem !important; + } + + .md\:top-7 { + top: 1.75rem !important; + } + + .md\:right-7 { + right: 1.75rem !important; + } + + .md\:bottom-7 { + bottom: 1.75rem !important; + } + + .md\:left-7 { + left: 1.75rem !important; + } + + .md\:top-8 { + top: 2rem !important; + } + + .md\:right-8 { + right: 2rem !important; + } + + .md\:bottom-8 { + bottom: 2rem !important; + } + + .md\:left-8 { + left: 2rem !important; + } + + .md\:top-9 { + top: 2.25rem !important; + } + + .md\:right-9 { + right: 2.25rem !important; + } + + .md\:bottom-9 { + bottom: 2.25rem !important; + } + + .md\:left-9 { + left: 2.25rem !important; + } + + .md\:top-10 { + top: 2.5rem !important; + } + + .md\:right-10 { + right: 2.5rem !important; + } + + .md\:bottom-10 { + bottom: 2.5rem !important; + } + + .md\:left-10 { + left: 2.5rem !important; + } + + .md\:top-11 { + top: 2.75rem !important; + } + + .md\:right-11 { + right: 2.75rem !important; + } + + .md\:bottom-11 { + bottom: 2.75rem !important; + } + + .md\:left-11 { + left: 2.75rem !important; + } + + .md\:top-12 { + top: 3rem !important; + } + + .md\:right-12 { + right: 3rem !important; + } + + .md\:bottom-12 { + bottom: 3rem !important; + } + + .md\:left-12 { + left: 3rem !important; + } + + .md\:top-14 { + top: 3.5rem !important; + } + + .md\:right-14 { + right: 3.5rem !important; + } + + .md\:bottom-14 { + bottom: 3.5rem !important; + } + + .md\:left-14 { + left: 3.5rem !important; + } + + .md\:top-16 { + top: 4rem !important; + } + + .md\:right-16 { + right: 4rem !important; + } + + .md\:bottom-16 { + bottom: 4rem !important; + } + + .md\:left-16 { + left: 4rem !important; + } + + .md\:top-20 { + top: 5rem !important; + } + + .md\:right-20 { + right: 5rem !important; + } + + .md\:bottom-20 { + bottom: 5rem !important; + } + + .md\:left-20 { + left: 5rem !important; + } + + .md\:top-24 { + top: 6rem !important; + } + + .md\:right-24 { + right: 6rem !important; + } + + .md\:bottom-24 { + bottom: 6rem !important; + } + + .md\:left-24 { + left: 6rem !important; + } + + .md\:top-28 { + top: 7rem !important; + } + + .md\:right-28 { + right: 7rem !important; + } + + .md\:bottom-28 { + bottom: 7rem !important; + } + + .md\:left-28 { + left: 7rem !important; + } + + .md\:top-32 { + top: 8rem !important; + } + + .md\:right-32 { + right: 8rem !important; + } + + .md\:bottom-32 { + bottom: 8rem !important; + } + + .md\:left-32 { + left: 8rem !important; + } + + .md\:top-36 { + top: 9rem !important; + } + + .md\:right-36 { + right: 9rem !important; + } + + .md\:bottom-36 { + bottom: 9rem !important; + } + + .md\:left-36 { + left: 9rem !important; + } + + .md\:top-40 { + top: 10rem !important; + } + + .md\:right-40 { + right: 10rem !important; + } + + .md\:bottom-40 { + bottom: 10rem !important; + } + + .md\:left-40 { + left: 10rem !important; + } + + .md\:top-44 { + top: 11rem !important; + } + + .md\:right-44 { + right: 11rem !important; + } + + .md\:bottom-44 { + bottom: 11rem !important; + } + + .md\:left-44 { + left: 11rem !important; + } + + .md\:top-48 { + top: 12rem !important; + } + + .md\:right-48 { + right: 12rem !important; + } + + .md\:bottom-48 { + bottom: 12rem !important; + } + + .md\:left-48 { + left: 12rem !important; + } + + .md\:top-52 { + top: 13rem !important; + } + + .md\:right-52 { + right: 13rem !important; + } + + .md\:bottom-52 { + bottom: 13rem !important; + } + + .md\:left-52 { + left: 13rem !important; + } + + .md\:top-56 { + top: 14rem !important; + } + + .md\:right-56 { + right: 14rem !important; + } + + .md\:bottom-56 { + bottom: 14rem !important; + } + + .md\:left-56 { + left: 14rem !important; + } + + .md\:top-60 { + top: 15rem !important; + } + + .md\:right-60 { + right: 15rem !important; + } + + .md\:bottom-60 { + bottom: 15rem !important; + } + + .md\:left-60 { + left: 15rem !important; + } + + .md\:top-64 { + top: 16rem !important; + } + + .md\:right-64 { + right: 16rem !important; + } + + .md\:bottom-64 { + bottom: 16rem !important; + } + + .md\:left-64 { + left: 16rem !important; + } + + .md\:top-72 { + top: 18rem !important; + } + + .md\:right-72 { + right: 18rem !important; + } + + .md\:bottom-72 { + bottom: 18rem !important; + } + + .md\:left-72 { + left: 18rem !important; + } + + .md\:top-80 { + top: 20rem !important; + } + + .md\:right-80 { + right: 20rem !important; + } + + .md\:bottom-80 { + bottom: 20rem !important; + } + + .md\:left-80 { + left: 20rem !important; + } + + .md\:top-96 { + top: 24rem !important; + } + + .md\:right-96 { + right: 24rem !important; + } + + .md\:bottom-96 { + bottom: 24rem !important; + } + + .md\:left-96 { + left: 24rem !important; + } + + .md\:top-auto { + top: auto !important; + } + + .md\:right-auto { + right: auto !important; + } + + .md\:bottom-auto { + bottom: auto !important; + } + + .md\:left-auto { + left: auto !important; + } + + .md\:top-px { + top: 1px !important; + } + + .md\:right-px { + right: 1px !important; + } + + .md\:bottom-px { + bottom: 1px !important; + } + + .md\:left-px { + left: 1px !important; + } + + .md\:top-0\.5 { + top: 0.125rem !important; + } + + .md\:right-0\.5 { + right: 0.125rem !important; + } + + .md\:bottom-0\.5 { + bottom: 0.125rem !important; + } + + .md\:left-0\.5 { + left: 0.125rem !important; + } + + .md\:top-1\.5 { + top: 0.375rem !important; + } + + .md\:right-1\.5 { + right: 0.375rem !important; + } + + .md\:bottom-1\.5 { + bottom: 0.375rem !important; + } + + .md\:left-1\.5 { + left: 0.375rem !important; + } + + .md\:top-2\.5 { + top: 0.625rem !important; + } + + .md\:right-2\.5 { + right: 0.625rem !important; + } + + .md\:bottom-2\.5 { + bottom: 0.625rem !important; + } + + .md\:left-2\.5 { + left: 0.625rem !important; + } + + .md\:top-3\.5 { + top: 0.875rem !important; + } + + .md\:right-3\.5 { + right: 0.875rem !important; + } + + .md\:bottom-3\.5 { + bottom: 0.875rem !important; + } + + .md\:left-3\.5 { + left: 0.875rem !important; + } + + .md\:-top-0 { + top: 0px !important; + } + + .md\:-right-0 { + right: 0px !important; + } + + .md\:-bottom-0 { + bottom: 0px !important; + } + + .md\:-left-0 { + left: 0px !important; + } + + .md\:-top-1 { + top: -0.25rem !important; + } + + .md\:-right-1 { + right: -0.25rem !important; + } + + .md\:-bottom-1 { + bottom: -0.25rem !important; + } + + .md\:-left-1 { + left: -0.25rem !important; + } + + .md\:-top-2 { + top: -0.5rem !important; + } + + .md\:-right-2 { + right: -0.5rem !important; + } + + .md\:-bottom-2 { + bottom: -0.5rem !important; + } + + .md\:-left-2 { + left: -0.5rem !important; + } + + .md\:-top-3 { + top: -0.75rem !important; + } + + .md\:-right-3 { + right: -0.75rem !important; + } + + .md\:-bottom-3 { + bottom: -0.75rem !important; + } + + .md\:-left-3 { + left: -0.75rem !important; + } + + .md\:-top-4 { + top: -1rem !important; + } + + .md\:-right-4 { + right: -1rem !important; + } + + .md\:-bottom-4 { + bottom: -1rem !important; + } + + .md\:-left-4 { + left: -1rem !important; + } + + .md\:-top-5 { + top: -1.25rem !important; + } + + .md\:-right-5 { + right: -1.25rem !important; + } + + .md\:-bottom-5 { + bottom: -1.25rem !important; + } + + .md\:-left-5 { + left: -1.25rem !important; + } + + .md\:-top-6 { + top: -1.5rem !important; + } + + .md\:-right-6 { + right: -1.5rem !important; + } + + .md\:-bottom-6 { + bottom: -1.5rem !important; + } + + .md\:-left-6 { + left: -1.5rem !important; + } + + .md\:-top-7 { + top: -1.75rem !important; + } + + .md\:-right-7 { + right: -1.75rem !important; + } + + .md\:-bottom-7 { + bottom: -1.75rem !important; + } + + .md\:-left-7 { + left: -1.75rem !important; + } + + .md\:-top-8 { + top: -2rem !important; + } + + .md\:-right-8 { + right: -2rem !important; + } + + .md\:-bottom-8 { + bottom: -2rem !important; + } + + .md\:-left-8 { + left: -2rem !important; + } + + .md\:-top-9 { + top: -2.25rem !important; + } + + .md\:-right-9 { + right: -2.25rem !important; + } + + .md\:-bottom-9 { + bottom: -2.25rem !important; + } + + .md\:-left-9 { + left: -2.25rem !important; + } + + .md\:-top-10 { + top: -2.5rem !important; + } + + .md\:-right-10 { + right: -2.5rem !important; + } + + .md\:-bottom-10 { + bottom: -2.5rem !important; + } + + .md\:-left-10 { + left: -2.5rem !important; + } + + .md\:-top-11 { + top: -2.75rem !important; + } + + .md\:-right-11 { + right: -2.75rem !important; + } + + .md\:-bottom-11 { + bottom: -2.75rem !important; + } + + .md\:-left-11 { + left: -2.75rem !important; + } + + .md\:-top-12 { + top: -3rem !important; + } + + .md\:-right-12 { + right: -3rem !important; + } + + .md\:-bottom-12 { + bottom: -3rem !important; + } + + .md\:-left-12 { + left: -3rem !important; + } + + .md\:-top-14 { + top: -3.5rem !important; + } + + .md\:-right-14 { + right: -3.5rem !important; + } + + .md\:-bottom-14 { + bottom: -3.5rem !important; + } + + .md\:-left-14 { + left: -3.5rem !important; + } + + .md\:-top-16 { + top: -4rem !important; + } + + .md\:-right-16 { + right: -4rem !important; + } + + .md\:-bottom-16 { + bottom: -4rem !important; + } + + .md\:-left-16 { + left: -4rem !important; + } + + .md\:-top-20 { + top: -5rem !important; + } + + .md\:-right-20 { + right: -5rem !important; + } + + .md\:-bottom-20 { + bottom: -5rem !important; + } + + .md\:-left-20 { + left: -5rem !important; + } + + .md\:-top-24 { + top: -6rem !important; + } + + .md\:-right-24 { + right: -6rem !important; + } + + .md\:-bottom-24 { + bottom: -6rem !important; + } + + .md\:-left-24 { + left: -6rem !important; + } + + .md\:-top-28 { + top: -7rem !important; + } + + .md\:-right-28 { + right: -7rem !important; + } + + .md\:-bottom-28 { + bottom: -7rem !important; + } + + .md\:-left-28 { + left: -7rem !important; + } + + .md\:-top-32 { + top: -8rem !important; + } + + .md\:-right-32 { + right: -8rem !important; + } + + .md\:-bottom-32 { + bottom: -8rem !important; + } + + .md\:-left-32 { + left: -8rem !important; + } + + .md\:-top-36 { + top: -9rem !important; + } + + .md\:-right-36 { + right: -9rem !important; + } + + .md\:-bottom-36 { + bottom: -9rem !important; + } + + .md\:-left-36 { + left: -9rem !important; + } + + .md\:-top-40 { + top: -10rem !important; + } + + .md\:-right-40 { + right: -10rem !important; + } + + .md\:-bottom-40 { + bottom: -10rem !important; + } + + .md\:-left-40 { + left: -10rem !important; + } + + .md\:-top-44 { + top: -11rem !important; + } + + .md\:-right-44 { + right: -11rem !important; + } + + .md\:-bottom-44 { + bottom: -11rem !important; + } + + .md\:-left-44 { + left: -11rem !important; + } + + .md\:-top-48 { + top: -12rem !important; + } + + .md\:-right-48 { + right: -12rem !important; + } + + .md\:-bottom-48 { + bottom: -12rem !important; + } + + .md\:-left-48 { + left: -12rem !important; + } + + .md\:-top-52 { + top: -13rem !important; + } + + .md\:-right-52 { + right: -13rem !important; + } + + .md\:-bottom-52 { + bottom: -13rem !important; + } + + .md\:-left-52 { + left: -13rem !important; + } + + .md\:-top-56 { + top: -14rem !important; + } + + .md\:-right-56 { + right: -14rem !important; + } + + .md\:-bottom-56 { + bottom: -14rem !important; + } + + .md\:-left-56 { + left: -14rem !important; + } + + .md\:-top-60 { + top: -15rem !important; + } + + .md\:-right-60 { + right: -15rem !important; + } + + .md\:-bottom-60 { + bottom: -15rem !important; + } + + .md\:-left-60 { + left: -15rem !important; + } + + .md\:-top-64 { + top: -16rem !important; + } + + .md\:-right-64 { + right: -16rem !important; + } + + .md\:-bottom-64 { + bottom: -16rem !important; + } + + .md\:-left-64 { + left: -16rem !important; + } + + .md\:-top-72 { + top: -18rem !important; + } + + .md\:-right-72 { + right: -18rem !important; + } + + .md\:-bottom-72 { + bottom: -18rem !important; + } + + .md\:-left-72 { + left: -18rem !important; + } + + .md\:-top-80 { + top: -20rem !important; + } + + .md\:-right-80 { + right: -20rem !important; + } + + .md\:-bottom-80 { + bottom: -20rem !important; + } + + .md\:-left-80 { + left: -20rem !important; + } + + .md\:-top-96 { + top: -24rem !important; + } + + .md\:-right-96 { + right: -24rem !important; + } + + .md\:-bottom-96 { + bottom: -24rem !important; + } + + .md\:-left-96 { + left: -24rem !important; + } + + .md\:-top-px { + top: -1px !important; + } + + .md\:-right-px { + right: -1px !important; + } + + .md\:-bottom-px { + bottom: -1px !important; + } + + .md\:-left-px { + left: -1px !important; + } + + .md\:-top-0\.5 { + top: -0.125rem !important; + } + + .md\:-right-0\.5 { + right: -0.125rem !important; + } + + .md\:-bottom-0\.5 { + bottom: -0.125rem !important; + } + + .md\:-left-0\.5 { + left: -0.125rem !important; + } + + .md\:-top-1\.5 { + top: -0.375rem !important; + } + + .md\:-right-1\.5 { + right: -0.375rem !important; + } + + .md\:-bottom-1\.5 { + bottom: -0.375rem !important; + } + + .md\:-left-1\.5 { + left: -0.375rem !important; + } + + .md\:-top-2\.5 { + top: -0.625rem !important; + } + + .md\:-right-2\.5 { + right: -0.625rem !important; + } + + .md\:-bottom-2\.5 { + bottom: -0.625rem !important; + } + + .md\:-left-2\.5 { + left: -0.625rem !important; + } + + .md\:-top-3\.5 { + top: -0.875rem !important; + } + + .md\:-right-3\.5 { + right: -0.875rem !important; + } + + .md\:-bottom-3\.5 { + bottom: -0.875rem !important; + } + + .md\:-left-3\.5 { + left: -0.875rem !important; + } + + .md\:top-1\/2 { + top: 50% !important; + } + + .md\:right-1\/2 { + right: 50% !important; + } + + .md\:bottom-1\/2 { + bottom: 50% !important; + } + + .md\:left-1\/2 { + left: 50% !important; + } + + .md\:top-1\/3 { + top: 33.333333% !important; + } + + .md\:right-1\/3 { + right: 33.333333% !important; + } + + .md\:bottom-1\/3 { + bottom: 33.333333% !important; + } + + .md\:left-1\/3 { + left: 33.333333% !important; + } + + .md\:top-2\/3 { + top: 66.666667% !important; + } + + .md\:right-2\/3 { + right: 66.666667% !important; + } + + .md\:bottom-2\/3 { + bottom: 66.666667% !important; + } + + .md\:left-2\/3 { + left: 66.666667% !important; + } + + .md\:top-1\/4 { + top: 25% !important; + } + + .md\:right-1\/4 { + right: 25% !important; + } + + .md\:bottom-1\/4 { + bottom: 25% !important; + } + + .md\:left-1\/4 { + left: 25% !important; + } + + .md\:top-2\/4 { + top: 50% !important; + } + + .md\:right-2\/4 { + right: 50% !important; + } + + .md\:bottom-2\/4 { + bottom: 50% !important; + } + + .md\:left-2\/4 { + left: 50% !important; + } + + .md\:top-3\/4 { + top: 75% !important; + } + + .md\:right-3\/4 { + right: 75% !important; + } + + .md\:bottom-3\/4 { + bottom: 75% !important; + } + + .md\:left-3\/4 { + left: 75% !important; + } + + .md\:top-full { + top: 100% !important; + } + + .md\:right-full { + right: 100% !important; + } + + .md\:bottom-full { + bottom: 100% !important; + } + + .md\:left-full { + left: 100% !important; + } + + .md\:-top-1\/2 { + top: -50% !important; + } + + .md\:-right-1\/2 { + right: -50% !important; + } + + .md\:-bottom-1\/2 { + bottom: -50% !important; + } + + .md\:-left-1\/2 { + left: -50% !important; + } + + .md\:-top-1\/3 { + top: -33.333333% !important; + } + + .md\:-right-1\/3 { + right: -33.333333% !important; + } + + .md\:-bottom-1\/3 { + bottom: -33.333333% !important; + } + + .md\:-left-1\/3 { + left: -33.333333% !important; + } + + .md\:-top-2\/3 { + top: -66.666667% !important; + } + + .md\:-right-2\/3 { + right: -66.666667% !important; + } + + .md\:-bottom-2\/3 { + bottom: -66.666667% !important; + } + + .md\:-left-2\/3 { + left: -66.666667% !important; + } + + .md\:-top-1\/4 { + top: -25% !important; + } + + .md\:-right-1\/4 { + right: -25% !important; + } + + .md\:-bottom-1\/4 { + bottom: -25% !important; + } + + .md\:-left-1\/4 { + left: -25% !important; + } + + .md\:-top-2\/4 { + top: -50% !important; + } + + .md\:-right-2\/4 { + right: -50% !important; + } + + .md\:-bottom-2\/4 { + bottom: -50% !important; + } + + .md\:-left-2\/4 { + left: -50% !important; + } + + .md\:-top-3\/4 { + top: -75% !important; + } + + .md\:-right-3\/4 { + right: -75% !important; + } + + .md\:-bottom-3\/4 { + bottom: -75% !important; + } + + .md\:-left-3\/4 { + left: -75% !important; + } + + .md\:-top-full { + top: -100% !important; + } + + .md\:-right-full { + right: -100% !important; + } + + .md\:-bottom-full { + bottom: -100% !important; + } + + .md\:-left-full { + left: -100% !important; + } + + .md\:resize-none { + resize: none !important; + } + + .md\:resize-y { + resize: vertical !important; + } + + .md\:resize-x { + resize: horizontal !important; + } + + .md\:resize { + resize: both !important; + } + + .md\:shadow-sm { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .md\:shadow { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .md\:shadow-md { + --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .md\:shadow-lg { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .md\:shadow-xl { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .md\:shadow-2xl { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .md\:shadow-inner { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .md\:shadow-none { + --tw-shadow: 0 0 #0000 !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .group:hover .md\:group-hover\:shadow-sm { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .group:hover .md\:group-hover\:shadow { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .group:hover .md\:group-hover\:shadow-md { + --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .group:hover .md\:group-hover\:shadow-lg { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .group:hover .md\:group-hover\:shadow-xl { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .group:hover .md\:group-hover\:shadow-2xl { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .group:hover .md\:group-hover\:shadow-inner { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .group:hover .md\:group-hover\:shadow-none { + --tw-shadow: 0 0 #0000 !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .md\:focus-within\:shadow-sm:focus-within { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .md\:focus-within\:shadow:focus-within { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .md\:focus-within\:shadow-md:focus-within { + --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .md\:focus-within\:shadow-lg:focus-within { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .md\:focus-within\:shadow-xl:focus-within { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .md\:focus-within\:shadow-2xl:focus-within { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .md\:focus-within\:shadow-inner:focus-within { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .md\:focus-within\:shadow-none:focus-within { + --tw-shadow: 0 0 #0000 !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .md\:hover\:shadow-sm:hover { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .md\:hover\:shadow:hover { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .md\:hover\:shadow-md:hover { + --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .md\:hover\:shadow-lg:hover { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .md\:hover\:shadow-xl:hover { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .md\:hover\:shadow-2xl:hover { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .md\:hover\:shadow-inner:hover { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .md\:hover\:shadow-none:hover { + --tw-shadow: 0 0 #0000 !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .md\:focus\:shadow-sm:focus { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .md\:focus\:shadow:focus { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .md\:focus\:shadow-md:focus { + --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .md\:focus\:shadow-lg:focus { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .md\:focus\:shadow-xl:focus { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .md\:focus\:shadow-2xl:focus { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .md\:focus\:shadow-inner:focus { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .md\:focus\:shadow-none:focus { + --tw-shadow: 0 0 #0000 !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .md\:ring-0 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; + } + + .md\:ring-1 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; + } + + .md\:ring-2 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; + } + + .md\:ring-4 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; + } + + .md\:ring-8 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; + } + + .md\:ring { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; + } + + .md\:ring-inset { + --tw-ring-inset: inset !important; + } + + .md\:focus-within\:ring-0:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; + } + + .md\:focus-within\:ring-1:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; + } + + .md\: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) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; + } + + .md\:focus-within\:ring-4:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; + } + + .md\:focus-within\:ring-8:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; + } + + .md\:focus-within\:ring:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; + } + + .md\:focus-within\:ring-inset:focus-within { + --tw-ring-inset: inset !important; + } + + .md\: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) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; + } + + .md\: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) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; + } + + .md\: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) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; + } + + .md\:focus\:ring-4:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; + } + + .md\:focus\:ring-8:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; + } + + .md\:focus\:ring:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; + } + + .md\:focus\:ring-inset:focus { + --tw-ring-inset: inset !important; + } + + .md\:ring-offset-transparent { + --tw-ring-offset-color: transparent !important; + } + + .md\:ring-offset-current { + --tw-ring-offset-color: currentColor !important; + } + + .md\:ring-offset-black { + --tw-ring-offset-color: #000 !important; + } + + .md\:ring-offset-white { + --tw-ring-offset-color: #fff !important; + } + + .md\:ring-offset-gray-50 { + --tw-ring-offset-color: #f9fafb !important; + } + + .md\:ring-offset-gray-100 { + --tw-ring-offset-color: #f3f4f6 !important; + } + + .md\:ring-offset-gray-200 { + --tw-ring-offset-color: #e5e7eb !important; + } + + .md\:ring-offset-gray-300 { + --tw-ring-offset-color: #d1d5db !important; + } + + .md\:ring-offset-gray-400 { + --tw-ring-offset-color: #9ca3af !important; + } + + .md\:ring-offset-gray-500 { + --tw-ring-offset-color: #6b7280 !important; + } + + .md\:ring-offset-gray-600 { + --tw-ring-offset-color: #4b5563 !important; + } + + .md\:ring-offset-gray-700 { + --tw-ring-offset-color: #374151 !important; + } + + .md\:ring-offset-gray-800 { + --tw-ring-offset-color: #1f2937 !important; + } + + .md\:ring-offset-gray-900 { + --tw-ring-offset-color: #111827 !important; + } + + .md\:ring-offset-red-50 { + --tw-ring-offset-color: #fef2f2 !important; + } + + .md\:ring-offset-red-100 { + --tw-ring-offset-color: #fee2e2 !important; + } + + .md\:ring-offset-red-200 { + --tw-ring-offset-color: #fecaca !important; + } + + .md\:ring-offset-red-300 { + --tw-ring-offset-color: #fca5a5 !important; + } + + .md\:ring-offset-red-400 { + --tw-ring-offset-color: #f87171 !important; + } + + .md\:ring-offset-red-500 { + --tw-ring-offset-color: #ef4444 !important; + } + + .md\:ring-offset-red-600 { + --tw-ring-offset-color: #dc2626 !important; + } + + .md\:ring-offset-red-700 { + --tw-ring-offset-color: #b91c1c !important; + } + + .md\:ring-offset-red-800 { + --tw-ring-offset-color: #991b1b !important; + } + + .md\:ring-offset-red-900 { + --tw-ring-offset-color: #7f1d1d !important; + } + + .md\:ring-offset-yellow-50 { + --tw-ring-offset-color: #fffbeb !important; + } + + .md\:ring-offset-yellow-100 { + --tw-ring-offset-color: #fef3c7 !important; + } + + .md\:ring-offset-yellow-200 { + --tw-ring-offset-color: #fde68a !important; + } + + .md\:ring-offset-yellow-300 { + --tw-ring-offset-color: #fcd34d !important; + } + + .md\:ring-offset-yellow-400 { + --tw-ring-offset-color: #fbbf24 !important; + } + + .md\:ring-offset-yellow-500 { + --tw-ring-offset-color: #f59e0b !important; + } + + .md\:ring-offset-yellow-600 { + --tw-ring-offset-color: #d97706 !important; + } + + .md\:ring-offset-yellow-700 { + --tw-ring-offset-color: #b45309 !important; + } + + .md\:ring-offset-yellow-800 { + --tw-ring-offset-color: #92400e !important; + } + + .md\:ring-offset-yellow-900 { + --tw-ring-offset-color: #78350f !important; + } + + .md\:ring-offset-green-50 { + --tw-ring-offset-color: #ecfdf5 !important; + } + + .md\:ring-offset-green-100 { + --tw-ring-offset-color: #d1fae5 !important; + } + + .md\:ring-offset-green-200 { + --tw-ring-offset-color: #a7f3d0 !important; + } + + .md\:ring-offset-green-300 { + --tw-ring-offset-color: #6ee7b7 !important; + } + + .md\:ring-offset-green-400 { + --tw-ring-offset-color: #34d399 !important; + } + + .md\:ring-offset-green-500 { + --tw-ring-offset-color: #10b981 !important; + } + + .md\:ring-offset-green-600 { + --tw-ring-offset-color: #059669 !important; + } + + .md\:ring-offset-green-700 { + --tw-ring-offset-color: #047857 !important; + } + + .md\:ring-offset-green-800 { + --tw-ring-offset-color: #065f46 !important; + } + + .md\:ring-offset-green-900 { + --tw-ring-offset-color: #064e3b !important; + } + + .md\:ring-offset-blue-50 { + --tw-ring-offset-color: #eff6ff !important; + } + + .md\:ring-offset-blue-100 { + --tw-ring-offset-color: #dbeafe !important; + } + + .md\:ring-offset-blue-200 { + --tw-ring-offset-color: #bfdbfe !important; + } + + .md\:ring-offset-blue-300 { + --tw-ring-offset-color: #93c5fd !important; + } + + .md\:ring-offset-blue-400 { + --tw-ring-offset-color: #60a5fa !important; + } + + .md\:ring-offset-blue-500 { + --tw-ring-offset-color: #3b82f6 !important; + } + + .md\:ring-offset-blue-600 { + --tw-ring-offset-color: #2563eb !important; + } + + .md\:ring-offset-blue-700 { + --tw-ring-offset-color: #1d4ed8 !important; + } + + .md\:ring-offset-blue-800 { + --tw-ring-offset-color: #1e40af !important; + } + + .md\:ring-offset-blue-900 { + --tw-ring-offset-color: #1e3a8a !important; + } + + .md\:ring-offset-indigo-50 { + --tw-ring-offset-color: #eef2ff !important; + } + + .md\:ring-offset-indigo-100 { + --tw-ring-offset-color: #e0e7ff !important; + } + + .md\:ring-offset-indigo-200 { + --tw-ring-offset-color: #c7d2fe !important; + } + + .md\:ring-offset-indigo-300 { + --tw-ring-offset-color: #a5b4fc !important; + } + + .md\:ring-offset-indigo-400 { + --tw-ring-offset-color: #818cf8 !important; + } + + .md\:ring-offset-indigo-500 { + --tw-ring-offset-color: #6366f1 !important; + } + + .md\:ring-offset-indigo-600 { + --tw-ring-offset-color: #4f46e5 !important; + } + + .md\:ring-offset-indigo-700 { + --tw-ring-offset-color: #4338ca !important; + } + + .md\:ring-offset-indigo-800 { + --tw-ring-offset-color: #3730a3 !important; + } + + .md\:ring-offset-indigo-900 { + --tw-ring-offset-color: #312e81 !important; + } + + .md\:ring-offset-purple-50 { + --tw-ring-offset-color: #f5f3ff !important; + } + + .md\:ring-offset-purple-100 { + --tw-ring-offset-color: #ede9fe !important; + } + + .md\:ring-offset-purple-200 { + --tw-ring-offset-color: #ddd6fe !important; + } + + .md\:ring-offset-purple-300 { + --tw-ring-offset-color: #c4b5fd !important; + } + + .md\:ring-offset-purple-400 { + --tw-ring-offset-color: #a78bfa !important; + } + + .md\:ring-offset-purple-500 { + --tw-ring-offset-color: #8b5cf6 !important; + } + + .md\:ring-offset-purple-600 { + --tw-ring-offset-color: #7c3aed !important; + } + + .md\:ring-offset-purple-700 { + --tw-ring-offset-color: #6d28d9 !important; + } + + .md\:ring-offset-purple-800 { + --tw-ring-offset-color: #5b21b6 !important; + } + + .md\:ring-offset-purple-900 { + --tw-ring-offset-color: #4c1d95 !important; + } + + .md\:ring-offset-pink-50 { + --tw-ring-offset-color: #fdf2f8 !important; + } + + .md\:ring-offset-pink-100 { + --tw-ring-offset-color: #fce7f3 !important; + } + + .md\:ring-offset-pink-200 { + --tw-ring-offset-color: #fbcfe8 !important; + } + + .md\:ring-offset-pink-300 { + --tw-ring-offset-color: #f9a8d4 !important; + } + + .md\:ring-offset-pink-400 { + --tw-ring-offset-color: #f472b6 !important; + } + + .md\:ring-offset-pink-500 { + --tw-ring-offset-color: #ec4899 !important; + } + + .md\:ring-offset-pink-600 { + --tw-ring-offset-color: #db2777 !important; + } + + .md\:ring-offset-pink-700 { + --tw-ring-offset-color: #be185d !important; + } + + .md\:ring-offset-pink-800 { + --tw-ring-offset-color: #9d174d !important; + } + + .md\:ring-offset-pink-900 { + --tw-ring-offset-color: #831843 !important; + } + + .md\:ring-offset-primary { + --tw-ring-offset-color: #003197 !important; + } + + .md\:focus-within\:ring-offset-transparent:focus-within { + --tw-ring-offset-color: transparent !important; + } + + .md\:focus-within\:ring-offset-current:focus-within { + --tw-ring-offset-color: currentColor !important; + } + + .md\:focus-within\:ring-offset-black:focus-within { + --tw-ring-offset-color: #000 !important; + } + + .md\:focus-within\:ring-offset-white:focus-within { + --tw-ring-offset-color: #fff !important; + } + + .md\:focus-within\:ring-offset-gray-50:focus-within { + --tw-ring-offset-color: #f9fafb !important; + } + + .md\:focus-within\:ring-offset-gray-100:focus-within { + --tw-ring-offset-color: #f3f4f6 !important; + } + + .md\:focus-within\:ring-offset-gray-200:focus-within { + --tw-ring-offset-color: #e5e7eb !important; + } + + .md\:focus-within\:ring-offset-gray-300:focus-within { + --tw-ring-offset-color: #d1d5db !important; + } + + .md\:focus-within\:ring-offset-gray-400:focus-within { + --tw-ring-offset-color: #9ca3af !important; + } + + .md\:focus-within\:ring-offset-gray-500:focus-within { + --tw-ring-offset-color: #6b7280 !important; + } + + .md\:focus-within\:ring-offset-gray-600:focus-within { + --tw-ring-offset-color: #4b5563 !important; + } + + .md\:focus-within\:ring-offset-gray-700:focus-within { + --tw-ring-offset-color: #374151 !important; + } + + .md\:focus-within\:ring-offset-gray-800:focus-within { + --tw-ring-offset-color: #1f2937 !important; + } + + .md\:focus-within\:ring-offset-gray-900:focus-within { + --tw-ring-offset-color: #111827 !important; + } + + .md\:focus-within\:ring-offset-red-50:focus-within { + --tw-ring-offset-color: #fef2f2 !important; + } + + .md\:focus-within\:ring-offset-red-100:focus-within { + --tw-ring-offset-color: #fee2e2 !important; + } + + .md\:focus-within\:ring-offset-red-200:focus-within { + --tw-ring-offset-color: #fecaca !important; + } + + .md\:focus-within\:ring-offset-red-300:focus-within { + --tw-ring-offset-color: #fca5a5 !important; + } + + .md\:focus-within\:ring-offset-red-400:focus-within { + --tw-ring-offset-color: #f87171 !important; + } + + .md\:focus-within\:ring-offset-red-500:focus-within { + --tw-ring-offset-color: #ef4444 !important; + } + + .md\:focus-within\:ring-offset-red-600:focus-within { + --tw-ring-offset-color: #dc2626 !important; + } + + .md\:focus-within\:ring-offset-red-700:focus-within { + --tw-ring-offset-color: #b91c1c !important; + } + + .md\:focus-within\:ring-offset-red-800:focus-within { + --tw-ring-offset-color: #991b1b !important; + } + + .md\:focus-within\:ring-offset-red-900:focus-within { + --tw-ring-offset-color: #7f1d1d !important; + } + + .md\:focus-within\:ring-offset-yellow-50:focus-within { + --tw-ring-offset-color: #fffbeb !important; + } + + .md\:focus-within\:ring-offset-yellow-100:focus-within { + --tw-ring-offset-color: #fef3c7 !important; + } + + .md\:focus-within\:ring-offset-yellow-200:focus-within { + --tw-ring-offset-color: #fde68a !important; + } + + .md\:focus-within\:ring-offset-yellow-300:focus-within { + --tw-ring-offset-color: #fcd34d !important; + } + + .md\:focus-within\:ring-offset-yellow-400:focus-within { + --tw-ring-offset-color: #fbbf24 !important; + } + + .md\:focus-within\:ring-offset-yellow-500:focus-within { + --tw-ring-offset-color: #f59e0b !important; + } + + .md\:focus-within\:ring-offset-yellow-600:focus-within { + --tw-ring-offset-color: #d97706 !important; + } + + .md\:focus-within\:ring-offset-yellow-700:focus-within { + --tw-ring-offset-color: #b45309 !important; + } + + .md\:focus-within\:ring-offset-yellow-800:focus-within { + --tw-ring-offset-color: #92400e !important; + } + + .md\:focus-within\:ring-offset-yellow-900:focus-within { + --tw-ring-offset-color: #78350f !important; + } + + .md\:focus-within\:ring-offset-green-50:focus-within { + --tw-ring-offset-color: #ecfdf5 !important; + } + + .md\:focus-within\:ring-offset-green-100:focus-within { + --tw-ring-offset-color: #d1fae5 !important; + } + + .md\:focus-within\:ring-offset-green-200:focus-within { + --tw-ring-offset-color: #a7f3d0 !important; + } + + .md\:focus-within\:ring-offset-green-300:focus-within { + --tw-ring-offset-color: #6ee7b7 !important; + } + + .md\:focus-within\:ring-offset-green-400:focus-within { + --tw-ring-offset-color: #34d399 !important; + } + + .md\:focus-within\:ring-offset-green-500:focus-within { + --tw-ring-offset-color: #10b981 !important; + } + + .md\:focus-within\:ring-offset-green-600:focus-within { + --tw-ring-offset-color: #059669 !important; + } + + .md\:focus-within\:ring-offset-green-700:focus-within { + --tw-ring-offset-color: #047857 !important; + } + + .md\:focus-within\:ring-offset-green-800:focus-within { + --tw-ring-offset-color: #065f46 !important; + } + + .md\:focus-within\:ring-offset-green-900:focus-within { + --tw-ring-offset-color: #064e3b !important; + } + + .md\:focus-within\:ring-offset-blue-50:focus-within { + --tw-ring-offset-color: #eff6ff !important; + } + + .md\:focus-within\:ring-offset-blue-100:focus-within { + --tw-ring-offset-color: #dbeafe !important; + } + + .md\:focus-within\:ring-offset-blue-200:focus-within { + --tw-ring-offset-color: #bfdbfe !important; + } + + .md\:focus-within\:ring-offset-blue-300:focus-within { + --tw-ring-offset-color: #93c5fd !important; + } + + .md\:focus-within\:ring-offset-blue-400:focus-within { + --tw-ring-offset-color: #60a5fa !important; + } + + .md\:focus-within\:ring-offset-blue-500:focus-within { + --tw-ring-offset-color: #3b82f6 !important; + } + + .md\:focus-within\:ring-offset-blue-600:focus-within { + --tw-ring-offset-color: #2563eb !important; + } + + .md\:focus-within\:ring-offset-blue-700:focus-within { + --tw-ring-offset-color: #1d4ed8 !important; + } + + .md\:focus-within\:ring-offset-blue-800:focus-within { + --tw-ring-offset-color: #1e40af !important; + } + + .md\:focus-within\:ring-offset-blue-900:focus-within { + --tw-ring-offset-color: #1e3a8a !important; + } + + .md\:focus-within\:ring-offset-indigo-50:focus-within { + --tw-ring-offset-color: #eef2ff !important; + } + + .md\:focus-within\:ring-offset-indigo-100:focus-within { + --tw-ring-offset-color: #e0e7ff !important; + } + + .md\:focus-within\:ring-offset-indigo-200:focus-within { + --tw-ring-offset-color: #c7d2fe !important; + } + + .md\:focus-within\:ring-offset-indigo-300:focus-within { + --tw-ring-offset-color: #a5b4fc !important; + } + + .md\:focus-within\:ring-offset-indigo-400:focus-within { + --tw-ring-offset-color: #818cf8 !important; + } + + .md\:focus-within\:ring-offset-indigo-500:focus-within { + --tw-ring-offset-color: #6366f1 !important; + } + + .md\:focus-within\:ring-offset-indigo-600:focus-within { + --tw-ring-offset-color: #4f46e5 !important; + } + + .md\:focus-within\:ring-offset-indigo-700:focus-within { + --tw-ring-offset-color: #4338ca !important; + } + + .md\:focus-within\:ring-offset-indigo-800:focus-within { + --tw-ring-offset-color: #3730a3 !important; + } + + .md\:focus-within\:ring-offset-indigo-900:focus-within { + --tw-ring-offset-color: #312e81 !important; + } + + .md\:focus-within\:ring-offset-purple-50:focus-within { + --tw-ring-offset-color: #f5f3ff !important; + } + + .md\:focus-within\:ring-offset-purple-100:focus-within { + --tw-ring-offset-color: #ede9fe !important; + } + + .md\:focus-within\:ring-offset-purple-200:focus-within { + --tw-ring-offset-color: #ddd6fe !important; + } + + .md\:focus-within\:ring-offset-purple-300:focus-within { + --tw-ring-offset-color: #c4b5fd !important; + } + + .md\:focus-within\:ring-offset-purple-400:focus-within { + --tw-ring-offset-color: #a78bfa !important; + } + + .md\:focus-within\:ring-offset-purple-500:focus-within { + --tw-ring-offset-color: #8b5cf6 !important; + } + + .md\:focus-within\:ring-offset-purple-600:focus-within { + --tw-ring-offset-color: #7c3aed !important; + } + + .md\:focus-within\:ring-offset-purple-700:focus-within { + --tw-ring-offset-color: #6d28d9 !important; + } + + .md\:focus-within\:ring-offset-purple-800:focus-within { + --tw-ring-offset-color: #5b21b6 !important; + } + + .md\:focus-within\:ring-offset-purple-900:focus-within { + --tw-ring-offset-color: #4c1d95 !important; + } + + .md\:focus-within\:ring-offset-pink-50:focus-within { + --tw-ring-offset-color: #fdf2f8 !important; + } + + .md\:focus-within\:ring-offset-pink-100:focus-within { + --tw-ring-offset-color: #fce7f3 !important; + } + + .md\:focus-within\:ring-offset-pink-200:focus-within { + --tw-ring-offset-color: #fbcfe8 !important; + } + + .md\:focus-within\:ring-offset-pink-300:focus-within { + --tw-ring-offset-color: #f9a8d4 !important; + } + + .md\:focus-within\:ring-offset-pink-400:focus-within { + --tw-ring-offset-color: #f472b6 !important; + } + + .md\:focus-within\:ring-offset-pink-500:focus-within { + --tw-ring-offset-color: #ec4899 !important; + } + + .md\:focus-within\:ring-offset-pink-600:focus-within { + --tw-ring-offset-color: #db2777 !important; + } + + .md\:focus-within\:ring-offset-pink-700:focus-within { + --tw-ring-offset-color: #be185d !important; + } + + .md\:focus-within\:ring-offset-pink-800:focus-within { + --tw-ring-offset-color: #9d174d !important; + } + + .md\:focus-within\:ring-offset-pink-900:focus-within { + --tw-ring-offset-color: #831843 !important; + } + + .md\:focus-within\:ring-offset-primary:focus-within { + --tw-ring-offset-color: #003197 !important; + } + + .md\:focus\:ring-offset-transparent:focus { + --tw-ring-offset-color: transparent !important; + } + + .md\:focus\:ring-offset-current:focus { + --tw-ring-offset-color: currentColor !important; + } + + .md\:focus\:ring-offset-black:focus { + --tw-ring-offset-color: #000 !important; + } + + .md\:focus\:ring-offset-white:focus { + --tw-ring-offset-color: #fff !important; + } + + .md\:focus\:ring-offset-gray-50:focus { + --tw-ring-offset-color: #f9fafb !important; + } + + .md\:focus\:ring-offset-gray-100:focus { + --tw-ring-offset-color: #f3f4f6 !important; + } + + .md\:focus\:ring-offset-gray-200:focus { + --tw-ring-offset-color: #e5e7eb !important; + } + + .md\:focus\:ring-offset-gray-300:focus { + --tw-ring-offset-color: #d1d5db !important; + } + + .md\:focus\:ring-offset-gray-400:focus { + --tw-ring-offset-color: #9ca3af !important; + } + + .md\:focus\:ring-offset-gray-500:focus { + --tw-ring-offset-color: #6b7280 !important; + } + + .md\:focus\:ring-offset-gray-600:focus { + --tw-ring-offset-color: #4b5563 !important; + } + + .md\:focus\:ring-offset-gray-700:focus { + --tw-ring-offset-color: #374151 !important; + } + + .md\:focus\:ring-offset-gray-800:focus { + --tw-ring-offset-color: #1f2937 !important; + } + + .md\:focus\:ring-offset-gray-900:focus { + --tw-ring-offset-color: #111827 !important; + } + + .md\:focus\:ring-offset-red-50:focus { + --tw-ring-offset-color: #fef2f2 !important; + } + + .md\:focus\:ring-offset-red-100:focus { + --tw-ring-offset-color: #fee2e2 !important; + } + + .md\:focus\:ring-offset-red-200:focus { + --tw-ring-offset-color: #fecaca !important; + } + + .md\:focus\:ring-offset-red-300:focus { + --tw-ring-offset-color: #fca5a5 !important; + } + + .md\:focus\:ring-offset-red-400:focus { + --tw-ring-offset-color: #f87171 !important; + } + + .md\:focus\:ring-offset-red-500:focus { + --tw-ring-offset-color: #ef4444 !important; + } + + .md\:focus\:ring-offset-red-600:focus { + --tw-ring-offset-color: #dc2626 !important; + } + + .md\:focus\:ring-offset-red-700:focus { + --tw-ring-offset-color: #b91c1c !important; + } + + .md\:focus\:ring-offset-red-800:focus { + --tw-ring-offset-color: #991b1b !important; + } + + .md\:focus\:ring-offset-red-900:focus { + --tw-ring-offset-color: #7f1d1d !important; + } + + .md\:focus\:ring-offset-yellow-50:focus { + --tw-ring-offset-color: #fffbeb !important; + } + + .md\:focus\:ring-offset-yellow-100:focus { + --tw-ring-offset-color: #fef3c7 !important; + } + + .md\:focus\:ring-offset-yellow-200:focus { + --tw-ring-offset-color: #fde68a !important; + } + + .md\:focus\:ring-offset-yellow-300:focus { + --tw-ring-offset-color: #fcd34d !important; + } + + .md\:focus\:ring-offset-yellow-400:focus { + --tw-ring-offset-color: #fbbf24 !important; + } + + .md\:focus\:ring-offset-yellow-500:focus { + --tw-ring-offset-color: #f59e0b !important; + } + + .md\:focus\:ring-offset-yellow-600:focus { + --tw-ring-offset-color: #d97706 !important; + } + + .md\:focus\:ring-offset-yellow-700:focus { + --tw-ring-offset-color: #b45309 !important; + } + + .md\:focus\:ring-offset-yellow-800:focus { + --tw-ring-offset-color: #92400e !important; + } + + .md\:focus\:ring-offset-yellow-900:focus { + --tw-ring-offset-color: #78350f !important; + } + + .md\:focus\:ring-offset-green-50:focus { + --tw-ring-offset-color: #ecfdf5 !important; + } + + .md\:focus\:ring-offset-green-100:focus { + --tw-ring-offset-color: #d1fae5 !important; + } + + .md\:focus\:ring-offset-green-200:focus { + --tw-ring-offset-color: #a7f3d0 !important; + } + + .md\:focus\:ring-offset-green-300:focus { + --tw-ring-offset-color: #6ee7b7 !important; + } + + .md\:focus\:ring-offset-green-400:focus { + --tw-ring-offset-color: #34d399 !important; + } + + .md\:focus\:ring-offset-green-500:focus { + --tw-ring-offset-color: #10b981 !important; + } + + .md\:focus\:ring-offset-green-600:focus { + --tw-ring-offset-color: #059669 !important; + } + + .md\:focus\:ring-offset-green-700:focus { + --tw-ring-offset-color: #047857 !important; + } + + .md\:focus\:ring-offset-green-800:focus { + --tw-ring-offset-color: #065f46 !important; + } + + .md\:focus\:ring-offset-green-900:focus { + --tw-ring-offset-color: #064e3b !important; + } + + .md\:focus\:ring-offset-blue-50:focus { + --tw-ring-offset-color: #eff6ff !important; + } + + .md\:focus\:ring-offset-blue-100:focus { + --tw-ring-offset-color: #dbeafe !important; + } + + .md\:focus\:ring-offset-blue-200:focus { + --tw-ring-offset-color: #bfdbfe !important; + } + + .md\:focus\:ring-offset-blue-300:focus { + --tw-ring-offset-color: #93c5fd !important; + } + + .md\:focus\:ring-offset-blue-400:focus { + --tw-ring-offset-color: #60a5fa !important; + } + + .md\:focus\:ring-offset-blue-500:focus { + --tw-ring-offset-color: #3b82f6 !important; + } + + .md\:focus\:ring-offset-blue-600:focus { + --tw-ring-offset-color: #2563eb !important; + } + + .md\:focus\:ring-offset-blue-700:focus { + --tw-ring-offset-color: #1d4ed8 !important; + } + + .md\:focus\:ring-offset-blue-800:focus { + --tw-ring-offset-color: #1e40af !important; + } + + .md\:focus\:ring-offset-blue-900:focus { + --tw-ring-offset-color: #1e3a8a !important; + } + + .md\:focus\:ring-offset-indigo-50:focus { + --tw-ring-offset-color: #eef2ff !important; + } + + .md\:focus\:ring-offset-indigo-100:focus { + --tw-ring-offset-color: #e0e7ff !important; + } + + .md\:focus\:ring-offset-indigo-200:focus { + --tw-ring-offset-color: #c7d2fe !important; + } + + .md\:focus\:ring-offset-indigo-300:focus { + --tw-ring-offset-color: #a5b4fc !important; + } + + .md\:focus\:ring-offset-indigo-400:focus { + --tw-ring-offset-color: #818cf8 !important; + } + + .md\:focus\:ring-offset-indigo-500:focus { + --tw-ring-offset-color: #6366f1 !important; + } + + .md\:focus\:ring-offset-indigo-600:focus { + --tw-ring-offset-color: #4f46e5 !important; + } + + .md\:focus\:ring-offset-indigo-700:focus { + --tw-ring-offset-color: #4338ca !important; + } + + .md\:focus\:ring-offset-indigo-800:focus { + --tw-ring-offset-color: #3730a3 !important; + } + + .md\:focus\:ring-offset-indigo-900:focus { + --tw-ring-offset-color: #312e81 !important; + } + + .md\:focus\:ring-offset-purple-50:focus { + --tw-ring-offset-color: #f5f3ff !important; + } + + .md\:focus\:ring-offset-purple-100:focus { + --tw-ring-offset-color: #ede9fe !important; + } + + .md\:focus\:ring-offset-purple-200:focus { + --tw-ring-offset-color: #ddd6fe !important; + } + + .md\:focus\:ring-offset-purple-300:focus { + --tw-ring-offset-color: #c4b5fd !important; + } + + .md\:focus\:ring-offset-purple-400:focus { + --tw-ring-offset-color: #a78bfa !important; + } + + .md\:focus\:ring-offset-purple-500:focus { + --tw-ring-offset-color: #8b5cf6 !important; + } + + .md\:focus\:ring-offset-purple-600:focus { + --tw-ring-offset-color: #7c3aed !important; + } + + .md\:focus\:ring-offset-purple-700:focus { + --tw-ring-offset-color: #6d28d9 !important; + } + + .md\:focus\:ring-offset-purple-800:focus { + --tw-ring-offset-color: #5b21b6 !important; + } + + .md\:focus\:ring-offset-purple-900:focus { + --tw-ring-offset-color: #4c1d95 !important; + } + + .md\:focus\:ring-offset-pink-50:focus { + --tw-ring-offset-color: #fdf2f8 !important; + } + + .md\:focus\:ring-offset-pink-100:focus { + --tw-ring-offset-color: #fce7f3 !important; + } + + .md\:focus\:ring-offset-pink-200:focus { + --tw-ring-offset-color: #fbcfe8 !important; + } + + .md\:focus\:ring-offset-pink-300:focus { + --tw-ring-offset-color: #f9a8d4 !important; + } + + .md\:focus\:ring-offset-pink-400:focus { + --tw-ring-offset-color: #f472b6 !important; + } + + .md\:focus\:ring-offset-pink-500:focus { + --tw-ring-offset-color: #ec4899 !important; + } + + .md\:focus\:ring-offset-pink-600:focus { + --tw-ring-offset-color: #db2777 !important; + } + + .md\:focus\:ring-offset-pink-700:focus { + --tw-ring-offset-color: #be185d !important; + } + + .md\:focus\:ring-offset-pink-800:focus { + --tw-ring-offset-color: #9d174d !important; + } + + .md\:focus\:ring-offset-pink-900:focus { + --tw-ring-offset-color: #831843 !important; + } + + .md\:focus\:ring-offset-primary:focus { + --tw-ring-offset-color: #003197 !important; + } + + .md\:ring-offset-0 { + --tw-ring-offset-width: 0px !important; + } + + .md\:ring-offset-1 { + --tw-ring-offset-width: 1px !important; + } + + .md\:ring-offset-2 { + --tw-ring-offset-width: 2px !important; + } + + .md\:ring-offset-4 { + --tw-ring-offset-width: 4px !important; + } + + .md\:ring-offset-8 { + --tw-ring-offset-width: 8px !important; + } + + .md\:focus-within\:ring-offset-0:focus-within { + --tw-ring-offset-width: 0px !important; + } + + .md\:focus-within\:ring-offset-1:focus-within { + --tw-ring-offset-width: 1px !important; + } + + .md\:focus-within\:ring-offset-2:focus-within { + --tw-ring-offset-width: 2px !important; + } + + .md\:focus-within\:ring-offset-4:focus-within { + --tw-ring-offset-width: 4px !important; + } + + .md\:focus-within\:ring-offset-8:focus-within { + --tw-ring-offset-width: 8px !important; + } + + .md\:focus\:ring-offset-0:focus { + --tw-ring-offset-width: 0px !important; + } + + .md\:focus\:ring-offset-1:focus { + --tw-ring-offset-width: 1px !important; + } + + .md\:focus\:ring-offset-2:focus { + --tw-ring-offset-width: 2px !important; + } + + .md\:focus\:ring-offset-4:focus { + --tw-ring-offset-width: 4px !important; + } + + .md\:focus\:ring-offset-8:focus { + --tw-ring-offset-width: 8px !important; + } + + .md\:ring-transparent { + --tw-ring-color: transparent !important; + } + + .md\:ring-current { + --tw-ring-color: currentColor !important; + } + + .md\:ring-black { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important; + } + + .md\:ring-white { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)) !important; + } + + .md\:ring-gray-50 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)) !important; + } + + .md\:ring-gray-100 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)) !important; + } + + .md\:ring-gray-200 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)) !important; + } + + .md\:ring-gray-300 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)) !important; + } + + .md\:ring-gray-400 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)) !important; + } + + .md\:ring-gray-500 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)) !important; + } + + .md\:ring-gray-600 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)) !important; + } + + .md\:ring-gray-700 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)) !important; + } + + .md\:ring-gray-800 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)) !important; + } + + .md\:ring-gray-900 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)) !important; + } + + .md\:ring-red-50 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)) !important; + } + + .md\:ring-red-100 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)) !important; + } + + .md\:ring-red-200 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)) !important; + } + + .md\:ring-red-300 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)) !important; + } + + .md\:ring-red-400 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)) !important; + } + + .md\:ring-red-500 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)) !important; + } + + .md\:ring-red-600 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)) !important; + } + + .md\:ring-red-700 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)) !important; + } + + .md\:ring-red-800 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)) !important; + } + + .md\:ring-red-900 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)) !important; + } + + .md\:ring-yellow-50 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)) !important; + } + + .md\:ring-yellow-100 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)) !important; + } + + .md\:ring-yellow-200 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)) !important; + } + + .md\:ring-yellow-300 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)) !important; + } + + .md\:ring-yellow-400 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)) !important; + } + + .md\:ring-yellow-500 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)) !important; + } + + .md\:ring-yellow-600 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)) !important; + } + + .md\:ring-yellow-700 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)) !important; + } + + .md\:ring-yellow-800 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)) !important; + } + + .md\:ring-yellow-900 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)) !important; + } + + .md\:ring-green-50 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)) !important; + } + + .md\:ring-green-100 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)) !important; + } + + .md\:ring-green-200 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)) !important; + } + + .md\:ring-green-300 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)) !important; + } + + .md\:ring-green-400 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)) !important; + } + + .md\:ring-green-500 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)) !important; + } + + .md\:ring-green-600 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)) !important; + } + + .md\:ring-green-700 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)) !important; + } + + .md\:ring-green-800 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)) !important; + } + + .md\:ring-green-900 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)) !important; + } + + .md\:ring-blue-50 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)) !important; + } + + .md\:ring-blue-100 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)) !important; + } + + .md\:ring-blue-200 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)) !important; + } + + .md\:ring-blue-300 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)) !important; + } + + .md\:ring-blue-400 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)) !important; + } + + .md\:ring-blue-500 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)) !important; + } + + .md\:ring-blue-600 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)) !important; + } + + .md\:ring-blue-700 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)) !important; + } + + .md\:ring-blue-800 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)) !important; + } + + .md\:ring-blue-900 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)) !important; + } + + .md\:ring-indigo-50 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)) !important; + } + + .md\:ring-indigo-100 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)) !important; + } + + .md\:ring-indigo-200 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)) !important; + } + + .md\:ring-indigo-300 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)) !important; + } + + .md\:ring-indigo-400 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)) !important; + } + + .md\:ring-indigo-500 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)) !important; + } + + .md\:ring-indigo-600 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)) !important; + } + + .md\:ring-indigo-700 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)) !important; + } + + .md\:ring-indigo-800 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)) !important; + } + + .md\:ring-indigo-900 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)) !important; + } + + .md\:ring-purple-50 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)) !important; + } + + .md\:ring-purple-100 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)) !important; + } + + .md\:ring-purple-200 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)) !important; + } + + .md\:ring-purple-300 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)) !important; + } + + .md\:ring-purple-400 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)) !important; + } + + .md\:ring-purple-500 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)) !important; + } + + .md\:ring-purple-600 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)) !important; + } + + .md\:ring-purple-700 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)) !important; + } + + .md\:ring-purple-800 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)) !important; + } + + .md\:ring-purple-900 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)) !important; + } + + .md\:ring-pink-50 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)) !important; + } + + .md\:ring-pink-100 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)) !important; + } + + .md\:ring-pink-200 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)) !important; + } + + .md\:ring-pink-300 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)) !important; + } + + .md\:ring-pink-400 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)) !important; + } + + .md\:ring-pink-500 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)) !important; + } + + .md\:ring-pink-600 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)) !important; + } + + .md\:ring-pink-700 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)) !important; + } + + .md\:ring-pink-800 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)) !important; + } + + .md\:ring-pink-900 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)) !important; + } + + .md\:ring-primary { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(0, 49, 151, var(--tw-ring-opacity)) !important; + } + + .md\:focus-within\:ring-transparent:focus-within { + --tw-ring-color: transparent !important; + } + + .md\:focus-within\:ring-current:focus-within { + --tw-ring-color: currentColor !important; + } + + .md\:focus-within\:ring-black:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important; + } + + .md\:focus-within\:ring-white:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)) !important; + } + + .md\:focus-within\:ring-gray-50:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)) !important; + } + + .md\:focus-within\:ring-gray-100:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)) !important; + } + + .md\:focus-within\:ring-gray-200:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)) !important; + } + + .md\:focus-within\:ring-gray-300:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)) !important; + } + + .md\:focus-within\:ring-gray-400:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)) !important; + } + + .md\:focus-within\:ring-gray-500:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)) !important; + } + + .md\:focus-within\:ring-gray-600:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)) !important; + } + + .md\:focus-within\:ring-gray-700:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)) !important; + } + + .md\:focus-within\:ring-gray-800:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)) !important; + } + + .md\:focus-within\:ring-gray-900:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)) !important; + } + + .md\:focus-within\:ring-red-50:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)) !important; + } + + .md\:focus-within\:ring-red-100:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)) !important; + } + + .md\:focus-within\:ring-red-200:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)) !important; + } + + .md\:focus-within\:ring-red-300:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)) !important; + } + + .md\:focus-within\:ring-red-400:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)) !important; + } + + .md\:focus-within\:ring-red-500:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)) !important; + } + + .md\:focus-within\:ring-red-600:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)) !important; + } + + .md\:focus-within\:ring-red-700:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)) !important; + } + + .md\:focus-within\:ring-red-800:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)) !important; + } + + .md\:focus-within\:ring-red-900:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)) !important; + } + + .md\:focus-within\:ring-yellow-50:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)) !important; + } + + .md\:focus-within\:ring-yellow-100:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)) !important; + } + + .md\:focus-within\:ring-yellow-200:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)) !important; + } + + .md\:focus-within\:ring-yellow-300:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)) !important; + } + + .md\:focus-within\:ring-yellow-400:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)) !important; + } + + .md\:focus-within\:ring-yellow-500:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)) !important; + } + + .md\:focus-within\:ring-yellow-600:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)) !important; + } + + .md\:focus-within\:ring-yellow-700:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)) !important; + } + + .md\:focus-within\:ring-yellow-800:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)) !important; + } + + .md\:focus-within\:ring-yellow-900:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)) !important; + } + + .md\:focus-within\:ring-green-50:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)) !important; + } + + .md\:focus-within\:ring-green-100:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)) !important; + } + + .md\:focus-within\:ring-green-200:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)) !important; + } + + .md\:focus-within\:ring-green-300:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)) !important; + } + + .md\:focus-within\:ring-green-400:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)) !important; + } + + .md\:focus-within\:ring-green-500:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)) !important; + } + + .md\:focus-within\:ring-green-600:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)) !important; + } + + .md\:focus-within\:ring-green-700:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)) !important; + } + + .md\:focus-within\:ring-green-800:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)) !important; + } + + .md\:focus-within\:ring-green-900:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)) !important; + } + + .md\:focus-within\:ring-blue-50:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)) !important; + } + + .md\:focus-within\:ring-blue-100:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)) !important; + } + + .md\:focus-within\:ring-blue-200:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)) !important; + } + + .md\:focus-within\:ring-blue-300:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)) !important; + } + + .md\:focus-within\:ring-blue-400:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)) !important; + } + + .md\:focus-within\:ring-blue-500:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)) !important; + } + + .md\:focus-within\:ring-blue-600:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)) !important; + } + + .md\:focus-within\:ring-blue-700:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)) !important; + } + + .md\:focus-within\:ring-blue-800:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)) !important; + } + + .md\:focus-within\:ring-blue-900:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)) !important; + } + + .md\:focus-within\:ring-indigo-50:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)) !important; + } + + .md\:focus-within\:ring-indigo-100:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)) !important; + } + + .md\:focus-within\:ring-indigo-200:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)) !important; + } + + .md\:focus-within\:ring-indigo-300:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)) !important; + } + + .md\:focus-within\:ring-indigo-400:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)) !important; + } + + .md\:focus-within\:ring-indigo-500:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)) !important; + } + + .md\:focus-within\:ring-indigo-600:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)) !important; + } + + .md\:focus-within\:ring-indigo-700:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)) !important; + } + + .md\:focus-within\:ring-indigo-800:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)) !important; + } + + .md\:focus-within\:ring-indigo-900:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)) !important; + } + + .md\:focus-within\:ring-purple-50:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)) !important; + } + + .md\:focus-within\:ring-purple-100:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)) !important; + } + + .md\:focus-within\:ring-purple-200:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)) !important; + } + + .md\:focus-within\:ring-purple-300:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)) !important; + } + + .md\:focus-within\:ring-purple-400:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)) !important; + } + + .md\:focus-within\:ring-purple-500:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)) !important; + } + + .md\:focus-within\:ring-purple-600:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)) !important; + } + + .md\:focus-within\:ring-purple-700:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)) !important; + } + + .md\:focus-within\:ring-purple-800:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)) !important; + } + + .md\:focus-within\:ring-purple-900:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)) !important; + } + + .md\:focus-within\:ring-pink-50:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)) !important; + } + + .md\:focus-within\:ring-pink-100:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)) !important; + } + + .md\:focus-within\:ring-pink-200:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)) !important; + } + + .md\:focus-within\:ring-pink-300:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)) !important; + } + + .md\:focus-within\:ring-pink-400:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)) !important; + } + + .md\:focus-within\:ring-pink-500:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)) !important; + } + + .md\:focus-within\:ring-pink-600:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)) !important; + } + + .md\:focus-within\:ring-pink-700:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)) !important; + } + + .md\:focus-within\:ring-pink-800:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)) !important; + } + + .md\:focus-within\:ring-pink-900:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)) !important; + } + + .md\:focus-within\:ring-primary:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(0, 49, 151, var(--tw-ring-opacity)) !important; + } + + .md\:focus\:ring-transparent:focus { + --tw-ring-color: transparent !important; + } + + .md\:focus\:ring-current:focus { + --tw-ring-color: currentColor !important; + } + + .md\:focus\:ring-black:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important; + } + + .md\:focus\:ring-white:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)) !important; + } + + .md\:focus\:ring-gray-50:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)) !important; + } + + .md\:focus\:ring-gray-100:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)) !important; + } + + .md\:focus\:ring-gray-200:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)) !important; + } + + .md\:focus\:ring-gray-300:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)) !important; + } + + .md\:focus\:ring-gray-400:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)) !important; + } + + .md\:focus\:ring-gray-500:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)) !important; + } + + .md\:focus\:ring-gray-600:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)) !important; + } + + .md\:focus\:ring-gray-700:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)) !important; + } + + .md\:focus\:ring-gray-800:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)) !important; + } + + .md\:focus\:ring-gray-900:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)) !important; + } + + .md\:focus\:ring-red-50:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)) !important; + } + + .md\:focus\:ring-red-100:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)) !important; + } + + .md\:focus\:ring-red-200:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)) !important; + } + + .md\:focus\:ring-red-300:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)) !important; + } + + .md\:focus\:ring-red-400:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)) !important; + } + + .md\:focus\:ring-red-500:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)) !important; + } + + .md\:focus\:ring-red-600:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)) !important; + } + + .md\:focus\:ring-red-700:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)) !important; + } + + .md\:focus\:ring-red-800:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)) !important; + } + + .md\:focus\:ring-red-900:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)) !important; + } + + .md\:focus\:ring-yellow-50:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)) !important; + } + + .md\:focus\:ring-yellow-100:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)) !important; + } + + .md\:focus\:ring-yellow-200:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)) !important; + } + + .md\:focus\:ring-yellow-300:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)) !important; + } + + .md\:focus\:ring-yellow-400:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)) !important; + } + + .md\:focus\:ring-yellow-500:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)) !important; + } + + .md\:focus\:ring-yellow-600:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)) !important; + } + + .md\:focus\:ring-yellow-700:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)) !important; + } + + .md\:focus\:ring-yellow-800:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)) !important; + } + + .md\:focus\:ring-yellow-900:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)) !important; + } + + .md\:focus\:ring-green-50:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)) !important; + } + + .md\:focus\:ring-green-100:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)) !important; + } + + .md\:focus\:ring-green-200:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)) !important; + } + + .md\:focus\:ring-green-300:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)) !important; + } + + .md\:focus\:ring-green-400:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)) !important; + } + + .md\:focus\:ring-green-500:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)) !important; + } + + .md\:focus\:ring-green-600:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)) !important; + } + + .md\:focus\:ring-green-700:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)) !important; + } + + .md\:focus\:ring-green-800:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)) !important; + } + + .md\:focus\:ring-green-900:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)) !important; + } + + .md\:focus\:ring-blue-50:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)) !important; + } + + .md\:focus\:ring-blue-100:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)) !important; + } + + .md\:focus\:ring-blue-200:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)) !important; + } + + .md\:focus\:ring-blue-300:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)) !important; + } + + .md\:focus\:ring-blue-400:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)) !important; + } + + .md\:focus\:ring-blue-500:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)) !important; + } + + .md\:focus\:ring-blue-600:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)) !important; + } + + .md\:focus\:ring-blue-700:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)) !important; + } + + .md\:focus\:ring-blue-800:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)) !important; + } + + .md\:focus\:ring-blue-900:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)) !important; + } + + .md\:focus\:ring-indigo-50:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)) !important; + } + + .md\:focus\:ring-indigo-100:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)) !important; + } + + .md\:focus\:ring-indigo-200:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)) !important; + } + + .md\:focus\:ring-indigo-300:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)) !important; + } + + .md\:focus\:ring-indigo-400:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)) !important; + } + + .md\:focus\:ring-indigo-500:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)) !important; + } + + .md\:focus\:ring-indigo-600:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)) !important; + } + + .md\:focus\:ring-indigo-700:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)) !important; + } + + .md\:focus\:ring-indigo-800:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)) !important; + } + + .md\:focus\:ring-indigo-900:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)) !important; + } + + .md\:focus\:ring-purple-50:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)) !important; + } + + .md\:focus\:ring-purple-100:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)) !important; + } + + .md\:focus\:ring-purple-200:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)) !important; + } + + .md\:focus\:ring-purple-300:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)) !important; + } + + .md\:focus\:ring-purple-400:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)) !important; + } + + .md\:focus\:ring-purple-500:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)) !important; + } + + .md\:focus\:ring-purple-600:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)) !important; + } + + .md\:focus\:ring-purple-700:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)) !important; + } + + .md\:focus\:ring-purple-800:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)) !important; + } + + .md\:focus\:ring-purple-900:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)) !important; + } + + .md\:focus\:ring-pink-50:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)) !important; + } + + .md\:focus\:ring-pink-100:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)) !important; + } + + .md\:focus\:ring-pink-200:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)) !important; + } + + .md\:focus\:ring-pink-300:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)) !important; + } + + .md\:focus\:ring-pink-400:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)) !important; + } + + .md\:focus\:ring-pink-500:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)) !important; + } + + .md\:focus\:ring-pink-600:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)) !important; + } + + .md\:focus\:ring-pink-700:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)) !important; + } + + .md\:focus\:ring-pink-800:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)) !important; + } + + .md\:focus\:ring-pink-900:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)) !important; + } + + .md\:focus\:ring-primary:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(0, 49, 151, var(--tw-ring-opacity)) !important; + } + + .md\:ring-opacity-0 { + --tw-ring-opacity: 0 !important; + } + + .md\:ring-opacity-5 { + --tw-ring-opacity: 0.05 !important; + } + + .md\:ring-opacity-10 { + --tw-ring-opacity: 0.1 !important; + } + + .md\:ring-opacity-20 { + --tw-ring-opacity: 0.2 !important; + } + + .md\:ring-opacity-25 { + --tw-ring-opacity: 0.25 !important; + } + + .md\:ring-opacity-30 { + --tw-ring-opacity: 0.3 !important; + } + + .md\:ring-opacity-40 { + --tw-ring-opacity: 0.4 !important; + } + + .md\:ring-opacity-50 { + --tw-ring-opacity: 0.5 !important; + } + + .md\:ring-opacity-60 { + --tw-ring-opacity: 0.6 !important; + } + + .md\:ring-opacity-70 { + --tw-ring-opacity: 0.7 !important; + } + + .md\:ring-opacity-75 { + --tw-ring-opacity: 0.75 !important; + } + + .md\:ring-opacity-80 { + --tw-ring-opacity: 0.8 !important; + } + + .md\:ring-opacity-90 { + --tw-ring-opacity: 0.9 !important; + } + + .md\:ring-opacity-95 { + --tw-ring-opacity: 0.95 !important; + } + + .md\:ring-opacity-100 { + --tw-ring-opacity: 1 !important; + } + + .md\:focus-within\:ring-opacity-0:focus-within { + --tw-ring-opacity: 0 !important; + } + + .md\:focus-within\:ring-opacity-5:focus-within { + --tw-ring-opacity: 0.05 !important; + } + + .md\:focus-within\:ring-opacity-10:focus-within { + --tw-ring-opacity: 0.1 !important; + } + + .md\:focus-within\:ring-opacity-20:focus-within { + --tw-ring-opacity: 0.2 !important; + } + + .md\:focus-within\:ring-opacity-25:focus-within { + --tw-ring-opacity: 0.25 !important; + } + + .md\:focus-within\:ring-opacity-30:focus-within { + --tw-ring-opacity: 0.3 !important; + } + + .md\:focus-within\:ring-opacity-40:focus-within { + --tw-ring-opacity: 0.4 !important; + } + + .md\:focus-within\:ring-opacity-50:focus-within { + --tw-ring-opacity: 0.5 !important; + } + + .md\:focus-within\:ring-opacity-60:focus-within { + --tw-ring-opacity: 0.6 !important; + } + + .md\:focus-within\:ring-opacity-70:focus-within { + --tw-ring-opacity: 0.7 !important; + } + + .md\:focus-within\:ring-opacity-75:focus-within { + --tw-ring-opacity: 0.75 !important; + } + + .md\:focus-within\:ring-opacity-80:focus-within { + --tw-ring-opacity: 0.8 !important; + } + + .md\:focus-within\:ring-opacity-90:focus-within { + --tw-ring-opacity: 0.9 !important; + } + + .md\:focus-within\:ring-opacity-95:focus-within { + --tw-ring-opacity: 0.95 !important; + } + + .md\:focus-within\:ring-opacity-100:focus-within { + --tw-ring-opacity: 1 !important; + } + + .md\:focus\:ring-opacity-0:focus { + --tw-ring-opacity: 0 !important; + } + + .md\:focus\:ring-opacity-5:focus { + --tw-ring-opacity: 0.05 !important; + } + + .md\:focus\:ring-opacity-10:focus { + --tw-ring-opacity: 0.1 !important; + } + + .md\:focus\:ring-opacity-20:focus { + --tw-ring-opacity: 0.2 !important; + } + + .md\:focus\:ring-opacity-25:focus { + --tw-ring-opacity: 0.25 !important; + } + + .md\:focus\:ring-opacity-30:focus { + --tw-ring-opacity: 0.3 !important; + } + + .md\:focus\:ring-opacity-40:focus { + --tw-ring-opacity: 0.4 !important; + } + + .md\:focus\:ring-opacity-50:focus { + --tw-ring-opacity: 0.5 !important; + } + + .md\:focus\:ring-opacity-60:focus { + --tw-ring-opacity: 0.6 !important; + } + + .md\:focus\:ring-opacity-70:focus { + --tw-ring-opacity: 0.7 !important; + } + + .md\:focus\:ring-opacity-75:focus { + --tw-ring-opacity: 0.75 !important; + } + + .md\:focus\:ring-opacity-80:focus { + --tw-ring-opacity: 0.8 !important; + } + + .md\:focus\:ring-opacity-90:focus { + --tw-ring-opacity: 0.9 !important; + } + + .md\:focus\:ring-opacity-95:focus { + --tw-ring-opacity: 0.95 !important; + } + + .md\:focus\:ring-opacity-100:focus { + --tw-ring-opacity: 1 !important; + } + + .md\:fill-current { + fill: currentColor !important; + } + + .md\:stroke-current { + stroke: currentColor !important; + } + + .md\:stroke-0 { + stroke-width: 0 !important; + } + + .md\:stroke-1 { + stroke-width: 1 !important; + } + + .md\:stroke-2 { + stroke-width: 2 !important; + } + + .md\:table-auto { + table-layout: auto !important; + } + + .md\:table-fixed { + table-layout: fixed !important; + } + + .md\:text-left { + text-align: left !important; + } + + .md\:text-center { + text-align: center !important; + } + + .md\:text-right { + text-align: right !important; + } + + .md\:text-justify { + text-align: justify !important; + } + + .md\:text-transparent { + color: transparent !important; + } + + .md\:text-current { + color: currentColor !important; + } + + .md\:text-black { + --tw-text-opacity: 1 !important; + color: rgba(0, 0, 0, var(--tw-text-opacity)) !important; + } + + .md\:text-white { + --tw-text-opacity: 1 !important; + color: rgba(255, 255, 255, var(--tw-text-opacity)) !important; + } + + .md\:text-gray-50 { + --tw-text-opacity: 1 !important; + color: rgba(249, 250, 251, var(--tw-text-opacity)) !important; + } + + .md\:text-gray-100 { + --tw-text-opacity: 1 !important; + color: rgba(243, 244, 246, var(--tw-text-opacity)) !important; + } + + .md\:text-gray-200 { + --tw-text-opacity: 1 !important; + color: rgba(229, 231, 235, var(--tw-text-opacity)) !important; + } + + .md\:text-gray-300 { + --tw-text-opacity: 1 !important; + color: rgba(209, 213, 219, var(--tw-text-opacity)) !important; + } + + .md\:text-gray-400 { + --tw-text-opacity: 1 !important; + color: rgba(156, 163, 175, var(--tw-text-opacity)) !important; + } + + .md\:text-gray-500 { + --tw-text-opacity: 1 !important; + color: rgba(107, 114, 128, var(--tw-text-opacity)) !important; + } + + .md\:text-gray-600 { + --tw-text-opacity: 1 !important; + color: rgba(75, 85, 99, var(--tw-text-opacity)) !important; + } + + .md\:text-gray-700 { + --tw-text-opacity: 1 !important; + color: rgba(55, 65, 81, var(--tw-text-opacity)) !important; + } + + .md\:text-gray-800 { + --tw-text-opacity: 1 !important; + color: rgba(31, 41, 55, var(--tw-text-opacity)) !important; + } + + .md\:text-gray-900 { + --tw-text-opacity: 1 !important; + color: rgba(17, 24, 39, var(--tw-text-opacity)) !important; + } + + .md\:text-red-50 { + --tw-text-opacity: 1 !important; + color: rgba(254, 242, 242, var(--tw-text-opacity)) !important; + } + + .md\:text-red-100 { + --tw-text-opacity: 1 !important; + color: rgba(254, 226, 226, var(--tw-text-opacity)) !important; + } + + .md\:text-red-200 { + --tw-text-opacity: 1 !important; + color: rgba(254, 202, 202, var(--tw-text-opacity)) !important; + } + + .md\:text-red-300 { + --tw-text-opacity: 1 !important; + color: rgba(252, 165, 165, var(--tw-text-opacity)) !important; + } + + .md\:text-red-400 { + --tw-text-opacity: 1 !important; + color: rgba(248, 113, 113, var(--tw-text-opacity)) !important; + } + + .md\:text-red-500 { + --tw-text-opacity: 1 !important; + color: rgba(239, 68, 68, var(--tw-text-opacity)) !important; + } + + .md\:text-red-600 { + --tw-text-opacity: 1 !important; + color: rgba(220, 38, 38, var(--tw-text-opacity)) !important; + } + + .md\:text-red-700 { + --tw-text-opacity: 1 !important; + color: rgba(185, 28, 28, var(--tw-text-opacity)) !important; + } + + .md\:text-red-800 { + --tw-text-opacity: 1 !important; + color: rgba(153, 27, 27, var(--tw-text-opacity)) !important; + } + + .md\:text-red-900 { + --tw-text-opacity: 1 !important; + color: rgba(127, 29, 29, var(--tw-text-opacity)) !important; + } + + .md\:text-yellow-50 { + --tw-text-opacity: 1 !important; + color: rgba(255, 251, 235, var(--tw-text-opacity)) !important; + } + + .md\:text-yellow-100 { + --tw-text-opacity: 1 !important; + color: rgba(254, 243, 199, var(--tw-text-opacity)) !important; + } + + .md\:text-yellow-200 { + --tw-text-opacity: 1 !important; + color: rgba(253, 230, 138, var(--tw-text-opacity)) !important; + } + + .md\:text-yellow-300 { + --tw-text-opacity: 1 !important; + color: rgba(252, 211, 77, var(--tw-text-opacity)) !important; + } + + .md\:text-yellow-400 { + --tw-text-opacity: 1 !important; + color: rgba(251, 191, 36, var(--tw-text-opacity)) !important; + } + + .md\:text-yellow-500 { + --tw-text-opacity: 1 !important; + color: rgba(245, 158, 11, var(--tw-text-opacity)) !important; + } + + .md\:text-yellow-600 { + --tw-text-opacity: 1 !important; + color: rgba(217, 119, 6, var(--tw-text-opacity)) !important; + } + + .md\:text-yellow-700 { + --tw-text-opacity: 1 !important; + color: rgba(180, 83, 9, var(--tw-text-opacity)) !important; + } + + .md\:text-yellow-800 { + --tw-text-opacity: 1 !important; + color: rgba(146, 64, 14, var(--tw-text-opacity)) !important; + } + + .md\:text-yellow-900 { + --tw-text-opacity: 1 !important; + color: rgba(120, 53, 15, var(--tw-text-opacity)) !important; + } + + .md\:text-green-50 { + --tw-text-opacity: 1 !important; + color: rgba(236, 253, 245, var(--tw-text-opacity)) !important; + } + + .md\:text-green-100 { + --tw-text-opacity: 1 !important; + color: rgba(209, 250, 229, var(--tw-text-opacity)) !important; + } + + .md\:text-green-200 { + --tw-text-opacity: 1 !important; + color: rgba(167, 243, 208, var(--tw-text-opacity)) !important; + } + + .md\:text-green-300 { + --tw-text-opacity: 1 !important; + color: rgba(110, 231, 183, var(--tw-text-opacity)) !important; + } + + .md\:text-green-400 { + --tw-text-opacity: 1 !important; + color: rgba(52, 211, 153, var(--tw-text-opacity)) !important; + } + + .md\:text-green-500 { + --tw-text-opacity: 1 !important; + color: rgba(16, 185, 129, var(--tw-text-opacity)) !important; + } + + .md\:text-green-600 { + --tw-text-opacity: 1 !important; + color: rgba(5, 150, 105, var(--tw-text-opacity)) !important; + } + + .md\:text-green-700 { + --tw-text-opacity: 1 !important; + color: rgba(4, 120, 87, var(--tw-text-opacity)) !important; + } + + .md\:text-green-800 { + --tw-text-opacity: 1 !important; + color: rgba(6, 95, 70, var(--tw-text-opacity)) !important; + } + + .md\:text-green-900 { + --tw-text-opacity: 1 !important; + color: rgba(6, 78, 59, var(--tw-text-opacity)) !important; + } + + .md\:text-blue-50 { + --tw-text-opacity: 1 !important; + color: rgba(239, 246, 255, var(--tw-text-opacity)) !important; + } + + .md\:text-blue-100 { + --tw-text-opacity: 1 !important; + color: rgba(219, 234, 254, var(--tw-text-opacity)) !important; + } + + .md\:text-blue-200 { + --tw-text-opacity: 1 !important; + color: rgba(191, 219, 254, var(--tw-text-opacity)) !important; + } + + .md\:text-blue-300 { + --tw-text-opacity: 1 !important; + color: rgba(147, 197, 253, var(--tw-text-opacity)) !important; + } + + .md\:text-blue-400 { + --tw-text-opacity: 1 !important; + color: rgba(96, 165, 250, var(--tw-text-opacity)) !important; + } + + .md\:text-blue-500 { + --tw-text-opacity: 1 !important; + color: rgba(59, 130, 246, var(--tw-text-opacity)) !important; + } + + .md\:text-blue-600 { + --tw-text-opacity: 1 !important; + color: rgba(37, 99, 235, var(--tw-text-opacity)) !important; + } + + .md\:text-blue-700 { + --tw-text-opacity: 1 !important; + color: rgba(29, 78, 216, var(--tw-text-opacity)) !important; + } + + .md\:text-blue-800 { + --tw-text-opacity: 1 !important; + color: rgba(30, 64, 175, var(--tw-text-opacity)) !important; + } + + .md\:text-blue-900 { + --tw-text-opacity: 1 !important; + color: rgba(30, 58, 138, var(--tw-text-opacity)) !important; + } + + .md\:text-indigo-50 { + --tw-text-opacity: 1 !important; + color: rgba(238, 242, 255, var(--tw-text-opacity)) !important; + } + + .md\:text-indigo-100 { + --tw-text-opacity: 1 !important; + color: rgba(224, 231, 255, var(--tw-text-opacity)) !important; + } + + .md\:text-indigo-200 { + --tw-text-opacity: 1 !important; + color: rgba(199, 210, 254, var(--tw-text-opacity)) !important; + } + + .md\:text-indigo-300 { + --tw-text-opacity: 1 !important; + color: rgba(165, 180, 252, var(--tw-text-opacity)) !important; + } + + .md\:text-indigo-400 { + --tw-text-opacity: 1 !important; + color: rgba(129, 140, 248, var(--tw-text-opacity)) !important; + } + + .md\:text-indigo-500 { + --tw-text-opacity: 1 !important; + color: rgba(99, 102, 241, var(--tw-text-opacity)) !important; + } + + .md\:text-indigo-600 { + --tw-text-opacity: 1 !important; + color: rgba(79, 70, 229, var(--tw-text-opacity)) !important; + } + + .md\:text-indigo-700 { + --tw-text-opacity: 1 !important; + color: rgba(67, 56, 202, var(--tw-text-opacity)) !important; + } + + .md\:text-indigo-800 { + --tw-text-opacity: 1 !important; + color: rgba(55, 48, 163, var(--tw-text-opacity)) !important; + } + + .md\:text-indigo-900 { + --tw-text-opacity: 1 !important; + color: rgba(49, 46, 129, var(--tw-text-opacity)) !important; + } + + .md\:text-purple-50 { + --tw-text-opacity: 1 !important; + color: rgba(245, 243, 255, var(--tw-text-opacity)) !important; + } + + .md\:text-purple-100 { + --tw-text-opacity: 1 !important; + color: rgba(237, 233, 254, var(--tw-text-opacity)) !important; + } + + .md\:text-purple-200 { + --tw-text-opacity: 1 !important; + color: rgba(221, 214, 254, var(--tw-text-opacity)) !important; + } + + .md\:text-purple-300 { + --tw-text-opacity: 1 !important; + color: rgba(196, 181, 253, var(--tw-text-opacity)) !important; + } + + .md\:text-purple-400 { + --tw-text-opacity: 1 !important; + color: rgba(167, 139, 250, var(--tw-text-opacity)) !important; + } + + .md\:text-purple-500 { + --tw-text-opacity: 1 !important; + color: rgba(139, 92, 246, var(--tw-text-opacity)) !important; + } + + .md\:text-purple-600 { + --tw-text-opacity: 1 !important; + color: rgba(124, 58, 237, var(--tw-text-opacity)) !important; + } + + .md\:text-purple-700 { + --tw-text-opacity: 1 !important; + color: rgba(109, 40, 217, var(--tw-text-opacity)) !important; + } + + .md\:text-purple-800 { + --tw-text-opacity: 1 !important; + color: rgba(91, 33, 182, var(--tw-text-opacity)) !important; + } + + .md\:text-purple-900 { + --tw-text-opacity: 1 !important; + color: rgba(76, 29, 149, var(--tw-text-opacity)) !important; + } + + .md\:text-pink-50 { + --tw-text-opacity: 1 !important; + color: rgba(253, 242, 248, var(--tw-text-opacity)) !important; + } + + .md\:text-pink-100 { + --tw-text-opacity: 1 !important; + color: rgba(252, 231, 243, var(--tw-text-opacity)) !important; + } + + .md\:text-pink-200 { + --tw-text-opacity: 1 !important; + color: rgba(251, 207, 232, var(--tw-text-opacity)) !important; + } + + .md\:text-pink-300 { + --tw-text-opacity: 1 !important; + color: rgba(249, 168, 212, var(--tw-text-opacity)) !important; + } + + .md\:text-pink-400 { + --tw-text-opacity: 1 !important; + color: rgba(244, 114, 182, var(--tw-text-opacity)) !important; + } + + .md\:text-pink-500 { + --tw-text-opacity: 1 !important; + color: rgba(236, 72, 153, var(--tw-text-opacity)) !important; + } + + .md\:text-pink-600 { + --tw-text-opacity: 1 !important; + color: rgba(219, 39, 119, var(--tw-text-opacity)) !important; + } + + .md\:text-pink-700 { + --tw-text-opacity: 1 !important; + color: rgba(190, 24, 93, var(--tw-text-opacity)) !important; + } + + .md\:text-pink-800 { + --tw-text-opacity: 1 !important; + color: rgba(157, 23, 77, var(--tw-text-opacity)) !important; + } + + .md\:text-pink-900 { + --tw-text-opacity: 1 !important; + color: rgba(131, 24, 67, var(--tw-text-opacity)) !important; + } + + .md\:text-primary { + --tw-text-opacity: 1 !important; + color: rgba(0, 49, 151, var(--tw-text-opacity)) !important; + } + + .group:hover .md\:group-hover\:text-transparent { + color: transparent !important; + } + + .group:hover .md\:group-hover\:text-current { + color: currentColor !important; + } + + .group:hover .md\:group-hover\:text-black { + --tw-text-opacity: 1 !important; + color: rgba(0, 0, 0, var(--tw-text-opacity)) !important; + } + + .group:hover .md\:group-hover\:text-white { + --tw-text-opacity: 1 !important; + color: rgba(255, 255, 255, var(--tw-text-opacity)) !important; + } + + .group:hover .md\:group-hover\:text-gray-50 { + --tw-text-opacity: 1 !important; + color: rgba(249, 250, 251, var(--tw-text-opacity)) !important; + } + + .group:hover .md\:group-hover\:text-gray-100 { + --tw-text-opacity: 1 !important; + color: rgba(243, 244, 246, var(--tw-text-opacity)) !important; + } + + .group:hover .md\:group-hover\:text-gray-200 { + --tw-text-opacity: 1 !important; + color: rgba(229, 231, 235, var(--tw-text-opacity)) !important; + } + + .group:hover .md\:group-hover\:text-gray-300 { + --tw-text-opacity: 1 !important; + color: rgba(209, 213, 219, var(--tw-text-opacity)) !important; + } + + .group:hover .md\:group-hover\:text-gray-400 { + --tw-text-opacity: 1 !important; + color: rgba(156, 163, 175, var(--tw-text-opacity)) !important; + } + + .group:hover .md\:group-hover\:text-gray-500 { + --tw-text-opacity: 1 !important; + color: rgba(107, 114, 128, var(--tw-text-opacity)) !important; + } + + .group:hover .md\:group-hover\:text-gray-600 { + --tw-text-opacity: 1 !important; + color: rgba(75, 85, 99, var(--tw-text-opacity)) !important; + } + + .group:hover .md\:group-hover\:text-gray-700 { + --tw-text-opacity: 1 !important; + color: rgba(55, 65, 81, var(--tw-text-opacity)) !important; + } + + .group:hover .md\:group-hover\:text-gray-800 { + --tw-text-opacity: 1 !important; + color: rgba(31, 41, 55, var(--tw-text-opacity)) !important; + } + + .group:hover .md\:group-hover\:text-gray-900 { + --tw-text-opacity: 1 !important; + color: rgba(17, 24, 39, var(--tw-text-opacity)) !important; + } + + .group:hover .md\:group-hover\:text-red-50 { + --tw-text-opacity: 1 !important; + color: rgba(254, 242, 242, var(--tw-text-opacity)) !important; + } + + .group:hover .md\:group-hover\:text-red-100 { + --tw-text-opacity: 1 !important; + color: rgba(254, 226, 226, var(--tw-text-opacity)) !important; + } + + .group:hover .md\:group-hover\:text-red-200 { + --tw-text-opacity: 1 !important; + color: rgba(254, 202, 202, var(--tw-text-opacity)) !important; + } + + .group:hover .md\:group-hover\:text-red-300 { + --tw-text-opacity: 1 !important; + color: rgba(252, 165, 165, var(--tw-text-opacity)) !important; + } + + .group:hover .md\:group-hover\:text-red-400 { + --tw-text-opacity: 1 !important; + color: rgba(248, 113, 113, var(--tw-text-opacity)) !important; + } + + .group:hover .md\:group-hover\:text-red-500 { + --tw-text-opacity: 1 !important; + color: rgba(239, 68, 68, var(--tw-text-opacity)) !important; + } + + .group:hover .md\:group-hover\:text-red-600 { + --tw-text-opacity: 1 !important; + color: rgba(220, 38, 38, var(--tw-text-opacity)) !important; + } + + .group:hover .md\:group-hover\:text-red-700 { + --tw-text-opacity: 1 !important; + color: rgba(185, 28, 28, var(--tw-text-opacity)) !important; + } + + .group:hover .md\:group-hover\:text-red-800 { + --tw-text-opacity: 1 !important; + color: rgba(153, 27, 27, var(--tw-text-opacity)) !important; + } + + .group:hover .md\:group-hover\:text-red-900 { + --tw-text-opacity: 1 !important; + color: rgba(127, 29, 29, var(--tw-text-opacity)) !important; + } + + .group:hover .md\:group-hover\:text-yellow-50 { + --tw-text-opacity: 1 !important; + color: rgba(255, 251, 235, var(--tw-text-opacity)) !important; + } + + .group:hover .md\:group-hover\:text-yellow-100 { + --tw-text-opacity: 1 !important; + color: rgba(254, 243, 199, var(--tw-text-opacity)) !important; + } + + .group:hover .md\:group-hover\:text-yellow-200 { + --tw-text-opacity: 1 !important; + color: rgba(253, 230, 138, var(--tw-text-opacity)) !important; + } + + .group:hover .md\:group-hover\:text-yellow-300 { + --tw-text-opacity: 1 !important; + color: rgba(252, 211, 77, var(--tw-text-opacity)) !important; + } + + .group:hover .md\:group-hover\:text-yellow-400 { + --tw-text-opacity: 1 !important; + color: rgba(251, 191, 36, var(--tw-text-opacity)) !important; + } + + .group:hover .md\:group-hover\:text-yellow-500 { + --tw-text-opacity: 1 !important; + color: rgba(245, 158, 11, var(--tw-text-opacity)) !important; + } + + .group:hover .md\:group-hover\:text-yellow-600 { + --tw-text-opacity: 1 !important; + color: rgba(217, 119, 6, var(--tw-text-opacity)) !important; + } + + .group:hover .md\:group-hover\:text-yellow-700 { + --tw-text-opacity: 1 !important; + color: rgba(180, 83, 9, var(--tw-text-opacity)) !important; + } + + .group:hover .md\:group-hover\:text-yellow-800 { + --tw-text-opacity: 1 !important; + color: rgba(146, 64, 14, var(--tw-text-opacity)) !important; + } + + .group:hover .md\:group-hover\:text-yellow-900 { + --tw-text-opacity: 1 !important; + color: rgba(120, 53, 15, var(--tw-text-opacity)) !important; + } + + .group:hover .md\:group-hover\:text-green-50 { + --tw-text-opacity: 1 !important; + color: rgba(236, 253, 245, var(--tw-text-opacity)) !important; + } + + .group:hover .md\:group-hover\:text-green-100 { + --tw-text-opacity: 1 !important; + color: rgba(209, 250, 229, var(--tw-text-opacity)) !important; + } + + .group:hover .md\:group-hover\:text-green-200 { + --tw-text-opacity: 1 !important; + color: rgba(167, 243, 208, var(--tw-text-opacity)) !important; + } + + .group:hover .md\:group-hover\:text-green-300 { + --tw-text-opacity: 1 !important; + color: rgba(110, 231, 183, var(--tw-text-opacity)) !important; + } + + .group:hover .md\:group-hover\:text-green-400 { + --tw-text-opacity: 1 !important; + color: rgba(52, 211, 153, var(--tw-text-opacity)) !important; + } + + .group:hover .md\:group-hover\:text-green-500 { + --tw-text-opacity: 1 !important; + color: rgba(16, 185, 129, var(--tw-text-opacity)) !important; + } + + .group:hover .md\:group-hover\:text-green-600 { + --tw-text-opacity: 1 !important; + color: rgba(5, 150, 105, var(--tw-text-opacity)) !important; + } + + .group:hover .md\:group-hover\:text-green-700 { + --tw-text-opacity: 1 !important; + color: rgba(4, 120, 87, var(--tw-text-opacity)) !important; + } + + .group:hover .md\:group-hover\:text-green-800 { + --tw-text-opacity: 1 !important; + color: rgba(6, 95, 70, var(--tw-text-opacity)) !important; + } + + .group:hover .md\:group-hover\:text-green-900 { + --tw-text-opacity: 1 !important; + color: rgba(6, 78, 59, var(--tw-text-opacity)) !important; + } + + .group:hover .md\:group-hover\:text-blue-50 { + --tw-text-opacity: 1 !important; + color: rgba(239, 246, 255, var(--tw-text-opacity)) !important; + } + + .group:hover .md\:group-hover\:text-blue-100 { + --tw-text-opacity: 1 !important; + color: rgba(219, 234, 254, var(--tw-text-opacity)) !important; + } + + .group:hover .md\:group-hover\:text-blue-200 { + --tw-text-opacity: 1 !important; + color: rgba(191, 219, 254, var(--tw-text-opacity)) !important; + } + + .group:hover .md\:group-hover\:text-blue-300 { + --tw-text-opacity: 1 !important; + color: rgba(147, 197, 253, var(--tw-text-opacity)) !important; + } + + .group:hover .md\:group-hover\:text-blue-400 { + --tw-text-opacity: 1 !important; + color: rgba(96, 165, 250, var(--tw-text-opacity)) !important; + } + + .group:hover .md\:group-hover\:text-blue-500 { + --tw-text-opacity: 1 !important; + color: rgba(59, 130, 246, var(--tw-text-opacity)) !important; + } + + .group:hover .md\:group-hover\:text-blue-600 { + --tw-text-opacity: 1 !important; + color: rgba(37, 99, 235, var(--tw-text-opacity)) !important; + } + + .group:hover .md\:group-hover\:text-blue-700 { + --tw-text-opacity: 1 !important; + color: rgba(29, 78, 216, var(--tw-text-opacity)) !important; + } + + .group:hover .md\:group-hover\:text-blue-800 { + --tw-text-opacity: 1 !important; + color: rgba(30, 64, 175, var(--tw-text-opacity)) !important; + } + + .group:hover .md\:group-hover\:text-blue-900 { + --tw-text-opacity: 1 !important; + color: rgba(30, 58, 138, var(--tw-text-opacity)) !important; + } + + .group:hover .md\:group-hover\:text-indigo-50 { + --tw-text-opacity: 1 !important; + color: rgba(238, 242, 255, var(--tw-text-opacity)) !important; + } + + .group:hover .md\:group-hover\:text-indigo-100 { + --tw-text-opacity: 1 !important; + color: rgba(224, 231, 255, var(--tw-text-opacity)) !important; + } + + .group:hover .md\:group-hover\:text-indigo-200 { + --tw-text-opacity: 1 !important; + color: rgba(199, 210, 254, var(--tw-text-opacity)) !important; + } + + .group:hover .md\:group-hover\:text-indigo-300 { + --tw-text-opacity: 1 !important; + color: rgba(165, 180, 252, var(--tw-text-opacity)) !important; + } + + .group:hover .md\:group-hover\:text-indigo-400 { + --tw-text-opacity: 1 !important; + color: rgba(129, 140, 248, var(--tw-text-opacity)) !important; + } + + .group:hover .md\:group-hover\:text-indigo-500 { + --tw-text-opacity: 1 !important; + color: rgba(99, 102, 241, var(--tw-text-opacity)) !important; + } + + .group:hover .md\:group-hover\:text-indigo-600 { + --tw-text-opacity: 1 !important; + color: rgba(79, 70, 229, var(--tw-text-opacity)) !important; + } + + .group:hover .md\:group-hover\:text-indigo-700 { + --tw-text-opacity: 1 !important; + color: rgba(67, 56, 202, var(--tw-text-opacity)) !important; + } + + .group:hover .md\:group-hover\:text-indigo-800 { + --tw-text-opacity: 1 !important; + color: rgba(55, 48, 163, var(--tw-text-opacity)) !important; + } + + .group:hover .md\:group-hover\:text-indigo-900 { + --tw-text-opacity: 1 !important; + color: rgba(49, 46, 129, var(--tw-text-opacity)) !important; + } + + .group:hover .md\:group-hover\:text-purple-50 { + --tw-text-opacity: 1 !important; + color: rgba(245, 243, 255, var(--tw-text-opacity)) !important; + } + + .group:hover .md\:group-hover\:text-purple-100 { + --tw-text-opacity: 1 !important; + color: rgba(237, 233, 254, var(--tw-text-opacity)) !important; + } + + .group:hover .md\:group-hover\:text-purple-200 { + --tw-text-opacity: 1 !important; + color: rgba(221, 214, 254, var(--tw-text-opacity)) !important; + } + + .group:hover .md\:group-hover\:text-purple-300 { + --tw-text-opacity: 1 !important; + color: rgba(196, 181, 253, var(--tw-text-opacity)) !important; + } + + .group:hover .md\:group-hover\:text-purple-400 { + --tw-text-opacity: 1 !important; + color: rgba(167, 139, 250, var(--tw-text-opacity)) !important; + } + + .group:hover .md\:group-hover\:text-purple-500 { + --tw-text-opacity: 1 !important; + color: rgba(139, 92, 246, var(--tw-text-opacity)) !important; + } + + .group:hover .md\:group-hover\:text-purple-600 { + --tw-text-opacity: 1 !important; + color: rgba(124, 58, 237, var(--tw-text-opacity)) !important; + } + + .group:hover .md\:group-hover\:text-purple-700 { + --tw-text-opacity: 1 !important; + color: rgba(109, 40, 217, var(--tw-text-opacity)) !important; + } + + .group:hover .md\:group-hover\:text-purple-800 { + --tw-text-opacity: 1 !important; + color: rgba(91, 33, 182, var(--tw-text-opacity)) !important; + } + + .group:hover .md\:group-hover\:text-purple-900 { + --tw-text-opacity: 1 !important; + color: rgba(76, 29, 149, var(--tw-text-opacity)) !important; + } + + .group:hover .md\:group-hover\:text-pink-50 { + --tw-text-opacity: 1 !important; + color: rgba(253, 242, 248, var(--tw-text-opacity)) !important; + } + + .group:hover .md\:group-hover\:text-pink-100 { + --tw-text-opacity: 1 !important; + color: rgba(252, 231, 243, var(--tw-text-opacity)) !important; + } + + .group:hover .md\:group-hover\:text-pink-200 { + --tw-text-opacity: 1 !important; + color: rgba(251, 207, 232, var(--tw-text-opacity)) !important; + } + + .group:hover .md\:group-hover\:text-pink-300 { + --tw-text-opacity: 1 !important; + color: rgba(249, 168, 212, var(--tw-text-opacity)) !important; + } + + .group:hover .md\:group-hover\:text-pink-400 { + --tw-text-opacity: 1 !important; + color: rgba(244, 114, 182, var(--tw-text-opacity)) !important; + } + + .group:hover .md\:group-hover\:text-pink-500 { + --tw-text-opacity: 1 !important; + color: rgba(236, 72, 153, var(--tw-text-opacity)) !important; + } + + .group:hover .md\:group-hover\:text-pink-600 { + --tw-text-opacity: 1 !important; + color: rgba(219, 39, 119, var(--tw-text-opacity)) !important; + } + + .group:hover .md\:group-hover\:text-pink-700 { + --tw-text-opacity: 1 !important; + color: rgba(190, 24, 93, var(--tw-text-opacity)) !important; + } + + .group:hover .md\:group-hover\:text-pink-800 { + --tw-text-opacity: 1 !important; + color: rgba(157, 23, 77, var(--tw-text-opacity)) !important; + } + + .group:hover .md\:group-hover\:text-pink-900 { + --tw-text-opacity: 1 !important; + color: rgba(131, 24, 67, var(--tw-text-opacity)) !important; + } + + .group:hover .md\:group-hover\:text-primary { + --tw-text-opacity: 1 !important; + color: rgba(0, 49, 151, var(--tw-text-opacity)) !important; + } + + .md\:focus-within\:text-transparent:focus-within { + color: transparent !important; + } + + .md\:focus-within\:text-current:focus-within { + color: currentColor !important; + } + + .md\:focus-within\:text-black:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(0, 0, 0, var(--tw-text-opacity)) !important; + } + + .md\:focus-within\:text-white:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(255, 255, 255, var(--tw-text-opacity)) !important; + } + + .md\:focus-within\:text-gray-50:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(249, 250, 251, var(--tw-text-opacity)) !important; + } + + .md\:focus-within\:text-gray-100:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(243, 244, 246, var(--tw-text-opacity)) !important; + } + + .md\:focus-within\:text-gray-200:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(229, 231, 235, var(--tw-text-opacity)) !important; + } + + .md\:focus-within\:text-gray-300:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(209, 213, 219, var(--tw-text-opacity)) !important; + } + + .md\:focus-within\:text-gray-400:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(156, 163, 175, var(--tw-text-opacity)) !important; + } + + .md\:focus-within\:text-gray-500:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(107, 114, 128, var(--tw-text-opacity)) !important; + } + + .md\:focus-within\:text-gray-600:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(75, 85, 99, var(--tw-text-opacity)) !important; + } + + .md\:focus-within\:text-gray-700:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(55, 65, 81, var(--tw-text-opacity)) !important; + } + + .md\:focus-within\:text-gray-800:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(31, 41, 55, var(--tw-text-opacity)) !important; + } + + .md\:focus-within\:text-gray-900:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(17, 24, 39, var(--tw-text-opacity)) !important; + } + + .md\:focus-within\:text-red-50:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(254, 242, 242, var(--tw-text-opacity)) !important; + } + + .md\:focus-within\:text-red-100:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(254, 226, 226, var(--tw-text-opacity)) !important; + } + + .md\:focus-within\:text-red-200:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(254, 202, 202, var(--tw-text-opacity)) !important; + } + + .md\:focus-within\:text-red-300:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(252, 165, 165, var(--tw-text-opacity)) !important; + } + + .md\:focus-within\:text-red-400:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(248, 113, 113, var(--tw-text-opacity)) !important; + } + + .md\:focus-within\:text-red-500:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(239, 68, 68, var(--tw-text-opacity)) !important; + } + + .md\:focus-within\:text-red-600:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(220, 38, 38, var(--tw-text-opacity)) !important; + } + + .md\:focus-within\:text-red-700:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(185, 28, 28, var(--tw-text-opacity)) !important; + } + + .md\:focus-within\:text-red-800:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(153, 27, 27, var(--tw-text-opacity)) !important; + } + + .md\:focus-within\:text-red-900:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(127, 29, 29, var(--tw-text-opacity)) !important; + } + + .md\:focus-within\:text-yellow-50:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(255, 251, 235, var(--tw-text-opacity)) !important; + } + + .md\:focus-within\:text-yellow-100:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(254, 243, 199, var(--tw-text-opacity)) !important; + } + + .md\:focus-within\:text-yellow-200:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(253, 230, 138, var(--tw-text-opacity)) !important; + } + + .md\:focus-within\:text-yellow-300:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(252, 211, 77, var(--tw-text-opacity)) !important; + } + + .md\:focus-within\:text-yellow-400:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(251, 191, 36, var(--tw-text-opacity)) !important; + } + + .md\:focus-within\:text-yellow-500:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(245, 158, 11, var(--tw-text-opacity)) !important; + } + + .md\:focus-within\:text-yellow-600:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(217, 119, 6, var(--tw-text-opacity)) !important; + } + + .md\:focus-within\:text-yellow-700:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(180, 83, 9, var(--tw-text-opacity)) !important; + } + + .md\:focus-within\:text-yellow-800:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(146, 64, 14, var(--tw-text-opacity)) !important; + } + + .md\:focus-within\:text-yellow-900:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(120, 53, 15, var(--tw-text-opacity)) !important; + } + + .md\:focus-within\:text-green-50:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(236, 253, 245, var(--tw-text-opacity)) !important; + } + + .md\:focus-within\:text-green-100:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(209, 250, 229, var(--tw-text-opacity)) !important; + } + + .md\:focus-within\:text-green-200:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(167, 243, 208, var(--tw-text-opacity)) !important; + } + + .md\:focus-within\:text-green-300:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(110, 231, 183, var(--tw-text-opacity)) !important; + } + + .md\:focus-within\:text-green-400:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(52, 211, 153, var(--tw-text-opacity)) !important; + } + + .md\:focus-within\:text-green-500:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(16, 185, 129, var(--tw-text-opacity)) !important; + } + + .md\:focus-within\:text-green-600:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(5, 150, 105, var(--tw-text-opacity)) !important; + } + + .md\:focus-within\:text-green-700:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(4, 120, 87, var(--tw-text-opacity)) !important; + } + + .md\:focus-within\:text-green-800:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(6, 95, 70, var(--tw-text-opacity)) !important; + } + + .md\:focus-within\:text-green-900:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(6, 78, 59, var(--tw-text-opacity)) !important; + } + + .md\:focus-within\:text-blue-50:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(239, 246, 255, var(--tw-text-opacity)) !important; + } + + .md\:focus-within\:text-blue-100:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(219, 234, 254, var(--tw-text-opacity)) !important; + } + + .md\:focus-within\:text-blue-200:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(191, 219, 254, var(--tw-text-opacity)) !important; + } + + .md\:focus-within\:text-blue-300:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(147, 197, 253, var(--tw-text-opacity)) !important; + } + + .md\:focus-within\:text-blue-400:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(96, 165, 250, var(--tw-text-opacity)) !important; + } + + .md\:focus-within\:text-blue-500:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(59, 130, 246, var(--tw-text-opacity)) !important; + } + + .md\:focus-within\:text-blue-600:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(37, 99, 235, var(--tw-text-opacity)) !important; + } + + .md\:focus-within\:text-blue-700:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(29, 78, 216, var(--tw-text-opacity)) !important; + } + + .md\:focus-within\:text-blue-800:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(30, 64, 175, var(--tw-text-opacity)) !important; + } + + .md\:focus-within\:text-blue-900:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(30, 58, 138, var(--tw-text-opacity)) !important; + } + + .md\:focus-within\:text-indigo-50:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(238, 242, 255, var(--tw-text-opacity)) !important; + } + + .md\:focus-within\:text-indigo-100:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(224, 231, 255, var(--tw-text-opacity)) !important; + } + + .md\:focus-within\:text-indigo-200:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(199, 210, 254, var(--tw-text-opacity)) !important; + } + + .md\:focus-within\:text-indigo-300:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(165, 180, 252, var(--tw-text-opacity)) !important; + } + + .md\:focus-within\:text-indigo-400:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(129, 140, 248, var(--tw-text-opacity)) !important; + } + + .md\:focus-within\:text-indigo-500:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(99, 102, 241, var(--tw-text-opacity)) !important; + } + + .md\:focus-within\:text-indigo-600:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(79, 70, 229, var(--tw-text-opacity)) !important; + } + + .md\:focus-within\:text-indigo-700:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(67, 56, 202, var(--tw-text-opacity)) !important; + } + + .md\:focus-within\:text-indigo-800:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(55, 48, 163, var(--tw-text-opacity)) !important; + } + + .md\:focus-within\:text-indigo-900:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(49, 46, 129, var(--tw-text-opacity)) !important; + } + + .md\:focus-within\:text-purple-50:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(245, 243, 255, var(--tw-text-opacity)) !important; + } + + .md\:focus-within\:text-purple-100:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(237, 233, 254, var(--tw-text-opacity)) !important; + } + + .md\:focus-within\:text-purple-200:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(221, 214, 254, var(--tw-text-opacity)) !important; + } + + .md\:focus-within\:text-purple-300:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(196, 181, 253, var(--tw-text-opacity)) !important; + } + + .md\:focus-within\:text-purple-400:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(167, 139, 250, var(--tw-text-opacity)) !important; + } + + .md\:focus-within\:text-purple-500:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(139, 92, 246, var(--tw-text-opacity)) !important; + } + + .md\:focus-within\:text-purple-600:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(124, 58, 237, var(--tw-text-opacity)) !important; + } + + .md\:focus-within\:text-purple-700:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(109, 40, 217, var(--tw-text-opacity)) !important; + } + + .md\:focus-within\:text-purple-800:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(91, 33, 182, var(--tw-text-opacity)) !important; + } + + .md\:focus-within\:text-purple-900:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(76, 29, 149, var(--tw-text-opacity)) !important; + } + + .md\:focus-within\:text-pink-50:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(253, 242, 248, var(--tw-text-opacity)) !important; + } + + .md\:focus-within\:text-pink-100:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(252, 231, 243, var(--tw-text-opacity)) !important; + } + + .md\:focus-within\:text-pink-200:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(251, 207, 232, var(--tw-text-opacity)) !important; + } + + .md\:focus-within\:text-pink-300:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(249, 168, 212, var(--tw-text-opacity)) !important; + } + + .md\:focus-within\:text-pink-400:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(244, 114, 182, var(--tw-text-opacity)) !important; + } + + .md\:focus-within\:text-pink-500:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(236, 72, 153, var(--tw-text-opacity)) !important; + } + + .md\:focus-within\:text-pink-600:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(219, 39, 119, var(--tw-text-opacity)) !important; + } + + .md\:focus-within\:text-pink-700:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(190, 24, 93, var(--tw-text-opacity)) !important; + } + + .md\:focus-within\:text-pink-800:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(157, 23, 77, var(--tw-text-opacity)) !important; + } + + .md\:focus-within\:text-pink-900:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(131, 24, 67, var(--tw-text-opacity)) !important; + } + + .md\:focus-within\:text-primary:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(0, 49, 151, var(--tw-text-opacity)) !important; + } + + .md\:hover\:text-transparent:hover { + color: transparent !important; + } + + .md\:hover\:text-current:hover { + color: currentColor !important; + } + + .md\:hover\:text-black:hover { + --tw-text-opacity: 1 !important; + color: rgba(0, 0, 0, var(--tw-text-opacity)) !important; + } + + .md\:hover\:text-white:hover { + --tw-text-opacity: 1 !important; + color: rgba(255, 255, 255, var(--tw-text-opacity)) !important; + } + + .md\:hover\:text-gray-50:hover { + --tw-text-opacity: 1 !important; + color: rgba(249, 250, 251, var(--tw-text-opacity)) !important; + } + + .md\:hover\:text-gray-100:hover { + --tw-text-opacity: 1 !important; + color: rgba(243, 244, 246, var(--tw-text-opacity)) !important; + } + + .md\:hover\:text-gray-200:hover { + --tw-text-opacity: 1 !important; + color: rgba(229, 231, 235, var(--tw-text-opacity)) !important; + } + + .md\:hover\:text-gray-300:hover { + --tw-text-opacity: 1 !important; + color: rgba(209, 213, 219, var(--tw-text-opacity)) !important; + } + + .md\:hover\:text-gray-400:hover { + --tw-text-opacity: 1 !important; + color: rgba(156, 163, 175, var(--tw-text-opacity)) !important; + } + + .md\:hover\:text-gray-500:hover { + --tw-text-opacity: 1 !important; + color: rgba(107, 114, 128, var(--tw-text-opacity)) !important; + } + + .md\:hover\:text-gray-600:hover { + --tw-text-opacity: 1 !important; + color: rgba(75, 85, 99, var(--tw-text-opacity)) !important; + } + + .md\:hover\:text-gray-700:hover { + --tw-text-opacity: 1 !important; + color: rgba(55, 65, 81, var(--tw-text-opacity)) !important; + } + + .md\:hover\:text-gray-800:hover { + --tw-text-opacity: 1 !important; + color: rgba(31, 41, 55, var(--tw-text-opacity)) !important; + } + + .md\:hover\:text-gray-900:hover { + --tw-text-opacity: 1 !important; + color: rgba(17, 24, 39, var(--tw-text-opacity)) !important; + } + + .md\:hover\:text-red-50:hover { + --tw-text-opacity: 1 !important; + color: rgba(254, 242, 242, var(--tw-text-opacity)) !important; + } + + .md\:hover\:text-red-100:hover { + --tw-text-opacity: 1 !important; + color: rgba(254, 226, 226, var(--tw-text-opacity)) !important; + } + + .md\:hover\:text-red-200:hover { + --tw-text-opacity: 1 !important; + color: rgba(254, 202, 202, var(--tw-text-opacity)) !important; + } + + .md\:hover\:text-red-300:hover { + --tw-text-opacity: 1 !important; + color: rgba(252, 165, 165, var(--tw-text-opacity)) !important; + } + + .md\:hover\:text-red-400:hover { + --tw-text-opacity: 1 !important; + color: rgba(248, 113, 113, var(--tw-text-opacity)) !important; + } + + .md\:hover\:text-red-500:hover { + --tw-text-opacity: 1 !important; + color: rgba(239, 68, 68, var(--tw-text-opacity)) !important; + } + + .md\:hover\:text-red-600:hover { + --tw-text-opacity: 1 !important; + color: rgba(220, 38, 38, var(--tw-text-opacity)) !important; + } + + .md\:hover\:text-red-700:hover { + --tw-text-opacity: 1 !important; + color: rgba(185, 28, 28, var(--tw-text-opacity)) !important; + } + + .md\:hover\:text-red-800:hover { + --tw-text-opacity: 1 !important; + color: rgba(153, 27, 27, var(--tw-text-opacity)) !important; + } + + .md\:hover\:text-red-900:hover { + --tw-text-opacity: 1 !important; + color: rgba(127, 29, 29, var(--tw-text-opacity)) !important; + } + + .md\:hover\:text-yellow-50:hover { + --tw-text-opacity: 1 !important; + color: rgba(255, 251, 235, var(--tw-text-opacity)) !important; + } + + .md\:hover\:text-yellow-100:hover { + --tw-text-opacity: 1 !important; + color: rgba(254, 243, 199, var(--tw-text-opacity)) !important; + } + + .md\:hover\:text-yellow-200:hover { + --tw-text-opacity: 1 !important; + color: rgba(253, 230, 138, var(--tw-text-opacity)) !important; + } + + .md\:hover\:text-yellow-300:hover { + --tw-text-opacity: 1 !important; + color: rgba(252, 211, 77, var(--tw-text-opacity)) !important; + } + + .md\:hover\:text-yellow-400:hover { + --tw-text-opacity: 1 !important; + color: rgba(251, 191, 36, var(--tw-text-opacity)) !important; + } + + .md\:hover\:text-yellow-500:hover { + --tw-text-opacity: 1 !important; + color: rgba(245, 158, 11, var(--tw-text-opacity)) !important; + } + + .md\:hover\:text-yellow-600:hover { + --tw-text-opacity: 1 !important; + color: rgba(217, 119, 6, var(--tw-text-opacity)) !important; + } + + .md\:hover\:text-yellow-700:hover { + --tw-text-opacity: 1 !important; + color: rgba(180, 83, 9, var(--tw-text-opacity)) !important; + } + + .md\:hover\:text-yellow-800:hover { + --tw-text-opacity: 1 !important; + color: rgba(146, 64, 14, var(--tw-text-opacity)) !important; + } + + .md\:hover\:text-yellow-900:hover { + --tw-text-opacity: 1 !important; + color: rgba(120, 53, 15, var(--tw-text-opacity)) !important; + } + + .md\:hover\:text-green-50:hover { + --tw-text-opacity: 1 !important; + color: rgba(236, 253, 245, var(--tw-text-opacity)) !important; + } + + .md\:hover\:text-green-100:hover { + --tw-text-opacity: 1 !important; + color: rgba(209, 250, 229, var(--tw-text-opacity)) !important; + } + + .md\:hover\:text-green-200:hover { + --tw-text-opacity: 1 !important; + color: rgba(167, 243, 208, var(--tw-text-opacity)) !important; + } + + .md\:hover\:text-green-300:hover { + --tw-text-opacity: 1 !important; + color: rgba(110, 231, 183, var(--tw-text-opacity)) !important; + } + + .md\:hover\:text-green-400:hover { + --tw-text-opacity: 1 !important; + color: rgba(52, 211, 153, var(--tw-text-opacity)) !important; + } + + .md\:hover\:text-green-500:hover { + --tw-text-opacity: 1 !important; + color: rgba(16, 185, 129, var(--tw-text-opacity)) !important; + } + + .md\:hover\:text-green-600:hover { + --tw-text-opacity: 1 !important; + color: rgba(5, 150, 105, var(--tw-text-opacity)) !important; + } + + .md\:hover\:text-green-700:hover { + --tw-text-opacity: 1 !important; + color: rgba(4, 120, 87, var(--tw-text-opacity)) !important; + } + + .md\:hover\:text-green-800:hover { + --tw-text-opacity: 1 !important; + color: rgba(6, 95, 70, var(--tw-text-opacity)) !important; + } + + .md\:hover\:text-green-900:hover { + --tw-text-opacity: 1 !important; + color: rgba(6, 78, 59, var(--tw-text-opacity)) !important; + } + + .md\:hover\:text-blue-50:hover { + --tw-text-opacity: 1 !important; + color: rgba(239, 246, 255, var(--tw-text-opacity)) !important; + } + + .md\:hover\:text-blue-100:hover { + --tw-text-opacity: 1 !important; + color: rgba(219, 234, 254, var(--tw-text-opacity)) !important; + } + + .md\:hover\:text-blue-200:hover { + --tw-text-opacity: 1 !important; + color: rgba(191, 219, 254, var(--tw-text-opacity)) !important; + } + + .md\:hover\:text-blue-300:hover { + --tw-text-opacity: 1 !important; + color: rgba(147, 197, 253, var(--tw-text-opacity)) !important; + } + + .md\:hover\:text-blue-400:hover { + --tw-text-opacity: 1 !important; + color: rgba(96, 165, 250, var(--tw-text-opacity)) !important; + } + + .md\:hover\:text-blue-500:hover { + --tw-text-opacity: 1 !important; + color: rgba(59, 130, 246, var(--tw-text-opacity)) !important; + } + + .md\:hover\:text-blue-600:hover { + --tw-text-opacity: 1 !important; + color: rgba(37, 99, 235, var(--tw-text-opacity)) !important; + } + + .md\:hover\:text-blue-700:hover { + --tw-text-opacity: 1 !important; + color: rgba(29, 78, 216, var(--tw-text-opacity)) !important; + } + + .md\:hover\:text-blue-800:hover { + --tw-text-opacity: 1 !important; + color: rgba(30, 64, 175, var(--tw-text-opacity)) !important; + } + + .md\:hover\:text-blue-900:hover { + --tw-text-opacity: 1 !important; + color: rgba(30, 58, 138, var(--tw-text-opacity)) !important; + } + + .md\:hover\:text-indigo-50:hover { + --tw-text-opacity: 1 !important; + color: rgba(238, 242, 255, var(--tw-text-opacity)) !important; + } + + .md\:hover\:text-indigo-100:hover { + --tw-text-opacity: 1 !important; + color: rgba(224, 231, 255, var(--tw-text-opacity)) !important; + } + + .md\:hover\:text-indigo-200:hover { + --tw-text-opacity: 1 !important; + color: rgba(199, 210, 254, var(--tw-text-opacity)) !important; + } + + .md\:hover\:text-indigo-300:hover { + --tw-text-opacity: 1 !important; + color: rgba(165, 180, 252, var(--tw-text-opacity)) !important; + } + + .md\:hover\:text-indigo-400:hover { + --tw-text-opacity: 1 !important; + color: rgba(129, 140, 248, var(--tw-text-opacity)) !important; + } + + .md\:hover\:text-indigo-500:hover { + --tw-text-opacity: 1 !important; + color: rgba(99, 102, 241, var(--tw-text-opacity)) !important; + } + + .md\:hover\:text-indigo-600:hover { + --tw-text-opacity: 1 !important; + color: rgba(79, 70, 229, var(--tw-text-opacity)) !important; + } + + .md\:hover\:text-indigo-700:hover { + --tw-text-opacity: 1 !important; + color: rgba(67, 56, 202, var(--tw-text-opacity)) !important; + } + + .md\:hover\:text-indigo-800:hover { + --tw-text-opacity: 1 !important; + color: rgba(55, 48, 163, var(--tw-text-opacity)) !important; + } + + .md\:hover\:text-indigo-900:hover { + --tw-text-opacity: 1 !important; + color: rgba(49, 46, 129, var(--tw-text-opacity)) !important; + } + + .md\:hover\:text-purple-50:hover { + --tw-text-opacity: 1 !important; + color: rgba(245, 243, 255, var(--tw-text-opacity)) !important; + } + + .md\:hover\:text-purple-100:hover { + --tw-text-opacity: 1 !important; + color: rgba(237, 233, 254, var(--tw-text-opacity)) !important; + } + + .md\:hover\:text-purple-200:hover { + --tw-text-opacity: 1 !important; + color: rgba(221, 214, 254, var(--tw-text-opacity)) !important; + } + + .md\:hover\:text-purple-300:hover { + --tw-text-opacity: 1 !important; + color: rgba(196, 181, 253, var(--tw-text-opacity)) !important; + } + + .md\:hover\:text-purple-400:hover { + --tw-text-opacity: 1 !important; + color: rgba(167, 139, 250, var(--tw-text-opacity)) !important; + } + + .md\:hover\:text-purple-500:hover { + --tw-text-opacity: 1 !important; + color: rgba(139, 92, 246, var(--tw-text-opacity)) !important; + } + + .md\:hover\:text-purple-600:hover { + --tw-text-opacity: 1 !important; + color: rgba(124, 58, 237, var(--tw-text-opacity)) !important; + } + + .md\:hover\:text-purple-700:hover { + --tw-text-opacity: 1 !important; + color: rgba(109, 40, 217, var(--tw-text-opacity)) !important; + } + + .md\:hover\:text-purple-800:hover { + --tw-text-opacity: 1 !important; + color: rgba(91, 33, 182, var(--tw-text-opacity)) !important; + } + + .md\:hover\:text-purple-900:hover { + --tw-text-opacity: 1 !important; + color: rgba(76, 29, 149, var(--tw-text-opacity)) !important; + } + + .md\:hover\:text-pink-50:hover { + --tw-text-opacity: 1 !important; + color: rgba(253, 242, 248, var(--tw-text-opacity)) !important; + } + + .md\:hover\:text-pink-100:hover { + --tw-text-opacity: 1 !important; + color: rgba(252, 231, 243, var(--tw-text-opacity)) !important; + } + + .md\:hover\:text-pink-200:hover { + --tw-text-opacity: 1 !important; + color: rgba(251, 207, 232, var(--tw-text-opacity)) !important; + } + + .md\:hover\:text-pink-300:hover { + --tw-text-opacity: 1 !important; + color: rgba(249, 168, 212, var(--tw-text-opacity)) !important; + } + + .md\:hover\:text-pink-400:hover { + --tw-text-opacity: 1 !important; + color: rgba(244, 114, 182, var(--tw-text-opacity)) !important; + } + + .md\:hover\:text-pink-500:hover { + --tw-text-opacity: 1 !important; + color: rgba(236, 72, 153, var(--tw-text-opacity)) !important; + } + + .md\:hover\:text-pink-600:hover { + --tw-text-opacity: 1 !important; + color: rgba(219, 39, 119, var(--tw-text-opacity)) !important; + } + + .md\:hover\:text-pink-700:hover { + --tw-text-opacity: 1 !important; + color: rgba(190, 24, 93, var(--tw-text-opacity)) !important; + } + + .md\:hover\:text-pink-800:hover { + --tw-text-opacity: 1 !important; + color: rgba(157, 23, 77, var(--tw-text-opacity)) !important; + } + + .md\:hover\:text-pink-900:hover { + --tw-text-opacity: 1 !important; + color: rgba(131, 24, 67, var(--tw-text-opacity)) !important; + } + + .md\:hover\:text-primary:hover { + --tw-text-opacity: 1 !important; + color: rgba(0, 49, 151, var(--tw-text-opacity)) !important; + } + + .md\:focus\:text-transparent:focus { + color: transparent !important; + } + + .md\:focus\:text-current:focus { + color: currentColor !important; + } + + .md\:focus\:text-black:focus { + --tw-text-opacity: 1 !important; + color: rgba(0, 0, 0, var(--tw-text-opacity)) !important; + } + + .md\:focus\:text-white:focus { + --tw-text-opacity: 1 !important; + color: rgba(255, 255, 255, var(--tw-text-opacity)) !important; + } + + .md\:focus\:text-gray-50:focus { + --tw-text-opacity: 1 !important; + color: rgba(249, 250, 251, var(--tw-text-opacity)) !important; + } + + .md\:focus\:text-gray-100:focus { + --tw-text-opacity: 1 !important; + color: rgba(243, 244, 246, var(--tw-text-opacity)) !important; + } + + .md\:focus\:text-gray-200:focus { + --tw-text-opacity: 1 !important; + color: rgba(229, 231, 235, var(--tw-text-opacity)) !important; + } + + .md\:focus\:text-gray-300:focus { + --tw-text-opacity: 1 !important; + color: rgba(209, 213, 219, var(--tw-text-opacity)) !important; + } + + .md\:focus\:text-gray-400:focus { + --tw-text-opacity: 1 !important; + color: rgba(156, 163, 175, var(--tw-text-opacity)) !important; + } + + .md\:focus\:text-gray-500:focus { + --tw-text-opacity: 1 !important; + color: rgba(107, 114, 128, var(--tw-text-opacity)) !important; + } + + .md\:focus\:text-gray-600:focus { + --tw-text-opacity: 1 !important; + color: rgba(75, 85, 99, var(--tw-text-opacity)) !important; + } + + .md\:focus\:text-gray-700:focus { + --tw-text-opacity: 1 !important; + color: rgba(55, 65, 81, var(--tw-text-opacity)) !important; + } + + .md\:focus\:text-gray-800:focus { + --tw-text-opacity: 1 !important; + color: rgba(31, 41, 55, var(--tw-text-opacity)) !important; + } + + .md\:focus\:text-gray-900:focus { + --tw-text-opacity: 1 !important; + color: rgba(17, 24, 39, var(--tw-text-opacity)) !important; + } + + .md\:focus\:text-red-50:focus { + --tw-text-opacity: 1 !important; + color: rgba(254, 242, 242, var(--tw-text-opacity)) !important; + } + + .md\:focus\:text-red-100:focus { + --tw-text-opacity: 1 !important; + color: rgba(254, 226, 226, var(--tw-text-opacity)) !important; + } + + .md\:focus\:text-red-200:focus { + --tw-text-opacity: 1 !important; + color: rgba(254, 202, 202, var(--tw-text-opacity)) !important; + } + + .md\:focus\:text-red-300:focus { + --tw-text-opacity: 1 !important; + color: rgba(252, 165, 165, var(--tw-text-opacity)) !important; + } + + .md\:focus\:text-red-400:focus { + --tw-text-opacity: 1 !important; + color: rgba(248, 113, 113, var(--tw-text-opacity)) !important; + } + + .md\:focus\:text-red-500:focus { + --tw-text-opacity: 1 !important; + color: rgba(239, 68, 68, var(--tw-text-opacity)) !important; + } + + .md\:focus\:text-red-600:focus { + --tw-text-opacity: 1 !important; + color: rgba(220, 38, 38, var(--tw-text-opacity)) !important; + } + + .md\:focus\:text-red-700:focus { + --tw-text-opacity: 1 !important; + color: rgba(185, 28, 28, var(--tw-text-opacity)) !important; + } + + .md\:focus\:text-red-800:focus { + --tw-text-opacity: 1 !important; + color: rgba(153, 27, 27, var(--tw-text-opacity)) !important; + } + + .md\:focus\:text-red-900:focus { + --tw-text-opacity: 1 !important; + color: rgba(127, 29, 29, var(--tw-text-opacity)) !important; + } + + .md\:focus\:text-yellow-50:focus { + --tw-text-opacity: 1 !important; + color: rgba(255, 251, 235, var(--tw-text-opacity)) !important; + } + + .md\:focus\:text-yellow-100:focus { + --tw-text-opacity: 1 !important; + color: rgba(254, 243, 199, var(--tw-text-opacity)) !important; + } + + .md\:focus\:text-yellow-200:focus { + --tw-text-opacity: 1 !important; + color: rgba(253, 230, 138, var(--tw-text-opacity)) !important; + } + + .md\:focus\:text-yellow-300:focus { + --tw-text-opacity: 1 !important; + color: rgba(252, 211, 77, var(--tw-text-opacity)) !important; + } + + .md\:focus\:text-yellow-400:focus { + --tw-text-opacity: 1 !important; + color: rgba(251, 191, 36, var(--tw-text-opacity)) !important; + } + + .md\:focus\:text-yellow-500:focus { + --tw-text-opacity: 1 !important; + color: rgba(245, 158, 11, var(--tw-text-opacity)) !important; + } + + .md\:focus\:text-yellow-600:focus { + --tw-text-opacity: 1 !important; + color: rgba(217, 119, 6, var(--tw-text-opacity)) !important; + } + + .md\:focus\:text-yellow-700:focus { + --tw-text-opacity: 1 !important; + color: rgba(180, 83, 9, var(--tw-text-opacity)) !important; + } + + .md\:focus\:text-yellow-800:focus { + --tw-text-opacity: 1 !important; + color: rgba(146, 64, 14, var(--tw-text-opacity)) !important; + } + + .md\:focus\:text-yellow-900:focus { + --tw-text-opacity: 1 !important; + color: rgba(120, 53, 15, var(--tw-text-opacity)) !important; + } + + .md\:focus\:text-green-50:focus { + --tw-text-opacity: 1 !important; + color: rgba(236, 253, 245, var(--tw-text-opacity)) !important; + } + + .md\:focus\:text-green-100:focus { + --tw-text-opacity: 1 !important; + color: rgba(209, 250, 229, var(--tw-text-opacity)) !important; + } + + .md\:focus\:text-green-200:focus { + --tw-text-opacity: 1 !important; + color: rgba(167, 243, 208, var(--tw-text-opacity)) !important; + } + + .md\:focus\:text-green-300:focus { + --tw-text-opacity: 1 !important; + color: rgba(110, 231, 183, var(--tw-text-opacity)) !important; + } + + .md\:focus\:text-green-400:focus { + --tw-text-opacity: 1 !important; + color: rgba(52, 211, 153, var(--tw-text-opacity)) !important; + } + + .md\:focus\:text-green-500:focus { + --tw-text-opacity: 1 !important; + color: rgba(16, 185, 129, var(--tw-text-opacity)) !important; + } + + .md\:focus\:text-green-600:focus { + --tw-text-opacity: 1 !important; + color: rgba(5, 150, 105, var(--tw-text-opacity)) !important; + } + + .md\:focus\:text-green-700:focus { + --tw-text-opacity: 1 !important; + color: rgba(4, 120, 87, var(--tw-text-opacity)) !important; + } + + .md\:focus\:text-green-800:focus { + --tw-text-opacity: 1 !important; + color: rgba(6, 95, 70, var(--tw-text-opacity)) !important; + } + + .md\:focus\:text-green-900:focus { + --tw-text-opacity: 1 !important; + color: rgba(6, 78, 59, var(--tw-text-opacity)) !important; + } + + .md\:focus\:text-blue-50:focus { + --tw-text-opacity: 1 !important; + color: rgba(239, 246, 255, var(--tw-text-opacity)) !important; + } + + .md\:focus\:text-blue-100:focus { + --tw-text-opacity: 1 !important; + color: rgba(219, 234, 254, var(--tw-text-opacity)) !important; + } + + .md\:focus\:text-blue-200:focus { + --tw-text-opacity: 1 !important; + color: rgba(191, 219, 254, var(--tw-text-opacity)) !important; + } + + .md\:focus\:text-blue-300:focus { + --tw-text-opacity: 1 !important; + color: rgba(147, 197, 253, var(--tw-text-opacity)) !important; + } + + .md\:focus\:text-blue-400:focus { + --tw-text-opacity: 1 !important; + color: rgba(96, 165, 250, var(--tw-text-opacity)) !important; + } + + .md\:focus\:text-blue-500:focus { + --tw-text-opacity: 1 !important; + color: rgba(59, 130, 246, var(--tw-text-opacity)) !important; + } + + .md\:focus\:text-blue-600:focus { + --tw-text-opacity: 1 !important; + color: rgba(37, 99, 235, var(--tw-text-opacity)) !important; + } + + .md\:focus\:text-blue-700:focus { + --tw-text-opacity: 1 !important; + color: rgba(29, 78, 216, var(--tw-text-opacity)) !important; + } + + .md\:focus\:text-blue-800:focus { + --tw-text-opacity: 1 !important; + color: rgba(30, 64, 175, var(--tw-text-opacity)) !important; + } + + .md\:focus\:text-blue-900:focus { + --tw-text-opacity: 1 !important; + color: rgba(30, 58, 138, var(--tw-text-opacity)) !important; + } + + .md\:focus\:text-indigo-50:focus { + --tw-text-opacity: 1 !important; + color: rgba(238, 242, 255, var(--tw-text-opacity)) !important; + } + + .md\:focus\:text-indigo-100:focus { + --tw-text-opacity: 1 !important; + color: rgba(224, 231, 255, var(--tw-text-opacity)) !important; + } + + .md\:focus\:text-indigo-200:focus { + --tw-text-opacity: 1 !important; + color: rgba(199, 210, 254, var(--tw-text-opacity)) !important; + } + + .md\:focus\:text-indigo-300:focus { + --tw-text-opacity: 1 !important; + color: rgba(165, 180, 252, var(--tw-text-opacity)) !important; + } + + .md\:focus\:text-indigo-400:focus { + --tw-text-opacity: 1 !important; + color: rgba(129, 140, 248, var(--tw-text-opacity)) !important; + } + + .md\:focus\:text-indigo-500:focus { + --tw-text-opacity: 1 !important; + color: rgba(99, 102, 241, var(--tw-text-opacity)) !important; + } + + .md\:focus\:text-indigo-600:focus { + --tw-text-opacity: 1 !important; + color: rgba(79, 70, 229, var(--tw-text-opacity)) !important; + } + + .md\:focus\:text-indigo-700:focus { + --tw-text-opacity: 1 !important; + color: rgba(67, 56, 202, var(--tw-text-opacity)) !important; + } + + .md\:focus\:text-indigo-800:focus { + --tw-text-opacity: 1 !important; + color: rgba(55, 48, 163, var(--tw-text-opacity)) !important; + } + + .md\:focus\:text-indigo-900:focus { + --tw-text-opacity: 1 !important; + color: rgba(49, 46, 129, var(--tw-text-opacity)) !important; + } + + .md\:focus\:text-purple-50:focus { + --tw-text-opacity: 1 !important; + color: rgba(245, 243, 255, var(--tw-text-opacity)) !important; + } + + .md\:focus\:text-purple-100:focus { + --tw-text-opacity: 1 !important; + color: rgba(237, 233, 254, var(--tw-text-opacity)) !important; + } + + .md\:focus\:text-purple-200:focus { + --tw-text-opacity: 1 !important; + color: rgba(221, 214, 254, var(--tw-text-opacity)) !important; + } + + .md\:focus\:text-purple-300:focus { + --tw-text-opacity: 1 !important; + color: rgba(196, 181, 253, var(--tw-text-opacity)) !important; + } + + .md\:focus\:text-purple-400:focus { + --tw-text-opacity: 1 !important; + color: rgba(167, 139, 250, var(--tw-text-opacity)) !important; + } + + .md\:focus\:text-purple-500:focus { + --tw-text-opacity: 1 !important; + color: rgba(139, 92, 246, var(--tw-text-opacity)) !important; + } + + .md\:focus\:text-purple-600:focus { + --tw-text-opacity: 1 !important; + color: rgba(124, 58, 237, var(--tw-text-opacity)) !important; + } + + .md\:focus\:text-purple-700:focus { + --tw-text-opacity: 1 !important; + color: rgba(109, 40, 217, var(--tw-text-opacity)) !important; + } + + .md\:focus\:text-purple-800:focus { + --tw-text-opacity: 1 !important; + color: rgba(91, 33, 182, var(--tw-text-opacity)) !important; + } + + .md\:focus\:text-purple-900:focus { + --tw-text-opacity: 1 !important; + color: rgba(76, 29, 149, var(--tw-text-opacity)) !important; + } + + .md\:focus\:text-pink-50:focus { + --tw-text-opacity: 1 !important; + color: rgba(253, 242, 248, var(--tw-text-opacity)) !important; + } + + .md\:focus\:text-pink-100:focus { + --tw-text-opacity: 1 !important; + color: rgba(252, 231, 243, var(--tw-text-opacity)) !important; + } + + .md\:focus\:text-pink-200:focus { + --tw-text-opacity: 1 !important; + color: rgba(251, 207, 232, var(--tw-text-opacity)) !important; + } + + .md\:focus\:text-pink-300:focus { + --tw-text-opacity: 1 !important; + color: rgba(249, 168, 212, var(--tw-text-opacity)) !important; + } + + .md\:focus\:text-pink-400:focus { + --tw-text-opacity: 1 !important; + color: rgba(244, 114, 182, var(--tw-text-opacity)) !important; + } + + .md\:focus\:text-pink-500:focus { + --tw-text-opacity: 1 !important; + color: rgba(236, 72, 153, var(--tw-text-opacity)) !important; + } + + .md\:focus\:text-pink-600:focus { + --tw-text-opacity: 1 !important; + color: rgba(219, 39, 119, var(--tw-text-opacity)) !important; + } + + .md\:focus\:text-pink-700:focus { + --tw-text-opacity: 1 !important; + color: rgba(190, 24, 93, var(--tw-text-opacity)) !important; + } + + .md\:focus\:text-pink-800:focus { + --tw-text-opacity: 1 !important; + color: rgba(157, 23, 77, var(--tw-text-opacity)) !important; + } + + .md\:focus\:text-pink-900:focus { + --tw-text-opacity: 1 !important; + color: rgba(131, 24, 67, var(--tw-text-opacity)) !important; + } + + .md\:focus\:text-primary:focus { + --tw-text-opacity: 1 !important; + color: rgba(0, 49, 151, var(--tw-text-opacity)) !important; + } + + .md\:text-opacity-0 { + --tw-text-opacity: 0 !important; + } + + .md\:text-opacity-5 { + --tw-text-opacity: 0.05 !important; + } + + .md\:text-opacity-10 { + --tw-text-opacity: 0.1 !important; + } + + .md\:text-opacity-20 { + --tw-text-opacity: 0.2 !important; + } + + .md\:text-opacity-25 { + --tw-text-opacity: 0.25 !important; + } + + .md\:text-opacity-30 { + --tw-text-opacity: 0.3 !important; + } + + .md\:text-opacity-40 { + --tw-text-opacity: 0.4 !important; + } + + .md\:text-opacity-50 { + --tw-text-opacity: 0.5 !important; + } + + .md\:text-opacity-60 { + --tw-text-opacity: 0.6 !important; + } + + .md\:text-opacity-70 { + --tw-text-opacity: 0.7 !important; + } + + .md\:text-opacity-75 { + --tw-text-opacity: 0.75 !important; + } + + .md\:text-opacity-80 { + --tw-text-opacity: 0.8 !important; + } + + .md\:text-opacity-90 { + --tw-text-opacity: 0.9 !important; + } + + .md\:text-opacity-95 { + --tw-text-opacity: 0.95 !important; + } + + .md\:text-opacity-100 { + --tw-text-opacity: 1 !important; + } + + .group:hover .md\:group-hover\:text-opacity-0 { + --tw-text-opacity: 0 !important; + } + + .group:hover .md\:group-hover\:text-opacity-5 { + --tw-text-opacity: 0.05 !important; + } + + .group:hover .md\:group-hover\:text-opacity-10 { + --tw-text-opacity: 0.1 !important; + } + + .group:hover .md\:group-hover\:text-opacity-20 { + --tw-text-opacity: 0.2 !important; + } + + .group:hover .md\:group-hover\:text-opacity-25 { + --tw-text-opacity: 0.25 !important; + } + + .group:hover .md\:group-hover\:text-opacity-30 { + --tw-text-opacity: 0.3 !important; + } + + .group:hover .md\:group-hover\:text-opacity-40 { + --tw-text-opacity: 0.4 !important; + } + + .group:hover .md\:group-hover\:text-opacity-50 { + --tw-text-opacity: 0.5 !important; + } + + .group:hover .md\:group-hover\:text-opacity-60 { + --tw-text-opacity: 0.6 !important; + } + + .group:hover .md\:group-hover\:text-opacity-70 { + --tw-text-opacity: 0.7 !important; + } + + .group:hover .md\:group-hover\:text-opacity-75 { + --tw-text-opacity: 0.75 !important; + } + + .group:hover .md\:group-hover\:text-opacity-80 { + --tw-text-opacity: 0.8 !important; + } + + .group:hover .md\:group-hover\:text-opacity-90 { + --tw-text-opacity: 0.9 !important; + } + + .group:hover .md\:group-hover\:text-opacity-95 { + --tw-text-opacity: 0.95 !important; + } + + .group:hover .md\:group-hover\:text-opacity-100 { + --tw-text-opacity: 1 !important; + } + + .md\:focus-within\:text-opacity-0:focus-within { + --tw-text-opacity: 0 !important; + } + + .md\:focus-within\:text-opacity-5:focus-within { + --tw-text-opacity: 0.05 !important; + } + + .md\:focus-within\:text-opacity-10:focus-within { + --tw-text-opacity: 0.1 !important; + } + + .md\:focus-within\:text-opacity-20:focus-within { + --tw-text-opacity: 0.2 !important; + } + + .md\:focus-within\:text-opacity-25:focus-within { + --tw-text-opacity: 0.25 !important; + } + + .md\:focus-within\:text-opacity-30:focus-within { + --tw-text-opacity: 0.3 !important; + } + + .md\:focus-within\:text-opacity-40:focus-within { + --tw-text-opacity: 0.4 !important; + } + + .md\:focus-within\:text-opacity-50:focus-within { + --tw-text-opacity: 0.5 !important; + } + + .md\:focus-within\:text-opacity-60:focus-within { + --tw-text-opacity: 0.6 !important; + } + + .md\:focus-within\:text-opacity-70:focus-within { + --tw-text-opacity: 0.7 !important; + } + + .md\:focus-within\:text-opacity-75:focus-within { + --tw-text-opacity: 0.75 !important; + } + + .md\:focus-within\:text-opacity-80:focus-within { + --tw-text-opacity: 0.8 !important; + } + + .md\:focus-within\:text-opacity-90:focus-within { + --tw-text-opacity: 0.9 !important; + } + + .md\:focus-within\:text-opacity-95:focus-within { + --tw-text-opacity: 0.95 !important; + } + + .md\:focus-within\:text-opacity-100:focus-within { + --tw-text-opacity: 1 !important; + } + + .md\:hover\:text-opacity-0:hover { + --tw-text-opacity: 0 !important; + } + + .md\:hover\:text-opacity-5:hover { + --tw-text-opacity: 0.05 !important; + } + + .md\:hover\:text-opacity-10:hover { + --tw-text-opacity: 0.1 !important; + } + + .md\:hover\:text-opacity-20:hover { + --tw-text-opacity: 0.2 !important; + } + + .md\:hover\:text-opacity-25:hover { + --tw-text-opacity: 0.25 !important; + } + + .md\:hover\:text-opacity-30:hover { + --tw-text-opacity: 0.3 !important; + } + + .md\:hover\:text-opacity-40:hover { + --tw-text-opacity: 0.4 !important; + } + + .md\:hover\:text-opacity-50:hover { + --tw-text-opacity: 0.5 !important; + } + + .md\:hover\:text-opacity-60:hover { + --tw-text-opacity: 0.6 !important; + } + + .md\:hover\:text-opacity-70:hover { + --tw-text-opacity: 0.7 !important; + } + + .md\:hover\:text-opacity-75:hover { + --tw-text-opacity: 0.75 !important; + } + + .md\:hover\:text-opacity-80:hover { + --tw-text-opacity: 0.8 !important; + } + + .md\:hover\:text-opacity-90:hover { + --tw-text-opacity: 0.9 !important; + } + + .md\:hover\:text-opacity-95:hover { + --tw-text-opacity: 0.95 !important; + } + + .md\:hover\:text-opacity-100:hover { + --tw-text-opacity: 1 !important; + } + + .md\:focus\:text-opacity-0:focus { + --tw-text-opacity: 0 !important; + } + + .md\:focus\:text-opacity-5:focus { + --tw-text-opacity: 0.05 !important; + } + + .md\:focus\:text-opacity-10:focus { + --tw-text-opacity: 0.1 !important; + } + + .md\:focus\:text-opacity-20:focus { + --tw-text-opacity: 0.2 !important; + } + + .md\:focus\:text-opacity-25:focus { + --tw-text-opacity: 0.25 !important; + } + + .md\:focus\:text-opacity-30:focus { + --tw-text-opacity: 0.3 !important; + } + + .md\:focus\:text-opacity-40:focus { + --tw-text-opacity: 0.4 !important; + } + + .md\:focus\:text-opacity-50:focus { + --tw-text-opacity: 0.5 !important; + } + + .md\:focus\:text-opacity-60:focus { + --tw-text-opacity: 0.6 !important; + } + + .md\:focus\:text-opacity-70:focus { + --tw-text-opacity: 0.7 !important; + } + + .md\:focus\:text-opacity-75:focus { + --tw-text-opacity: 0.75 !important; + } + + .md\:focus\:text-opacity-80:focus { + --tw-text-opacity: 0.8 !important; + } + + .md\:focus\:text-opacity-90:focus { + --tw-text-opacity: 0.9 !important; + } + + .md\:focus\:text-opacity-95:focus { + --tw-text-opacity: 0.95 !important; + } + + .md\:focus\:text-opacity-100:focus { + --tw-text-opacity: 1 !important; + } + + .md\:truncate { + overflow: hidden !important; + text-overflow: ellipsis !important; + white-space: nowrap !important; + } + + .md\:overflow-ellipsis { + text-overflow: ellipsis !important; + } + + .md\:overflow-clip { + text-overflow: clip !important; + } + + .md\:italic { + font-style: italic !important; + } + + .md\:not-italic { + font-style: normal !important; + } + + .md\:uppercase { + text-transform: uppercase !important; + } + + .md\:lowercase { + text-transform: lowercase !important; + } + + .md\:capitalize { + text-transform: capitalize !important; + } + + .md\:normal-case { + text-transform: none !important; + } + + .md\:underline { + text-decoration: underline !important; + } + + .md\:line-through { + text-decoration: line-through !important; + } + + .md\:no-underline { + text-decoration: none !important; + } + + .group:hover .md\:group-hover\:underline { + text-decoration: underline !important; + } + + .group:hover .md\:group-hover\:line-through { + text-decoration: line-through !important; + } + + .group:hover .md\:group-hover\:no-underline { + text-decoration: none !important; + } + + .md\:focus-within\:underline:focus-within { + text-decoration: underline !important; + } + + .md\:focus-within\:line-through:focus-within { + text-decoration: line-through !important; + } + + .md\:focus-within\:no-underline:focus-within { + text-decoration: none !important; + } + + .md\:hover\:underline:hover { + text-decoration: underline !important; + } + + .md\:hover\:line-through:hover { + text-decoration: line-through !important; + } + + .md\:hover\:no-underline:hover { + text-decoration: none !important; + } + + .md\:focus\:underline:focus { + text-decoration: underline !important; + } + + .md\:focus\:line-through:focus { + text-decoration: line-through !important; + } + + .md\:focus\:no-underline:focus { + text-decoration: none !important; + } + + .md\:antialiased { + -webkit-font-smoothing: antialiased !important; + -moz-osx-font-smoothing: grayscale !important; + } + + .md\:subpixel-antialiased { + -webkit-font-smoothing: auto !important; + -moz-osx-font-smoothing: auto !important; + } + + .md\:ordinal, .md\:slashed-zero, .md\:lining-nums, .md\:oldstyle-nums, .md\:proportional-nums, .md\:tabular-nums, .md\:diagonal-fractions, .md\:stacked-fractions { + --tw-ordinal: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-slashed-zero: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-numeric-figure: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-numeric-spacing: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-numeric-fraction: var(--tw-empty,/*!*/ /*!*/) !important; + font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction) !important; + } + + .md\:normal-nums { + font-variant-numeric: normal !important; + } + + .md\:ordinal { + --tw-ordinal: ordinal !important; + } + + .md\:slashed-zero { + --tw-slashed-zero: slashed-zero !important; + } + + .md\:lining-nums { + --tw-numeric-figure: lining-nums !important; + } + + .md\:oldstyle-nums { + --tw-numeric-figure: oldstyle-nums !important; + } + + .md\:proportional-nums { + --tw-numeric-spacing: proportional-nums !important; + } + + .md\:tabular-nums { + --tw-numeric-spacing: tabular-nums !important; + } + + .md\:diagonal-fractions { + --tw-numeric-fraction: diagonal-fractions !important; + } + + .md\:stacked-fractions { + --tw-numeric-fraction: stacked-fractions !important; + } + + .md\:tracking-tighter { + letter-spacing: -0.05em !important; + } + + .md\:tracking-tight { + letter-spacing: -0.025em !important; + } + + .md\:tracking-normal { + letter-spacing: 0em !important; + } + + .md\:tracking-wide { + letter-spacing: 0.025em !important; + } + + .md\:tracking-wider { + letter-spacing: 0.05em !important; + } + + .md\:tracking-widest { + letter-spacing: 0.1em !important; + } + + .md\:select-none { + -webkit-user-select: none !important; + -moz-user-select: none !important; + -ms-user-select: none !important; + user-select: none !important; + } + + .md\:select-text { + -webkit-user-select: text !important; + -moz-user-select: text !important; + -ms-user-select: text !important; + user-select: text !important; + } + + .md\:select-all { + -webkit-user-select: all !important; + -moz-user-select: all !important; + user-select: all !important; + } + + .md\:select-auto { + -webkit-user-select: auto !important; + -moz-user-select: auto !important; + -ms-user-select: auto !important; + user-select: auto !important; + } + + .md\:align-baseline { + vertical-align: baseline !important; + } + + .md\:align-top { + vertical-align: top !important; + } + + .md\:align-middle { + vertical-align: middle !important; + } + + .md\:align-bottom { + vertical-align: bottom !important; + } + + .md\:align-text-top { + vertical-align: text-top !important; + } + + .md\:align-text-bottom { + vertical-align: text-bottom !important; + } + + .md\:visible { + visibility: visible !important; + } + + .md\:invisible { + visibility: hidden !important; + } + + .md\:whitespace-normal { + white-space: normal !important; + } + + .md\:whitespace-nowrap { + white-space: nowrap !important; + } + + .md\:whitespace-pre { + white-space: pre !important; + } + + .md\:whitespace-pre-line { + white-space: pre-line !important; + } + + .md\:whitespace-pre-wrap { + white-space: pre-wrap !important; + } + + .md\:break-normal { + overflow-wrap: normal !important; + word-break: normal !important; + } + + .md\:break-words { + overflow-wrap: break-word !important; + } + + .md\:break-all { + word-break: break-all !important; + } + + .md\:w-0 { + width: 0px !important; + } + + .md\:w-1 { + width: 0.25rem !important; + } + + .md\:w-2 { + width: 0.5rem !important; + } + + .md\:w-3 { + width: 0.75rem !important; + } + + .md\:w-4 { + width: 1rem !important; + } + + .md\:w-5 { + width: 1.25rem !important; + } + + .md\:w-6 { + width: 1.5rem !important; + } + + .md\:w-7 { + width: 1.75rem !important; + } + + .md\:w-8 { + width: 2rem !important; + } + + .md\:w-9 { + width: 2.25rem !important; + } + + .md\:w-10 { + width: 2.5rem !important; + } + + .md\:w-11 { + width: 2.75rem !important; + } + + .md\:w-12 { + width: 3rem !important; + } + + .md\:w-14 { + width: 3.5rem !important; + } + + .md\:w-16 { + width: 4rem !important; + } + + .md\:w-20 { + width: 5rem !important; + } + + .md\:w-24 { + width: 6rem !important; + } + + .md\:w-28 { + width: 7rem !important; + } + + .md\:w-32 { + width: 8rem !important; + } + + .md\:w-36 { + width: 9rem !important; + } + + .md\:w-40 { + width: 10rem !important; + } + + .md\:w-44 { + width: 11rem !important; + } + + .md\:w-48 { + width: 12rem !important; + } + + .md\:w-52 { + width: 13rem !important; + } + + .md\:w-56 { + width: 14rem !important; + } + + .md\:w-60 { + width: 15rem !important; + } + + .md\:w-64 { + width: 16rem !important; + } + + .md\:w-72 { + width: 18rem !important; + } + + .md\:w-80 { + width: 20rem !important; + } + + .md\:w-96 { + width: 24rem !important; + } + + .md\:w-auto { + width: auto !important; + } + + .md\:w-px { + width: 1px !important; + } + + .md\:w-0\.5 { + width: 0.125rem !important; + } + + .md\:w-1\.5 { + width: 0.375rem !important; + } + + .md\:w-2\.5 { + width: 0.625rem !important; + } + + .md\:w-3\.5 { + width: 0.875rem !important; + } + + .md\:w-1\/2 { + width: 50% !important; + } + + .md\:w-1\/3 { + width: 33.333333% !important; + } + + .md\:w-2\/3 { + width: 66.666667% !important; + } + + .md\:w-1\/4 { + width: 25% !important; + } + + .md\:w-2\/4 { + width: 50% !important; + } + + .md\:w-3\/4 { + width: 75% !important; + } + + .md\:w-1\/5 { + width: 20% !important; + } + + .md\:w-2\/5 { + width: 40% !important; + } + + .md\:w-3\/5 { + width: 60% !important; + } + + .md\:w-4\/5 { + width: 80% !important; + } + + .md\:w-1\/6 { + width: 16.666667% !important; + } + + .md\:w-2\/6 { + width: 33.333333% !important; + } + + .md\:w-3\/6 { + width: 50% !important; + } + + .md\:w-4\/6 { + width: 66.666667% !important; + } + + .md\:w-5\/6 { + width: 83.333333% !important; + } + + .md\:w-1\/12 { + width: 8.333333% !important; + } + + .md\:w-2\/12 { + width: 16.666667% !important; + } + + .md\:w-3\/12 { + width: 25% !important; + } + + .md\:w-4\/12 { + width: 33.333333% !important; + } + + .md\:w-5\/12 { + width: 41.666667% !important; + } + + .md\:w-6\/12 { + width: 50% !important; + } + + .md\:w-7\/12 { + width: 58.333333% !important; + } + + .md\:w-8\/12 { + width: 66.666667% !important; + } + + .md\:w-9\/12 { + width: 75% !important; + } + + .md\:w-10\/12 { + width: 83.333333% !important; + } + + .md\:w-11\/12 { + width: 91.666667% !important; + } + + .md\:w-full { + width: 100% !important; + } + + .md\:w-screen { + width: 100vw !important; + } + + .md\:w-min { + width: -webkit-min-content !important; + width: -moz-min-content !important; + width: min-content !important; + } + + .md\:w-max { + width: -webkit-max-content !important; + width: -moz-max-content !important; + width: max-content !important; + } + + .md\:z-0 { + z-index: 0 !important; + } + + .md\:z-10 { + z-index: 10 !important; + } + + .md\:z-20 { + z-index: 20 !important; + } + + .md\:z-30 { + z-index: 30 !important; + } + + .md\:z-40 { + z-index: 40 !important; + } + + .md\:z-50 { + z-index: 50 !important; + } + + .md\:z-auto { + z-index: auto !important; + } + + .md\:focus-within\:z-0:focus-within { + z-index: 0 !important; + } + + .md\:focus-within\:z-10:focus-within { + z-index: 10 !important; + } + + .md\:focus-within\:z-20:focus-within { + z-index: 20 !important; + } + + .md\:focus-within\:z-30:focus-within { + z-index: 30 !important; + } + + .md\:focus-within\:z-40:focus-within { + z-index: 40 !important; + } + + .md\:focus-within\:z-50:focus-within { + z-index: 50 !important; + } + + .md\:focus-within\:z-auto:focus-within { + z-index: auto !important; + } + + .md\:focus\:z-0:focus { + z-index: 0 !important; + } + + .md\:focus\:z-10:focus { + z-index: 10 !important; + } + + .md\:focus\:z-20:focus { + z-index: 20 !important; + } + + .md\:focus\:z-30:focus { + z-index: 30 !important; + } + + .md\:focus\:z-40:focus { + z-index: 40 !important; + } + + .md\:focus\:z-50:focus { + z-index: 50 !important; + } + + .md\:focus\:z-auto:focus { + z-index: auto !important; + } + + .md\:isolate { + isolation: isolate !important; + } + + .md\:isolation-auto { + isolation: auto !important; + } + + .md\:gap-0 { + gap: 0px !important; + } + + .md\:gap-1 { + gap: 0.25rem !important; + } + + .md\:gap-2 { + gap: 0.5rem !important; + } + + .md\:gap-3 { + gap: 0.75rem !important; + } + + .md\:gap-4 { + gap: 1rem !important; + } + + .md\:gap-5 { + gap: 1.25rem !important; + } + + .md\:gap-6 { + gap: 1.5rem !important; + } + + .md\:gap-7 { + gap: 1.75rem !important; + } + + .md\:gap-8 { + gap: 2rem !important; + } + + .md\:gap-9 { + gap: 2.25rem !important; + } + + .md\:gap-10 { + gap: 2.5rem !important; + } + + .md\:gap-11 { + gap: 2.75rem !important; + } + + .md\:gap-12 { + gap: 3rem !important; + } + + .md\:gap-14 { + gap: 3.5rem !important; + } + + .md\:gap-16 { + gap: 4rem !important; + } + + .md\:gap-20 { + gap: 5rem !important; + } + + .md\:gap-24 { + gap: 6rem !important; + } + + .md\:gap-28 { + gap: 7rem !important; + } + + .md\:gap-32 { + gap: 8rem !important; + } + + .md\:gap-36 { + gap: 9rem !important; + } + + .md\:gap-40 { + gap: 10rem !important; + } + + .md\:gap-44 { + gap: 11rem !important; + } + + .md\:gap-48 { + gap: 12rem !important; + } + + .md\:gap-52 { + gap: 13rem !important; + } + + .md\:gap-56 { + gap: 14rem !important; + } + + .md\:gap-60 { + gap: 15rem !important; + } + + .md\:gap-64 { + gap: 16rem !important; + } + + .md\:gap-72 { + gap: 18rem !important; + } + + .md\:gap-80 { + gap: 20rem !important; + } + + .md\:gap-96 { + gap: 24rem !important; + } + + .md\:gap-px { + gap: 1px !important; + } + + .md\:gap-0\.5 { + gap: 0.125rem !important; + } + + .md\:gap-1\.5 { + gap: 0.375rem !important; + } + + .md\:gap-2\.5 { + gap: 0.625rem !important; + } + + .md\:gap-3\.5 { + gap: 0.875rem !important; + } + + .md\:gap-x-0 { + -moz-column-gap: 0px !important; + column-gap: 0px !important; + } + + .md\:gap-x-1 { + -moz-column-gap: 0.25rem !important; + column-gap: 0.25rem !important; + } + + .md\:gap-x-2 { + -moz-column-gap: 0.5rem !important; + column-gap: 0.5rem !important; + } + + .md\:gap-x-3 { + -moz-column-gap: 0.75rem !important; + column-gap: 0.75rem !important; + } + + .md\:gap-x-4 { + -moz-column-gap: 1rem !important; + column-gap: 1rem !important; + } + + .md\:gap-x-5 { + -moz-column-gap: 1.25rem !important; + column-gap: 1.25rem !important; + } + + .md\:gap-x-6 { + -moz-column-gap: 1.5rem !important; + column-gap: 1.5rem !important; + } + + .md\:gap-x-7 { + -moz-column-gap: 1.75rem !important; + column-gap: 1.75rem !important; + } + + .md\:gap-x-8 { + -moz-column-gap: 2rem !important; + column-gap: 2rem !important; + } + + .md\:gap-x-9 { + -moz-column-gap: 2.25rem !important; + column-gap: 2.25rem !important; + } + + .md\:gap-x-10 { + -moz-column-gap: 2.5rem !important; + column-gap: 2.5rem !important; + } + + .md\:gap-x-11 { + -moz-column-gap: 2.75rem !important; + column-gap: 2.75rem !important; + } + + .md\:gap-x-12 { + -moz-column-gap: 3rem !important; + column-gap: 3rem !important; + } + + .md\:gap-x-14 { + -moz-column-gap: 3.5rem !important; + column-gap: 3.5rem !important; + } + + .md\:gap-x-16 { + -moz-column-gap: 4rem !important; + column-gap: 4rem !important; + } + + .md\:gap-x-20 { + -moz-column-gap: 5rem !important; + column-gap: 5rem !important; + } + + .md\:gap-x-24 { + -moz-column-gap: 6rem !important; + column-gap: 6rem !important; + } + + .md\:gap-x-28 { + -moz-column-gap: 7rem !important; + column-gap: 7rem !important; + } + + .md\:gap-x-32 { + -moz-column-gap: 8rem !important; + column-gap: 8rem !important; + } + + .md\:gap-x-36 { + -moz-column-gap: 9rem !important; + column-gap: 9rem !important; + } + + .md\:gap-x-40 { + -moz-column-gap: 10rem !important; + column-gap: 10rem !important; + } + + .md\:gap-x-44 { + -moz-column-gap: 11rem !important; + column-gap: 11rem !important; + } + + .md\:gap-x-48 { + -moz-column-gap: 12rem !important; + column-gap: 12rem !important; + } + + .md\:gap-x-52 { + -moz-column-gap: 13rem !important; + column-gap: 13rem !important; + } + + .md\:gap-x-56 { + -moz-column-gap: 14rem !important; + column-gap: 14rem !important; + } + + .md\:gap-x-60 { + -moz-column-gap: 15rem !important; + column-gap: 15rem !important; + } + + .md\:gap-x-64 { + -moz-column-gap: 16rem !important; + column-gap: 16rem !important; + } + + .md\:gap-x-72 { + -moz-column-gap: 18rem !important; + column-gap: 18rem !important; + } + + .md\:gap-x-80 { + -moz-column-gap: 20rem !important; + column-gap: 20rem !important; + } + + .md\:gap-x-96 { + -moz-column-gap: 24rem !important; + column-gap: 24rem !important; + } + + .md\:gap-x-px { + -moz-column-gap: 1px !important; + column-gap: 1px !important; + } + + .md\:gap-x-0\.5 { + -moz-column-gap: 0.125rem !important; + column-gap: 0.125rem !important; + } + + .md\:gap-x-1\.5 { + -moz-column-gap: 0.375rem !important; + column-gap: 0.375rem !important; + } + + .md\:gap-x-2\.5 { + -moz-column-gap: 0.625rem !important; + column-gap: 0.625rem !important; + } + + .md\:gap-x-3\.5 { + -moz-column-gap: 0.875rem !important; + column-gap: 0.875rem !important; + } + + .md\:gap-y-0 { + row-gap: 0px !important; + } + + .md\:gap-y-1 { + row-gap: 0.25rem !important; + } + + .md\:gap-y-2 { + row-gap: 0.5rem !important; + } + + .md\:gap-y-3 { + row-gap: 0.75rem !important; + } + + .md\:gap-y-4 { + row-gap: 1rem !important; + } + + .md\:gap-y-5 { + row-gap: 1.25rem !important; + } + + .md\:gap-y-6 { + row-gap: 1.5rem !important; + } + + .md\:gap-y-7 { + row-gap: 1.75rem !important; + } + + .md\:gap-y-8 { + row-gap: 2rem !important; + } + + .md\:gap-y-9 { + row-gap: 2.25rem !important; + } + + .md\:gap-y-10 { + row-gap: 2.5rem !important; + } + + .md\:gap-y-11 { + row-gap: 2.75rem !important; + } + + .md\:gap-y-12 { + row-gap: 3rem !important; + } + + .md\:gap-y-14 { + row-gap: 3.5rem !important; + } + + .md\:gap-y-16 { + row-gap: 4rem !important; + } + + .md\:gap-y-20 { + row-gap: 5rem !important; + } + + .md\:gap-y-24 { + row-gap: 6rem !important; + } + + .md\:gap-y-28 { + row-gap: 7rem !important; + } + + .md\:gap-y-32 { + row-gap: 8rem !important; + } + + .md\:gap-y-36 { + row-gap: 9rem !important; + } + + .md\:gap-y-40 { + row-gap: 10rem !important; + } + + .md\:gap-y-44 { + row-gap: 11rem !important; + } + + .md\:gap-y-48 { + row-gap: 12rem !important; + } + + .md\:gap-y-52 { + row-gap: 13rem !important; + } + + .md\:gap-y-56 { + row-gap: 14rem !important; + } + + .md\:gap-y-60 { + row-gap: 15rem !important; + } + + .md\:gap-y-64 { + row-gap: 16rem !important; + } + + .md\:gap-y-72 { + row-gap: 18rem !important; + } + + .md\:gap-y-80 { + row-gap: 20rem !important; + } + + .md\:gap-y-96 { + row-gap: 24rem !important; + } + + .md\:gap-y-px { + row-gap: 1px !important; + } + + .md\:gap-y-0\.5 { + row-gap: 0.125rem !important; + } + + .md\:gap-y-1\.5 { + row-gap: 0.375rem !important; + } + + .md\:gap-y-2\.5 { + row-gap: 0.625rem !important; + } + + .md\:gap-y-3\.5 { + row-gap: 0.875rem !important; + } + + .md\:grid-flow-row { + grid-auto-flow: row !important; + } + + .md\:grid-flow-col { + grid-auto-flow: column !important; + } + + .md\:grid-flow-row-dense { + grid-auto-flow: row dense !important; + } + + .md\:grid-flow-col-dense { + grid-auto-flow: column dense !important; + } + + .md\:grid-cols-1 { + grid-template-columns: repeat(1, minmax(0, 1fr)) !important; + } + + .md\:grid-cols-2 { + grid-template-columns: repeat(2, minmax(0, 1fr)) !important; + } + + .md\:grid-cols-3 { + grid-template-columns: repeat(3, minmax(0, 1fr)) !important; + } + + .md\:grid-cols-4 { + grid-template-columns: repeat(4, minmax(0, 1fr)) !important; + } + + .md\:grid-cols-5 { + grid-template-columns: repeat(5, minmax(0, 1fr)) !important; + } + + .md\:grid-cols-6 { + grid-template-columns: repeat(6, minmax(0, 1fr)) !important; + } + + .md\:grid-cols-7 { + grid-template-columns: repeat(7, minmax(0, 1fr)) !important; + } + + .md\:grid-cols-8 { + grid-template-columns: repeat(8, minmax(0, 1fr)) !important; + } + + .md\:grid-cols-9 { + grid-template-columns: repeat(9, minmax(0, 1fr)) !important; + } + + .md\:grid-cols-10 { + grid-template-columns: repeat(10, minmax(0, 1fr)) !important; + } + + .md\:grid-cols-11 { + grid-template-columns: repeat(11, minmax(0, 1fr)) !important; + } + + .md\:grid-cols-12 { + grid-template-columns: repeat(12, minmax(0, 1fr)) !important; + } + + .md\:grid-cols-none { + grid-template-columns: none !important; + } + + .md\:auto-cols-auto { + grid-auto-columns: auto !important; + } + + .md\:auto-cols-min { + grid-auto-columns: -webkit-min-content !important; + grid-auto-columns: min-content !important; + } + + .md\:auto-cols-max { + grid-auto-columns: -webkit-max-content !important; + grid-auto-columns: max-content !important; + } + + .md\:auto-cols-fr { + grid-auto-columns: minmax(0, 1fr) !important; + } + + .md\:col-auto { + grid-column: auto !important; + } + + .md\:col-span-1 { + grid-column: span 1 / span 1 !important; + } + + .md\:col-span-2 { + grid-column: span 2 / span 2 !important; + } + + .md\:col-span-3 { + grid-column: span 3 / span 3 !important; + } + + .md\:col-span-4 { + grid-column: span 4 / span 4 !important; + } + + .md\:col-span-5 { + grid-column: span 5 / span 5 !important; + } + + .md\:col-span-6 { + grid-column: span 6 / span 6 !important; + } + + .md\:col-span-7 { + grid-column: span 7 / span 7 !important; + } + + .md\:col-span-8 { + grid-column: span 8 / span 8 !important; + } + + .md\:col-span-9 { + grid-column: span 9 / span 9 !important; + } + + .md\:col-span-10 { + grid-column: span 10 / span 10 !important; + } + + .md\:col-span-11 { + grid-column: span 11 / span 11 !important; + } + + .md\:col-span-12 { + grid-column: span 12 / span 12 !important; + } + + .md\:col-span-full { + grid-column: 1 / -1 !important; + } + + .md\:col-start-1 { + grid-column-start: 1 !important; + } + + .md\:col-start-2 { + grid-column-start: 2 !important; + } + + .md\:col-start-3 { + grid-column-start: 3 !important; + } + + .md\:col-start-4 { + grid-column-start: 4 !important; + } + + .md\:col-start-5 { + grid-column-start: 5 !important; + } + + .md\:col-start-6 { + grid-column-start: 6 !important; + } + + .md\:col-start-7 { + grid-column-start: 7 !important; + } + + .md\:col-start-8 { + grid-column-start: 8 !important; + } + + .md\:col-start-9 { + grid-column-start: 9 !important; + } + + .md\:col-start-10 { + grid-column-start: 10 !important; + } + + .md\:col-start-11 { + grid-column-start: 11 !important; + } + + .md\:col-start-12 { + grid-column-start: 12 !important; + } + + .md\:col-start-13 { + grid-column-start: 13 !important; + } + + .md\:col-start-auto { + grid-column-start: auto !important; + } + + .md\:col-end-1 { + grid-column-end: 1 !important; + } + + .md\:col-end-2 { + grid-column-end: 2 !important; + } + + .md\:col-end-3 { + grid-column-end: 3 !important; + } + + .md\:col-end-4 { + grid-column-end: 4 !important; + } + + .md\:col-end-5 { + grid-column-end: 5 !important; + } + + .md\:col-end-6 { + grid-column-end: 6 !important; + } + + .md\:col-end-7 { + grid-column-end: 7 !important; + } + + .md\:col-end-8 { + grid-column-end: 8 !important; + } + + .md\:col-end-9 { + grid-column-end: 9 !important; + } + + .md\:col-end-10 { + grid-column-end: 10 !important; + } + + .md\:col-end-11 { + grid-column-end: 11 !important; + } + + .md\:col-end-12 { + grid-column-end: 12 !important; + } + + .md\:col-end-13 { + grid-column-end: 13 !important; + } + + .md\:col-end-auto { + grid-column-end: auto !important; + } + + .md\:grid-rows-1 { + grid-template-rows: repeat(1, minmax(0, 1fr)) !important; + } + + .md\:grid-rows-2 { + grid-template-rows: repeat(2, minmax(0, 1fr)) !important; + } + + .md\:grid-rows-3 { + grid-template-rows: repeat(3, minmax(0, 1fr)) !important; + } + + .md\:grid-rows-4 { + grid-template-rows: repeat(4, minmax(0, 1fr)) !important; + } + + .md\:grid-rows-5 { + grid-template-rows: repeat(5, minmax(0, 1fr)) !important; + } + + .md\:grid-rows-6 { + grid-template-rows: repeat(6, minmax(0, 1fr)) !important; + } + + .md\:grid-rows-none { + grid-template-rows: none !important; + } + + .md\:auto-rows-auto { + grid-auto-rows: auto !important; + } + + .md\:auto-rows-min { + grid-auto-rows: -webkit-min-content !important; + grid-auto-rows: min-content !important; + } + + .md\:auto-rows-max { + grid-auto-rows: -webkit-max-content !important; + grid-auto-rows: max-content !important; + } + + .md\:auto-rows-fr { + grid-auto-rows: minmax(0, 1fr) !important; + } + + .md\:row-auto { + grid-row: auto !important; + } + + .md\:row-span-1 { + grid-row: span 1 / span 1 !important; + } + + .md\:row-span-2 { + grid-row: span 2 / span 2 !important; + } + + .md\:row-span-3 { + grid-row: span 3 / span 3 !important; + } + + .md\:row-span-4 { + grid-row: span 4 / span 4 !important; + } + + .md\:row-span-5 { + grid-row: span 5 / span 5 !important; + } + + .md\:row-span-6 { + grid-row: span 6 / span 6 !important; + } + + .md\:row-span-full { + grid-row: 1 / -1 !important; + } + + .md\:row-start-1 { + grid-row-start: 1 !important; + } + + .md\:row-start-2 { + grid-row-start: 2 !important; + } + + .md\:row-start-3 { + grid-row-start: 3 !important; + } + + .md\:row-start-4 { + grid-row-start: 4 !important; + } + + .md\:row-start-5 { + grid-row-start: 5 !important; + } + + .md\:row-start-6 { + grid-row-start: 6 !important; + } + + .md\:row-start-7 { + grid-row-start: 7 !important; + } + + .md\:row-start-auto { + grid-row-start: auto !important; + } + + .md\:row-end-1 { + grid-row-end: 1 !important; + } + + .md\:row-end-2 { + grid-row-end: 2 !important; + } + + .md\:row-end-3 { + grid-row-end: 3 !important; + } + + .md\:row-end-4 { + grid-row-end: 4 !important; + } + + .md\:row-end-5 { + grid-row-end: 5 !important; + } + + .md\:row-end-6 { + grid-row-end: 6 !important; + } + + .md\:row-end-7 { + grid-row-end: 7 !important; + } + + .md\:row-end-auto { + grid-row-end: auto !important; + } + + .md\:transform { + --tw-translate-x: 0 !important; + --tw-translate-y: 0 !important; + --tw-rotate: 0 !important; + --tw-skew-x: 0 !important; + --tw-skew-y: 0 !important; + --tw-scale-x: 1 !important; + --tw-scale-y: 1 !important; + 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)) !important; + } + + .md\:transform-gpu { + --tw-translate-x: 0 !important; + --tw-translate-y: 0 !important; + --tw-rotate: 0 !important; + --tw-skew-x: 0 !important; + --tw-skew-y: 0 !important; + --tw-scale-x: 1 !important; + --tw-scale-y: 1 !important; + transform: translate3d(var(--tw-translate-x), var(--tw-translate-y), 0) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)) !important; + } + + .md\:transform-none { + transform: none !important; + } + + .md\:origin-center { + transform-origin: center !important; + } + + .md\:origin-top { + transform-origin: top !important; + } + + .md\:origin-top-right { + transform-origin: top right !important; + } + + .md\:origin-right { + transform-origin: right !important; + } + + .md\:origin-bottom-right { + transform-origin: bottom right !important; + } + + .md\:origin-bottom { + transform-origin: bottom !important; + } + + .md\:origin-bottom-left { + transform-origin: bottom left !important; + } + + .md\:origin-left { + transform-origin: left !important; + } + + .md\:origin-top-left { + transform-origin: top left !important; + } + + .md\:scale-0 { + --tw-scale-x: 0 !important; + --tw-scale-y: 0 !important; + } + + .md\:scale-50 { + --tw-scale-x: .5 !important; + --tw-scale-y: .5 !important; + } + + .md\:scale-75 { + --tw-scale-x: .75 !important; + --tw-scale-y: .75 !important; + } + + .md\:scale-90 { + --tw-scale-x: .9 !important; + --tw-scale-y: .9 !important; + } + + .md\:scale-95 { + --tw-scale-x: .95 !important; + --tw-scale-y: .95 !important; + } + + .md\:scale-100 { + --tw-scale-x: 1 !important; + --tw-scale-y: 1 !important; + } + + .md\:scale-105 { + --tw-scale-x: 1.05 !important; + --tw-scale-y: 1.05 !important; + } + + .md\:scale-110 { + --tw-scale-x: 1.1 !important; + --tw-scale-y: 1.1 !important; + } + + .md\:scale-125 { + --tw-scale-x: 1.25 !important; + --tw-scale-y: 1.25 !important; + } + + .md\:scale-150 { + --tw-scale-x: 1.5 !important; + --tw-scale-y: 1.5 !important; + } + + .md\:scale-x-0 { + --tw-scale-x: 0 !important; + } + + .md\:scale-x-50 { + --tw-scale-x: .5 !important; + } + + .md\:scale-x-75 { + --tw-scale-x: .75 !important; + } + + .md\:scale-x-90 { + --tw-scale-x: .9 !important; + } + + .md\:scale-x-95 { + --tw-scale-x: .95 !important; + } + + .md\:scale-x-100 { + --tw-scale-x: 1 !important; + } + + .md\:scale-x-105 { + --tw-scale-x: 1.05 !important; + } + + .md\:scale-x-110 { + --tw-scale-x: 1.1 !important; + } + + .md\:scale-x-125 { + --tw-scale-x: 1.25 !important; + } + + .md\:scale-x-150 { + --tw-scale-x: 1.5 !important; + } + + .md\:scale-y-0 { + --tw-scale-y: 0 !important; + } + + .md\:scale-y-50 { + --tw-scale-y: .5 !important; + } + + .md\:scale-y-75 { + --tw-scale-y: .75 !important; + } + + .md\:scale-y-90 { + --tw-scale-y: .9 !important; + } + + .md\:scale-y-95 { + --tw-scale-y: .95 !important; + } + + .md\:scale-y-100 { + --tw-scale-y: 1 !important; + } + + .md\:scale-y-105 { + --tw-scale-y: 1.05 !important; + } + + .md\:scale-y-110 { + --tw-scale-y: 1.1 !important; + } + + .md\:scale-y-125 { + --tw-scale-y: 1.25 !important; + } + + .md\:scale-y-150 { + --tw-scale-y: 1.5 !important; + } + + .md\:hover\:scale-0:hover { + --tw-scale-x: 0 !important; + --tw-scale-y: 0 !important; + } + + .md\:hover\:scale-50:hover { + --tw-scale-x: .5 !important; + --tw-scale-y: .5 !important; + } + + .md\:hover\:scale-75:hover { + --tw-scale-x: .75 !important; + --tw-scale-y: .75 !important; + } + + .md\:hover\:scale-90:hover { + --tw-scale-x: .9 !important; + --tw-scale-y: .9 !important; + } + + .md\:hover\:scale-95:hover { + --tw-scale-x: .95 !important; + --tw-scale-y: .95 !important; + } + + .md\:hover\:scale-100:hover { + --tw-scale-x: 1 !important; + --tw-scale-y: 1 !important; + } + + .md\:hover\:scale-105:hover { + --tw-scale-x: 1.05 !important; + --tw-scale-y: 1.05 !important; + } + + .md\:hover\:scale-110:hover { + --tw-scale-x: 1.1 !important; + --tw-scale-y: 1.1 !important; + } + + .md\:hover\:scale-125:hover { + --tw-scale-x: 1.25 !important; + --tw-scale-y: 1.25 !important; + } + + .md\:hover\:scale-150:hover { + --tw-scale-x: 1.5 !important; + --tw-scale-y: 1.5 !important; + } + + .md\:hover\:scale-x-0:hover { + --tw-scale-x: 0 !important; + } + + .md\:hover\:scale-x-50:hover { + --tw-scale-x: .5 !important; + } + + .md\:hover\:scale-x-75:hover { + --tw-scale-x: .75 !important; + } + + .md\:hover\:scale-x-90:hover { + --tw-scale-x: .9 !important; + } + + .md\:hover\:scale-x-95:hover { + --tw-scale-x: .95 !important; + } + + .md\:hover\:scale-x-100:hover { + --tw-scale-x: 1 !important; + } + + .md\:hover\:scale-x-105:hover { + --tw-scale-x: 1.05 !important; + } + + .md\:hover\:scale-x-110:hover { + --tw-scale-x: 1.1 !important; + } + + .md\:hover\:scale-x-125:hover { + --tw-scale-x: 1.25 !important; + } + + .md\:hover\:scale-x-150:hover { + --tw-scale-x: 1.5 !important; + } + + .md\:hover\:scale-y-0:hover { + --tw-scale-y: 0 !important; + } + + .md\:hover\:scale-y-50:hover { + --tw-scale-y: .5 !important; + } + + .md\:hover\:scale-y-75:hover { + --tw-scale-y: .75 !important; + } + + .md\:hover\:scale-y-90:hover { + --tw-scale-y: .9 !important; + } + + .md\:hover\:scale-y-95:hover { + --tw-scale-y: .95 !important; + } + + .md\:hover\:scale-y-100:hover { + --tw-scale-y: 1 !important; + } + + .md\:hover\:scale-y-105:hover { + --tw-scale-y: 1.05 !important; + } + + .md\:hover\:scale-y-110:hover { + --tw-scale-y: 1.1 !important; + } + + .md\:hover\:scale-y-125:hover { + --tw-scale-y: 1.25 !important; + } + + .md\:hover\:scale-y-150:hover { + --tw-scale-y: 1.5 !important; + } + + .md\:focus\:scale-0:focus { + --tw-scale-x: 0 !important; + --tw-scale-y: 0 !important; + } + + .md\:focus\:scale-50:focus { + --tw-scale-x: .5 !important; + --tw-scale-y: .5 !important; + } + + .md\:focus\:scale-75:focus { + --tw-scale-x: .75 !important; + --tw-scale-y: .75 !important; + } + + .md\:focus\:scale-90:focus { + --tw-scale-x: .9 !important; + --tw-scale-y: .9 !important; + } + + .md\:focus\:scale-95:focus { + --tw-scale-x: .95 !important; + --tw-scale-y: .95 !important; + } + + .md\:focus\:scale-100:focus { + --tw-scale-x: 1 !important; + --tw-scale-y: 1 !important; + } + + .md\:focus\:scale-105:focus { + --tw-scale-x: 1.05 !important; + --tw-scale-y: 1.05 !important; + } + + .md\:focus\:scale-110:focus { + --tw-scale-x: 1.1 !important; + --tw-scale-y: 1.1 !important; + } + + .md\:focus\:scale-125:focus { + --tw-scale-x: 1.25 !important; + --tw-scale-y: 1.25 !important; + } + + .md\:focus\:scale-150:focus { + --tw-scale-x: 1.5 !important; + --tw-scale-y: 1.5 !important; + } + + .md\:focus\:scale-x-0:focus { + --tw-scale-x: 0 !important; + } + + .md\:focus\:scale-x-50:focus { + --tw-scale-x: .5 !important; + } + + .md\:focus\:scale-x-75:focus { + --tw-scale-x: .75 !important; + } + + .md\:focus\:scale-x-90:focus { + --tw-scale-x: .9 !important; + } + + .md\:focus\:scale-x-95:focus { + --tw-scale-x: .95 !important; + } + + .md\:focus\:scale-x-100:focus { + --tw-scale-x: 1 !important; + } + + .md\:focus\:scale-x-105:focus { + --tw-scale-x: 1.05 !important; + } + + .md\:focus\:scale-x-110:focus { + --tw-scale-x: 1.1 !important; + } + + .md\:focus\:scale-x-125:focus { + --tw-scale-x: 1.25 !important; + } + + .md\:focus\:scale-x-150:focus { + --tw-scale-x: 1.5 !important; + } + + .md\:focus\:scale-y-0:focus { + --tw-scale-y: 0 !important; + } + + .md\:focus\:scale-y-50:focus { + --tw-scale-y: .5 !important; + } + + .md\:focus\:scale-y-75:focus { + --tw-scale-y: .75 !important; + } + + .md\:focus\:scale-y-90:focus { + --tw-scale-y: .9 !important; + } + + .md\:focus\:scale-y-95:focus { + --tw-scale-y: .95 !important; + } + + .md\:focus\:scale-y-100:focus { + --tw-scale-y: 1 !important; + } + + .md\:focus\:scale-y-105:focus { + --tw-scale-y: 1.05 !important; + } + + .md\:focus\:scale-y-110:focus { + --tw-scale-y: 1.1 !important; + } + + .md\:focus\:scale-y-125:focus { + --tw-scale-y: 1.25 !important; + } + + .md\:focus\:scale-y-150:focus { + --tw-scale-y: 1.5 !important; + } + + .md\:rotate-0 { + --tw-rotate: 0deg !important; + } + + .md\:rotate-1 { + --tw-rotate: 1deg !important; + } + + .md\:rotate-2 { + --tw-rotate: 2deg !important; + } + + .md\:rotate-3 { + --tw-rotate: 3deg !important; + } + + .md\:rotate-6 { + --tw-rotate: 6deg !important; + } + + .md\:rotate-12 { + --tw-rotate: 12deg !important; + } + + .md\:rotate-45 { + --tw-rotate: 45deg !important; + } + + .md\:rotate-90 { + --tw-rotate: 90deg !important; + } + + .md\:rotate-180 { + --tw-rotate: 180deg !important; + } + + .md\:-rotate-180 { + --tw-rotate: -180deg !important; + } + + .md\:-rotate-90 { + --tw-rotate: -90deg !important; + } + + .md\:-rotate-45 { + --tw-rotate: -45deg !important; + } + + .md\:-rotate-12 { + --tw-rotate: -12deg !important; + } + + .md\:-rotate-6 { + --tw-rotate: -6deg !important; + } + + .md\:-rotate-3 { + --tw-rotate: -3deg !important; + } + + .md\:-rotate-2 { + --tw-rotate: -2deg !important; + } + + .md\:-rotate-1 { + --tw-rotate: -1deg !important; + } + + .md\:hover\:rotate-0:hover { + --tw-rotate: 0deg !important; + } + + .md\:hover\:rotate-1:hover { + --tw-rotate: 1deg !important; + } + + .md\:hover\:rotate-2:hover { + --tw-rotate: 2deg !important; + } + + .md\:hover\:rotate-3:hover { + --tw-rotate: 3deg !important; + } + + .md\:hover\:rotate-6:hover { + --tw-rotate: 6deg !important; + } + + .md\:hover\:rotate-12:hover { + --tw-rotate: 12deg !important; + } + + .md\:hover\:rotate-45:hover { + --tw-rotate: 45deg !important; + } + + .md\:hover\:rotate-90:hover { + --tw-rotate: 90deg !important; + } + + .md\:hover\:rotate-180:hover { + --tw-rotate: 180deg !important; + } + + .md\:hover\:-rotate-180:hover { + --tw-rotate: -180deg !important; + } + + .md\:hover\:-rotate-90:hover { + --tw-rotate: -90deg !important; + } + + .md\:hover\:-rotate-45:hover { + --tw-rotate: -45deg !important; + } + + .md\:hover\:-rotate-12:hover { + --tw-rotate: -12deg !important; + } + + .md\:hover\:-rotate-6:hover { + --tw-rotate: -6deg !important; + } + + .md\:hover\:-rotate-3:hover { + --tw-rotate: -3deg !important; + } + + .md\:hover\:-rotate-2:hover { + --tw-rotate: -2deg !important; + } + + .md\:hover\:-rotate-1:hover { + --tw-rotate: -1deg !important; + } + + .md\:focus\:rotate-0:focus { + --tw-rotate: 0deg !important; + } + + .md\:focus\:rotate-1:focus { + --tw-rotate: 1deg !important; + } + + .md\:focus\:rotate-2:focus { + --tw-rotate: 2deg !important; + } + + .md\:focus\:rotate-3:focus { + --tw-rotate: 3deg !important; + } + + .md\:focus\:rotate-6:focus { + --tw-rotate: 6deg !important; + } + + .md\:focus\:rotate-12:focus { + --tw-rotate: 12deg !important; + } + + .md\:focus\:rotate-45:focus { + --tw-rotate: 45deg !important; + } + + .md\:focus\:rotate-90:focus { + --tw-rotate: 90deg !important; + } + + .md\:focus\:rotate-180:focus { + --tw-rotate: 180deg !important; + } + + .md\:focus\:-rotate-180:focus { + --tw-rotate: -180deg !important; + } + + .md\:focus\:-rotate-90:focus { + --tw-rotate: -90deg !important; + } + + .md\:focus\:-rotate-45:focus { + --tw-rotate: -45deg !important; + } + + .md\:focus\:-rotate-12:focus { + --tw-rotate: -12deg !important; + } + + .md\:focus\:-rotate-6:focus { + --tw-rotate: -6deg !important; + } + + .md\:focus\:-rotate-3:focus { + --tw-rotate: -3deg !important; + } + + .md\:focus\:-rotate-2:focus { + --tw-rotate: -2deg !important; + } + + .md\:focus\:-rotate-1:focus { + --tw-rotate: -1deg !important; + } + + .md\:translate-x-0 { + --tw-translate-x: 0px !important; + } + + .md\:translate-x-1 { + --tw-translate-x: 0.25rem !important; + } + + .md\:translate-x-2 { + --tw-translate-x: 0.5rem !important; + } + + .md\:translate-x-3 { + --tw-translate-x: 0.75rem !important; + } + + .md\:translate-x-4 { + --tw-translate-x: 1rem !important; + } + + .md\:translate-x-5 { + --tw-translate-x: 1.25rem !important; + } + + .md\:translate-x-6 { + --tw-translate-x: 1.5rem !important; + } + + .md\:translate-x-7 { + --tw-translate-x: 1.75rem !important; + } + + .md\:translate-x-8 { + --tw-translate-x: 2rem !important; + } + + .md\:translate-x-9 { + --tw-translate-x: 2.25rem !important; + } + + .md\:translate-x-10 { + --tw-translate-x: 2.5rem !important; + } + + .md\:translate-x-11 { + --tw-translate-x: 2.75rem !important; + } + + .md\:translate-x-12 { + --tw-translate-x: 3rem !important; + } + + .md\:translate-x-14 { + --tw-translate-x: 3.5rem !important; + } + + .md\:translate-x-16 { + --tw-translate-x: 4rem !important; + } + + .md\:translate-x-20 { + --tw-translate-x: 5rem !important; + } + + .md\:translate-x-24 { + --tw-translate-x: 6rem !important; + } + + .md\:translate-x-28 { + --tw-translate-x: 7rem !important; + } + + .md\:translate-x-32 { + --tw-translate-x: 8rem !important; + } + + .md\:translate-x-36 { + --tw-translate-x: 9rem !important; + } + + .md\:translate-x-40 { + --tw-translate-x: 10rem !important; + } + + .md\:translate-x-44 { + --tw-translate-x: 11rem !important; + } + + .md\:translate-x-48 { + --tw-translate-x: 12rem !important; + } + + .md\:translate-x-52 { + --tw-translate-x: 13rem !important; + } + + .md\:translate-x-56 { + --tw-translate-x: 14rem !important; + } + + .md\:translate-x-60 { + --tw-translate-x: 15rem !important; + } + + .md\:translate-x-64 { + --tw-translate-x: 16rem !important; + } + + .md\:translate-x-72 { + --tw-translate-x: 18rem !important; + } + + .md\:translate-x-80 { + --tw-translate-x: 20rem !important; + } + + .md\:translate-x-96 { + --tw-translate-x: 24rem !important; + } + + .md\:translate-x-px { + --tw-translate-x: 1px !important; + } + + .md\:translate-x-0\.5 { + --tw-translate-x: 0.125rem !important; + } + + .md\:translate-x-1\.5 { + --tw-translate-x: 0.375rem !important; + } + + .md\:translate-x-2\.5 { + --tw-translate-x: 0.625rem !important; + } + + .md\:translate-x-3\.5 { + --tw-translate-x: 0.875rem !important; + } + + .md\:-translate-x-0 { + --tw-translate-x: 0px !important; + } + + .md\:-translate-x-1 { + --tw-translate-x: -0.25rem !important; + } + + .md\:-translate-x-2 { + --tw-translate-x: -0.5rem !important; + } + + .md\:-translate-x-3 { + --tw-translate-x: -0.75rem !important; + } + + .md\:-translate-x-4 { + --tw-translate-x: -1rem !important; + } + + .md\:-translate-x-5 { + --tw-translate-x: -1.25rem !important; + } + + .md\:-translate-x-6 { + --tw-translate-x: -1.5rem !important; + } + + .md\:-translate-x-7 { + --tw-translate-x: -1.75rem !important; + } + + .md\:-translate-x-8 { + --tw-translate-x: -2rem !important; + } + + .md\:-translate-x-9 { + --tw-translate-x: -2.25rem !important; + } + + .md\:-translate-x-10 { + --tw-translate-x: -2.5rem !important; + } + + .md\:-translate-x-11 { + --tw-translate-x: -2.75rem !important; + } + + .md\:-translate-x-12 { + --tw-translate-x: -3rem !important; + } + + .md\:-translate-x-14 { + --tw-translate-x: -3.5rem !important; + } + + .md\:-translate-x-16 { + --tw-translate-x: -4rem !important; + } + + .md\:-translate-x-20 { + --tw-translate-x: -5rem !important; + } + + .md\:-translate-x-24 { + --tw-translate-x: -6rem !important; + } + + .md\:-translate-x-28 { + --tw-translate-x: -7rem !important; + } + + .md\:-translate-x-32 { + --tw-translate-x: -8rem !important; + } + + .md\:-translate-x-36 { + --tw-translate-x: -9rem !important; + } + + .md\:-translate-x-40 { + --tw-translate-x: -10rem !important; + } + + .md\:-translate-x-44 { + --tw-translate-x: -11rem !important; + } + + .md\:-translate-x-48 { + --tw-translate-x: -12rem !important; + } + + .md\:-translate-x-52 { + --tw-translate-x: -13rem !important; + } + + .md\:-translate-x-56 { + --tw-translate-x: -14rem !important; + } + + .md\:-translate-x-60 { + --tw-translate-x: -15rem !important; + } + + .md\:-translate-x-64 { + --tw-translate-x: -16rem !important; + } + + .md\:-translate-x-72 { + --tw-translate-x: -18rem !important; + } + + .md\:-translate-x-80 { + --tw-translate-x: -20rem !important; + } + + .md\:-translate-x-96 { + --tw-translate-x: -24rem !important; + } + + .md\:-translate-x-px { + --tw-translate-x: -1px !important; + } + + .md\:-translate-x-0\.5 { + --tw-translate-x: -0.125rem !important; + } + + .md\:-translate-x-1\.5 { + --tw-translate-x: -0.375rem !important; + } + + .md\:-translate-x-2\.5 { + --tw-translate-x: -0.625rem !important; + } + + .md\:-translate-x-3\.5 { + --tw-translate-x: -0.875rem !important; + } + + .md\:translate-x-1\/2 { + --tw-translate-x: 50% !important; + } + + .md\:translate-x-1\/3 { + --tw-translate-x: 33.333333% !important; + } + + .md\:translate-x-2\/3 { + --tw-translate-x: 66.666667% !important; + } + + .md\:translate-x-1\/4 { + --tw-translate-x: 25% !important; + } + + .md\:translate-x-2\/4 { + --tw-translate-x: 50% !important; + } + + .md\:translate-x-3\/4 { + --tw-translate-x: 75% !important; + } + + .md\:translate-x-full { + --tw-translate-x: 100% !important; + } + + .md\:-translate-x-1\/2 { + --tw-translate-x: -50% !important; + } + + .md\:-translate-x-1\/3 { + --tw-translate-x: -33.333333% !important; + } + + .md\:-translate-x-2\/3 { + --tw-translate-x: -66.666667% !important; + } + + .md\:-translate-x-1\/4 { + --tw-translate-x: -25% !important; + } + + .md\:-translate-x-2\/4 { + --tw-translate-x: -50% !important; + } + + .md\:-translate-x-3\/4 { + --tw-translate-x: -75% !important; + } + + .md\:-translate-x-full { + --tw-translate-x: -100% !important; + } + + .md\:translate-y-0 { + --tw-translate-y: 0px !important; + } + + .md\:translate-y-1 { + --tw-translate-y: 0.25rem !important; + } + + .md\:translate-y-2 { + --tw-translate-y: 0.5rem !important; + } + + .md\:translate-y-3 { + --tw-translate-y: 0.75rem !important; + } + + .md\:translate-y-4 { + --tw-translate-y: 1rem !important; + } + + .md\:translate-y-5 { + --tw-translate-y: 1.25rem !important; + } + + .md\:translate-y-6 { + --tw-translate-y: 1.5rem !important; + } + + .md\:translate-y-7 { + --tw-translate-y: 1.75rem !important; + } + + .md\:translate-y-8 { + --tw-translate-y: 2rem !important; + } + + .md\:translate-y-9 { + --tw-translate-y: 2.25rem !important; + } + + .md\:translate-y-10 { + --tw-translate-y: 2.5rem !important; + } + + .md\:translate-y-11 { + --tw-translate-y: 2.75rem !important; + } + + .md\:translate-y-12 { + --tw-translate-y: 3rem !important; + } + + .md\:translate-y-14 { + --tw-translate-y: 3.5rem !important; + } + + .md\:translate-y-16 { + --tw-translate-y: 4rem !important; + } + + .md\:translate-y-20 { + --tw-translate-y: 5rem !important; + } + + .md\:translate-y-24 { + --tw-translate-y: 6rem !important; + } + + .md\:translate-y-28 { + --tw-translate-y: 7rem !important; + } + + .md\:translate-y-32 { + --tw-translate-y: 8rem !important; + } + + .md\:translate-y-36 { + --tw-translate-y: 9rem !important; + } + + .md\:translate-y-40 { + --tw-translate-y: 10rem !important; + } + + .md\:translate-y-44 { + --tw-translate-y: 11rem !important; + } + + .md\:translate-y-48 { + --tw-translate-y: 12rem !important; + } + + .md\:translate-y-52 { + --tw-translate-y: 13rem !important; + } + + .md\:translate-y-56 { + --tw-translate-y: 14rem !important; + } + + .md\:translate-y-60 { + --tw-translate-y: 15rem !important; + } + + .md\:translate-y-64 { + --tw-translate-y: 16rem !important; + } + + .md\:translate-y-72 { + --tw-translate-y: 18rem !important; + } + + .md\:translate-y-80 { + --tw-translate-y: 20rem !important; + } + + .md\:translate-y-96 { + --tw-translate-y: 24rem !important; + } + + .md\:translate-y-px { + --tw-translate-y: 1px !important; + } + + .md\:translate-y-0\.5 { + --tw-translate-y: 0.125rem !important; + } + + .md\:translate-y-1\.5 { + --tw-translate-y: 0.375rem !important; + } + + .md\:translate-y-2\.5 { + --tw-translate-y: 0.625rem !important; + } + + .md\:translate-y-3\.5 { + --tw-translate-y: 0.875rem !important; + } + + .md\:-translate-y-0 { + --tw-translate-y: 0px !important; + } + + .md\:-translate-y-1 { + --tw-translate-y: -0.25rem !important; + } + + .md\:-translate-y-2 { + --tw-translate-y: -0.5rem !important; + } + + .md\:-translate-y-3 { + --tw-translate-y: -0.75rem !important; + } + + .md\:-translate-y-4 { + --tw-translate-y: -1rem !important; + } + + .md\:-translate-y-5 { + --tw-translate-y: -1.25rem !important; + } + + .md\:-translate-y-6 { + --tw-translate-y: -1.5rem !important; + } + + .md\:-translate-y-7 { + --tw-translate-y: -1.75rem !important; + } + + .md\:-translate-y-8 { + --tw-translate-y: -2rem !important; + } + + .md\:-translate-y-9 { + --tw-translate-y: -2.25rem !important; + } + + .md\:-translate-y-10 { + --tw-translate-y: -2.5rem !important; + } + + .md\:-translate-y-11 { + --tw-translate-y: -2.75rem !important; + } + + .md\:-translate-y-12 { + --tw-translate-y: -3rem !important; + } + + .md\:-translate-y-14 { + --tw-translate-y: -3.5rem !important; + } + + .md\:-translate-y-16 { + --tw-translate-y: -4rem !important; + } + + .md\:-translate-y-20 { + --tw-translate-y: -5rem !important; + } + + .md\:-translate-y-24 { + --tw-translate-y: -6rem !important; + } + + .md\:-translate-y-28 { + --tw-translate-y: -7rem !important; + } + + .md\:-translate-y-32 { + --tw-translate-y: -8rem !important; + } + + .md\:-translate-y-36 { + --tw-translate-y: -9rem !important; + } + + .md\:-translate-y-40 { + --tw-translate-y: -10rem !important; + } + + .md\:-translate-y-44 { + --tw-translate-y: -11rem !important; + } + + .md\:-translate-y-48 { + --tw-translate-y: -12rem !important; + } + + .md\:-translate-y-52 { + --tw-translate-y: -13rem !important; + } + + .md\:-translate-y-56 { + --tw-translate-y: -14rem !important; + } + + .md\:-translate-y-60 { + --tw-translate-y: -15rem !important; + } + + .md\:-translate-y-64 { + --tw-translate-y: -16rem !important; + } + + .md\:-translate-y-72 { + --tw-translate-y: -18rem !important; + } + + .md\:-translate-y-80 { + --tw-translate-y: -20rem !important; + } + + .md\:-translate-y-96 { + --tw-translate-y: -24rem !important; + } + + .md\:-translate-y-px { + --tw-translate-y: -1px !important; + } + + .md\:-translate-y-0\.5 { + --tw-translate-y: -0.125rem !important; + } + + .md\:-translate-y-1\.5 { + --tw-translate-y: -0.375rem !important; + } + + .md\:-translate-y-2\.5 { + --tw-translate-y: -0.625rem !important; + } + + .md\:-translate-y-3\.5 { + --tw-translate-y: -0.875rem !important; + } + + .md\:translate-y-1\/2 { + --tw-translate-y: 50% !important; + } + + .md\:translate-y-1\/3 { + --tw-translate-y: 33.333333% !important; + } + + .md\:translate-y-2\/3 { + --tw-translate-y: 66.666667% !important; + } + + .md\:translate-y-1\/4 { + --tw-translate-y: 25% !important; + } + + .md\:translate-y-2\/4 { + --tw-translate-y: 50% !important; + } + + .md\:translate-y-3\/4 { + --tw-translate-y: 75% !important; + } + + .md\:translate-y-full { + --tw-translate-y: 100% !important; + } + + .md\:-translate-y-1\/2 { + --tw-translate-y: -50% !important; + } + + .md\:-translate-y-1\/3 { + --tw-translate-y: -33.333333% !important; + } + + .md\:-translate-y-2\/3 { + --tw-translate-y: -66.666667% !important; + } + + .md\:-translate-y-1\/4 { + --tw-translate-y: -25% !important; + } + + .md\:-translate-y-2\/4 { + --tw-translate-y: -50% !important; + } + + .md\:-translate-y-3\/4 { + --tw-translate-y: -75% !important; + } + + .md\:-translate-y-full { + --tw-translate-y: -100% !important; + } + + .md\:hover\:translate-x-0:hover { + --tw-translate-x: 0px !important; + } + + .md\:hover\:translate-x-1:hover { + --tw-translate-x: 0.25rem !important; + } + + .md\:hover\:translate-x-2:hover { + --tw-translate-x: 0.5rem !important; + } + + .md\:hover\:translate-x-3:hover { + --tw-translate-x: 0.75rem !important; + } + + .md\:hover\:translate-x-4:hover { + --tw-translate-x: 1rem !important; + } + + .md\:hover\:translate-x-5:hover { + --tw-translate-x: 1.25rem !important; + } + + .md\:hover\:translate-x-6:hover { + --tw-translate-x: 1.5rem !important; + } + + .md\:hover\:translate-x-7:hover { + --tw-translate-x: 1.75rem !important; + } + + .md\:hover\:translate-x-8:hover { + --tw-translate-x: 2rem !important; + } + + .md\:hover\:translate-x-9:hover { + --tw-translate-x: 2.25rem !important; + } + + .md\:hover\:translate-x-10:hover { + --tw-translate-x: 2.5rem !important; + } + + .md\:hover\:translate-x-11:hover { + --tw-translate-x: 2.75rem !important; + } + + .md\:hover\:translate-x-12:hover { + --tw-translate-x: 3rem !important; + } + + .md\:hover\:translate-x-14:hover { + --tw-translate-x: 3.5rem !important; + } + + .md\:hover\:translate-x-16:hover { + --tw-translate-x: 4rem !important; + } + + .md\:hover\:translate-x-20:hover { + --tw-translate-x: 5rem !important; + } + + .md\:hover\:translate-x-24:hover { + --tw-translate-x: 6rem !important; + } + + .md\:hover\:translate-x-28:hover { + --tw-translate-x: 7rem !important; + } + + .md\:hover\:translate-x-32:hover { + --tw-translate-x: 8rem !important; + } + + .md\:hover\:translate-x-36:hover { + --tw-translate-x: 9rem !important; + } + + .md\:hover\:translate-x-40:hover { + --tw-translate-x: 10rem !important; + } + + .md\:hover\:translate-x-44:hover { + --tw-translate-x: 11rem !important; + } + + .md\:hover\:translate-x-48:hover { + --tw-translate-x: 12rem !important; + } + + .md\:hover\:translate-x-52:hover { + --tw-translate-x: 13rem !important; + } + + .md\:hover\:translate-x-56:hover { + --tw-translate-x: 14rem !important; + } + + .md\:hover\:translate-x-60:hover { + --tw-translate-x: 15rem !important; + } + + .md\:hover\:translate-x-64:hover { + --tw-translate-x: 16rem !important; + } + + .md\:hover\:translate-x-72:hover { + --tw-translate-x: 18rem !important; + } + + .md\:hover\:translate-x-80:hover { + --tw-translate-x: 20rem !important; + } + + .md\:hover\:translate-x-96:hover { + --tw-translate-x: 24rem !important; + } + + .md\:hover\:translate-x-px:hover { + --tw-translate-x: 1px !important; + } + + .md\:hover\:translate-x-0\.5:hover { + --tw-translate-x: 0.125rem !important; + } + + .md\:hover\:translate-x-1\.5:hover { + --tw-translate-x: 0.375rem !important; + } + + .md\:hover\:translate-x-2\.5:hover { + --tw-translate-x: 0.625rem !important; + } + + .md\:hover\:translate-x-3\.5:hover { + --tw-translate-x: 0.875rem !important; + } + + .md\:hover\:-translate-x-0:hover { + --tw-translate-x: 0px !important; + } + + .md\:hover\:-translate-x-1:hover { + --tw-translate-x: -0.25rem !important; + } + + .md\:hover\:-translate-x-2:hover { + --tw-translate-x: -0.5rem !important; + } + + .md\:hover\:-translate-x-3:hover { + --tw-translate-x: -0.75rem !important; + } + + .md\:hover\:-translate-x-4:hover { + --tw-translate-x: -1rem !important; + } + + .md\:hover\:-translate-x-5:hover { + --tw-translate-x: -1.25rem !important; + } + + .md\:hover\:-translate-x-6:hover { + --tw-translate-x: -1.5rem !important; + } + + .md\:hover\:-translate-x-7:hover { + --tw-translate-x: -1.75rem !important; + } + + .md\:hover\:-translate-x-8:hover { + --tw-translate-x: -2rem !important; + } + + .md\:hover\:-translate-x-9:hover { + --tw-translate-x: -2.25rem !important; + } + + .md\:hover\:-translate-x-10:hover { + --tw-translate-x: -2.5rem !important; + } + + .md\:hover\:-translate-x-11:hover { + --tw-translate-x: -2.75rem !important; + } + + .md\:hover\:-translate-x-12:hover { + --tw-translate-x: -3rem !important; + } + + .md\:hover\:-translate-x-14:hover { + --tw-translate-x: -3.5rem !important; + } + + .md\:hover\:-translate-x-16:hover { + --tw-translate-x: -4rem !important; + } + + .md\:hover\:-translate-x-20:hover { + --tw-translate-x: -5rem !important; + } + + .md\:hover\:-translate-x-24:hover { + --tw-translate-x: -6rem !important; + } + + .md\:hover\:-translate-x-28:hover { + --tw-translate-x: -7rem !important; + } + + .md\:hover\:-translate-x-32:hover { + --tw-translate-x: -8rem !important; + } + + .md\:hover\:-translate-x-36:hover { + --tw-translate-x: -9rem !important; + } + + .md\:hover\:-translate-x-40:hover { + --tw-translate-x: -10rem !important; + } + + .md\:hover\:-translate-x-44:hover { + --tw-translate-x: -11rem !important; + } + + .md\:hover\:-translate-x-48:hover { + --tw-translate-x: -12rem !important; + } + + .md\:hover\:-translate-x-52:hover { + --tw-translate-x: -13rem !important; + } + + .md\:hover\:-translate-x-56:hover { + --tw-translate-x: -14rem !important; + } + + .md\:hover\:-translate-x-60:hover { + --tw-translate-x: -15rem !important; + } + + .md\:hover\:-translate-x-64:hover { + --tw-translate-x: -16rem !important; + } + + .md\:hover\:-translate-x-72:hover { + --tw-translate-x: -18rem !important; + } + + .md\:hover\:-translate-x-80:hover { + --tw-translate-x: -20rem !important; + } + + .md\:hover\:-translate-x-96:hover { + --tw-translate-x: -24rem !important; + } + + .md\:hover\:-translate-x-px:hover { + --tw-translate-x: -1px !important; + } + + .md\:hover\:-translate-x-0\.5:hover { + --tw-translate-x: -0.125rem !important; + } + + .md\:hover\:-translate-x-1\.5:hover { + --tw-translate-x: -0.375rem !important; + } + + .md\:hover\:-translate-x-2\.5:hover { + --tw-translate-x: -0.625rem !important; + } + + .md\:hover\:-translate-x-3\.5:hover { + --tw-translate-x: -0.875rem !important; + } + + .md\:hover\:translate-x-1\/2:hover { + --tw-translate-x: 50% !important; + } + + .md\:hover\:translate-x-1\/3:hover { + --tw-translate-x: 33.333333% !important; + } + + .md\:hover\:translate-x-2\/3:hover { + --tw-translate-x: 66.666667% !important; + } + + .md\:hover\:translate-x-1\/4:hover { + --tw-translate-x: 25% !important; + } + + .md\:hover\:translate-x-2\/4:hover { + --tw-translate-x: 50% !important; + } + + .md\:hover\:translate-x-3\/4:hover { + --tw-translate-x: 75% !important; + } + + .md\:hover\:translate-x-full:hover { + --tw-translate-x: 100% !important; + } + + .md\:hover\:-translate-x-1\/2:hover { + --tw-translate-x: -50% !important; + } + + .md\:hover\:-translate-x-1\/3:hover { + --tw-translate-x: -33.333333% !important; + } + + .md\:hover\:-translate-x-2\/3:hover { + --tw-translate-x: -66.666667% !important; + } + + .md\:hover\:-translate-x-1\/4:hover { + --tw-translate-x: -25% !important; + } + + .md\:hover\:-translate-x-2\/4:hover { + --tw-translate-x: -50% !important; + } + + .md\:hover\:-translate-x-3\/4:hover { + --tw-translate-x: -75% !important; + } + + .md\:hover\:-translate-x-full:hover { + --tw-translate-x: -100% !important; + } + + .md\:hover\:translate-y-0:hover { + --tw-translate-y: 0px !important; + } + + .md\:hover\:translate-y-1:hover { + --tw-translate-y: 0.25rem !important; + } + + .md\:hover\:translate-y-2:hover { + --tw-translate-y: 0.5rem !important; + } + + .md\:hover\:translate-y-3:hover { + --tw-translate-y: 0.75rem !important; + } + + .md\:hover\:translate-y-4:hover { + --tw-translate-y: 1rem !important; + } + + .md\:hover\:translate-y-5:hover { + --tw-translate-y: 1.25rem !important; + } + + .md\:hover\:translate-y-6:hover { + --tw-translate-y: 1.5rem !important; + } + + .md\:hover\:translate-y-7:hover { + --tw-translate-y: 1.75rem !important; + } + + .md\:hover\:translate-y-8:hover { + --tw-translate-y: 2rem !important; + } + + .md\:hover\:translate-y-9:hover { + --tw-translate-y: 2.25rem !important; + } + + .md\:hover\:translate-y-10:hover { + --tw-translate-y: 2.5rem !important; + } + + .md\:hover\:translate-y-11:hover { + --tw-translate-y: 2.75rem !important; + } + + .md\:hover\:translate-y-12:hover { + --tw-translate-y: 3rem !important; + } + + .md\:hover\:translate-y-14:hover { + --tw-translate-y: 3.5rem !important; + } + + .md\:hover\:translate-y-16:hover { + --tw-translate-y: 4rem !important; + } + + .md\:hover\:translate-y-20:hover { + --tw-translate-y: 5rem !important; + } + + .md\:hover\:translate-y-24:hover { + --tw-translate-y: 6rem !important; + } + + .md\:hover\:translate-y-28:hover { + --tw-translate-y: 7rem !important; + } + + .md\:hover\:translate-y-32:hover { + --tw-translate-y: 8rem !important; + } + + .md\:hover\:translate-y-36:hover { + --tw-translate-y: 9rem !important; + } + + .md\:hover\:translate-y-40:hover { + --tw-translate-y: 10rem !important; + } + + .md\:hover\:translate-y-44:hover { + --tw-translate-y: 11rem !important; + } + + .md\:hover\:translate-y-48:hover { + --tw-translate-y: 12rem !important; + } + + .md\:hover\:translate-y-52:hover { + --tw-translate-y: 13rem !important; + } + + .md\:hover\:translate-y-56:hover { + --tw-translate-y: 14rem !important; + } + + .md\:hover\:translate-y-60:hover { + --tw-translate-y: 15rem !important; + } + + .md\:hover\:translate-y-64:hover { + --tw-translate-y: 16rem !important; + } + + .md\:hover\:translate-y-72:hover { + --tw-translate-y: 18rem !important; + } + + .md\:hover\:translate-y-80:hover { + --tw-translate-y: 20rem !important; + } + + .md\:hover\:translate-y-96:hover { + --tw-translate-y: 24rem !important; + } + + .md\:hover\:translate-y-px:hover { + --tw-translate-y: 1px !important; + } + + .md\:hover\:translate-y-0\.5:hover { + --tw-translate-y: 0.125rem !important; + } + + .md\:hover\:translate-y-1\.5:hover { + --tw-translate-y: 0.375rem !important; + } + + .md\:hover\:translate-y-2\.5:hover { + --tw-translate-y: 0.625rem !important; + } + + .md\:hover\:translate-y-3\.5:hover { + --tw-translate-y: 0.875rem !important; + } + + .md\:hover\:-translate-y-0:hover { + --tw-translate-y: 0px !important; + } + + .md\:hover\:-translate-y-1:hover { + --tw-translate-y: -0.25rem !important; + } + + .md\:hover\:-translate-y-2:hover { + --tw-translate-y: -0.5rem !important; + } + + .md\:hover\:-translate-y-3:hover { + --tw-translate-y: -0.75rem !important; + } + + .md\:hover\:-translate-y-4:hover { + --tw-translate-y: -1rem !important; + } + + .md\:hover\:-translate-y-5:hover { + --tw-translate-y: -1.25rem !important; + } + + .md\:hover\:-translate-y-6:hover { + --tw-translate-y: -1.5rem !important; + } + + .md\:hover\:-translate-y-7:hover { + --tw-translate-y: -1.75rem !important; + } + + .md\:hover\:-translate-y-8:hover { + --tw-translate-y: -2rem !important; + } + + .md\:hover\:-translate-y-9:hover { + --tw-translate-y: -2.25rem !important; + } + + .md\:hover\:-translate-y-10:hover { + --tw-translate-y: -2.5rem !important; + } + + .md\:hover\:-translate-y-11:hover { + --tw-translate-y: -2.75rem !important; + } + + .md\:hover\:-translate-y-12:hover { + --tw-translate-y: -3rem !important; + } + + .md\:hover\:-translate-y-14:hover { + --tw-translate-y: -3.5rem !important; + } + + .md\:hover\:-translate-y-16:hover { + --tw-translate-y: -4rem !important; + } + + .md\:hover\:-translate-y-20:hover { + --tw-translate-y: -5rem !important; + } + + .md\:hover\:-translate-y-24:hover { + --tw-translate-y: -6rem !important; + } + + .md\:hover\:-translate-y-28:hover { + --tw-translate-y: -7rem !important; + } + + .md\:hover\:-translate-y-32:hover { + --tw-translate-y: -8rem !important; + } + + .md\:hover\:-translate-y-36:hover { + --tw-translate-y: -9rem !important; + } + + .md\:hover\:-translate-y-40:hover { + --tw-translate-y: -10rem !important; + } + + .md\:hover\:-translate-y-44:hover { + --tw-translate-y: -11rem !important; + } + + .md\:hover\:-translate-y-48:hover { + --tw-translate-y: -12rem !important; + } + + .md\:hover\:-translate-y-52:hover { + --tw-translate-y: -13rem !important; + } + + .md\:hover\:-translate-y-56:hover { + --tw-translate-y: -14rem !important; + } + + .md\:hover\:-translate-y-60:hover { + --tw-translate-y: -15rem !important; + } + + .md\:hover\:-translate-y-64:hover { + --tw-translate-y: -16rem !important; + } + + .md\:hover\:-translate-y-72:hover { + --tw-translate-y: -18rem !important; + } + + .md\:hover\:-translate-y-80:hover { + --tw-translate-y: -20rem !important; + } + + .md\:hover\:-translate-y-96:hover { + --tw-translate-y: -24rem !important; + } + + .md\:hover\:-translate-y-px:hover { + --tw-translate-y: -1px !important; + } + + .md\:hover\:-translate-y-0\.5:hover { + --tw-translate-y: -0.125rem !important; + } + + .md\:hover\:-translate-y-1\.5:hover { + --tw-translate-y: -0.375rem !important; + } + + .md\:hover\:-translate-y-2\.5:hover { + --tw-translate-y: -0.625rem !important; + } + + .md\:hover\:-translate-y-3\.5:hover { + --tw-translate-y: -0.875rem !important; + } + + .md\:hover\:translate-y-1\/2:hover { + --tw-translate-y: 50% !important; + } + + .md\:hover\:translate-y-1\/3:hover { + --tw-translate-y: 33.333333% !important; + } + + .md\:hover\:translate-y-2\/3:hover { + --tw-translate-y: 66.666667% !important; + } + + .md\:hover\:translate-y-1\/4:hover { + --tw-translate-y: 25% !important; + } + + .md\:hover\:translate-y-2\/4:hover { + --tw-translate-y: 50% !important; + } + + .md\:hover\:translate-y-3\/4:hover { + --tw-translate-y: 75% !important; + } + + .md\:hover\:translate-y-full:hover { + --tw-translate-y: 100% !important; + } + + .md\:hover\:-translate-y-1\/2:hover { + --tw-translate-y: -50% !important; + } + + .md\:hover\:-translate-y-1\/3:hover { + --tw-translate-y: -33.333333% !important; + } + + .md\:hover\:-translate-y-2\/3:hover { + --tw-translate-y: -66.666667% !important; + } + + .md\:hover\:-translate-y-1\/4:hover { + --tw-translate-y: -25% !important; + } + + .md\:hover\:-translate-y-2\/4:hover { + --tw-translate-y: -50% !important; + } + + .md\:hover\:-translate-y-3\/4:hover { + --tw-translate-y: -75% !important; + } + + .md\:hover\:-translate-y-full:hover { + --tw-translate-y: -100% !important; + } + + .md\:focus\:translate-x-0:focus { + --tw-translate-x: 0px !important; + } + + .md\:focus\:translate-x-1:focus { + --tw-translate-x: 0.25rem !important; + } + + .md\:focus\:translate-x-2:focus { + --tw-translate-x: 0.5rem !important; + } + + .md\:focus\:translate-x-3:focus { + --tw-translate-x: 0.75rem !important; + } + + .md\:focus\:translate-x-4:focus { + --tw-translate-x: 1rem !important; + } + + .md\:focus\:translate-x-5:focus { + --tw-translate-x: 1.25rem !important; + } + + .md\:focus\:translate-x-6:focus { + --tw-translate-x: 1.5rem !important; + } + + .md\:focus\:translate-x-7:focus { + --tw-translate-x: 1.75rem !important; + } + + .md\:focus\:translate-x-8:focus { + --tw-translate-x: 2rem !important; + } + + .md\:focus\:translate-x-9:focus { + --tw-translate-x: 2.25rem !important; + } + + .md\:focus\:translate-x-10:focus { + --tw-translate-x: 2.5rem !important; + } + + .md\:focus\:translate-x-11:focus { + --tw-translate-x: 2.75rem !important; + } + + .md\:focus\:translate-x-12:focus { + --tw-translate-x: 3rem !important; + } + + .md\:focus\:translate-x-14:focus { + --tw-translate-x: 3.5rem !important; + } + + .md\:focus\:translate-x-16:focus { + --tw-translate-x: 4rem !important; + } + + .md\:focus\:translate-x-20:focus { + --tw-translate-x: 5rem !important; + } + + .md\:focus\:translate-x-24:focus { + --tw-translate-x: 6rem !important; + } + + .md\:focus\:translate-x-28:focus { + --tw-translate-x: 7rem !important; + } + + .md\:focus\:translate-x-32:focus { + --tw-translate-x: 8rem !important; + } + + .md\:focus\:translate-x-36:focus { + --tw-translate-x: 9rem !important; + } + + .md\:focus\:translate-x-40:focus { + --tw-translate-x: 10rem !important; + } + + .md\:focus\:translate-x-44:focus { + --tw-translate-x: 11rem !important; + } + + .md\:focus\:translate-x-48:focus { + --tw-translate-x: 12rem !important; + } + + .md\:focus\:translate-x-52:focus { + --tw-translate-x: 13rem !important; + } + + .md\:focus\:translate-x-56:focus { + --tw-translate-x: 14rem !important; + } + + .md\:focus\:translate-x-60:focus { + --tw-translate-x: 15rem !important; + } + + .md\:focus\:translate-x-64:focus { + --tw-translate-x: 16rem !important; + } + + .md\:focus\:translate-x-72:focus { + --tw-translate-x: 18rem !important; + } + + .md\:focus\:translate-x-80:focus { + --tw-translate-x: 20rem !important; + } + + .md\:focus\:translate-x-96:focus { + --tw-translate-x: 24rem !important; + } + + .md\:focus\:translate-x-px:focus { + --tw-translate-x: 1px !important; + } + + .md\:focus\:translate-x-0\.5:focus { + --tw-translate-x: 0.125rem !important; + } + + .md\:focus\:translate-x-1\.5:focus { + --tw-translate-x: 0.375rem !important; + } + + .md\:focus\:translate-x-2\.5:focus { + --tw-translate-x: 0.625rem !important; + } + + .md\:focus\:translate-x-3\.5:focus { + --tw-translate-x: 0.875rem !important; + } + + .md\:focus\:-translate-x-0:focus { + --tw-translate-x: 0px !important; + } + + .md\:focus\:-translate-x-1:focus { + --tw-translate-x: -0.25rem !important; + } + + .md\:focus\:-translate-x-2:focus { + --tw-translate-x: -0.5rem !important; + } + + .md\:focus\:-translate-x-3:focus { + --tw-translate-x: -0.75rem !important; + } + + .md\:focus\:-translate-x-4:focus { + --tw-translate-x: -1rem !important; + } + + .md\:focus\:-translate-x-5:focus { + --tw-translate-x: -1.25rem !important; + } + + .md\:focus\:-translate-x-6:focus { + --tw-translate-x: -1.5rem !important; + } + + .md\:focus\:-translate-x-7:focus { + --tw-translate-x: -1.75rem !important; + } + + .md\:focus\:-translate-x-8:focus { + --tw-translate-x: -2rem !important; + } + + .md\:focus\:-translate-x-9:focus { + --tw-translate-x: -2.25rem !important; + } + + .md\:focus\:-translate-x-10:focus { + --tw-translate-x: -2.5rem !important; + } + + .md\:focus\:-translate-x-11:focus { + --tw-translate-x: -2.75rem !important; + } + + .md\:focus\:-translate-x-12:focus { + --tw-translate-x: -3rem !important; + } + + .md\:focus\:-translate-x-14:focus { + --tw-translate-x: -3.5rem !important; + } + + .md\:focus\:-translate-x-16:focus { + --tw-translate-x: -4rem !important; + } + + .md\:focus\:-translate-x-20:focus { + --tw-translate-x: -5rem !important; + } + + .md\:focus\:-translate-x-24:focus { + --tw-translate-x: -6rem !important; + } + + .md\:focus\:-translate-x-28:focus { + --tw-translate-x: -7rem !important; + } + + .md\:focus\:-translate-x-32:focus { + --tw-translate-x: -8rem !important; + } + + .md\:focus\:-translate-x-36:focus { + --tw-translate-x: -9rem !important; + } + + .md\:focus\:-translate-x-40:focus { + --tw-translate-x: -10rem !important; + } + + .md\:focus\:-translate-x-44:focus { + --tw-translate-x: -11rem !important; + } + + .md\:focus\:-translate-x-48:focus { + --tw-translate-x: -12rem !important; + } + + .md\:focus\:-translate-x-52:focus { + --tw-translate-x: -13rem !important; + } + + .md\:focus\:-translate-x-56:focus { + --tw-translate-x: -14rem !important; + } + + .md\:focus\:-translate-x-60:focus { + --tw-translate-x: -15rem !important; + } + + .md\:focus\:-translate-x-64:focus { + --tw-translate-x: -16rem !important; + } + + .md\:focus\:-translate-x-72:focus { + --tw-translate-x: -18rem !important; + } + + .md\:focus\:-translate-x-80:focus { + --tw-translate-x: -20rem !important; + } + + .md\:focus\:-translate-x-96:focus { + --tw-translate-x: -24rem !important; + } + + .md\:focus\:-translate-x-px:focus { + --tw-translate-x: -1px !important; + } + + .md\:focus\:-translate-x-0\.5:focus { + --tw-translate-x: -0.125rem !important; + } + + .md\:focus\:-translate-x-1\.5:focus { + --tw-translate-x: -0.375rem !important; + } + + .md\:focus\:-translate-x-2\.5:focus { + --tw-translate-x: -0.625rem !important; + } + + .md\:focus\:-translate-x-3\.5:focus { + --tw-translate-x: -0.875rem !important; + } + + .md\:focus\:translate-x-1\/2:focus { + --tw-translate-x: 50% !important; + } + + .md\:focus\:translate-x-1\/3:focus { + --tw-translate-x: 33.333333% !important; + } + + .md\:focus\:translate-x-2\/3:focus { + --tw-translate-x: 66.666667% !important; + } + + .md\:focus\:translate-x-1\/4:focus { + --tw-translate-x: 25% !important; + } + + .md\:focus\:translate-x-2\/4:focus { + --tw-translate-x: 50% !important; + } + + .md\:focus\:translate-x-3\/4:focus { + --tw-translate-x: 75% !important; + } + + .md\:focus\:translate-x-full:focus { + --tw-translate-x: 100% !important; + } + + .md\:focus\:-translate-x-1\/2:focus { + --tw-translate-x: -50% !important; + } + + .md\:focus\:-translate-x-1\/3:focus { + --tw-translate-x: -33.333333% !important; + } + + .md\:focus\:-translate-x-2\/3:focus { + --tw-translate-x: -66.666667% !important; + } + + .md\:focus\:-translate-x-1\/4:focus { + --tw-translate-x: -25% !important; + } + + .md\:focus\:-translate-x-2\/4:focus { + --tw-translate-x: -50% !important; + } + + .md\:focus\:-translate-x-3\/4:focus { + --tw-translate-x: -75% !important; + } + + .md\:focus\:-translate-x-full:focus { + --tw-translate-x: -100% !important; + } + + .md\:focus\:translate-y-0:focus { + --tw-translate-y: 0px !important; + } + + .md\:focus\:translate-y-1:focus { + --tw-translate-y: 0.25rem !important; + } + + .md\:focus\:translate-y-2:focus { + --tw-translate-y: 0.5rem !important; + } + + .md\:focus\:translate-y-3:focus { + --tw-translate-y: 0.75rem !important; + } + + .md\:focus\:translate-y-4:focus { + --tw-translate-y: 1rem !important; + } + + .md\:focus\:translate-y-5:focus { + --tw-translate-y: 1.25rem !important; + } + + .md\:focus\:translate-y-6:focus { + --tw-translate-y: 1.5rem !important; + } + + .md\:focus\:translate-y-7:focus { + --tw-translate-y: 1.75rem !important; + } + + .md\:focus\:translate-y-8:focus { + --tw-translate-y: 2rem !important; + } + + .md\:focus\:translate-y-9:focus { + --tw-translate-y: 2.25rem !important; + } + + .md\:focus\:translate-y-10:focus { + --tw-translate-y: 2.5rem !important; + } + + .md\:focus\:translate-y-11:focus { + --tw-translate-y: 2.75rem !important; + } + + .md\:focus\:translate-y-12:focus { + --tw-translate-y: 3rem !important; + } + + .md\:focus\:translate-y-14:focus { + --tw-translate-y: 3.5rem !important; + } + + .md\:focus\:translate-y-16:focus { + --tw-translate-y: 4rem !important; + } + + .md\:focus\:translate-y-20:focus { + --tw-translate-y: 5rem !important; + } + + .md\:focus\:translate-y-24:focus { + --tw-translate-y: 6rem !important; + } + + .md\:focus\:translate-y-28:focus { + --tw-translate-y: 7rem !important; + } + + .md\:focus\:translate-y-32:focus { + --tw-translate-y: 8rem !important; + } + + .md\:focus\:translate-y-36:focus { + --tw-translate-y: 9rem !important; + } + + .md\:focus\:translate-y-40:focus { + --tw-translate-y: 10rem !important; + } + + .md\:focus\:translate-y-44:focus { + --tw-translate-y: 11rem !important; + } + + .md\:focus\:translate-y-48:focus { + --tw-translate-y: 12rem !important; + } + + .md\:focus\:translate-y-52:focus { + --tw-translate-y: 13rem !important; + } + + .md\:focus\:translate-y-56:focus { + --tw-translate-y: 14rem !important; + } + + .md\:focus\:translate-y-60:focus { + --tw-translate-y: 15rem !important; + } + + .md\:focus\:translate-y-64:focus { + --tw-translate-y: 16rem !important; + } + + .md\:focus\:translate-y-72:focus { + --tw-translate-y: 18rem !important; + } + + .md\:focus\:translate-y-80:focus { + --tw-translate-y: 20rem !important; + } + + .md\:focus\:translate-y-96:focus { + --tw-translate-y: 24rem !important; + } + + .md\:focus\:translate-y-px:focus { + --tw-translate-y: 1px !important; + } + + .md\:focus\:translate-y-0\.5:focus { + --tw-translate-y: 0.125rem !important; + } + + .md\:focus\:translate-y-1\.5:focus { + --tw-translate-y: 0.375rem !important; + } + + .md\:focus\:translate-y-2\.5:focus { + --tw-translate-y: 0.625rem !important; + } + + .md\:focus\:translate-y-3\.5:focus { + --tw-translate-y: 0.875rem !important; + } + + .md\:focus\:-translate-y-0:focus { + --tw-translate-y: 0px !important; + } + + .md\:focus\:-translate-y-1:focus { + --tw-translate-y: -0.25rem !important; + } + + .md\:focus\:-translate-y-2:focus { + --tw-translate-y: -0.5rem !important; + } + + .md\:focus\:-translate-y-3:focus { + --tw-translate-y: -0.75rem !important; + } + + .md\:focus\:-translate-y-4:focus { + --tw-translate-y: -1rem !important; + } + + .md\:focus\:-translate-y-5:focus { + --tw-translate-y: -1.25rem !important; + } + + .md\:focus\:-translate-y-6:focus { + --tw-translate-y: -1.5rem !important; + } + + .md\:focus\:-translate-y-7:focus { + --tw-translate-y: -1.75rem !important; + } + + .md\:focus\:-translate-y-8:focus { + --tw-translate-y: -2rem !important; + } + + .md\:focus\:-translate-y-9:focus { + --tw-translate-y: -2.25rem !important; + } + + .md\:focus\:-translate-y-10:focus { + --tw-translate-y: -2.5rem !important; + } + + .md\:focus\:-translate-y-11:focus { + --tw-translate-y: -2.75rem !important; + } + + .md\:focus\:-translate-y-12:focus { + --tw-translate-y: -3rem !important; + } + + .md\:focus\:-translate-y-14:focus { + --tw-translate-y: -3.5rem !important; + } + + .md\:focus\:-translate-y-16:focus { + --tw-translate-y: -4rem !important; + } + + .md\:focus\:-translate-y-20:focus { + --tw-translate-y: -5rem !important; + } + + .md\:focus\:-translate-y-24:focus { + --tw-translate-y: -6rem !important; + } + + .md\:focus\:-translate-y-28:focus { + --tw-translate-y: -7rem !important; + } + + .md\:focus\:-translate-y-32:focus { + --tw-translate-y: -8rem !important; + } + + .md\:focus\:-translate-y-36:focus { + --tw-translate-y: -9rem !important; + } + + .md\:focus\:-translate-y-40:focus { + --tw-translate-y: -10rem !important; + } + + .md\:focus\:-translate-y-44:focus { + --tw-translate-y: -11rem !important; + } + + .md\:focus\:-translate-y-48:focus { + --tw-translate-y: -12rem !important; + } + + .md\:focus\:-translate-y-52:focus { + --tw-translate-y: -13rem !important; + } + + .md\:focus\:-translate-y-56:focus { + --tw-translate-y: -14rem !important; + } + + .md\:focus\:-translate-y-60:focus { + --tw-translate-y: -15rem !important; + } + + .md\:focus\:-translate-y-64:focus { + --tw-translate-y: -16rem !important; + } + + .md\:focus\:-translate-y-72:focus { + --tw-translate-y: -18rem !important; + } + + .md\:focus\:-translate-y-80:focus { + --tw-translate-y: -20rem !important; + } + + .md\:focus\:-translate-y-96:focus { + --tw-translate-y: -24rem !important; + } + + .md\:focus\:-translate-y-px:focus { + --tw-translate-y: -1px !important; + } + + .md\:focus\:-translate-y-0\.5:focus { + --tw-translate-y: -0.125rem !important; + } + + .md\:focus\:-translate-y-1\.5:focus { + --tw-translate-y: -0.375rem !important; + } + + .md\:focus\:-translate-y-2\.5:focus { + --tw-translate-y: -0.625rem !important; + } + + .md\:focus\:-translate-y-3\.5:focus { + --tw-translate-y: -0.875rem !important; + } + + .md\:focus\:translate-y-1\/2:focus { + --tw-translate-y: 50% !important; + } + + .md\:focus\:translate-y-1\/3:focus { + --tw-translate-y: 33.333333% !important; + } + + .md\:focus\:translate-y-2\/3:focus { + --tw-translate-y: 66.666667% !important; + } + + .md\:focus\:translate-y-1\/4:focus { + --tw-translate-y: 25% !important; + } + + .md\:focus\:translate-y-2\/4:focus { + --tw-translate-y: 50% !important; + } + + .md\:focus\:translate-y-3\/4:focus { + --tw-translate-y: 75% !important; + } + + .md\:focus\:translate-y-full:focus { + --tw-translate-y: 100% !important; + } + + .md\:focus\:-translate-y-1\/2:focus { + --tw-translate-y: -50% !important; + } + + .md\:focus\:-translate-y-1\/3:focus { + --tw-translate-y: -33.333333% !important; + } + + .md\:focus\:-translate-y-2\/3:focus { + --tw-translate-y: -66.666667% !important; + } + + .md\:focus\:-translate-y-1\/4:focus { + --tw-translate-y: -25% !important; + } + + .md\:focus\:-translate-y-2\/4:focus { + --tw-translate-y: -50% !important; + } + + .md\:focus\:-translate-y-3\/4:focus { + --tw-translate-y: -75% !important; + } + + .md\:focus\:-translate-y-full:focus { + --tw-translate-y: -100% !important; + } + + .md\:skew-x-0 { + --tw-skew-x: 0deg !important; + } + + .md\:skew-x-1 { + --tw-skew-x: 1deg !important; + } + + .md\:skew-x-2 { + --tw-skew-x: 2deg !important; + } + + .md\:skew-x-3 { + --tw-skew-x: 3deg !important; + } + + .md\:skew-x-6 { + --tw-skew-x: 6deg !important; + } + + .md\:skew-x-12 { + --tw-skew-x: 12deg !important; + } + + .md\:-skew-x-12 { + --tw-skew-x: -12deg !important; + } + + .md\:-skew-x-6 { + --tw-skew-x: -6deg !important; + } + + .md\:-skew-x-3 { + --tw-skew-x: -3deg !important; + } + + .md\:-skew-x-2 { + --tw-skew-x: -2deg !important; + } + + .md\:-skew-x-1 { + --tw-skew-x: -1deg !important; + } + + .md\:skew-y-0 { + --tw-skew-y: 0deg !important; + } + + .md\:skew-y-1 { + --tw-skew-y: 1deg !important; + } + + .md\:skew-y-2 { + --tw-skew-y: 2deg !important; + } + + .md\:skew-y-3 { + --tw-skew-y: 3deg !important; + } + + .md\:skew-y-6 { + --tw-skew-y: 6deg !important; + } + + .md\:skew-y-12 { + --tw-skew-y: 12deg !important; + } + + .md\:-skew-y-12 { + --tw-skew-y: -12deg !important; + } + + .md\:-skew-y-6 { + --tw-skew-y: -6deg !important; + } + + .md\:-skew-y-3 { + --tw-skew-y: -3deg !important; + } + + .md\:-skew-y-2 { + --tw-skew-y: -2deg !important; + } + + .md\:-skew-y-1 { + --tw-skew-y: -1deg !important; + } + + .md\:hover\:skew-x-0:hover { + --tw-skew-x: 0deg !important; + } + + .md\:hover\:skew-x-1:hover { + --tw-skew-x: 1deg !important; + } + + .md\:hover\:skew-x-2:hover { + --tw-skew-x: 2deg !important; + } + + .md\:hover\:skew-x-3:hover { + --tw-skew-x: 3deg !important; + } + + .md\:hover\:skew-x-6:hover { + --tw-skew-x: 6deg !important; + } + + .md\:hover\:skew-x-12:hover { + --tw-skew-x: 12deg !important; + } + + .md\:hover\:-skew-x-12:hover { + --tw-skew-x: -12deg !important; + } + + .md\:hover\:-skew-x-6:hover { + --tw-skew-x: -6deg !important; + } + + .md\:hover\:-skew-x-3:hover { + --tw-skew-x: -3deg !important; + } + + .md\:hover\:-skew-x-2:hover { + --tw-skew-x: -2deg !important; + } + + .md\:hover\:-skew-x-1:hover { + --tw-skew-x: -1deg !important; + } + + .md\:hover\:skew-y-0:hover { + --tw-skew-y: 0deg !important; + } + + .md\:hover\:skew-y-1:hover { + --tw-skew-y: 1deg !important; + } + + .md\:hover\:skew-y-2:hover { + --tw-skew-y: 2deg !important; + } + + .md\:hover\:skew-y-3:hover { + --tw-skew-y: 3deg !important; + } + + .md\:hover\:skew-y-6:hover { + --tw-skew-y: 6deg !important; + } + + .md\:hover\:skew-y-12:hover { + --tw-skew-y: 12deg !important; + } + + .md\:hover\:-skew-y-12:hover { + --tw-skew-y: -12deg !important; + } + + .md\:hover\:-skew-y-6:hover { + --tw-skew-y: -6deg !important; + } + + .md\:hover\:-skew-y-3:hover { + --tw-skew-y: -3deg !important; + } + + .md\:hover\:-skew-y-2:hover { + --tw-skew-y: -2deg !important; + } + + .md\:hover\:-skew-y-1:hover { + --tw-skew-y: -1deg !important; + } + + .md\:focus\:skew-x-0:focus { + --tw-skew-x: 0deg !important; + } + + .md\:focus\:skew-x-1:focus { + --tw-skew-x: 1deg !important; + } + + .md\:focus\:skew-x-2:focus { + --tw-skew-x: 2deg !important; + } + + .md\:focus\:skew-x-3:focus { + --tw-skew-x: 3deg !important; + } + + .md\:focus\:skew-x-6:focus { + --tw-skew-x: 6deg !important; + } + + .md\:focus\:skew-x-12:focus { + --tw-skew-x: 12deg !important; + } + + .md\:focus\:-skew-x-12:focus { + --tw-skew-x: -12deg !important; + } + + .md\:focus\:-skew-x-6:focus { + --tw-skew-x: -6deg !important; + } + + .md\:focus\:-skew-x-3:focus { + --tw-skew-x: -3deg !important; + } + + .md\:focus\:-skew-x-2:focus { + --tw-skew-x: -2deg !important; + } + + .md\:focus\:-skew-x-1:focus { + --tw-skew-x: -1deg !important; + } + + .md\:focus\:skew-y-0:focus { + --tw-skew-y: 0deg !important; + } + + .md\:focus\:skew-y-1:focus { + --tw-skew-y: 1deg !important; + } + + .md\:focus\:skew-y-2:focus { + --tw-skew-y: 2deg !important; + } + + .md\:focus\:skew-y-3:focus { + --tw-skew-y: 3deg !important; + } + + .md\:focus\:skew-y-6:focus { + --tw-skew-y: 6deg !important; + } + + .md\:focus\:skew-y-12:focus { + --tw-skew-y: 12deg !important; + } + + .md\:focus\:-skew-y-12:focus { + --tw-skew-y: -12deg !important; + } + + .md\:focus\:-skew-y-6:focus { + --tw-skew-y: -6deg !important; + } + + .md\:focus\:-skew-y-3:focus { + --tw-skew-y: -3deg !important; + } + + .md\:focus\:-skew-y-2:focus { + --tw-skew-y: -2deg !important; + } + + .md\:focus\:-skew-y-1:focus { + --tw-skew-y: -1deg !important; + } + + .md\:transition-none { + transition-property: none !important; + } + + .md\:transition-all { + transition-property: all !important; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important; + transition-duration: 150ms !important; + } + + .md\:transition { + transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter !important; + transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter !important; + transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter !important; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important; + transition-duration: 150ms !important; + } + + .md\:transition-colors { + transition-property: background-color, border-color, color, fill, stroke !important; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important; + transition-duration: 150ms !important; + } + + .md\:transition-opacity { + transition-property: opacity !important; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important; + transition-duration: 150ms !important; + } + + .md\:transition-shadow { + transition-property: box-shadow !important; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important; + transition-duration: 150ms !important; + } + + .md\:transition-transform { + transition-property: transform !important; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important; + transition-duration: 150ms !important; + } + + .md\:ease-linear { + transition-timing-function: linear !important; + } + + .md\:ease-in { + transition-timing-function: cubic-bezier(0.4, 0, 1, 1) !important; + } + + .md\:ease-out { + transition-timing-function: cubic-bezier(0, 0, 0.2, 1) !important; + } + + .md\:ease-in-out { + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important; + } + + .md\:duration-75 { + transition-duration: 75ms !important; + } + + .md\:duration-100 { + transition-duration: 100ms !important; + } + + .md\:duration-150 { + transition-duration: 150ms !important; + } + + .md\:duration-200 { + transition-duration: 200ms !important; + } + + .md\:duration-300 { + transition-duration: 300ms !important; + } + + .md\:duration-500 { + transition-duration: 500ms !important; + } + + .md\:duration-700 { + transition-duration: 700ms !important; + } + + .md\:duration-1000 { + transition-duration: 1000ms !important; + } + + .md\:delay-75 { + transition-delay: 75ms !important; + } + + .md\:delay-100 { + transition-delay: 100ms !important; + } + + .md\:delay-150 { + transition-delay: 150ms !important; + } + + .md\:delay-200 { + transition-delay: 200ms !important; + } + + .md\:delay-300 { + transition-delay: 300ms !important; + } + + .md\:delay-500 { + transition-delay: 500ms !important; + } + + .md\:delay-700 { + transition-delay: 700ms !important; + } + + .md\:delay-1000 { + transition-delay: 1000ms !important; + } + + .md\:animate-none { + -webkit-animation: none !important; + animation: none !important; + } + + .md\:animate-spin { + -webkit-animation: spin 1s linear infinite !important; + animation: spin 1s linear infinite !important; + } + + .md\:animate-ping { + -webkit-animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite !important; + animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite !important; + } + + .md\:animate-pulse { + -webkit-animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite !important; + animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite !important; + } + + .md\:animate-bounce { + -webkit-animation: bounce 1s infinite !important; + animation: bounce 1s infinite !important; + } + + .md\:mix-blend-normal { + mix-blend-mode: normal !important; + } + + .md\:mix-blend-multiply { + mix-blend-mode: multiply !important; + } + + .md\:mix-blend-screen { + mix-blend-mode: screen !important; + } + + .md\:mix-blend-overlay { + mix-blend-mode: overlay !important; + } + + .md\:mix-blend-darken { + mix-blend-mode: darken !important; + } + + .md\:mix-blend-lighten { + mix-blend-mode: lighten !important; + } + + .md\:mix-blend-color-dodge { + mix-blend-mode: color-dodge !important; + } + + .md\:mix-blend-color-burn { + mix-blend-mode: color-burn !important; + } + + .md\:mix-blend-hard-light { + mix-blend-mode: hard-light !important; + } + + .md\:mix-blend-soft-light { + mix-blend-mode: soft-light !important; + } + + .md\:mix-blend-difference { + mix-blend-mode: difference !important; + } + + .md\:mix-blend-exclusion { + mix-blend-mode: exclusion !important; + } + + .md\:mix-blend-hue { + mix-blend-mode: hue !important; + } + + .md\:mix-blend-saturation { + mix-blend-mode: saturation !important; + } + + .md\:mix-blend-color { + mix-blend-mode: color !important; + } + + .md\:mix-blend-luminosity { + mix-blend-mode: luminosity !important; + } + + .md\:bg-blend-normal { + background-blend-mode: normal !important; + } + + .md\:bg-blend-multiply { + background-blend-mode: multiply !important; + } + + .md\:bg-blend-screen { + background-blend-mode: screen !important; + } + + .md\:bg-blend-overlay { + background-blend-mode: overlay !important; + } + + .md\:bg-blend-darken { + background-blend-mode: darken !important; + } + + .md\:bg-blend-lighten { + background-blend-mode: lighten !important; + } + + .md\:bg-blend-color-dodge { + background-blend-mode: color-dodge !important; + } + + .md\:bg-blend-color-burn { + background-blend-mode: color-burn !important; + } + + .md\:bg-blend-hard-light { + background-blend-mode: hard-light !important; + } + + .md\:bg-blend-soft-light { + background-blend-mode: soft-light !important; + } + + .md\:bg-blend-difference { + background-blend-mode: difference !important; + } + + .md\:bg-blend-exclusion { + background-blend-mode: exclusion !important; + } + + .md\:bg-blend-hue { + background-blend-mode: hue !important; + } + + .md\:bg-blend-saturation { + background-blend-mode: saturation !important; + } + + .md\:bg-blend-color { + background-blend-mode: color !important; + } + + .md\:bg-blend-luminosity { + background-blend-mode: luminosity !important; + } + + .md\:filter { + --tw-blur: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-brightness: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-contrast: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-grayscale: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-hue-rotate: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-invert: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-saturate: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-sepia: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-drop-shadow: var(--tw-empty,/*!*/ /*!*/) !important; + 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) !important; + } + + .md\:filter-none { + filter: none !important; + } + + .md\:blur-0 { + --tw-blur: blur(0) !important; + } + + .md\:blur-sm { + --tw-blur: blur(4px) !important; + } + + .md\:blur { + --tw-blur: blur(8px) !important; + } + + .md\:blur-md { + --tw-blur: blur(12px) !important; + } + + .md\:blur-lg { + --tw-blur: blur(16px) !important; + } + + .md\:blur-xl { + --tw-blur: blur(24px) !important; + } + + .md\:blur-2xl { + --tw-blur: blur(40px) !important; + } + + .md\:blur-3xl { + --tw-blur: blur(64px) !important; + } + + .md\:brightness-0 { + --tw-brightness: brightness(0) !important; + } + + .md\:brightness-50 { + --tw-brightness: brightness(.5) !important; + } + + .md\:brightness-75 { + --tw-brightness: brightness(.75) !important; + } + + .md\:brightness-90 { + --tw-brightness: brightness(.9) !important; + } + + .md\:brightness-95 { + --tw-brightness: brightness(.95) !important; + } + + .md\:brightness-100 { + --tw-brightness: brightness(1) !important; + } + + .md\:brightness-105 { + --tw-brightness: brightness(1.05) !important; + } + + .md\:brightness-110 { + --tw-brightness: brightness(1.1) !important; + } + + .md\:brightness-125 { + --tw-brightness: brightness(1.25) !important; + } + + .md\:brightness-150 { + --tw-brightness: brightness(1.5) !important; + } + + .md\:brightness-200 { + --tw-brightness: brightness(2) !important; + } + + .md\:contrast-0 { + --tw-contrast: contrast(0) !important; + } + + .md\:contrast-50 { + --tw-contrast: contrast(.5) !important; + } + + .md\:contrast-75 { + --tw-contrast: contrast(.75) !important; + } + + .md\:contrast-100 { + --tw-contrast: contrast(1) !important; + } + + .md\:contrast-125 { + --tw-contrast: contrast(1.25) !important; + } + + .md\:contrast-150 { + --tw-contrast: contrast(1.5) !important; + } + + .md\:contrast-200 { + --tw-contrast: contrast(2) !important; + } + + .md\:drop-shadow-sm { + --tw-drop-shadow: drop-shadow(0 1px 1px rgba(0,0,0,0.05)) !important; + } + + .md\:drop-shadow { + --tw-drop-shadow: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1)) drop-shadow(0 1px 1px rgba(0, 0, 0, 0.06)) !important; + } + + .md\:drop-shadow-md { + --tw-drop-shadow: drop-shadow(0 4px 3px rgba(0, 0, 0, 0.07)) drop-shadow(0 2px 2px rgba(0, 0, 0, 0.06)) !important; + } + + .md\:drop-shadow-lg { + --tw-drop-shadow: drop-shadow(0 10px 8px rgba(0, 0, 0, 0.04)) drop-shadow(0 4px 3px rgba(0, 0, 0, 0.1)) !important; + } + + .md\:drop-shadow-xl { + --tw-drop-shadow: drop-shadow(0 20px 13px rgba(0, 0, 0, 0.03)) drop-shadow(0 8px 5px rgba(0, 0, 0, 0.08)) !important; + } + + .md\:drop-shadow-2xl { + --tw-drop-shadow: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.15)) !important; + } + + .md\:drop-shadow-none { + --tw-drop-shadow: drop-shadow(0 0 #0000) !important; + } + + .md\:grayscale-0 { + --tw-grayscale: grayscale(0) !important; + } + + .md\:grayscale { + --tw-grayscale: grayscale(100%) !important; + } + + .md\:hue-rotate-0 { + --tw-hue-rotate: hue-rotate(0deg) !important; + } + + .md\:hue-rotate-15 { + --tw-hue-rotate: hue-rotate(15deg) !important; + } + + .md\:hue-rotate-30 { + --tw-hue-rotate: hue-rotate(30deg) !important; + } + + .md\:hue-rotate-60 { + --tw-hue-rotate: hue-rotate(60deg) !important; + } + + .md\:hue-rotate-90 { + --tw-hue-rotate: hue-rotate(90deg) !important; + } + + .md\:hue-rotate-180 { + --tw-hue-rotate: hue-rotate(180deg) !important; + } + + .md\:-hue-rotate-180 { + --tw-hue-rotate: hue-rotate(-180deg) !important; + } + + .md\:-hue-rotate-90 { + --tw-hue-rotate: hue-rotate(-90deg) !important; + } + + .md\:-hue-rotate-60 { + --tw-hue-rotate: hue-rotate(-60deg) !important; + } + + .md\:-hue-rotate-30 { + --tw-hue-rotate: hue-rotate(-30deg) !important; + } + + .md\:-hue-rotate-15 { + --tw-hue-rotate: hue-rotate(-15deg) !important; + } + + .md\:invert-0 { + --tw-invert: invert(0) !important; + } + + .md\:invert { + --tw-invert: invert(100%) !important; + } + + .md\:saturate-0 { + --tw-saturate: saturate(0) !important; + } + + .md\:saturate-50 { + --tw-saturate: saturate(.5) !important; + } + + .md\:saturate-100 { + --tw-saturate: saturate(1) !important; + } + + .md\:saturate-150 { + --tw-saturate: saturate(1.5) !important; + } + + .md\:saturate-200 { + --tw-saturate: saturate(2) !important; + } + + .md\:sepia-0 { + --tw-sepia: sepia(0) !important; + } + + .md\:sepia { + --tw-sepia: sepia(100%) !important; + } + + .md\:backdrop-filter { + --tw-backdrop-blur: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-backdrop-brightness: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-backdrop-contrast: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-backdrop-grayscale: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-backdrop-hue-rotate: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-backdrop-invert: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-backdrop-opacity: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-backdrop-saturate: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-backdrop-sepia: var(--tw-empty,/*!*/ /*!*/) !important; + -webkit-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) !important; + 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) !important; + } + + .md\:backdrop-filter-none { + -webkit-backdrop-filter: none !important; + backdrop-filter: none !important; + } + + .md\:backdrop-brightness-0 { + --tw-backdrop-brightness: brightness(0) !important; + } + + .md\:backdrop-brightness-50 { + --tw-backdrop-brightness: brightness(.5) !important; + } + + .md\:backdrop-brightness-75 { + --tw-backdrop-brightness: brightness(.75) !important; + } + + .md\:backdrop-brightness-90 { + --tw-backdrop-brightness: brightness(.9) !important; + } + + .md\:backdrop-brightness-95 { + --tw-backdrop-brightness: brightness(.95) !important; + } + + .md\:backdrop-brightness-100 { + --tw-backdrop-brightness: brightness(1) !important; + } + + .md\:backdrop-brightness-105 { + --tw-backdrop-brightness: brightness(1.05) !important; + } + + .md\:backdrop-brightness-110 { + --tw-backdrop-brightness: brightness(1.1) !important; + } + + .md\:backdrop-brightness-125 { + --tw-backdrop-brightness: brightness(1.25) !important; + } + + .md\:backdrop-brightness-150 { + --tw-backdrop-brightness: brightness(1.5) !important; + } + + .md\:backdrop-brightness-200 { + --tw-backdrop-brightness: brightness(2) !important; + } + + .md\:backdrop-contrast-0 { + --tw-backdrop-contrast: contrast(0) !important; + } + + .md\:backdrop-contrast-50 { + --tw-backdrop-contrast: contrast(.5) !important; + } + + .md\:backdrop-contrast-75 { + --tw-backdrop-contrast: contrast(.75) !important; + } + + .md\:backdrop-contrast-100 { + --tw-backdrop-contrast: contrast(1) !important; + } + + .md\:backdrop-contrast-125 { + --tw-backdrop-contrast: contrast(1.25) !important; + } + + .md\:backdrop-contrast-150 { + --tw-backdrop-contrast: contrast(1.5) !important; + } + + .md\:backdrop-contrast-200 { + --tw-backdrop-contrast: contrast(2) !important; + } + + .md\:backdrop-grayscale-0 { + --tw-backdrop-grayscale: grayscale(0) !important; + } + + .md\:backdrop-grayscale { + --tw-backdrop-grayscale: grayscale(100%) !important; + } + + .md\:backdrop-hue-rotate-0 { + --tw-backdrop-hue-rotate: hue-rotate(0deg) !important; + } + + .md\:backdrop-hue-rotate-15 { + --tw-backdrop-hue-rotate: hue-rotate(15deg) !important; + } + + .md\:backdrop-hue-rotate-30 { + --tw-backdrop-hue-rotate: hue-rotate(30deg) !important; + } + + .md\:backdrop-hue-rotate-60 { + --tw-backdrop-hue-rotate: hue-rotate(60deg) !important; + } + + .md\:backdrop-hue-rotate-90 { + --tw-backdrop-hue-rotate: hue-rotate(90deg) !important; + } + + .md\:backdrop-hue-rotate-180 { + --tw-backdrop-hue-rotate: hue-rotate(180deg) !important; + } + + .md\:-backdrop-hue-rotate-180 { + --tw-backdrop-hue-rotate: hue-rotate(-180deg) !important; + } + + .md\:-backdrop-hue-rotate-90 { + --tw-backdrop-hue-rotate: hue-rotate(-90deg) !important; + } + + .md\:-backdrop-hue-rotate-60 { + --tw-backdrop-hue-rotate: hue-rotate(-60deg) !important; + } + + .md\:-backdrop-hue-rotate-30 { + --tw-backdrop-hue-rotate: hue-rotate(-30deg) !important; + } + + .md\:-backdrop-hue-rotate-15 { + --tw-backdrop-hue-rotate: hue-rotate(-15deg) !important; + } + + .md\:backdrop-invert-0 { + --tw-backdrop-invert: invert(0) !important; + } + + .md\:backdrop-invert { + --tw-backdrop-invert: invert(100%) !important; + } + + .md\:backdrop-saturate-0 { + --tw-backdrop-saturate: saturate(0) !important; + } + + .md\:backdrop-saturate-50 { + --tw-backdrop-saturate: saturate(.5) !important; + } + + .md\:backdrop-saturate-100 { + --tw-backdrop-saturate: saturate(1) !important; + } + + .md\:backdrop-saturate-150 { + --tw-backdrop-saturate: saturate(1.5) !important; + } + + .md\:backdrop-saturate-200 { + --tw-backdrop-saturate: saturate(2) !important; + } + + .md\:backdrop-sepia-0 { + --tw-backdrop-sepia: sepia(0) !important; + } + + .md\:backdrop-sepia { + --tw-backdrop-sepia: sepia(100%) !important; + } +} + +@media (min-width: 1024px) { + .lg\:container { + width: 100%; + } + + @media (min-width: 640px) { + .lg\:container { + max-width: 640px; + } + } + + @media (min-width: 768px) { + .lg\:container { + max-width: 768px; + } + } + + @media (min-width: 1024px) { + .lg\:container { + max-width: 1024px; + } + } + + @media (min-width: 1280px) { + .lg\:container { + max-width: 1280px; + } + } + + @media (min-width: 1536px) { + .lg\:container { + max-width: 1536px; + } + } + + .lg\:space-y-0 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(0px * var(--tw-space-y-reverse)) !important; + } + + .lg\:space-x-0 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(0px * var(--tw-space-x-reverse)) !important; + margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .lg\:space-y-1 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(0.25rem * var(--tw-space-y-reverse)) !important; + } + + .lg\:space-x-1 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(0.25rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(0.25rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .lg\:space-y-2 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(0.5rem * var(--tw-space-y-reverse)) !important; + } + + .lg\:space-x-2 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(0.5rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .lg\:space-y-3 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(0.75rem * var(--tw-space-y-reverse)) !important; + } + + .lg\:space-x-3 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(0.75rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(0.75rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .lg\:space-y-4 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(1rem * var(--tw-space-y-reverse)) !important; + } + + .lg\:space-x-4 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(1rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .lg\:space-y-5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(1.25rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(1.25rem * var(--tw-space-y-reverse)) !important; + } + + .lg\:space-x-5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(1.25rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(1.25rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .lg\:space-y-6 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(1.5rem * var(--tw-space-y-reverse)) !important; + } + + .lg\:space-x-6 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(1.5rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(1.5rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .lg\:space-y-7 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(1.75rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(1.75rem * var(--tw-space-y-reverse)) !important; + } + + .lg\:space-x-7 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(1.75rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(1.75rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .lg\:space-y-8 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(2rem * var(--tw-space-y-reverse)) !important; + } + + .lg\:space-x-8 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(2rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(2rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .lg\:space-y-9 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(2.25rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(2.25rem * var(--tw-space-y-reverse)) !important; + } + + .lg\:space-x-9 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(2.25rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(2.25rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .lg\:space-y-10 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(2.5rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(2.5rem * var(--tw-space-y-reverse)) !important; + } + + .lg\:space-x-10 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(2.5rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(2.5rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .lg\:space-y-11 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(2.75rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(2.75rem * var(--tw-space-y-reverse)) !important; + } + + .lg\:space-x-11 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(2.75rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(2.75rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .lg\:space-y-12 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(3rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(3rem * var(--tw-space-y-reverse)) !important; + } + + .lg\:space-x-12 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(3rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(3rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .lg\:space-y-14 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(3.5rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(3.5rem * var(--tw-space-y-reverse)) !important; + } + + .lg\:space-x-14 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(3.5rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(3.5rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .lg\:space-y-16 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(4rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(4rem * var(--tw-space-y-reverse)) !important; + } + + .lg\:space-x-16 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(4rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(4rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .lg\:space-y-20 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(5rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(5rem * var(--tw-space-y-reverse)) !important; + } + + .lg\:space-x-20 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(5rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(5rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .lg\:space-y-24 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(6rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(6rem * var(--tw-space-y-reverse)) !important; + } + + .lg\:space-x-24 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(6rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(6rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .lg\:space-y-28 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(7rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(7rem * var(--tw-space-y-reverse)) !important; + } + + .lg\:space-x-28 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(7rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(7rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .lg\:space-y-32 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(8rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(8rem * var(--tw-space-y-reverse)) !important; + } + + .lg\:space-x-32 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(8rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(8rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .lg\:space-y-36 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(9rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(9rem * var(--tw-space-y-reverse)) !important; + } + + .lg\:space-x-36 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(9rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(9rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .lg\:space-y-40 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(10rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(10rem * var(--tw-space-y-reverse)) !important; + } + + .lg\:space-x-40 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(10rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(10rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .lg\:space-y-44 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(11rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(11rem * var(--tw-space-y-reverse)) !important; + } + + .lg\:space-x-44 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(11rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(11rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .lg\:space-y-48 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(12rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(12rem * var(--tw-space-y-reverse)) !important; + } + + .lg\:space-x-48 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(12rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(12rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .lg\:space-y-52 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(13rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(13rem * var(--tw-space-y-reverse)) !important; + } + + .lg\:space-x-52 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(13rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(13rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .lg\:space-y-56 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(14rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(14rem * var(--tw-space-y-reverse)) !important; + } + + .lg\:space-x-56 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(14rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(14rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .lg\:space-y-60 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(15rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(15rem * var(--tw-space-y-reverse)) !important; + } + + .lg\:space-x-60 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(15rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(15rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .lg\:space-y-64 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(16rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(16rem * var(--tw-space-y-reverse)) !important; + } + + .lg\:space-x-64 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(16rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(16rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .lg\:space-y-72 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(18rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(18rem * var(--tw-space-y-reverse)) !important; + } + + .lg\:space-x-72 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(18rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(18rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .lg\:space-y-80 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(20rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(20rem * var(--tw-space-y-reverse)) !important; + } + + .lg\:space-x-80 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(20rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(20rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .lg\:space-y-96 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(24rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(24rem * var(--tw-space-y-reverse)) !important; + } + + .lg\:space-x-96 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(24rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(24rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .lg\:space-y-px > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(1px * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(1px * var(--tw-space-y-reverse)) !important; + } + + .lg\:space-x-px > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(1px * var(--tw-space-x-reverse)) !important; + margin-left: calc(1px * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .lg\:space-y-0\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(0.125rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(0.125rem * var(--tw-space-y-reverse)) !important; + } + + .lg\:space-x-0\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(0.125rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(0.125rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .lg\:space-y-1\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(0.375rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(0.375rem * var(--tw-space-y-reverse)) !important; + } + + .lg\:space-x-1\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(0.375rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(0.375rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .lg\:space-y-2\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(0.625rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(0.625rem * var(--tw-space-y-reverse)) !important; + } + + .lg\:space-x-2\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(0.625rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(0.625rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .lg\:space-y-3\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(0.875rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(0.875rem * var(--tw-space-y-reverse)) !important; + } + + .lg\:space-x-3\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(0.875rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(0.875rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .lg\:-space-y-0 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(0px * var(--tw-space-y-reverse)) !important; + } + + .lg\:-space-x-0 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(0px * var(--tw-space-x-reverse)) !important; + margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .lg\:-space-y-1 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-0.25rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-0.25rem * var(--tw-space-y-reverse)) !important; + } + + .lg\:-space-x-1 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-0.25rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-0.25rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .lg\:-space-y-2 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-0.5rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-0.5rem * var(--tw-space-y-reverse)) !important; + } + + .lg\:-space-x-2 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-0.5rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-0.5rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .lg\:-space-y-3 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-0.75rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-0.75rem * var(--tw-space-y-reverse)) !important; + } + + .lg\:-space-x-3 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-0.75rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-0.75rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .lg\:-space-y-4 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-1rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-1rem * var(--tw-space-y-reverse)) !important; + } + + .lg\:-space-x-4 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-1rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-1rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .lg\:-space-y-5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-1.25rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-1.25rem * var(--tw-space-y-reverse)) !important; + } + + .lg\:-space-x-5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-1.25rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-1.25rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .lg\:-space-y-6 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-1.5rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-1.5rem * var(--tw-space-y-reverse)) !important; + } + + .lg\:-space-x-6 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-1.5rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-1.5rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .lg\:-space-y-7 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-1.75rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-1.75rem * var(--tw-space-y-reverse)) !important; + } + + .lg\:-space-x-7 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-1.75rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-1.75rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .lg\:-space-y-8 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-2rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-2rem * var(--tw-space-y-reverse)) !important; + } + + .lg\:-space-x-8 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-2rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-2rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .lg\:-space-y-9 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-2.25rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-2.25rem * var(--tw-space-y-reverse)) !important; + } + + .lg\:-space-x-9 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-2.25rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-2.25rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .lg\:-space-y-10 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-2.5rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-2.5rem * var(--tw-space-y-reverse)) !important; + } + + .lg\:-space-x-10 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-2.5rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-2.5rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .lg\:-space-y-11 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-2.75rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-2.75rem * var(--tw-space-y-reverse)) !important; + } + + .lg\:-space-x-11 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-2.75rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-2.75rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .lg\:-space-y-12 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-3rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-3rem * var(--tw-space-y-reverse)) !important; + } + + .lg\:-space-x-12 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-3rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-3rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .lg\:-space-y-14 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-3.5rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-3.5rem * var(--tw-space-y-reverse)) !important; + } + + .lg\:-space-x-14 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-3.5rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-3.5rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .lg\:-space-y-16 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-4rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-4rem * var(--tw-space-y-reverse)) !important; + } + + .lg\:-space-x-16 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-4rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-4rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .lg\:-space-y-20 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-5rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-5rem * var(--tw-space-y-reverse)) !important; + } + + .lg\:-space-x-20 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-5rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-5rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .lg\:-space-y-24 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-6rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-6rem * var(--tw-space-y-reverse)) !important; + } + + .lg\:-space-x-24 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-6rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-6rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .lg\:-space-y-28 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-7rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-7rem * var(--tw-space-y-reverse)) !important; + } + + .lg\:-space-x-28 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-7rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-7rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .lg\:-space-y-32 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-8rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-8rem * var(--tw-space-y-reverse)) !important; + } + + .lg\:-space-x-32 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-8rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-8rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .lg\:-space-y-36 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-9rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-9rem * var(--tw-space-y-reverse)) !important; + } + + .lg\:-space-x-36 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-9rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-9rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .lg\:-space-y-40 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-10rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-10rem * var(--tw-space-y-reverse)) !important; + } + + .lg\:-space-x-40 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-10rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-10rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .lg\:-space-y-44 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-11rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-11rem * var(--tw-space-y-reverse)) !important; + } + + .lg\:-space-x-44 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-11rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-11rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .lg\:-space-y-48 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-12rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-12rem * var(--tw-space-y-reverse)) !important; + } + + .lg\:-space-x-48 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-12rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-12rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .lg\:-space-y-52 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-13rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-13rem * var(--tw-space-y-reverse)) !important; + } + + .lg\:-space-x-52 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-13rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-13rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .lg\:-space-y-56 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-14rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-14rem * var(--tw-space-y-reverse)) !important; + } + + .lg\:-space-x-56 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-14rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-14rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .lg\:-space-y-60 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-15rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-15rem * var(--tw-space-y-reverse)) !important; + } + + .lg\:-space-x-60 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-15rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-15rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .lg\:-space-y-64 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-16rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-16rem * var(--tw-space-y-reverse)) !important; + } + + .lg\:-space-x-64 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-16rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-16rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .lg\:-space-y-72 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-18rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-18rem * var(--tw-space-y-reverse)) !important; + } + + .lg\:-space-x-72 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-18rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-18rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .lg\:-space-y-80 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-20rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-20rem * var(--tw-space-y-reverse)) !important; + } + + .lg\:-space-x-80 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-20rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-20rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .lg\:-space-y-96 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-24rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-24rem * var(--tw-space-y-reverse)) !important; + } + + .lg\:-space-x-96 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-24rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-24rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .lg\:-space-y-px > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-1px * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-1px * var(--tw-space-y-reverse)) !important; + } + + .lg\:-space-x-px > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-1px * var(--tw-space-x-reverse)) !important; + margin-left: calc(-1px * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .lg\:-space-y-0\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-0.125rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-0.125rem * var(--tw-space-y-reverse)) !important; + } + + .lg\:-space-x-0\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-0.125rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-0.125rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .lg\:-space-y-1\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-0.375rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-0.375rem * var(--tw-space-y-reverse)) !important; + } + + .lg\:-space-x-1\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-0.375rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-0.375rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .lg\:-space-y-2\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-0.625rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-0.625rem * var(--tw-space-y-reverse)) !important; + } + + .lg\:-space-x-2\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-0.625rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-0.625rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .lg\:-space-y-3\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-0.875rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-0.875rem * var(--tw-space-y-reverse)) !important; + } + + .lg\:-space-x-3\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-0.875rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-0.875rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .lg\:space-y-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 1 !important; + } + + .lg\:space-x-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 1 !important; + } + + .lg\:divide-y-0 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0 !important; + border-top-width: calc(0px * calc(1 - var(--tw-divide-y-reverse))) !important; + border-bottom-width: calc(0px * var(--tw-divide-y-reverse)) !important; + } + + .lg\:divide-x-0 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-x-reverse: 0 !important; + border-right-width: calc(0px * var(--tw-divide-x-reverse)) !important; + border-left-width: calc(0px * calc(1 - var(--tw-divide-x-reverse))) !important; + } + + .lg\:divide-y-2 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0 !important; + border-top-width: calc(2px * calc(1 - var(--tw-divide-y-reverse))) !important; + border-bottom-width: calc(2px * var(--tw-divide-y-reverse)) !important; + } + + .lg\:divide-x-2 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-x-reverse: 0 !important; + border-right-width: calc(2px * var(--tw-divide-x-reverse)) !important; + border-left-width: calc(2px * calc(1 - var(--tw-divide-x-reverse))) !important; + } + + .lg\:divide-y-4 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0 !important; + border-top-width: calc(4px * calc(1 - var(--tw-divide-y-reverse))) !important; + border-bottom-width: calc(4px * var(--tw-divide-y-reverse)) !important; + } + + .lg\:divide-x-4 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-x-reverse: 0 !important; + border-right-width: calc(4px * var(--tw-divide-x-reverse)) !important; + border-left-width: calc(4px * calc(1 - var(--tw-divide-x-reverse))) !important; + } + + .lg\:divide-y-8 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0 !important; + border-top-width: calc(8px * calc(1 - var(--tw-divide-y-reverse))) !important; + border-bottom-width: calc(8px * var(--tw-divide-y-reverse)) !important; + } + + .lg\:divide-x-8 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-x-reverse: 0 !important; + border-right-width: calc(8px * var(--tw-divide-x-reverse)) !important; + border-left-width: calc(8px * calc(1 - var(--tw-divide-x-reverse))) !important; + } + + .lg\:divide-y > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0 !important; + border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse))) !important; + border-bottom-width: calc(1px * var(--tw-divide-y-reverse)) !important; + } + + .lg\:divide-x > :not([hidden]) ~ :not([hidden]) { + --tw-divide-x-reverse: 0 !important; + border-right-width: calc(1px * var(--tw-divide-x-reverse)) !important; + border-left-width: calc(1px * calc(1 - var(--tw-divide-x-reverse))) !important; + } + + .lg\:divide-y-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 1 !important; + } + + .lg\:divide-x-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-divide-x-reverse: 1 !important; + } + + .lg\:divide-transparent > :not([hidden]) ~ :not([hidden]) { + border-color: transparent !important; + } + + .lg\:divide-current > :not([hidden]) ~ :not([hidden]) { + border-color: currentColor !important; + } + + .lg\:divide-black > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(0, 0, 0, var(--tw-divide-opacity)) !important; + } + + .lg\:divide-white > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(255, 255, 255, var(--tw-divide-opacity)) !important; + } + + .lg\:divide-gray-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(249, 250, 251, var(--tw-divide-opacity)) !important; + } + + .lg\:divide-gray-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(243, 244, 246, var(--tw-divide-opacity)) !important; + } + + .lg\:divide-gray-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(229, 231, 235, var(--tw-divide-opacity)) !important; + } + + .lg\:divide-gray-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(209, 213, 219, var(--tw-divide-opacity)) !important; + } + + .lg\:divide-gray-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(156, 163, 175, var(--tw-divide-opacity)) !important; + } + + .lg\:divide-gray-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(107, 114, 128, var(--tw-divide-opacity)) !important; + } + + .lg\:divide-gray-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(75, 85, 99, var(--tw-divide-opacity)) !important; + } + + .lg\:divide-gray-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(55, 65, 81, var(--tw-divide-opacity)) !important; + } + + .lg\:divide-gray-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(31, 41, 55, var(--tw-divide-opacity)) !important; + } + + .lg\:divide-gray-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(17, 24, 39, var(--tw-divide-opacity)) !important; + } + + .lg\:divide-red-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(254, 242, 242, var(--tw-divide-opacity)) !important; + } + + .lg\:divide-red-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(254, 226, 226, var(--tw-divide-opacity)) !important; + } + + .lg\:divide-red-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(254, 202, 202, var(--tw-divide-opacity)) !important; + } + + .lg\:divide-red-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(252, 165, 165, var(--tw-divide-opacity)) !important; + } + + .lg\:divide-red-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(248, 113, 113, var(--tw-divide-opacity)) !important; + } + + .lg\:divide-red-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(239, 68, 68, var(--tw-divide-opacity)) !important; + } + + .lg\:divide-red-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(220, 38, 38, var(--tw-divide-opacity)) !important; + } + + .lg\:divide-red-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(185, 28, 28, var(--tw-divide-opacity)) !important; + } + + .lg\:divide-red-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(153, 27, 27, var(--tw-divide-opacity)) !important; + } + + .lg\:divide-red-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(127, 29, 29, var(--tw-divide-opacity)) !important; + } + + .lg\:divide-yellow-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(255, 251, 235, var(--tw-divide-opacity)) !important; + } + + .lg\:divide-yellow-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(254, 243, 199, var(--tw-divide-opacity)) !important; + } + + .lg\:divide-yellow-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(253, 230, 138, var(--tw-divide-opacity)) !important; + } + + .lg\:divide-yellow-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(252, 211, 77, var(--tw-divide-opacity)) !important; + } + + .lg\:divide-yellow-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(251, 191, 36, var(--tw-divide-opacity)) !important; + } + + .lg\:divide-yellow-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(245, 158, 11, var(--tw-divide-opacity)) !important; + } + + .lg\:divide-yellow-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(217, 119, 6, var(--tw-divide-opacity)) !important; + } + + .lg\:divide-yellow-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(180, 83, 9, var(--tw-divide-opacity)) !important; + } + + .lg\:divide-yellow-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(146, 64, 14, var(--tw-divide-opacity)) !important; + } + + .lg\:divide-yellow-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(120, 53, 15, var(--tw-divide-opacity)) !important; + } + + .lg\:divide-green-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(236, 253, 245, var(--tw-divide-opacity)) !important; + } + + .lg\:divide-green-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(209, 250, 229, var(--tw-divide-opacity)) !important; + } + + .lg\:divide-green-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(167, 243, 208, var(--tw-divide-opacity)) !important; + } + + .lg\:divide-green-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(110, 231, 183, var(--tw-divide-opacity)) !important; + } + + .lg\:divide-green-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(52, 211, 153, var(--tw-divide-opacity)) !important; + } + + .lg\:divide-green-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(16, 185, 129, var(--tw-divide-opacity)) !important; + } + + .lg\:divide-green-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(5, 150, 105, var(--tw-divide-opacity)) !important; + } + + .lg\:divide-green-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(4, 120, 87, var(--tw-divide-opacity)) !important; + } + + .lg\:divide-green-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(6, 95, 70, var(--tw-divide-opacity)) !important; + } + + .lg\:divide-green-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(6, 78, 59, var(--tw-divide-opacity)) !important; + } + + .lg\:divide-blue-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(239, 246, 255, var(--tw-divide-opacity)) !important; + } + + .lg\:divide-blue-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(219, 234, 254, var(--tw-divide-opacity)) !important; + } + + .lg\:divide-blue-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(191, 219, 254, var(--tw-divide-opacity)) !important; + } + + .lg\:divide-blue-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(147, 197, 253, var(--tw-divide-opacity)) !important; + } + + .lg\:divide-blue-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(96, 165, 250, var(--tw-divide-opacity)) !important; + } + + .lg\:divide-blue-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(59, 130, 246, var(--tw-divide-opacity)) !important; + } + + .lg\:divide-blue-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(37, 99, 235, var(--tw-divide-opacity)) !important; + } + + .lg\:divide-blue-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(29, 78, 216, var(--tw-divide-opacity)) !important; + } + + .lg\:divide-blue-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(30, 64, 175, var(--tw-divide-opacity)) !important; + } + + .lg\:divide-blue-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(30, 58, 138, var(--tw-divide-opacity)) !important; + } + + .lg\:divide-indigo-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(238, 242, 255, var(--tw-divide-opacity)) !important; + } + + .lg\:divide-indigo-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(224, 231, 255, var(--tw-divide-opacity)) !important; + } + + .lg\:divide-indigo-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(199, 210, 254, var(--tw-divide-opacity)) !important; + } + + .lg\:divide-indigo-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(165, 180, 252, var(--tw-divide-opacity)) !important; + } + + .lg\:divide-indigo-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(129, 140, 248, var(--tw-divide-opacity)) !important; + } + + .lg\:divide-indigo-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(99, 102, 241, var(--tw-divide-opacity)) !important; + } + + .lg\:divide-indigo-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(79, 70, 229, var(--tw-divide-opacity)) !important; + } + + .lg\:divide-indigo-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(67, 56, 202, var(--tw-divide-opacity)) !important; + } + + .lg\:divide-indigo-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(55, 48, 163, var(--tw-divide-opacity)) !important; + } + + .lg\:divide-indigo-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(49, 46, 129, var(--tw-divide-opacity)) !important; + } + + .lg\:divide-purple-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(245, 243, 255, var(--tw-divide-opacity)) !important; + } + + .lg\:divide-purple-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(237, 233, 254, var(--tw-divide-opacity)) !important; + } + + .lg\:divide-purple-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(221, 214, 254, var(--tw-divide-opacity)) !important; + } + + .lg\:divide-purple-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(196, 181, 253, var(--tw-divide-opacity)) !important; + } + + .lg\:divide-purple-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(167, 139, 250, var(--tw-divide-opacity)) !important; + } + + .lg\:divide-purple-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(139, 92, 246, var(--tw-divide-opacity)) !important; + } + + .lg\:divide-purple-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(124, 58, 237, var(--tw-divide-opacity)) !important; + } + + .lg\:divide-purple-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(109, 40, 217, var(--tw-divide-opacity)) !important; + } + + .lg\:divide-purple-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(91, 33, 182, var(--tw-divide-opacity)) !important; + } + + .lg\:divide-purple-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(76, 29, 149, var(--tw-divide-opacity)) !important; + } + + .lg\:divide-pink-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(253, 242, 248, var(--tw-divide-opacity)) !important; + } + + .lg\:divide-pink-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(252, 231, 243, var(--tw-divide-opacity)) !important; + } + + .lg\:divide-pink-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(251, 207, 232, var(--tw-divide-opacity)) !important; + } + + .lg\:divide-pink-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(249, 168, 212, var(--tw-divide-opacity)) !important; + } + + .lg\:divide-pink-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(244, 114, 182, var(--tw-divide-opacity)) !important; + } + + .lg\:divide-pink-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(236, 72, 153, var(--tw-divide-opacity)) !important; + } + + .lg\:divide-pink-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(219, 39, 119, var(--tw-divide-opacity)) !important; + } + + .lg\:divide-pink-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(190, 24, 93, var(--tw-divide-opacity)) !important; + } + + .lg\:divide-pink-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(157, 23, 77, var(--tw-divide-opacity)) !important; + } + + .lg\:divide-pink-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(131, 24, 67, var(--tw-divide-opacity)) !important; + } + + .lg\:divide-primary > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(0, 49, 151, var(--tw-divide-opacity)) !important; + } + + .lg\:divide-solid > :not([hidden]) ~ :not([hidden]) { + border-style: solid !important; + } + + .lg\:divide-dashed > :not([hidden]) ~ :not([hidden]) { + border-style: dashed !important; + } + + .lg\:divide-dotted > :not([hidden]) ~ :not([hidden]) { + border-style: dotted !important; + } + + .lg\:divide-double > :not([hidden]) ~ :not([hidden]) { + border-style: double !important; + } + + .lg\:divide-none > :not([hidden]) ~ :not([hidden]) { + border-style: none !important; + } + + .lg\:divide-opacity-0 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0 !important; + } + + .lg\:divide-opacity-5 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.05 !important; + } + + .lg\:divide-opacity-10 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.1 !important; + } + + .lg\:divide-opacity-20 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.2 !important; + } + + .lg\:divide-opacity-25 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.25 !important; + } + + .lg\:divide-opacity-30 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.3 !important; + } + + .lg\:divide-opacity-40 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.4 !important; + } + + .lg\:divide-opacity-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.5 !important; + } + + .lg\:divide-opacity-60 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.6 !important; + } + + .lg\:divide-opacity-70 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.7 !important; + } + + .lg\:divide-opacity-75 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.75 !important; + } + + .lg\:divide-opacity-80 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.8 !important; + } + + .lg\:divide-opacity-90 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.9 !important; + } + + .lg\:divide-opacity-95 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.95 !important; + } + + .lg\:divide-opacity-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + } + + .lg\:sr-only { + position: absolute !important; + width: 1px !important; + height: 1px !important; + padding: 0 !important; + margin: -1px !important; + overflow: hidden !important; + clip: rect(0, 0, 0, 0) !important; + white-space: nowrap !important; + border-width: 0 !important; + } + + .lg\:not-sr-only { + position: static !important; + width: auto !important; + height: auto !important; + padding: 0 !important; + margin: 0 !important; + overflow: visible !important; + clip: auto !important; + white-space: normal !important; + } + + .lg\:focus-within\:sr-only:focus-within { + position: absolute !important; + width: 1px !important; + height: 1px !important; + padding: 0 !important; + margin: -1px !important; + overflow: hidden !important; + clip: rect(0, 0, 0, 0) !important; + white-space: nowrap !important; + border-width: 0 !important; + } + + .lg\:focus-within\:not-sr-only:focus-within { + position: static !important; + width: auto !important; + height: auto !important; + padding: 0 !important; + margin: 0 !important; + overflow: visible !important; + clip: auto !important; + white-space: normal !important; + } + + .lg\:focus\:sr-only:focus { + position: absolute !important; + width: 1px !important; + height: 1px !important; + padding: 0 !important; + margin: -1px !important; + overflow: hidden !important; + clip: rect(0, 0, 0, 0) !important; + white-space: nowrap !important; + border-width: 0 !important; + } + + .lg\:focus\:not-sr-only:focus { + position: static !important; + width: auto !important; + height: auto !important; + padding: 0 !important; + margin: 0 !important; + overflow: visible !important; + clip: auto !important; + white-space: normal !important; + } + + .lg\:appearance-none { + -webkit-appearance: none !important; + -moz-appearance: none !important; + appearance: none !important; + } + + .lg\:bg-fixed { + background-attachment: fixed !important; + } + + .lg\:bg-local { + background-attachment: local !important; + } + + .lg\:bg-scroll { + background-attachment: scroll !important; + } + + .lg\:bg-clip-border { + background-clip: border-box !important; + } + + .lg\:bg-clip-padding { + background-clip: padding-box !important; + } + + .lg\:bg-clip-content { + background-clip: content-box !important; + } + + .lg\:bg-clip-text { + -webkit-background-clip: text !important; + background-clip: text !important; + } + + .lg\:bg-transparent { + background-color: transparent !important; + } + + .lg\:bg-current { + background-color: currentColor !important; + } + + .lg\:bg-black { + --tw-bg-opacity: 1 !important; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important; + } + + .lg\:bg-white { + --tw-bg-opacity: 1 !important; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important; + } + + .lg\:bg-gray-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)) !important; + } + + .lg\:bg-gray-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)) !important; + } + + .lg\:bg-gray-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)) !important; + } + + .lg\:bg-gray-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)) !important; + } + + .lg\:bg-gray-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)) !important; + } + + .lg\:bg-gray-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)) !important; + } + + .lg\:bg-gray-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)) !important; + } + + .lg\:bg-gray-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)) !important; + } + + .lg\:bg-gray-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)) !important; + } + + .lg\:bg-gray-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)) !important; + } + + .lg\:bg-red-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 242, 242, var(--tw-bg-opacity)) !important; + } + + .lg\:bg-red-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 226, 226, var(--tw-bg-opacity)) !important; + } + + .lg\:bg-red-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 202, 202, var(--tw-bg-opacity)) !important; + } + + .lg\:bg-red-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 165, 165, var(--tw-bg-opacity)) !important; + } + + .lg\:bg-red-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(248, 113, 113, var(--tw-bg-opacity)) !important; + } + + .lg\:bg-red-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(239, 68, 68, var(--tw-bg-opacity)) !important; + } + + .lg\:bg-red-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(220, 38, 38, var(--tw-bg-opacity)) !important; + } + + .lg\:bg-red-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(185, 28, 28, var(--tw-bg-opacity)) !important; + } + + .lg\:bg-red-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(153, 27, 27, var(--tw-bg-opacity)) !important; + } + + .lg\:bg-red-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(127, 29, 29, var(--tw-bg-opacity)) !important; + } + + .lg\:bg-yellow-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(255, 251, 235, var(--tw-bg-opacity)) !important; + } + + .lg\:bg-yellow-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 243, 199, var(--tw-bg-opacity)) !important; + } + + .lg\:bg-yellow-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(253, 230, 138, var(--tw-bg-opacity)) !important; + } + + .lg\:bg-yellow-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 211, 77, var(--tw-bg-opacity)) !important; + } + + .lg\:bg-yellow-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(251, 191, 36, var(--tw-bg-opacity)) !important; + } + + .lg\:bg-yellow-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)) !important; + } + + .lg\:bg-yellow-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(217, 119, 6, var(--tw-bg-opacity)) !important; + } + + .lg\:bg-yellow-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(180, 83, 9, var(--tw-bg-opacity)) !important; + } + + .lg\:bg-yellow-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(146, 64, 14, var(--tw-bg-opacity)) !important; + } + + .lg\:bg-yellow-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(120, 53, 15, var(--tw-bg-opacity)) !important; + } + + .lg\:bg-green-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(236, 253, 245, var(--tw-bg-opacity)) !important; + } + + .lg\:bg-green-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(209, 250, 229, var(--tw-bg-opacity)) !important; + } + + .lg\:bg-green-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(167, 243, 208, var(--tw-bg-opacity)) !important; + } + + .lg\:bg-green-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(110, 231, 183, var(--tw-bg-opacity)) !important; + } + + .lg\:bg-green-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(52, 211, 153, var(--tw-bg-opacity)) !important; + } + + .lg\:bg-green-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(16, 185, 129, var(--tw-bg-opacity)) !important; + } + + .lg\:bg-green-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(5, 150, 105, var(--tw-bg-opacity)) !important; + } + + .lg\:bg-green-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(4, 120, 87, var(--tw-bg-opacity)) !important; + } + + .lg\:bg-green-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(6, 95, 70, var(--tw-bg-opacity)) !important; + } + + .lg\:bg-green-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(6, 78, 59, var(--tw-bg-opacity)) !important; + } + + .lg\:bg-blue-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(239, 246, 255, var(--tw-bg-opacity)) !important; + } + + .lg\:bg-blue-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(219, 234, 254, var(--tw-bg-opacity)) !important; + } + + .lg\:bg-blue-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(191, 219, 254, var(--tw-bg-opacity)) !important; + } + + .lg\:bg-blue-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(147, 197, 253, var(--tw-bg-opacity)) !important; + } + + .lg\:bg-blue-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(96, 165, 250, var(--tw-bg-opacity)) !important; + } + + .lg\:bg-blue-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)) !important; + } + + .lg\:bg-blue-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(37, 99, 235, var(--tw-bg-opacity)) !important; + } + + .lg\:bg-blue-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(29, 78, 216, var(--tw-bg-opacity)) !important; + } + + .lg\:bg-blue-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(30, 64, 175, var(--tw-bg-opacity)) !important; + } + + .lg\:bg-blue-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(30, 58, 138, var(--tw-bg-opacity)) !important; + } + + .lg\:bg-indigo-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(238, 242, 255, var(--tw-bg-opacity)) !important; + } + + .lg\:bg-indigo-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(224, 231, 255, var(--tw-bg-opacity)) !important; + } + + .lg\:bg-indigo-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(199, 210, 254, var(--tw-bg-opacity)) !important; + } + + .lg\:bg-indigo-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(165, 180, 252, var(--tw-bg-opacity)) !important; + } + + .lg\:bg-indigo-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(129, 140, 248, var(--tw-bg-opacity)) !important; + } + + .lg\:bg-indigo-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(99, 102, 241, var(--tw-bg-opacity)) !important; + } + + .lg\:bg-indigo-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(79, 70, 229, var(--tw-bg-opacity)) !important; + } + + .lg\:bg-indigo-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(67, 56, 202, var(--tw-bg-opacity)) !important; + } + + .lg\:bg-indigo-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(55, 48, 163, var(--tw-bg-opacity)) !important; + } + + .lg\:bg-indigo-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(49, 46, 129, var(--tw-bg-opacity)) !important; + } + + .lg\:bg-purple-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(245, 243, 255, var(--tw-bg-opacity)) !important; + } + + .lg\:bg-purple-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(237, 233, 254, var(--tw-bg-opacity)) !important; + } + + .lg\:bg-purple-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(221, 214, 254, var(--tw-bg-opacity)) !important; + } + + .lg\:bg-purple-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(196, 181, 253, var(--tw-bg-opacity)) !important; + } + + .lg\:bg-purple-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(167, 139, 250, var(--tw-bg-opacity)) !important; + } + + .lg\:bg-purple-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(139, 92, 246, var(--tw-bg-opacity)) !important; + } + + .lg\:bg-purple-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(124, 58, 237, var(--tw-bg-opacity)) !important; + } + + .lg\:bg-purple-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(109, 40, 217, var(--tw-bg-opacity)) !important; + } + + .lg\:bg-purple-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(91, 33, 182, var(--tw-bg-opacity)) !important; + } + + .lg\:bg-purple-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(76, 29, 149, var(--tw-bg-opacity)) !important; + } + + .lg\:bg-pink-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(253, 242, 248, var(--tw-bg-opacity)) !important; + } + + .lg\:bg-pink-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 231, 243, var(--tw-bg-opacity)) !important; + } + + .lg\:bg-pink-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(251, 207, 232, var(--tw-bg-opacity)) !important; + } + + .lg\:bg-pink-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(249, 168, 212, var(--tw-bg-opacity)) !important; + } + + .lg\:bg-pink-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(244, 114, 182, var(--tw-bg-opacity)) !important; + } + + .lg\:bg-pink-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(236, 72, 153, var(--tw-bg-opacity)) !important; + } + + .lg\:bg-pink-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(219, 39, 119, var(--tw-bg-opacity)) !important; + } + + .lg\:bg-pink-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(190, 24, 93, var(--tw-bg-opacity)) !important; + } + + .lg\:bg-pink-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(157, 23, 77, var(--tw-bg-opacity)) !important; + } + + .lg\:bg-pink-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(131, 24, 67, var(--tw-bg-opacity)) !important; + } + + .lg\:bg-primary { + --tw-bg-opacity: 1 !important; + background-color: rgba(0, 49, 151, var(--tw-bg-opacity)) !important; + } + + .group:hover .lg\:group-hover\:bg-transparent { + background-color: transparent !important; + } + + .group:hover .lg\:group-hover\:bg-current { + background-color: currentColor !important; + } + + .group:hover .lg\:group-hover\:bg-black { + --tw-bg-opacity: 1 !important; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important; + } + + .group:hover .lg\:group-hover\:bg-white { + --tw-bg-opacity: 1 !important; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important; + } + + .group:hover .lg\:group-hover\:bg-gray-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)) !important; + } + + .group:hover .lg\:group-hover\:bg-gray-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)) !important; + } + + .group:hover .lg\:group-hover\:bg-gray-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)) !important; + } + + .group:hover .lg\:group-hover\:bg-gray-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)) !important; + } + + .group:hover .lg\:group-hover\:bg-gray-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)) !important; + } + + .group:hover .lg\:group-hover\:bg-gray-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)) !important; + } + + .group:hover .lg\:group-hover\:bg-gray-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)) !important; + } + + .group:hover .lg\:group-hover\:bg-gray-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)) !important; + } + + .group:hover .lg\:group-hover\:bg-gray-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)) !important; + } + + .group:hover .lg\:group-hover\:bg-gray-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)) !important; + } + + .group:hover .lg\:group-hover\:bg-red-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 242, 242, var(--tw-bg-opacity)) !important; + } + + .group:hover .lg\:group-hover\:bg-red-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 226, 226, var(--tw-bg-opacity)) !important; + } + + .group:hover .lg\:group-hover\:bg-red-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 202, 202, var(--tw-bg-opacity)) !important; + } + + .group:hover .lg\:group-hover\:bg-red-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 165, 165, var(--tw-bg-opacity)) !important; + } + + .group:hover .lg\:group-hover\:bg-red-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(248, 113, 113, var(--tw-bg-opacity)) !important; + } + + .group:hover .lg\:group-hover\:bg-red-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(239, 68, 68, var(--tw-bg-opacity)) !important; + } + + .group:hover .lg\:group-hover\:bg-red-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(220, 38, 38, var(--tw-bg-opacity)) !important; + } + + .group:hover .lg\:group-hover\:bg-red-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(185, 28, 28, var(--tw-bg-opacity)) !important; + } + + .group:hover .lg\:group-hover\:bg-red-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(153, 27, 27, var(--tw-bg-opacity)) !important; + } + + .group:hover .lg\:group-hover\:bg-red-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(127, 29, 29, var(--tw-bg-opacity)) !important; + } + + .group:hover .lg\:group-hover\:bg-yellow-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(255, 251, 235, var(--tw-bg-opacity)) !important; + } + + .group:hover .lg\:group-hover\:bg-yellow-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 243, 199, var(--tw-bg-opacity)) !important; + } + + .group:hover .lg\:group-hover\:bg-yellow-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(253, 230, 138, var(--tw-bg-opacity)) !important; + } + + .group:hover .lg\:group-hover\:bg-yellow-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 211, 77, var(--tw-bg-opacity)) !important; + } + + .group:hover .lg\:group-hover\:bg-yellow-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(251, 191, 36, var(--tw-bg-opacity)) !important; + } + + .group:hover .lg\:group-hover\:bg-yellow-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)) !important; + } + + .group:hover .lg\:group-hover\:bg-yellow-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(217, 119, 6, var(--tw-bg-opacity)) !important; + } + + .group:hover .lg\:group-hover\:bg-yellow-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(180, 83, 9, var(--tw-bg-opacity)) !important; + } + + .group:hover .lg\:group-hover\:bg-yellow-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(146, 64, 14, var(--tw-bg-opacity)) !important; + } + + .group:hover .lg\:group-hover\:bg-yellow-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(120, 53, 15, var(--tw-bg-opacity)) !important; + } + + .group:hover .lg\:group-hover\:bg-green-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(236, 253, 245, var(--tw-bg-opacity)) !important; + } + + .group:hover .lg\:group-hover\:bg-green-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(209, 250, 229, var(--tw-bg-opacity)) !important; + } + + .group:hover .lg\:group-hover\:bg-green-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(167, 243, 208, var(--tw-bg-opacity)) !important; + } + + .group:hover .lg\:group-hover\:bg-green-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(110, 231, 183, var(--tw-bg-opacity)) !important; + } + + .group:hover .lg\:group-hover\:bg-green-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(52, 211, 153, var(--tw-bg-opacity)) !important; + } + + .group:hover .lg\:group-hover\:bg-green-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(16, 185, 129, var(--tw-bg-opacity)) !important; + } + + .group:hover .lg\:group-hover\:bg-green-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(5, 150, 105, var(--tw-bg-opacity)) !important; + } + + .group:hover .lg\:group-hover\:bg-green-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(4, 120, 87, var(--tw-bg-opacity)) !important; + } + + .group:hover .lg\:group-hover\:bg-green-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(6, 95, 70, var(--tw-bg-opacity)) !important; + } + + .group:hover .lg\:group-hover\:bg-green-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(6, 78, 59, var(--tw-bg-opacity)) !important; + } + + .group:hover .lg\:group-hover\:bg-blue-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(239, 246, 255, var(--tw-bg-opacity)) !important; + } + + .group:hover .lg\:group-hover\:bg-blue-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(219, 234, 254, var(--tw-bg-opacity)) !important; + } + + .group:hover .lg\:group-hover\:bg-blue-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(191, 219, 254, var(--tw-bg-opacity)) !important; + } + + .group:hover .lg\:group-hover\:bg-blue-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(147, 197, 253, var(--tw-bg-opacity)) !important; + } + + .group:hover .lg\:group-hover\:bg-blue-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(96, 165, 250, var(--tw-bg-opacity)) !important; + } + + .group:hover .lg\:group-hover\:bg-blue-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)) !important; + } + + .group:hover .lg\:group-hover\:bg-blue-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(37, 99, 235, var(--tw-bg-opacity)) !important; + } + + .group:hover .lg\:group-hover\:bg-blue-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(29, 78, 216, var(--tw-bg-opacity)) !important; + } + + .group:hover .lg\:group-hover\:bg-blue-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(30, 64, 175, var(--tw-bg-opacity)) !important; + } + + .group:hover .lg\:group-hover\:bg-blue-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(30, 58, 138, var(--tw-bg-opacity)) !important; + } + + .group:hover .lg\:group-hover\:bg-indigo-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(238, 242, 255, var(--tw-bg-opacity)) !important; + } + + .group:hover .lg\:group-hover\:bg-indigo-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(224, 231, 255, var(--tw-bg-opacity)) !important; + } + + .group:hover .lg\:group-hover\:bg-indigo-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(199, 210, 254, var(--tw-bg-opacity)) !important; + } + + .group:hover .lg\:group-hover\:bg-indigo-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(165, 180, 252, var(--tw-bg-opacity)) !important; + } + + .group:hover .lg\:group-hover\:bg-indigo-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(129, 140, 248, var(--tw-bg-opacity)) !important; + } + + .group:hover .lg\:group-hover\:bg-indigo-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(99, 102, 241, var(--tw-bg-opacity)) !important; + } + + .group:hover .lg\:group-hover\:bg-indigo-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(79, 70, 229, var(--tw-bg-opacity)) !important; + } + + .group:hover .lg\:group-hover\:bg-indigo-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(67, 56, 202, var(--tw-bg-opacity)) !important; + } + + .group:hover .lg\:group-hover\:bg-indigo-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(55, 48, 163, var(--tw-bg-opacity)) !important; + } + + .group:hover .lg\:group-hover\:bg-indigo-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(49, 46, 129, var(--tw-bg-opacity)) !important; + } + + .group:hover .lg\:group-hover\:bg-purple-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(245, 243, 255, var(--tw-bg-opacity)) !important; + } + + .group:hover .lg\:group-hover\:bg-purple-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(237, 233, 254, var(--tw-bg-opacity)) !important; + } + + .group:hover .lg\:group-hover\:bg-purple-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(221, 214, 254, var(--tw-bg-opacity)) !important; + } + + .group:hover .lg\:group-hover\:bg-purple-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(196, 181, 253, var(--tw-bg-opacity)) !important; + } + + .group:hover .lg\:group-hover\:bg-purple-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(167, 139, 250, var(--tw-bg-opacity)) !important; + } + + .group:hover .lg\:group-hover\:bg-purple-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(139, 92, 246, var(--tw-bg-opacity)) !important; + } + + .group:hover .lg\:group-hover\:bg-purple-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(124, 58, 237, var(--tw-bg-opacity)) !important; + } + + .group:hover .lg\:group-hover\:bg-purple-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(109, 40, 217, var(--tw-bg-opacity)) !important; + } + + .group:hover .lg\:group-hover\:bg-purple-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(91, 33, 182, var(--tw-bg-opacity)) !important; + } + + .group:hover .lg\:group-hover\:bg-purple-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(76, 29, 149, var(--tw-bg-opacity)) !important; + } + + .group:hover .lg\:group-hover\:bg-pink-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(253, 242, 248, var(--tw-bg-opacity)) !important; + } + + .group:hover .lg\:group-hover\:bg-pink-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 231, 243, var(--tw-bg-opacity)) !important; + } + + .group:hover .lg\:group-hover\:bg-pink-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(251, 207, 232, var(--tw-bg-opacity)) !important; + } + + .group:hover .lg\:group-hover\:bg-pink-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(249, 168, 212, var(--tw-bg-opacity)) !important; + } + + .group:hover .lg\:group-hover\:bg-pink-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(244, 114, 182, var(--tw-bg-opacity)) !important; + } + + .group:hover .lg\:group-hover\:bg-pink-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(236, 72, 153, var(--tw-bg-opacity)) !important; + } + + .group:hover .lg\:group-hover\:bg-pink-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(219, 39, 119, var(--tw-bg-opacity)) !important; + } + + .group:hover .lg\:group-hover\:bg-pink-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(190, 24, 93, var(--tw-bg-opacity)) !important; + } + + .group:hover .lg\:group-hover\:bg-pink-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(157, 23, 77, var(--tw-bg-opacity)) !important; + } + + .group:hover .lg\:group-hover\:bg-pink-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(131, 24, 67, var(--tw-bg-opacity)) !important; + } + + .group:hover .lg\:group-hover\:bg-primary { + --tw-bg-opacity: 1 !important; + background-color: rgba(0, 49, 151, var(--tw-bg-opacity)) !important; + } + + .lg\:focus-within\:bg-transparent:focus-within { + background-color: transparent !important; + } + + .lg\:focus-within\:bg-current:focus-within { + background-color: currentColor !important; + } + + .lg\:focus-within\:bg-black:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important; + } + + .lg\:focus-within\:bg-white:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important; + } + + .lg\:focus-within\:bg-gray-50:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)) !important; + } + + .lg\:focus-within\:bg-gray-100:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)) !important; + } + + .lg\:focus-within\:bg-gray-200:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)) !important; + } + + .lg\:focus-within\:bg-gray-300:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)) !important; + } + + .lg\:focus-within\:bg-gray-400:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)) !important; + } + + .lg\:focus-within\:bg-gray-500:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)) !important; + } + + .lg\:focus-within\:bg-gray-600:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)) !important; + } + + .lg\:focus-within\:bg-gray-700:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)) !important; + } + + .lg\:focus-within\:bg-gray-800:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)) !important; + } + + .lg\:focus-within\:bg-gray-900:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)) !important; + } + + .lg\:focus-within\:bg-red-50:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 242, 242, var(--tw-bg-opacity)) !important; + } + + .lg\:focus-within\:bg-red-100:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 226, 226, var(--tw-bg-opacity)) !important; + } + + .lg\:focus-within\:bg-red-200:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 202, 202, var(--tw-bg-opacity)) !important; + } + + .lg\:focus-within\:bg-red-300:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 165, 165, var(--tw-bg-opacity)) !important; + } + + .lg\:focus-within\:bg-red-400:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(248, 113, 113, var(--tw-bg-opacity)) !important; + } + + .lg\:focus-within\:bg-red-500:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(239, 68, 68, var(--tw-bg-opacity)) !important; + } + + .lg\:focus-within\:bg-red-600:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(220, 38, 38, var(--tw-bg-opacity)) !important; + } + + .lg\:focus-within\:bg-red-700:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(185, 28, 28, var(--tw-bg-opacity)) !important; + } + + .lg\:focus-within\:bg-red-800:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(153, 27, 27, var(--tw-bg-opacity)) !important; + } + + .lg\:focus-within\:bg-red-900:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(127, 29, 29, var(--tw-bg-opacity)) !important; + } + + .lg\:focus-within\:bg-yellow-50:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(255, 251, 235, var(--tw-bg-opacity)) !important; + } + + .lg\:focus-within\:bg-yellow-100:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 243, 199, var(--tw-bg-opacity)) !important; + } + + .lg\:focus-within\:bg-yellow-200:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(253, 230, 138, var(--tw-bg-opacity)) !important; + } + + .lg\:focus-within\:bg-yellow-300:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 211, 77, var(--tw-bg-opacity)) !important; + } + + .lg\:focus-within\:bg-yellow-400:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(251, 191, 36, var(--tw-bg-opacity)) !important; + } + + .lg\:focus-within\:bg-yellow-500:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)) !important; + } + + .lg\:focus-within\:bg-yellow-600:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(217, 119, 6, var(--tw-bg-opacity)) !important; + } + + .lg\:focus-within\:bg-yellow-700:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(180, 83, 9, var(--tw-bg-opacity)) !important; + } + + .lg\:focus-within\:bg-yellow-800:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(146, 64, 14, var(--tw-bg-opacity)) !important; + } + + .lg\:focus-within\:bg-yellow-900:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(120, 53, 15, var(--tw-bg-opacity)) !important; + } + + .lg\:focus-within\:bg-green-50:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(236, 253, 245, var(--tw-bg-opacity)) !important; + } + + .lg\:focus-within\:bg-green-100:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(209, 250, 229, var(--tw-bg-opacity)) !important; + } + + .lg\:focus-within\:bg-green-200:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(167, 243, 208, var(--tw-bg-opacity)) !important; + } + + .lg\:focus-within\:bg-green-300:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(110, 231, 183, var(--tw-bg-opacity)) !important; + } + + .lg\:focus-within\:bg-green-400:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(52, 211, 153, var(--tw-bg-opacity)) !important; + } + + .lg\:focus-within\:bg-green-500:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(16, 185, 129, var(--tw-bg-opacity)) !important; + } + + .lg\:focus-within\:bg-green-600:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(5, 150, 105, var(--tw-bg-opacity)) !important; + } + + .lg\:focus-within\:bg-green-700:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(4, 120, 87, var(--tw-bg-opacity)) !important; + } + + .lg\:focus-within\:bg-green-800:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(6, 95, 70, var(--tw-bg-opacity)) !important; + } + + .lg\:focus-within\:bg-green-900:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(6, 78, 59, var(--tw-bg-opacity)) !important; + } + + .lg\:focus-within\:bg-blue-50:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(239, 246, 255, var(--tw-bg-opacity)) !important; + } + + .lg\:focus-within\:bg-blue-100:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(219, 234, 254, var(--tw-bg-opacity)) !important; + } + + .lg\:focus-within\:bg-blue-200:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(191, 219, 254, var(--tw-bg-opacity)) !important; + } + + .lg\:focus-within\:bg-blue-300:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(147, 197, 253, var(--tw-bg-opacity)) !important; + } + + .lg\:focus-within\:bg-blue-400:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(96, 165, 250, var(--tw-bg-opacity)) !important; + } + + .lg\:focus-within\:bg-blue-500:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)) !important; + } + + .lg\:focus-within\:bg-blue-600:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(37, 99, 235, var(--tw-bg-opacity)) !important; + } + + .lg\:focus-within\:bg-blue-700:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(29, 78, 216, var(--tw-bg-opacity)) !important; + } + + .lg\:focus-within\:bg-blue-800:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(30, 64, 175, var(--tw-bg-opacity)) !important; + } + + .lg\:focus-within\:bg-blue-900:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(30, 58, 138, var(--tw-bg-opacity)) !important; + } + + .lg\:focus-within\:bg-indigo-50:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(238, 242, 255, var(--tw-bg-opacity)) !important; + } + + .lg\:focus-within\:bg-indigo-100:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(224, 231, 255, var(--tw-bg-opacity)) !important; + } + + .lg\:focus-within\:bg-indigo-200:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(199, 210, 254, var(--tw-bg-opacity)) !important; + } + + .lg\:focus-within\:bg-indigo-300:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(165, 180, 252, var(--tw-bg-opacity)) !important; + } + + .lg\:focus-within\:bg-indigo-400:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(129, 140, 248, var(--tw-bg-opacity)) !important; + } + + .lg\:focus-within\:bg-indigo-500:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(99, 102, 241, var(--tw-bg-opacity)) !important; + } + + .lg\:focus-within\:bg-indigo-600:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(79, 70, 229, var(--tw-bg-opacity)) !important; + } + + .lg\:focus-within\:bg-indigo-700:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(67, 56, 202, var(--tw-bg-opacity)) !important; + } + + .lg\:focus-within\:bg-indigo-800:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(55, 48, 163, var(--tw-bg-opacity)) !important; + } + + .lg\:focus-within\:bg-indigo-900:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(49, 46, 129, var(--tw-bg-opacity)) !important; + } + + .lg\:focus-within\:bg-purple-50:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(245, 243, 255, var(--tw-bg-opacity)) !important; + } + + .lg\:focus-within\:bg-purple-100:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(237, 233, 254, var(--tw-bg-opacity)) !important; + } + + .lg\:focus-within\:bg-purple-200:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(221, 214, 254, var(--tw-bg-opacity)) !important; + } + + .lg\:focus-within\:bg-purple-300:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(196, 181, 253, var(--tw-bg-opacity)) !important; + } + + .lg\:focus-within\:bg-purple-400:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(167, 139, 250, var(--tw-bg-opacity)) !important; + } + + .lg\:focus-within\:bg-purple-500:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(139, 92, 246, var(--tw-bg-opacity)) !important; + } + + .lg\:focus-within\:bg-purple-600:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(124, 58, 237, var(--tw-bg-opacity)) !important; + } + + .lg\:focus-within\:bg-purple-700:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(109, 40, 217, var(--tw-bg-opacity)) !important; + } + + .lg\:focus-within\:bg-purple-800:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(91, 33, 182, var(--tw-bg-opacity)) !important; + } + + .lg\:focus-within\:bg-purple-900:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(76, 29, 149, var(--tw-bg-opacity)) !important; + } + + .lg\:focus-within\:bg-pink-50:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(253, 242, 248, var(--tw-bg-opacity)) !important; + } + + .lg\:focus-within\:bg-pink-100:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 231, 243, var(--tw-bg-opacity)) !important; + } + + .lg\:focus-within\:bg-pink-200:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(251, 207, 232, var(--tw-bg-opacity)) !important; + } + + .lg\:focus-within\:bg-pink-300:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(249, 168, 212, var(--tw-bg-opacity)) !important; + } + + .lg\:focus-within\:bg-pink-400:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(244, 114, 182, var(--tw-bg-opacity)) !important; + } + + .lg\:focus-within\:bg-pink-500:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(236, 72, 153, var(--tw-bg-opacity)) !important; + } + + .lg\:focus-within\:bg-pink-600:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(219, 39, 119, var(--tw-bg-opacity)) !important; + } + + .lg\:focus-within\:bg-pink-700:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(190, 24, 93, var(--tw-bg-opacity)) !important; + } + + .lg\:focus-within\:bg-pink-800:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(157, 23, 77, var(--tw-bg-opacity)) !important; + } + + .lg\:focus-within\:bg-pink-900:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(131, 24, 67, var(--tw-bg-opacity)) !important; + } + + .lg\:focus-within\:bg-primary:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(0, 49, 151, var(--tw-bg-opacity)) !important; + } + + .lg\:hover\:bg-transparent:hover { + background-color: transparent !important; + } + + .lg\:hover\:bg-current:hover { + background-color: currentColor !important; + } + + .lg\:hover\:bg-black:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important; + } + + .lg\:hover\:bg-white:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important; + } + + .lg\:hover\:bg-gray-50:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)) !important; + } + + .lg\:hover\:bg-gray-100:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)) !important; + } + + .lg\:hover\:bg-gray-200:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)) !important; + } + + .lg\:hover\:bg-gray-300:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)) !important; + } + + .lg\:hover\:bg-gray-400:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)) !important; + } + + .lg\:hover\:bg-gray-500:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)) !important; + } + + .lg\:hover\:bg-gray-600:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)) !important; + } + + .lg\:hover\:bg-gray-700:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)) !important; + } + + .lg\:hover\:bg-gray-800:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)) !important; + } + + .lg\:hover\:bg-gray-900:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)) !important; + } + + .lg\:hover\:bg-red-50:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 242, 242, var(--tw-bg-opacity)) !important; + } + + .lg\:hover\:bg-red-100:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 226, 226, var(--tw-bg-opacity)) !important; + } + + .lg\:hover\:bg-red-200:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 202, 202, var(--tw-bg-opacity)) !important; + } + + .lg\:hover\:bg-red-300:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 165, 165, var(--tw-bg-opacity)) !important; + } + + .lg\:hover\:bg-red-400:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(248, 113, 113, var(--tw-bg-opacity)) !important; + } + + .lg\:hover\:bg-red-500:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(239, 68, 68, var(--tw-bg-opacity)) !important; + } + + .lg\:hover\:bg-red-600:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(220, 38, 38, var(--tw-bg-opacity)) !important; + } + + .lg\:hover\:bg-red-700:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(185, 28, 28, var(--tw-bg-opacity)) !important; + } + + .lg\:hover\:bg-red-800:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(153, 27, 27, var(--tw-bg-opacity)) !important; + } + + .lg\:hover\:bg-red-900:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(127, 29, 29, var(--tw-bg-opacity)) !important; + } + + .lg\:hover\:bg-yellow-50:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(255, 251, 235, var(--tw-bg-opacity)) !important; + } + + .lg\:hover\:bg-yellow-100:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 243, 199, var(--tw-bg-opacity)) !important; + } + + .lg\:hover\:bg-yellow-200:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(253, 230, 138, var(--tw-bg-opacity)) !important; + } + + .lg\:hover\:bg-yellow-300:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 211, 77, var(--tw-bg-opacity)) !important; + } + + .lg\:hover\:bg-yellow-400:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(251, 191, 36, var(--tw-bg-opacity)) !important; + } + + .lg\:hover\:bg-yellow-500:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)) !important; + } + + .lg\:hover\:bg-yellow-600:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(217, 119, 6, var(--tw-bg-opacity)) !important; + } + + .lg\:hover\:bg-yellow-700:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(180, 83, 9, var(--tw-bg-opacity)) !important; + } + + .lg\:hover\:bg-yellow-800:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(146, 64, 14, var(--tw-bg-opacity)) !important; + } + + .lg\:hover\:bg-yellow-900:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(120, 53, 15, var(--tw-bg-opacity)) !important; + } + + .lg\:hover\:bg-green-50:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(236, 253, 245, var(--tw-bg-opacity)) !important; + } + + .lg\:hover\:bg-green-100:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(209, 250, 229, var(--tw-bg-opacity)) !important; + } + + .lg\:hover\:bg-green-200:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(167, 243, 208, var(--tw-bg-opacity)) !important; + } + + .lg\:hover\:bg-green-300:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(110, 231, 183, var(--tw-bg-opacity)) !important; + } + + .lg\:hover\:bg-green-400:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(52, 211, 153, var(--tw-bg-opacity)) !important; + } + + .lg\:hover\:bg-green-500:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(16, 185, 129, var(--tw-bg-opacity)) !important; + } + + .lg\:hover\:bg-green-600:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(5, 150, 105, var(--tw-bg-opacity)) !important; + } + + .lg\:hover\:bg-green-700:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(4, 120, 87, var(--tw-bg-opacity)) !important; + } + + .lg\:hover\:bg-green-800:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(6, 95, 70, var(--tw-bg-opacity)) !important; + } + + .lg\:hover\:bg-green-900:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(6, 78, 59, var(--tw-bg-opacity)) !important; + } + + .lg\:hover\:bg-blue-50:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(239, 246, 255, var(--tw-bg-opacity)) !important; + } + + .lg\:hover\:bg-blue-100:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(219, 234, 254, var(--tw-bg-opacity)) !important; + } + + .lg\:hover\:bg-blue-200:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(191, 219, 254, var(--tw-bg-opacity)) !important; + } + + .lg\:hover\:bg-blue-300:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(147, 197, 253, var(--tw-bg-opacity)) !important; + } + + .lg\:hover\:bg-blue-400:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(96, 165, 250, var(--tw-bg-opacity)) !important; + } + + .lg\:hover\:bg-blue-500:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)) !important; + } + + .lg\:hover\:bg-blue-600:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(37, 99, 235, var(--tw-bg-opacity)) !important; + } + + .lg\:hover\:bg-blue-700:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(29, 78, 216, var(--tw-bg-opacity)) !important; + } + + .lg\:hover\:bg-blue-800:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(30, 64, 175, var(--tw-bg-opacity)) !important; + } + + .lg\:hover\:bg-blue-900:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(30, 58, 138, var(--tw-bg-opacity)) !important; + } + + .lg\:hover\:bg-indigo-50:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(238, 242, 255, var(--tw-bg-opacity)) !important; + } + + .lg\:hover\:bg-indigo-100:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(224, 231, 255, var(--tw-bg-opacity)) !important; + } + + .lg\:hover\:bg-indigo-200:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(199, 210, 254, var(--tw-bg-opacity)) !important; + } + + .lg\:hover\:bg-indigo-300:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(165, 180, 252, var(--tw-bg-opacity)) !important; + } + + .lg\:hover\:bg-indigo-400:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(129, 140, 248, var(--tw-bg-opacity)) !important; + } + + .lg\:hover\:bg-indigo-500:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(99, 102, 241, var(--tw-bg-opacity)) !important; + } + + .lg\:hover\:bg-indigo-600:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(79, 70, 229, var(--tw-bg-opacity)) !important; + } + + .lg\:hover\:bg-indigo-700:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(67, 56, 202, var(--tw-bg-opacity)) !important; + } + + .lg\:hover\:bg-indigo-800:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(55, 48, 163, var(--tw-bg-opacity)) !important; + } + + .lg\:hover\:bg-indigo-900:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(49, 46, 129, var(--tw-bg-opacity)) !important; + } + + .lg\:hover\:bg-purple-50:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(245, 243, 255, var(--tw-bg-opacity)) !important; + } + + .lg\:hover\:bg-purple-100:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(237, 233, 254, var(--tw-bg-opacity)) !important; + } + + .lg\:hover\:bg-purple-200:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(221, 214, 254, var(--tw-bg-opacity)) !important; + } + + .lg\:hover\:bg-purple-300:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(196, 181, 253, var(--tw-bg-opacity)) !important; + } + + .lg\:hover\:bg-purple-400:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(167, 139, 250, var(--tw-bg-opacity)) !important; + } + + .lg\:hover\:bg-purple-500:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(139, 92, 246, var(--tw-bg-opacity)) !important; + } + + .lg\:hover\:bg-purple-600:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(124, 58, 237, var(--tw-bg-opacity)) !important; + } + + .lg\:hover\:bg-purple-700:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(109, 40, 217, var(--tw-bg-opacity)) !important; + } + + .lg\:hover\:bg-purple-800:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(91, 33, 182, var(--tw-bg-opacity)) !important; + } + + .lg\:hover\:bg-purple-900:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(76, 29, 149, var(--tw-bg-opacity)) !important; + } + + .lg\:hover\:bg-pink-50:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(253, 242, 248, var(--tw-bg-opacity)) !important; + } + + .lg\:hover\:bg-pink-100:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 231, 243, var(--tw-bg-opacity)) !important; + } + + .lg\:hover\:bg-pink-200:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(251, 207, 232, var(--tw-bg-opacity)) !important; + } + + .lg\:hover\:bg-pink-300:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(249, 168, 212, var(--tw-bg-opacity)) !important; + } + + .lg\:hover\:bg-pink-400:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(244, 114, 182, var(--tw-bg-opacity)) !important; + } + + .lg\:hover\:bg-pink-500:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(236, 72, 153, var(--tw-bg-opacity)) !important; + } + + .lg\:hover\:bg-pink-600:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(219, 39, 119, var(--tw-bg-opacity)) !important; + } + + .lg\:hover\:bg-pink-700:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(190, 24, 93, var(--tw-bg-opacity)) !important; + } + + .lg\:hover\:bg-pink-800:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(157, 23, 77, var(--tw-bg-opacity)) !important; + } + + .lg\:hover\:bg-pink-900:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(131, 24, 67, var(--tw-bg-opacity)) !important; + } + + .lg\:hover\:bg-primary:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(0, 49, 151, var(--tw-bg-opacity)) !important; + } + + .lg\:focus\:bg-transparent:focus { + background-color: transparent !important; + } + + .lg\:focus\:bg-current:focus { + background-color: currentColor !important; + } + + .lg\:focus\:bg-black:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important; + } + + .lg\:focus\:bg-white:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important; + } + + .lg\:focus\:bg-gray-50:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)) !important; + } + + .lg\:focus\:bg-gray-100:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)) !important; + } + + .lg\:focus\:bg-gray-200:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)) !important; + } + + .lg\:focus\:bg-gray-300:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)) !important; + } + + .lg\:focus\:bg-gray-400:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)) !important; + } + + .lg\:focus\:bg-gray-500:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)) !important; + } + + .lg\:focus\:bg-gray-600:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)) !important; + } + + .lg\:focus\:bg-gray-700:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)) !important; + } + + .lg\:focus\:bg-gray-800:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)) !important; + } + + .lg\:focus\:bg-gray-900:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)) !important; + } + + .lg\:focus\:bg-red-50:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 242, 242, var(--tw-bg-opacity)) !important; + } + + .lg\:focus\:bg-red-100:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 226, 226, var(--tw-bg-opacity)) !important; + } + + .lg\:focus\:bg-red-200:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 202, 202, var(--tw-bg-opacity)) !important; + } + + .lg\:focus\:bg-red-300:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 165, 165, var(--tw-bg-opacity)) !important; + } + + .lg\:focus\:bg-red-400:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(248, 113, 113, var(--tw-bg-opacity)) !important; + } + + .lg\:focus\:bg-red-500:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(239, 68, 68, var(--tw-bg-opacity)) !important; + } + + .lg\:focus\:bg-red-600:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(220, 38, 38, var(--tw-bg-opacity)) !important; + } + + .lg\:focus\:bg-red-700:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(185, 28, 28, var(--tw-bg-opacity)) !important; + } + + .lg\:focus\:bg-red-800:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(153, 27, 27, var(--tw-bg-opacity)) !important; + } + + .lg\:focus\:bg-red-900:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(127, 29, 29, var(--tw-bg-opacity)) !important; + } + + .lg\:focus\:bg-yellow-50:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(255, 251, 235, var(--tw-bg-opacity)) !important; + } + + .lg\:focus\:bg-yellow-100:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 243, 199, var(--tw-bg-opacity)) !important; + } + + .lg\:focus\:bg-yellow-200:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(253, 230, 138, var(--tw-bg-opacity)) !important; + } + + .lg\:focus\:bg-yellow-300:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 211, 77, var(--tw-bg-opacity)) !important; + } + + .lg\:focus\:bg-yellow-400:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(251, 191, 36, var(--tw-bg-opacity)) !important; + } + + .lg\:focus\:bg-yellow-500:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)) !important; + } + + .lg\:focus\:bg-yellow-600:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(217, 119, 6, var(--tw-bg-opacity)) !important; + } + + .lg\:focus\:bg-yellow-700:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(180, 83, 9, var(--tw-bg-opacity)) !important; + } + + .lg\:focus\:bg-yellow-800:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(146, 64, 14, var(--tw-bg-opacity)) !important; + } + + .lg\:focus\:bg-yellow-900:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(120, 53, 15, var(--tw-bg-opacity)) !important; + } + + .lg\:focus\:bg-green-50:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(236, 253, 245, var(--tw-bg-opacity)) !important; + } + + .lg\:focus\:bg-green-100:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(209, 250, 229, var(--tw-bg-opacity)) !important; + } + + .lg\:focus\:bg-green-200:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(167, 243, 208, var(--tw-bg-opacity)) !important; + } + + .lg\:focus\:bg-green-300:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(110, 231, 183, var(--tw-bg-opacity)) !important; + } + + .lg\:focus\:bg-green-400:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(52, 211, 153, var(--tw-bg-opacity)) !important; + } + + .lg\:focus\:bg-green-500:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(16, 185, 129, var(--tw-bg-opacity)) !important; + } + + .lg\:focus\:bg-green-600:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(5, 150, 105, var(--tw-bg-opacity)) !important; + } + + .lg\:focus\:bg-green-700:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(4, 120, 87, var(--tw-bg-opacity)) !important; + } + + .lg\:focus\:bg-green-800:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(6, 95, 70, var(--tw-bg-opacity)) !important; + } + + .lg\:focus\:bg-green-900:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(6, 78, 59, var(--tw-bg-opacity)) !important; + } + + .lg\:focus\:bg-blue-50:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(239, 246, 255, var(--tw-bg-opacity)) !important; + } + + .lg\:focus\:bg-blue-100:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(219, 234, 254, var(--tw-bg-opacity)) !important; + } + + .lg\:focus\:bg-blue-200:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(191, 219, 254, var(--tw-bg-opacity)) !important; + } + + .lg\:focus\:bg-blue-300:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(147, 197, 253, var(--tw-bg-opacity)) !important; + } + + .lg\:focus\:bg-blue-400:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(96, 165, 250, var(--tw-bg-opacity)) !important; + } + + .lg\:focus\:bg-blue-500:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)) !important; + } + + .lg\:focus\:bg-blue-600:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(37, 99, 235, var(--tw-bg-opacity)) !important; + } + + .lg\:focus\:bg-blue-700:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(29, 78, 216, var(--tw-bg-opacity)) !important; + } + + .lg\:focus\:bg-blue-800:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(30, 64, 175, var(--tw-bg-opacity)) !important; + } + + .lg\:focus\:bg-blue-900:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(30, 58, 138, var(--tw-bg-opacity)) !important; + } + + .lg\:focus\:bg-indigo-50:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(238, 242, 255, var(--tw-bg-opacity)) !important; + } + + .lg\:focus\:bg-indigo-100:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(224, 231, 255, var(--tw-bg-opacity)) !important; + } + + .lg\:focus\:bg-indigo-200:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(199, 210, 254, var(--tw-bg-opacity)) !important; + } + + .lg\:focus\:bg-indigo-300:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(165, 180, 252, var(--tw-bg-opacity)) !important; + } + + .lg\:focus\:bg-indigo-400:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(129, 140, 248, var(--tw-bg-opacity)) !important; + } + + .lg\:focus\:bg-indigo-500:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(99, 102, 241, var(--tw-bg-opacity)) !important; + } + + .lg\:focus\:bg-indigo-600:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(79, 70, 229, var(--tw-bg-opacity)) !important; + } + + .lg\:focus\:bg-indigo-700:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(67, 56, 202, var(--tw-bg-opacity)) !important; + } + + .lg\:focus\:bg-indigo-800:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(55, 48, 163, var(--tw-bg-opacity)) !important; + } + + .lg\:focus\:bg-indigo-900:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(49, 46, 129, var(--tw-bg-opacity)) !important; + } + + .lg\:focus\:bg-purple-50:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(245, 243, 255, var(--tw-bg-opacity)) !important; + } + + .lg\:focus\:bg-purple-100:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(237, 233, 254, var(--tw-bg-opacity)) !important; + } + + .lg\:focus\:bg-purple-200:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(221, 214, 254, var(--tw-bg-opacity)) !important; + } + + .lg\:focus\:bg-purple-300:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(196, 181, 253, var(--tw-bg-opacity)) !important; + } + + .lg\:focus\:bg-purple-400:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(167, 139, 250, var(--tw-bg-opacity)) !important; + } + + .lg\:focus\:bg-purple-500:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(139, 92, 246, var(--tw-bg-opacity)) !important; + } + + .lg\:focus\:bg-purple-600:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(124, 58, 237, var(--tw-bg-opacity)) !important; + } + + .lg\:focus\:bg-purple-700:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(109, 40, 217, var(--tw-bg-opacity)) !important; + } + + .lg\:focus\:bg-purple-800:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(91, 33, 182, var(--tw-bg-opacity)) !important; + } + + .lg\:focus\:bg-purple-900:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(76, 29, 149, var(--tw-bg-opacity)) !important; + } + + .lg\:focus\:bg-pink-50:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(253, 242, 248, var(--tw-bg-opacity)) !important; + } + + .lg\:focus\:bg-pink-100:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 231, 243, var(--tw-bg-opacity)) !important; + } + + .lg\:focus\:bg-pink-200:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(251, 207, 232, var(--tw-bg-opacity)) !important; + } + + .lg\:focus\:bg-pink-300:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(249, 168, 212, var(--tw-bg-opacity)) !important; + } + + .lg\:focus\:bg-pink-400:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(244, 114, 182, var(--tw-bg-opacity)) !important; + } + + .lg\:focus\:bg-pink-500:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(236, 72, 153, var(--tw-bg-opacity)) !important; + } + + .lg\:focus\:bg-pink-600:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(219, 39, 119, var(--tw-bg-opacity)) !important; + } + + .lg\:focus\:bg-pink-700:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(190, 24, 93, var(--tw-bg-opacity)) !important; + } + + .lg\:focus\:bg-pink-800:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(157, 23, 77, var(--tw-bg-opacity)) !important; + } + + .lg\:focus\:bg-pink-900:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(131, 24, 67, var(--tw-bg-opacity)) !important; + } + + .lg\:focus\:bg-primary:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(0, 49, 151, var(--tw-bg-opacity)) !important; + } + + .lg\:bg-none { + background-image: none !important; + } + + .lg\:bg-gradient-to-t { + background-image: linear-gradient(to top, var(--tw-gradient-stops)) !important; + } + + .lg\:bg-gradient-to-tr { + background-image: linear-gradient(to top right, var(--tw-gradient-stops)) !important; + } + + .lg\:bg-gradient-to-r { + background-image: linear-gradient(to right, var(--tw-gradient-stops)) !important; + } + + .lg\:bg-gradient-to-br { + background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)) !important; + } + + .lg\:bg-gradient-to-b { + background-image: linear-gradient(to bottom, var(--tw-gradient-stops)) !important; + } + + .lg\:bg-gradient-to-bl { + background-image: linear-gradient(to bottom left, var(--tw-gradient-stops)) !important; + } + + .lg\:bg-gradient-to-l { + background-image: linear-gradient(to left, var(--tw-gradient-stops)) !important; + } + + .lg\:bg-gradient-to-tl { + background-image: linear-gradient(to top left, var(--tw-gradient-stops)) !important; + } + + .lg\:from-transparent { + --tw-gradient-from: transparent !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; + } + + .lg\:from-current { + --tw-gradient-from: currentColor !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; + } + + .lg\:from-black { + --tw-gradient-from: #000 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; + } + + .lg\:from-white { + --tw-gradient-from: #fff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; + } + + .lg\:from-gray-50 { + --tw-gradient-from: #f9fafb !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)) !important; + } + + .lg\:from-gray-100 { + --tw-gradient-from: #f3f4f6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)) !important; + } + + .lg\:from-gray-200 { + --tw-gradient-from: #e5e7eb !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)) !important; + } + + .lg\:from-gray-300 { + --tw-gradient-from: #d1d5db !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)) !important; + } + + .lg\:from-gray-400 { + --tw-gradient-from: #9ca3af !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)) !important; + } + + .lg\:from-gray-500 { + --tw-gradient-from: #6b7280 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)) !important; + } + + .lg\:from-gray-600 { + --tw-gradient-from: #4b5563 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)) !important; + } + + .lg\:from-gray-700 { + --tw-gradient-from: #374151 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)) !important; + } + + .lg\:from-gray-800 { + --tw-gradient-from: #1f2937 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)) !important; + } + + .lg\:from-gray-900 { + --tw-gradient-from: #111827 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)) !important; + } + + .lg\:from-red-50 { + --tw-gradient-from: #fef2f2 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)) !important; + } + + .lg\:from-red-100 { + --tw-gradient-from: #fee2e2 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)) !important; + } + + .lg\:from-red-200 { + --tw-gradient-from: #fecaca !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)) !important; + } + + .lg\:from-red-300 { + --tw-gradient-from: #fca5a5 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)) !important; + } + + .lg\:from-red-400 { + --tw-gradient-from: #f87171 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)) !important; + } + + .lg\:from-red-500 { + --tw-gradient-from: #ef4444 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)) !important; + } + + .lg\:from-red-600 { + --tw-gradient-from: #dc2626 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)) !important; + } + + .lg\:from-red-700 { + --tw-gradient-from: #b91c1c !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)) !important; + } + + .lg\:from-red-800 { + --tw-gradient-from: #991b1b !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)) !important; + } + + .lg\:from-red-900 { + --tw-gradient-from: #7f1d1d !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important; + } + + .lg\:from-yellow-50 { + --tw-gradient-from: #fffbeb !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)) !important; + } + + .lg\:from-yellow-100 { + --tw-gradient-from: #fef3c7 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)) !important; + } + + .lg\:from-yellow-200 { + --tw-gradient-from: #fde68a !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)) !important; + } + + .lg\:from-yellow-300 { + --tw-gradient-from: #fcd34d !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)) !important; + } + + .lg\:from-yellow-400 { + --tw-gradient-from: #fbbf24 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)) !important; + } + + .lg\:from-yellow-500 { + --tw-gradient-from: #f59e0b !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)) !important; + } + + .lg\:from-yellow-600 { + --tw-gradient-from: #d97706 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)) !important; + } + + .lg\:from-yellow-700 { + --tw-gradient-from: #b45309 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)) !important; + } + + .lg\:from-yellow-800 { + --tw-gradient-from: #92400e !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)) !important; + } + + .lg\:from-yellow-900 { + --tw-gradient-from: #78350f !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)) !important; + } + + .lg\:from-green-50 { + --tw-gradient-from: #ecfdf5 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)) !important; + } + + .lg\:from-green-100 { + --tw-gradient-from: #d1fae5 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)) !important; + } + + .lg\:from-green-200 { + --tw-gradient-from: #a7f3d0 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)) !important; + } + + .lg\:from-green-300 { + --tw-gradient-from: #6ee7b7 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)) !important; + } + + .lg\:from-green-400 { + --tw-gradient-from: #34d399 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)) !important; + } + + .lg\:from-green-500 { + --tw-gradient-from: #10b981 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)) !important; + } + + .lg\:from-green-600 { + --tw-gradient-from: #059669 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)) !important; + } + + .lg\:from-green-700 { + --tw-gradient-from: #047857 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)) !important; + } + + .lg\:from-green-800 { + --tw-gradient-from: #065f46 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)) !important; + } + + .lg\:from-green-900 { + --tw-gradient-from: #064e3b !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)) !important; + } + + .lg\:from-blue-50 { + --tw-gradient-from: #eff6ff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)) !important; + } + + .lg\:from-blue-100 { + --tw-gradient-from: #dbeafe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)) !important; + } + + .lg\:from-blue-200 { + --tw-gradient-from: #bfdbfe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)) !important; + } + + .lg\:from-blue-300 { + --tw-gradient-from: #93c5fd !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)) !important; + } + + .lg\:from-blue-400 { + --tw-gradient-from: #60a5fa !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)) !important; + } + + .lg\:from-blue-500 { + --tw-gradient-from: #3b82f6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)) !important; + } + + .lg\:from-blue-600 { + --tw-gradient-from: #2563eb !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)) !important; + } + + .lg\:from-blue-700 { + --tw-gradient-from: #1d4ed8 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)) !important; + } + + .lg\:from-blue-800 { + --tw-gradient-from: #1e40af !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)) !important; + } + + .lg\:from-blue-900 { + --tw-gradient-from: #1e3a8a !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)) !important; + } + + .lg\:from-indigo-50 { + --tw-gradient-from: #eef2ff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)) !important; + } + + .lg\:from-indigo-100 { + --tw-gradient-from: #e0e7ff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)) !important; + } + + .lg\:from-indigo-200 { + --tw-gradient-from: #c7d2fe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)) !important; + } + + .lg\:from-indigo-300 { + --tw-gradient-from: #a5b4fc !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)) !important; + } + + .lg\:from-indigo-400 { + --tw-gradient-from: #818cf8 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)) !important; + } + + .lg\:from-indigo-500 { + --tw-gradient-from: #6366f1 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)) !important; + } + + .lg\:from-indigo-600 { + --tw-gradient-from: #4f46e5 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)) !important; + } + + .lg\:from-indigo-700 { + --tw-gradient-from: #4338ca !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)) !important; + } + + .lg\:from-indigo-800 { + --tw-gradient-from: #3730a3 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)) !important; + } + + .lg\:from-indigo-900 { + --tw-gradient-from: #312e81 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)) !important; + } + + .lg\:from-purple-50 { + --tw-gradient-from: #f5f3ff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)) !important; + } + + .lg\:from-purple-100 { + --tw-gradient-from: #ede9fe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)) !important; + } + + .lg\:from-purple-200 { + --tw-gradient-from: #ddd6fe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)) !important; + } + + .lg\:from-purple-300 { + --tw-gradient-from: #c4b5fd !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)) !important; + } + + .lg\:from-purple-400 { + --tw-gradient-from: #a78bfa !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)) !important; + } + + .lg\:from-purple-500 { + --tw-gradient-from: #8b5cf6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)) !important; + } + + .lg\:from-purple-600 { + --tw-gradient-from: #7c3aed !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)) !important; + } + + .lg\:from-purple-700 { + --tw-gradient-from: #6d28d9 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)) !important; + } + + .lg\:from-purple-800 { + --tw-gradient-from: #5b21b6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)) !important; + } + + .lg\:from-purple-900 { + --tw-gradient-from: #4c1d95 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)) !important; + } + + .lg\:from-pink-50 { + --tw-gradient-from: #fdf2f8 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)) !important; + } + + .lg\:from-pink-100 { + --tw-gradient-from: #fce7f3 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)) !important; + } + + .lg\:from-pink-200 { + --tw-gradient-from: #fbcfe8 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)) !important; + } + + .lg\:from-pink-300 { + --tw-gradient-from: #f9a8d4 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)) !important; + } + + .lg\:from-pink-400 { + --tw-gradient-from: #f472b6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)) !important; + } + + .lg\:from-pink-500 { + --tw-gradient-from: #ec4899 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)) !important; + } + + .lg\:from-pink-600 { + --tw-gradient-from: #db2777 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)) !important; + } + + .lg\:from-pink-700 { + --tw-gradient-from: #be185d !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)) !important; + } + + .lg\:from-pink-800 { + --tw-gradient-from: #9d174d !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)) !important; + } + + .lg\:from-pink-900 { + --tw-gradient-from: #831843 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)) !important; + } + + .lg\:from-primary { + --tw-gradient-from: #003197 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 49, 151, 0)) !important; + } + + .lg\:via-transparent { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; + } + + .lg\:via-current { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; + } + + .lg\:via-black { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; + } + + .lg\:via-white { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; + } + + .lg\:via-gray-50 { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)) !important; + } + + .lg\:via-gray-100 { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)) !important; + } + + .lg\:via-gray-200 { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)) !important; + } + + .lg\:via-gray-300 { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)) !important; + } + + .lg\:via-gray-400 { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)) !important; + } + + .lg\:via-gray-500 { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)) !important; + } + + .lg\:via-gray-600 { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)) !important; + } + + .lg\:via-gray-700 { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)) !important; + } + + .lg\:via-gray-800 { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)) !important; + } + + .lg\:via-gray-900 { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)) !important; + } + + .lg\:via-red-50 { + --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)) !important; + } + + .lg\:via-red-100 { + --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)) !important; + } + + .lg\:via-red-200 { + --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)) !important; + } + + .lg\:via-red-300 { + --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)) !important; + } + + .lg\:via-red-400 { + --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)) !important; + } + + .lg\:via-red-500 { + --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)) !important; + } + + .lg\:via-red-600 { + --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)) !important; + } + + .lg\:via-red-700 { + --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)) !important; + } + + .lg\:via-red-800 { + --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)) !important; + } + + .lg\:via-red-900 { + --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important; + } + + .lg\:via-yellow-50 { + --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)) !important; + } + + .lg\:via-yellow-100 { + --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)) !important; + } + + .lg\:via-yellow-200 { + --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)) !important; + } + + .lg\:via-yellow-300 { + --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)) !important; + } + + .lg\:via-yellow-400 { + --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)) !important; + } + + .lg\:via-yellow-500 { + --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)) !important; + } + + .lg\:via-yellow-600 { + --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)) !important; + } + + .lg\:via-yellow-700 { + --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)) !important; + } + + .lg\:via-yellow-800 { + --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)) !important; + } + + .lg\:via-yellow-900 { + --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)) !important; + } + + .lg\:via-green-50 { + --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)) !important; + } + + .lg\:via-green-100 { + --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)) !important; + } + + .lg\:via-green-200 { + --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)) !important; + } + + .lg\:via-green-300 { + --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)) !important; + } + + .lg\:via-green-400 { + --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)) !important; + } + + .lg\:via-green-500 { + --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)) !important; + } + + .lg\:via-green-600 { + --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)) !important; + } + + .lg\:via-green-700 { + --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)) !important; + } + + .lg\:via-green-800 { + --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)) !important; + } + + .lg\:via-green-900 { + --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)) !important; + } + + .lg\:via-blue-50 { + --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)) !important; + } + + .lg\:via-blue-100 { + --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)) !important; + } + + .lg\:via-blue-200 { + --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)) !important; + } + + .lg\:via-blue-300 { + --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)) !important; + } + + .lg\:via-blue-400 { + --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)) !important; + } + + .lg\:via-blue-500 { + --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)) !important; + } + + .lg\:via-blue-600 { + --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)) !important; + } + + .lg\:via-blue-700 { + --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)) !important; + } + + .lg\:via-blue-800 { + --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)) !important; + } + + .lg\:via-blue-900 { + --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)) !important; + } + + .lg\:via-indigo-50 { + --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)) !important; + } + + .lg\:via-indigo-100 { + --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)) !important; + } + + .lg\:via-indigo-200 { + --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)) !important; + } + + .lg\:via-indigo-300 { + --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)) !important; + } + + .lg\:via-indigo-400 { + --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)) !important; + } + + .lg\:via-indigo-500 { + --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)) !important; + } + + .lg\:via-indigo-600 { + --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)) !important; + } + + .lg\:via-indigo-700 { + --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)) !important; + } + + .lg\:via-indigo-800 { + --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)) !important; + } + + .lg\:via-indigo-900 { + --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)) !important; + } + + .lg\:via-purple-50 { + --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)) !important; + } + + .lg\:via-purple-100 { + --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)) !important; + } + + .lg\:via-purple-200 { + --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)) !important; + } + + .lg\:via-purple-300 { + --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)) !important; + } + + .lg\:via-purple-400 { + --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)) !important; + } + + .lg\:via-purple-500 { + --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)) !important; + } + + .lg\:via-purple-600 { + --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)) !important; + } + + .lg\:via-purple-700 { + --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)) !important; + } + + .lg\:via-purple-800 { + --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)) !important; + } + + .lg\:via-purple-900 { + --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)) !important; + } + + .lg\:via-pink-50 { + --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)) !important; + } + + .lg\:via-pink-100 { + --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)) !important; + } + + .lg\:via-pink-200 { + --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)) !important; + } + + .lg\:via-pink-300 { + --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)) !important; + } + + .lg\:via-pink-400 { + --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)) !important; + } + + .lg\:via-pink-500 { + --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)) !important; + } + + .lg\:via-pink-600 { + --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)) !important; + } + + .lg\:via-pink-700 { + --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)) !important; + } + + .lg\:via-pink-800 { + --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)) !important; + } + + .lg\:via-pink-900 { + --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)) !important; + } + + .lg\:via-primary { + --tw-gradient-stops: var(--tw-gradient-from), #003197, var(--tw-gradient-to, rgba(0, 49, 151, 0)) !important; + } + + .lg\:to-transparent { + --tw-gradient-to: transparent !important; + } + + .lg\:to-current { + --tw-gradient-to: currentColor !important; + } + + .lg\:to-black { + --tw-gradient-to: #000 !important; + } + + .lg\:to-white { + --tw-gradient-to: #fff !important; + } + + .lg\:to-gray-50 { + --tw-gradient-to: #f9fafb !important; + } + + .lg\:to-gray-100 { + --tw-gradient-to: #f3f4f6 !important; + } + + .lg\:to-gray-200 { + --tw-gradient-to: #e5e7eb !important; + } + + .lg\:to-gray-300 { + --tw-gradient-to: #d1d5db !important; + } + + .lg\:to-gray-400 { + --tw-gradient-to: #9ca3af !important; + } + + .lg\:to-gray-500 { + --tw-gradient-to: #6b7280 !important; + } + + .lg\:to-gray-600 { + --tw-gradient-to: #4b5563 !important; + } + + .lg\:to-gray-700 { + --tw-gradient-to: #374151 !important; + } + + .lg\:to-gray-800 { + --tw-gradient-to: #1f2937 !important; + } + + .lg\:to-gray-900 { + --tw-gradient-to: #111827 !important; + } + + .lg\:to-red-50 { + --tw-gradient-to: #fef2f2 !important; + } + + .lg\:to-red-100 { + --tw-gradient-to: #fee2e2 !important; + } + + .lg\:to-red-200 { + --tw-gradient-to: #fecaca !important; + } + + .lg\:to-red-300 { + --tw-gradient-to: #fca5a5 !important; + } + + .lg\:to-red-400 { + --tw-gradient-to: #f87171 !important; + } + + .lg\:to-red-500 { + --tw-gradient-to: #ef4444 !important; + } + + .lg\:to-red-600 { + --tw-gradient-to: #dc2626 !important; + } + + .lg\:to-red-700 { + --tw-gradient-to: #b91c1c !important; + } + + .lg\:to-red-800 { + --tw-gradient-to: #991b1b !important; + } + + .lg\:to-red-900 { + --tw-gradient-to: #7f1d1d !important; + } + + .lg\:to-yellow-50 { + --tw-gradient-to: #fffbeb !important; + } + + .lg\:to-yellow-100 { + --tw-gradient-to: #fef3c7 !important; + } + + .lg\:to-yellow-200 { + --tw-gradient-to: #fde68a !important; + } + + .lg\:to-yellow-300 { + --tw-gradient-to: #fcd34d !important; + } + + .lg\:to-yellow-400 { + --tw-gradient-to: #fbbf24 !important; + } + + .lg\:to-yellow-500 { + --tw-gradient-to: #f59e0b !important; + } + + .lg\:to-yellow-600 { + --tw-gradient-to: #d97706 !important; + } + + .lg\:to-yellow-700 { + --tw-gradient-to: #b45309 !important; + } + + .lg\:to-yellow-800 { + --tw-gradient-to: #92400e !important; + } + + .lg\:to-yellow-900 { + --tw-gradient-to: #78350f !important; + } + + .lg\:to-green-50 { + --tw-gradient-to: #ecfdf5 !important; + } + + .lg\:to-green-100 { + --tw-gradient-to: #d1fae5 !important; + } + + .lg\:to-green-200 { + --tw-gradient-to: #a7f3d0 !important; + } + + .lg\:to-green-300 { + --tw-gradient-to: #6ee7b7 !important; + } + + .lg\:to-green-400 { + --tw-gradient-to: #34d399 !important; + } + + .lg\:to-green-500 { + --tw-gradient-to: #10b981 !important; + } + + .lg\:to-green-600 { + --tw-gradient-to: #059669 !important; + } + + .lg\:to-green-700 { + --tw-gradient-to: #047857 !important; + } + + .lg\:to-green-800 { + --tw-gradient-to: #065f46 !important; + } + + .lg\:to-green-900 { + --tw-gradient-to: #064e3b !important; + } + + .lg\:to-blue-50 { + --tw-gradient-to: #eff6ff !important; + } + + .lg\:to-blue-100 { + --tw-gradient-to: #dbeafe !important; + } + + .lg\:to-blue-200 { + --tw-gradient-to: #bfdbfe !important; + } + + .lg\:to-blue-300 { + --tw-gradient-to: #93c5fd !important; + } + + .lg\:to-blue-400 { + --tw-gradient-to: #60a5fa !important; + } + + .lg\:to-blue-500 { + --tw-gradient-to: #3b82f6 !important; + } + + .lg\:to-blue-600 { + --tw-gradient-to: #2563eb !important; + } + + .lg\:to-blue-700 { + --tw-gradient-to: #1d4ed8 !important; + } + + .lg\:to-blue-800 { + --tw-gradient-to: #1e40af !important; + } + + .lg\:to-blue-900 { + --tw-gradient-to: #1e3a8a !important; + } + + .lg\:to-indigo-50 { + --tw-gradient-to: #eef2ff !important; + } + + .lg\:to-indigo-100 { + --tw-gradient-to: #e0e7ff !important; + } + + .lg\:to-indigo-200 { + --tw-gradient-to: #c7d2fe !important; + } + + .lg\:to-indigo-300 { + --tw-gradient-to: #a5b4fc !important; + } + + .lg\:to-indigo-400 { + --tw-gradient-to: #818cf8 !important; + } + + .lg\:to-indigo-500 { + --tw-gradient-to: #6366f1 !important; + } + + .lg\:to-indigo-600 { + --tw-gradient-to: #4f46e5 !important; + } + + .lg\:to-indigo-700 { + --tw-gradient-to: #4338ca !important; + } + + .lg\:to-indigo-800 { + --tw-gradient-to: #3730a3 !important; + } + + .lg\:to-indigo-900 { + --tw-gradient-to: #312e81 !important; + } + + .lg\:to-purple-50 { + --tw-gradient-to: #f5f3ff !important; + } + + .lg\:to-purple-100 { + --tw-gradient-to: #ede9fe !important; + } + + .lg\:to-purple-200 { + --tw-gradient-to: #ddd6fe !important; + } + + .lg\:to-purple-300 { + --tw-gradient-to: #c4b5fd !important; + } + + .lg\:to-purple-400 { + --tw-gradient-to: #a78bfa !important; + } + + .lg\:to-purple-500 { + --tw-gradient-to: #8b5cf6 !important; + } + + .lg\:to-purple-600 { + --tw-gradient-to: #7c3aed !important; + } + + .lg\:to-purple-700 { + --tw-gradient-to: #6d28d9 !important; + } + + .lg\:to-purple-800 { + --tw-gradient-to: #5b21b6 !important; + } + + .lg\:to-purple-900 { + --tw-gradient-to: #4c1d95 !important; + } + + .lg\:to-pink-50 { + --tw-gradient-to: #fdf2f8 !important; + } + + .lg\:to-pink-100 { + --tw-gradient-to: #fce7f3 !important; + } + + .lg\:to-pink-200 { + --tw-gradient-to: #fbcfe8 !important; + } + + .lg\:to-pink-300 { + --tw-gradient-to: #f9a8d4 !important; + } + + .lg\:to-pink-400 { + --tw-gradient-to: #f472b6 !important; + } + + .lg\:to-pink-500 { + --tw-gradient-to: #ec4899 !important; + } + + .lg\:to-pink-600 { + --tw-gradient-to: #db2777 !important; + } + + .lg\:to-pink-700 { + --tw-gradient-to: #be185d !important; + } + + .lg\:to-pink-800 { + --tw-gradient-to: #9d174d !important; + } + + .lg\:to-pink-900 { + --tw-gradient-to: #831843 !important; + } + + .lg\:to-primary { + --tw-gradient-to: #003197 !important; + } + + .lg\:hover\:from-transparent:hover { + --tw-gradient-from: transparent !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; + } + + .lg\:hover\:from-current:hover { + --tw-gradient-from: currentColor !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; + } + + .lg\:hover\:from-black:hover { + --tw-gradient-from: #000 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; + } + + .lg\:hover\:from-white:hover { + --tw-gradient-from: #fff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; + } + + .lg\:hover\:from-gray-50:hover { + --tw-gradient-from: #f9fafb !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)) !important; + } + + .lg\:hover\:from-gray-100:hover { + --tw-gradient-from: #f3f4f6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)) !important; + } + + .lg\:hover\:from-gray-200:hover { + --tw-gradient-from: #e5e7eb !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)) !important; + } + + .lg\:hover\:from-gray-300:hover { + --tw-gradient-from: #d1d5db !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)) !important; + } + + .lg\:hover\:from-gray-400:hover { + --tw-gradient-from: #9ca3af !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)) !important; + } + + .lg\:hover\:from-gray-500:hover { + --tw-gradient-from: #6b7280 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)) !important; + } + + .lg\:hover\:from-gray-600:hover { + --tw-gradient-from: #4b5563 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)) !important; + } + + .lg\:hover\:from-gray-700:hover { + --tw-gradient-from: #374151 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)) !important; + } + + .lg\:hover\:from-gray-800:hover { + --tw-gradient-from: #1f2937 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)) !important; + } + + .lg\:hover\:from-gray-900:hover { + --tw-gradient-from: #111827 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)) !important; + } + + .lg\:hover\:from-red-50:hover { + --tw-gradient-from: #fef2f2 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)) !important; + } + + .lg\:hover\:from-red-100:hover { + --tw-gradient-from: #fee2e2 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)) !important; + } + + .lg\:hover\:from-red-200:hover { + --tw-gradient-from: #fecaca !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)) !important; + } + + .lg\:hover\:from-red-300:hover { + --tw-gradient-from: #fca5a5 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)) !important; + } + + .lg\:hover\:from-red-400:hover { + --tw-gradient-from: #f87171 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)) !important; + } + + .lg\:hover\:from-red-500:hover { + --tw-gradient-from: #ef4444 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)) !important; + } + + .lg\:hover\:from-red-600:hover { + --tw-gradient-from: #dc2626 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)) !important; + } + + .lg\:hover\:from-red-700:hover { + --tw-gradient-from: #b91c1c !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)) !important; + } + + .lg\:hover\:from-red-800:hover { + --tw-gradient-from: #991b1b !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)) !important; + } + + .lg\:hover\:from-red-900:hover { + --tw-gradient-from: #7f1d1d !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important; + } + + .lg\:hover\:from-yellow-50:hover { + --tw-gradient-from: #fffbeb !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)) !important; + } + + .lg\:hover\:from-yellow-100:hover { + --tw-gradient-from: #fef3c7 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)) !important; + } + + .lg\:hover\:from-yellow-200:hover { + --tw-gradient-from: #fde68a !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)) !important; + } + + .lg\:hover\:from-yellow-300:hover { + --tw-gradient-from: #fcd34d !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)) !important; + } + + .lg\:hover\:from-yellow-400:hover { + --tw-gradient-from: #fbbf24 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)) !important; + } + + .lg\:hover\:from-yellow-500:hover { + --tw-gradient-from: #f59e0b !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)) !important; + } + + .lg\:hover\:from-yellow-600:hover { + --tw-gradient-from: #d97706 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)) !important; + } + + .lg\:hover\:from-yellow-700:hover { + --tw-gradient-from: #b45309 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)) !important; + } + + .lg\:hover\:from-yellow-800:hover { + --tw-gradient-from: #92400e !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)) !important; + } + + .lg\:hover\:from-yellow-900:hover { + --tw-gradient-from: #78350f !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)) !important; + } + + .lg\:hover\:from-green-50:hover { + --tw-gradient-from: #ecfdf5 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)) !important; + } + + .lg\:hover\:from-green-100:hover { + --tw-gradient-from: #d1fae5 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)) !important; + } + + .lg\:hover\:from-green-200:hover { + --tw-gradient-from: #a7f3d0 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)) !important; + } + + .lg\:hover\:from-green-300:hover { + --tw-gradient-from: #6ee7b7 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)) !important; + } + + .lg\:hover\:from-green-400:hover { + --tw-gradient-from: #34d399 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)) !important; + } + + .lg\:hover\:from-green-500:hover { + --tw-gradient-from: #10b981 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)) !important; + } + + .lg\:hover\:from-green-600:hover { + --tw-gradient-from: #059669 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)) !important; + } + + .lg\:hover\:from-green-700:hover { + --tw-gradient-from: #047857 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)) !important; + } + + .lg\:hover\:from-green-800:hover { + --tw-gradient-from: #065f46 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)) !important; + } + + .lg\:hover\:from-green-900:hover { + --tw-gradient-from: #064e3b !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)) !important; + } + + .lg\:hover\:from-blue-50:hover { + --tw-gradient-from: #eff6ff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)) !important; + } + + .lg\:hover\:from-blue-100:hover { + --tw-gradient-from: #dbeafe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)) !important; + } + + .lg\:hover\:from-blue-200:hover { + --tw-gradient-from: #bfdbfe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)) !important; + } + + .lg\:hover\:from-blue-300:hover { + --tw-gradient-from: #93c5fd !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)) !important; + } + + .lg\:hover\:from-blue-400:hover { + --tw-gradient-from: #60a5fa !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)) !important; + } + + .lg\:hover\:from-blue-500:hover { + --tw-gradient-from: #3b82f6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)) !important; + } + + .lg\:hover\:from-blue-600:hover { + --tw-gradient-from: #2563eb !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)) !important; + } + + .lg\:hover\:from-blue-700:hover { + --tw-gradient-from: #1d4ed8 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)) !important; + } + + .lg\:hover\:from-blue-800:hover { + --tw-gradient-from: #1e40af !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)) !important; + } + + .lg\:hover\:from-blue-900:hover { + --tw-gradient-from: #1e3a8a !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)) !important; + } + + .lg\:hover\:from-indigo-50:hover { + --tw-gradient-from: #eef2ff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)) !important; + } + + .lg\:hover\:from-indigo-100:hover { + --tw-gradient-from: #e0e7ff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)) !important; + } + + .lg\:hover\:from-indigo-200:hover { + --tw-gradient-from: #c7d2fe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)) !important; + } + + .lg\:hover\:from-indigo-300:hover { + --tw-gradient-from: #a5b4fc !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)) !important; + } + + .lg\:hover\:from-indigo-400:hover { + --tw-gradient-from: #818cf8 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)) !important; + } + + .lg\:hover\:from-indigo-500:hover { + --tw-gradient-from: #6366f1 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)) !important; + } + + .lg\:hover\:from-indigo-600:hover { + --tw-gradient-from: #4f46e5 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)) !important; + } + + .lg\:hover\:from-indigo-700:hover { + --tw-gradient-from: #4338ca !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)) !important; + } + + .lg\:hover\:from-indigo-800:hover { + --tw-gradient-from: #3730a3 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)) !important; + } + + .lg\:hover\:from-indigo-900:hover { + --tw-gradient-from: #312e81 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)) !important; + } + + .lg\:hover\:from-purple-50:hover { + --tw-gradient-from: #f5f3ff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)) !important; + } + + .lg\:hover\:from-purple-100:hover { + --tw-gradient-from: #ede9fe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)) !important; + } + + .lg\:hover\:from-purple-200:hover { + --tw-gradient-from: #ddd6fe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)) !important; + } + + .lg\:hover\:from-purple-300:hover { + --tw-gradient-from: #c4b5fd !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)) !important; + } + + .lg\:hover\:from-purple-400:hover { + --tw-gradient-from: #a78bfa !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)) !important; + } + + .lg\:hover\:from-purple-500:hover { + --tw-gradient-from: #8b5cf6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)) !important; + } + + .lg\:hover\:from-purple-600:hover { + --tw-gradient-from: #7c3aed !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)) !important; + } + + .lg\:hover\:from-purple-700:hover { + --tw-gradient-from: #6d28d9 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)) !important; + } + + .lg\:hover\:from-purple-800:hover { + --tw-gradient-from: #5b21b6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)) !important; + } + + .lg\:hover\:from-purple-900:hover { + --tw-gradient-from: #4c1d95 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)) !important; + } + + .lg\:hover\:from-pink-50:hover { + --tw-gradient-from: #fdf2f8 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)) !important; + } + + .lg\:hover\:from-pink-100:hover { + --tw-gradient-from: #fce7f3 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)) !important; + } + + .lg\:hover\:from-pink-200:hover { + --tw-gradient-from: #fbcfe8 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)) !important; + } + + .lg\:hover\:from-pink-300:hover { + --tw-gradient-from: #f9a8d4 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)) !important; + } + + .lg\:hover\:from-pink-400:hover { + --tw-gradient-from: #f472b6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)) !important; + } + + .lg\:hover\:from-pink-500:hover { + --tw-gradient-from: #ec4899 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)) !important; + } + + .lg\:hover\:from-pink-600:hover { + --tw-gradient-from: #db2777 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)) !important; + } + + .lg\:hover\:from-pink-700:hover { + --tw-gradient-from: #be185d !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)) !important; + } + + .lg\:hover\:from-pink-800:hover { + --tw-gradient-from: #9d174d !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)) !important; + } + + .lg\:hover\:from-pink-900:hover { + --tw-gradient-from: #831843 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)) !important; + } + + .lg\:hover\:from-primary:hover { + --tw-gradient-from: #003197 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 49, 151, 0)) !important; + } + + .lg\:hover\:via-transparent:hover { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; + } + + .lg\:hover\:via-current:hover { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; + } + + .lg\:hover\:via-black:hover { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; + } + + .lg\:hover\:via-white:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; + } + + .lg\:hover\:via-gray-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)) !important; + } + + .lg\:hover\:via-gray-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)) !important; + } + + .lg\:hover\:via-gray-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)) !important; + } + + .lg\:hover\:via-gray-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)) !important; + } + + .lg\:hover\:via-gray-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)) !important; + } + + .lg\:hover\:via-gray-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)) !important; + } + + .lg\:hover\:via-gray-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)) !important; + } + + .lg\:hover\:via-gray-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)) !important; + } + + .lg\:hover\:via-gray-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)) !important; + } + + .lg\:hover\:via-gray-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)) !important; + } + + .lg\:hover\:via-red-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)) !important; + } + + .lg\:hover\:via-red-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)) !important; + } + + .lg\:hover\:via-red-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)) !important; + } + + .lg\:hover\:via-red-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)) !important; + } + + .lg\:hover\:via-red-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)) !important; + } + + .lg\:hover\:via-red-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)) !important; + } + + .lg\:hover\:via-red-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)) !important; + } + + .lg\:hover\:via-red-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)) !important; + } + + .lg\:hover\:via-red-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)) !important; + } + + .lg\:hover\:via-red-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important; + } + + .lg\:hover\:via-yellow-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)) !important; + } + + .lg\:hover\:via-yellow-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)) !important; + } + + .lg\:hover\:via-yellow-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)) !important; + } + + .lg\:hover\:via-yellow-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)) !important; + } + + .lg\:hover\:via-yellow-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)) !important; + } + + .lg\:hover\:via-yellow-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)) !important; + } + + .lg\:hover\:via-yellow-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)) !important; + } + + .lg\:hover\:via-yellow-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)) !important; + } + + .lg\:hover\:via-yellow-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)) !important; + } + + .lg\:hover\:via-yellow-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)) !important; + } + + .lg\:hover\:via-green-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)) !important; + } + + .lg\:hover\:via-green-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)) !important; + } + + .lg\:hover\:via-green-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)) !important; + } + + .lg\:hover\:via-green-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)) !important; + } + + .lg\:hover\:via-green-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)) !important; + } + + .lg\:hover\:via-green-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)) !important; + } + + .lg\:hover\:via-green-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)) !important; + } + + .lg\:hover\:via-green-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)) !important; + } + + .lg\:hover\:via-green-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)) !important; + } + + .lg\:hover\:via-green-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)) !important; + } + + .lg\:hover\:via-blue-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)) !important; + } + + .lg\:hover\:via-blue-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)) !important; + } + + .lg\:hover\:via-blue-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)) !important; + } + + .lg\:hover\:via-blue-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)) !important; + } + + .lg\:hover\:via-blue-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)) !important; + } + + .lg\:hover\:via-blue-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)) !important; + } + + .lg\:hover\:via-blue-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)) !important; + } + + .lg\:hover\:via-blue-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)) !important; + } + + .lg\:hover\:via-blue-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)) !important; + } + + .lg\:hover\:via-blue-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)) !important; + } + + .lg\:hover\:via-indigo-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)) !important; + } + + .lg\:hover\:via-indigo-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)) !important; + } + + .lg\:hover\:via-indigo-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)) !important; + } + + .lg\:hover\:via-indigo-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)) !important; + } + + .lg\:hover\:via-indigo-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)) !important; + } + + .lg\:hover\:via-indigo-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)) !important; + } + + .lg\:hover\:via-indigo-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)) !important; + } + + .lg\:hover\:via-indigo-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)) !important; + } + + .lg\:hover\:via-indigo-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)) !important; + } + + .lg\:hover\:via-indigo-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)) !important; + } + + .lg\:hover\:via-purple-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)) !important; + } + + .lg\:hover\:via-purple-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)) !important; + } + + .lg\:hover\:via-purple-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)) !important; + } + + .lg\:hover\:via-purple-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)) !important; + } + + .lg\:hover\:via-purple-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)) !important; + } + + .lg\:hover\:via-purple-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)) !important; + } + + .lg\:hover\:via-purple-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)) !important; + } + + .lg\:hover\:via-purple-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)) !important; + } + + .lg\:hover\:via-purple-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)) !important; + } + + .lg\:hover\:via-purple-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)) !important; + } + + .lg\:hover\:via-pink-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)) !important; + } + + .lg\:hover\:via-pink-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)) !important; + } + + .lg\:hover\:via-pink-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)) !important; + } + + .lg\:hover\:via-pink-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)) !important; + } + + .lg\:hover\:via-pink-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)) !important; + } + + .lg\:hover\:via-pink-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)) !important; + } + + .lg\:hover\:via-pink-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)) !important; + } + + .lg\:hover\:via-pink-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)) !important; + } + + .lg\:hover\:via-pink-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)) !important; + } + + .lg\:hover\:via-pink-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)) !important; + } + + .lg\:hover\:via-primary:hover { + --tw-gradient-stops: var(--tw-gradient-from), #003197, var(--tw-gradient-to, rgba(0, 49, 151, 0)) !important; + } + + .lg\:hover\:to-transparent:hover { + --tw-gradient-to: transparent !important; + } + + .lg\:hover\:to-current:hover { + --tw-gradient-to: currentColor !important; + } + + .lg\:hover\:to-black:hover { + --tw-gradient-to: #000 !important; + } + + .lg\:hover\:to-white:hover { + --tw-gradient-to: #fff !important; + } + + .lg\:hover\:to-gray-50:hover { + --tw-gradient-to: #f9fafb !important; + } + + .lg\:hover\:to-gray-100:hover { + --tw-gradient-to: #f3f4f6 !important; + } + + .lg\:hover\:to-gray-200:hover { + --tw-gradient-to: #e5e7eb !important; + } + + .lg\:hover\:to-gray-300:hover { + --tw-gradient-to: #d1d5db !important; + } + + .lg\:hover\:to-gray-400:hover { + --tw-gradient-to: #9ca3af !important; + } + + .lg\:hover\:to-gray-500:hover { + --tw-gradient-to: #6b7280 !important; + } + + .lg\:hover\:to-gray-600:hover { + --tw-gradient-to: #4b5563 !important; + } + + .lg\:hover\:to-gray-700:hover { + --tw-gradient-to: #374151 !important; + } + + .lg\:hover\:to-gray-800:hover { + --tw-gradient-to: #1f2937 !important; + } + + .lg\:hover\:to-gray-900:hover { + --tw-gradient-to: #111827 !important; + } + + .lg\:hover\:to-red-50:hover { + --tw-gradient-to: #fef2f2 !important; + } + + .lg\:hover\:to-red-100:hover { + --tw-gradient-to: #fee2e2 !important; + } + + .lg\:hover\:to-red-200:hover { + --tw-gradient-to: #fecaca !important; + } + + .lg\:hover\:to-red-300:hover { + --tw-gradient-to: #fca5a5 !important; + } + + .lg\:hover\:to-red-400:hover { + --tw-gradient-to: #f87171 !important; + } + + .lg\:hover\:to-red-500:hover { + --tw-gradient-to: #ef4444 !important; + } + + .lg\:hover\:to-red-600:hover { + --tw-gradient-to: #dc2626 !important; + } + + .lg\:hover\:to-red-700:hover { + --tw-gradient-to: #b91c1c !important; + } + + .lg\:hover\:to-red-800:hover { + --tw-gradient-to: #991b1b !important; + } + + .lg\:hover\:to-red-900:hover { + --tw-gradient-to: #7f1d1d !important; + } + + .lg\:hover\:to-yellow-50:hover { + --tw-gradient-to: #fffbeb !important; + } + + .lg\:hover\:to-yellow-100:hover { + --tw-gradient-to: #fef3c7 !important; + } + + .lg\:hover\:to-yellow-200:hover { + --tw-gradient-to: #fde68a !important; + } + + .lg\:hover\:to-yellow-300:hover { + --tw-gradient-to: #fcd34d !important; + } + + .lg\:hover\:to-yellow-400:hover { + --tw-gradient-to: #fbbf24 !important; + } + + .lg\:hover\:to-yellow-500:hover { + --tw-gradient-to: #f59e0b !important; + } + + .lg\:hover\:to-yellow-600:hover { + --tw-gradient-to: #d97706 !important; + } + + .lg\:hover\:to-yellow-700:hover { + --tw-gradient-to: #b45309 !important; + } + + .lg\:hover\:to-yellow-800:hover { + --tw-gradient-to: #92400e !important; + } + + .lg\:hover\:to-yellow-900:hover { + --tw-gradient-to: #78350f !important; + } + + .lg\:hover\:to-green-50:hover { + --tw-gradient-to: #ecfdf5 !important; + } + + .lg\:hover\:to-green-100:hover { + --tw-gradient-to: #d1fae5 !important; + } + + .lg\:hover\:to-green-200:hover { + --tw-gradient-to: #a7f3d0 !important; + } + + .lg\:hover\:to-green-300:hover { + --tw-gradient-to: #6ee7b7 !important; + } + + .lg\:hover\:to-green-400:hover { + --tw-gradient-to: #34d399 !important; + } + + .lg\:hover\:to-green-500:hover { + --tw-gradient-to: #10b981 !important; + } + + .lg\:hover\:to-green-600:hover { + --tw-gradient-to: #059669 !important; + } + + .lg\:hover\:to-green-700:hover { + --tw-gradient-to: #047857 !important; + } + + .lg\:hover\:to-green-800:hover { + --tw-gradient-to: #065f46 !important; + } + + .lg\:hover\:to-green-900:hover { + --tw-gradient-to: #064e3b !important; + } + + .lg\:hover\:to-blue-50:hover { + --tw-gradient-to: #eff6ff !important; + } + + .lg\:hover\:to-blue-100:hover { + --tw-gradient-to: #dbeafe !important; + } + + .lg\:hover\:to-blue-200:hover { + --tw-gradient-to: #bfdbfe !important; + } + + .lg\:hover\:to-blue-300:hover { + --tw-gradient-to: #93c5fd !important; + } + + .lg\:hover\:to-blue-400:hover { + --tw-gradient-to: #60a5fa !important; + } + + .lg\:hover\:to-blue-500:hover { + --tw-gradient-to: #3b82f6 !important; + } + + .lg\:hover\:to-blue-600:hover { + --tw-gradient-to: #2563eb !important; + } + + .lg\:hover\:to-blue-700:hover { + --tw-gradient-to: #1d4ed8 !important; + } + + .lg\:hover\:to-blue-800:hover { + --tw-gradient-to: #1e40af !important; + } + + .lg\:hover\:to-blue-900:hover { + --tw-gradient-to: #1e3a8a !important; + } + + .lg\:hover\:to-indigo-50:hover { + --tw-gradient-to: #eef2ff !important; + } + + .lg\:hover\:to-indigo-100:hover { + --tw-gradient-to: #e0e7ff !important; + } + + .lg\:hover\:to-indigo-200:hover { + --tw-gradient-to: #c7d2fe !important; + } + + .lg\:hover\:to-indigo-300:hover { + --tw-gradient-to: #a5b4fc !important; + } + + .lg\:hover\:to-indigo-400:hover { + --tw-gradient-to: #818cf8 !important; + } + + .lg\:hover\:to-indigo-500:hover { + --tw-gradient-to: #6366f1 !important; + } + + .lg\:hover\:to-indigo-600:hover { + --tw-gradient-to: #4f46e5 !important; + } + + .lg\:hover\:to-indigo-700:hover { + --tw-gradient-to: #4338ca !important; + } + + .lg\:hover\:to-indigo-800:hover { + --tw-gradient-to: #3730a3 !important; + } + + .lg\:hover\:to-indigo-900:hover { + --tw-gradient-to: #312e81 !important; + } + + .lg\:hover\:to-purple-50:hover { + --tw-gradient-to: #f5f3ff !important; + } + + .lg\:hover\:to-purple-100:hover { + --tw-gradient-to: #ede9fe !important; + } + + .lg\:hover\:to-purple-200:hover { + --tw-gradient-to: #ddd6fe !important; + } + + .lg\:hover\:to-purple-300:hover { + --tw-gradient-to: #c4b5fd !important; + } + + .lg\:hover\:to-purple-400:hover { + --tw-gradient-to: #a78bfa !important; + } + + .lg\:hover\:to-purple-500:hover { + --tw-gradient-to: #8b5cf6 !important; + } + + .lg\:hover\:to-purple-600:hover { + --tw-gradient-to: #7c3aed !important; + } + + .lg\:hover\:to-purple-700:hover { + --tw-gradient-to: #6d28d9 !important; + } + + .lg\:hover\:to-purple-800:hover { + --tw-gradient-to: #5b21b6 !important; + } + + .lg\:hover\:to-purple-900:hover { + --tw-gradient-to: #4c1d95 !important; + } + + .lg\:hover\:to-pink-50:hover { + --tw-gradient-to: #fdf2f8 !important; + } + + .lg\:hover\:to-pink-100:hover { + --tw-gradient-to: #fce7f3 !important; + } + + .lg\:hover\:to-pink-200:hover { + --tw-gradient-to: #fbcfe8 !important; + } + + .lg\:hover\:to-pink-300:hover { + --tw-gradient-to: #f9a8d4 !important; + } + + .lg\:hover\:to-pink-400:hover { + --tw-gradient-to: #f472b6 !important; + } + + .lg\:hover\:to-pink-500:hover { + --tw-gradient-to: #ec4899 !important; + } + + .lg\:hover\:to-pink-600:hover { + --tw-gradient-to: #db2777 !important; + } + + .lg\:hover\:to-pink-700:hover { + --tw-gradient-to: #be185d !important; + } + + .lg\:hover\:to-pink-800:hover { + --tw-gradient-to: #9d174d !important; + } + + .lg\:hover\:to-pink-900:hover { + --tw-gradient-to: #831843 !important; + } + + .lg\:hover\:to-primary:hover { + --tw-gradient-to: #003197 !important; + } + + .lg\:focus\:from-transparent:focus { + --tw-gradient-from: transparent !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; + } + + .lg\:focus\:from-current:focus { + --tw-gradient-from: currentColor !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; + } + + .lg\:focus\:from-black:focus { + --tw-gradient-from: #000 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; + } + + .lg\:focus\:from-white:focus { + --tw-gradient-from: #fff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; + } + + .lg\:focus\:from-gray-50:focus { + --tw-gradient-from: #f9fafb !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)) !important; + } + + .lg\:focus\:from-gray-100:focus { + --tw-gradient-from: #f3f4f6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)) !important; + } + + .lg\:focus\:from-gray-200:focus { + --tw-gradient-from: #e5e7eb !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)) !important; + } + + .lg\:focus\:from-gray-300:focus { + --tw-gradient-from: #d1d5db !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)) !important; + } + + .lg\:focus\:from-gray-400:focus { + --tw-gradient-from: #9ca3af !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)) !important; + } + + .lg\:focus\:from-gray-500:focus { + --tw-gradient-from: #6b7280 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)) !important; + } + + .lg\:focus\:from-gray-600:focus { + --tw-gradient-from: #4b5563 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)) !important; + } + + .lg\:focus\:from-gray-700:focus { + --tw-gradient-from: #374151 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)) !important; + } + + .lg\:focus\:from-gray-800:focus { + --tw-gradient-from: #1f2937 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)) !important; + } + + .lg\:focus\:from-gray-900:focus { + --tw-gradient-from: #111827 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)) !important; + } + + .lg\:focus\:from-red-50:focus { + --tw-gradient-from: #fef2f2 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)) !important; + } + + .lg\:focus\:from-red-100:focus { + --tw-gradient-from: #fee2e2 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)) !important; + } + + .lg\:focus\:from-red-200:focus { + --tw-gradient-from: #fecaca !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)) !important; + } + + .lg\:focus\:from-red-300:focus { + --tw-gradient-from: #fca5a5 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)) !important; + } + + .lg\:focus\:from-red-400:focus { + --tw-gradient-from: #f87171 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)) !important; + } + + .lg\:focus\:from-red-500:focus { + --tw-gradient-from: #ef4444 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)) !important; + } + + .lg\:focus\:from-red-600:focus { + --tw-gradient-from: #dc2626 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)) !important; + } + + .lg\:focus\:from-red-700:focus { + --tw-gradient-from: #b91c1c !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)) !important; + } + + .lg\:focus\:from-red-800:focus { + --tw-gradient-from: #991b1b !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)) !important; + } + + .lg\:focus\:from-red-900:focus { + --tw-gradient-from: #7f1d1d !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important; + } + + .lg\:focus\:from-yellow-50:focus { + --tw-gradient-from: #fffbeb !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)) !important; + } + + .lg\:focus\:from-yellow-100:focus { + --tw-gradient-from: #fef3c7 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)) !important; + } + + .lg\:focus\:from-yellow-200:focus { + --tw-gradient-from: #fde68a !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)) !important; + } + + .lg\:focus\:from-yellow-300:focus { + --tw-gradient-from: #fcd34d !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)) !important; + } + + .lg\:focus\:from-yellow-400:focus { + --tw-gradient-from: #fbbf24 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)) !important; + } + + .lg\:focus\:from-yellow-500:focus { + --tw-gradient-from: #f59e0b !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)) !important; + } + + .lg\:focus\:from-yellow-600:focus { + --tw-gradient-from: #d97706 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)) !important; + } + + .lg\:focus\:from-yellow-700:focus { + --tw-gradient-from: #b45309 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)) !important; + } + + .lg\:focus\:from-yellow-800:focus { + --tw-gradient-from: #92400e !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)) !important; + } + + .lg\:focus\:from-yellow-900:focus { + --tw-gradient-from: #78350f !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)) !important; + } + + .lg\:focus\:from-green-50:focus { + --tw-gradient-from: #ecfdf5 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)) !important; + } + + .lg\:focus\:from-green-100:focus { + --tw-gradient-from: #d1fae5 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)) !important; + } + + .lg\:focus\:from-green-200:focus { + --tw-gradient-from: #a7f3d0 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)) !important; + } + + .lg\:focus\:from-green-300:focus { + --tw-gradient-from: #6ee7b7 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)) !important; + } + + .lg\:focus\:from-green-400:focus { + --tw-gradient-from: #34d399 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)) !important; + } + + .lg\:focus\:from-green-500:focus { + --tw-gradient-from: #10b981 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)) !important; + } + + .lg\:focus\:from-green-600:focus { + --tw-gradient-from: #059669 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)) !important; + } + + .lg\:focus\:from-green-700:focus { + --tw-gradient-from: #047857 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)) !important; + } + + .lg\:focus\:from-green-800:focus { + --tw-gradient-from: #065f46 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)) !important; + } + + .lg\:focus\:from-green-900:focus { + --tw-gradient-from: #064e3b !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)) !important; + } + + .lg\:focus\:from-blue-50:focus { + --tw-gradient-from: #eff6ff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)) !important; + } + + .lg\:focus\:from-blue-100:focus { + --tw-gradient-from: #dbeafe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)) !important; + } + + .lg\:focus\:from-blue-200:focus { + --tw-gradient-from: #bfdbfe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)) !important; + } + + .lg\:focus\:from-blue-300:focus { + --tw-gradient-from: #93c5fd !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)) !important; + } + + .lg\:focus\:from-blue-400:focus { + --tw-gradient-from: #60a5fa !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)) !important; + } + + .lg\:focus\:from-blue-500:focus { + --tw-gradient-from: #3b82f6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)) !important; + } + + .lg\:focus\:from-blue-600:focus { + --tw-gradient-from: #2563eb !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)) !important; + } + + .lg\:focus\:from-blue-700:focus { + --tw-gradient-from: #1d4ed8 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)) !important; + } + + .lg\:focus\:from-blue-800:focus { + --tw-gradient-from: #1e40af !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)) !important; + } + + .lg\:focus\:from-blue-900:focus { + --tw-gradient-from: #1e3a8a !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)) !important; + } + + .lg\:focus\:from-indigo-50:focus { + --tw-gradient-from: #eef2ff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)) !important; + } + + .lg\:focus\:from-indigo-100:focus { + --tw-gradient-from: #e0e7ff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)) !important; + } + + .lg\:focus\:from-indigo-200:focus { + --tw-gradient-from: #c7d2fe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)) !important; + } + + .lg\:focus\:from-indigo-300:focus { + --tw-gradient-from: #a5b4fc !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)) !important; + } + + .lg\:focus\:from-indigo-400:focus { + --tw-gradient-from: #818cf8 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)) !important; + } + + .lg\:focus\:from-indigo-500:focus { + --tw-gradient-from: #6366f1 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)) !important; + } + + .lg\:focus\:from-indigo-600:focus { + --tw-gradient-from: #4f46e5 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)) !important; + } + + .lg\:focus\:from-indigo-700:focus { + --tw-gradient-from: #4338ca !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)) !important; + } + + .lg\:focus\:from-indigo-800:focus { + --tw-gradient-from: #3730a3 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)) !important; + } + + .lg\:focus\:from-indigo-900:focus { + --tw-gradient-from: #312e81 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)) !important; + } + + .lg\:focus\:from-purple-50:focus { + --tw-gradient-from: #f5f3ff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)) !important; + } + + .lg\:focus\:from-purple-100:focus { + --tw-gradient-from: #ede9fe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)) !important; + } + + .lg\:focus\:from-purple-200:focus { + --tw-gradient-from: #ddd6fe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)) !important; + } + + .lg\:focus\:from-purple-300:focus { + --tw-gradient-from: #c4b5fd !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)) !important; + } + + .lg\:focus\:from-purple-400:focus { + --tw-gradient-from: #a78bfa !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)) !important; + } + + .lg\:focus\:from-purple-500:focus { + --tw-gradient-from: #8b5cf6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)) !important; + } + + .lg\:focus\:from-purple-600:focus { + --tw-gradient-from: #7c3aed !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)) !important; + } + + .lg\:focus\:from-purple-700:focus { + --tw-gradient-from: #6d28d9 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)) !important; + } + + .lg\:focus\:from-purple-800:focus { + --tw-gradient-from: #5b21b6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)) !important; + } + + .lg\:focus\:from-purple-900:focus { + --tw-gradient-from: #4c1d95 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)) !important; + } + + .lg\:focus\:from-pink-50:focus { + --tw-gradient-from: #fdf2f8 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)) !important; + } + + .lg\:focus\:from-pink-100:focus { + --tw-gradient-from: #fce7f3 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)) !important; + } + + .lg\:focus\:from-pink-200:focus { + --tw-gradient-from: #fbcfe8 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)) !important; + } + + .lg\:focus\:from-pink-300:focus { + --tw-gradient-from: #f9a8d4 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)) !important; + } + + .lg\:focus\:from-pink-400:focus { + --tw-gradient-from: #f472b6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)) !important; + } + + .lg\:focus\:from-pink-500:focus { + --tw-gradient-from: #ec4899 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)) !important; + } + + .lg\:focus\:from-pink-600:focus { + --tw-gradient-from: #db2777 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)) !important; + } + + .lg\:focus\:from-pink-700:focus { + --tw-gradient-from: #be185d !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)) !important; + } + + .lg\:focus\:from-pink-800:focus { + --tw-gradient-from: #9d174d !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)) !important; + } + + .lg\:focus\:from-pink-900:focus { + --tw-gradient-from: #831843 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)) !important; + } + + .lg\:focus\:from-primary:focus { + --tw-gradient-from: #003197 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 49, 151, 0)) !important; + } + + .lg\:focus\:via-transparent:focus { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; + } + + .lg\:focus\:via-current:focus { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; + } + + .lg\:focus\:via-black:focus { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; + } + + .lg\:focus\:via-white:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; + } + + .lg\:focus\:via-gray-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)) !important; + } + + .lg\:focus\:via-gray-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)) !important; + } + + .lg\:focus\:via-gray-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)) !important; + } + + .lg\:focus\:via-gray-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)) !important; + } + + .lg\:focus\:via-gray-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)) !important; + } + + .lg\:focus\:via-gray-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)) !important; + } + + .lg\:focus\:via-gray-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)) !important; + } + + .lg\:focus\:via-gray-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)) !important; + } + + .lg\:focus\:via-gray-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)) !important; + } + + .lg\:focus\:via-gray-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)) !important; + } + + .lg\:focus\:via-red-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)) !important; + } + + .lg\:focus\:via-red-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)) !important; + } + + .lg\:focus\:via-red-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)) !important; + } + + .lg\:focus\:via-red-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)) !important; + } + + .lg\:focus\:via-red-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)) !important; + } + + .lg\:focus\:via-red-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)) !important; + } + + .lg\:focus\:via-red-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)) !important; + } + + .lg\:focus\:via-red-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)) !important; + } + + .lg\:focus\:via-red-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)) !important; + } + + .lg\:focus\:via-red-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important; + } + + .lg\:focus\:via-yellow-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)) !important; + } + + .lg\:focus\:via-yellow-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)) !important; + } + + .lg\:focus\:via-yellow-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)) !important; + } + + .lg\:focus\:via-yellow-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)) !important; + } + + .lg\:focus\:via-yellow-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)) !important; + } + + .lg\:focus\:via-yellow-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)) !important; + } + + .lg\:focus\:via-yellow-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)) !important; + } + + .lg\:focus\:via-yellow-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)) !important; + } + + .lg\:focus\:via-yellow-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)) !important; + } + + .lg\:focus\:via-yellow-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)) !important; + } + + .lg\:focus\:via-green-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)) !important; + } + + .lg\:focus\:via-green-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)) !important; + } + + .lg\:focus\:via-green-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)) !important; + } + + .lg\:focus\:via-green-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)) !important; + } + + .lg\:focus\:via-green-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)) !important; + } + + .lg\:focus\:via-green-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)) !important; + } + + .lg\:focus\:via-green-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)) !important; + } + + .lg\:focus\:via-green-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)) !important; + } + + .lg\:focus\:via-green-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)) !important; + } + + .lg\:focus\:via-green-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)) !important; + } + + .lg\:focus\:via-blue-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)) !important; + } + + .lg\:focus\:via-blue-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)) !important; + } + + .lg\:focus\:via-blue-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)) !important; + } + + .lg\:focus\:via-blue-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)) !important; + } + + .lg\:focus\:via-blue-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)) !important; + } + + .lg\:focus\:via-blue-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)) !important; + } + + .lg\:focus\:via-blue-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)) !important; + } + + .lg\:focus\:via-blue-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)) !important; + } + + .lg\:focus\:via-blue-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)) !important; + } + + .lg\:focus\:via-blue-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)) !important; + } + + .lg\:focus\:via-indigo-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)) !important; + } + + .lg\:focus\:via-indigo-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)) !important; + } + + .lg\:focus\:via-indigo-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)) !important; + } + + .lg\:focus\:via-indigo-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)) !important; + } + + .lg\:focus\:via-indigo-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)) !important; + } + + .lg\:focus\:via-indigo-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)) !important; + } + + .lg\:focus\:via-indigo-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)) !important; + } + + .lg\:focus\:via-indigo-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)) !important; + } + + .lg\:focus\:via-indigo-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)) !important; + } + + .lg\:focus\:via-indigo-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)) !important; + } + + .lg\:focus\:via-purple-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)) !important; + } + + .lg\:focus\:via-purple-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)) !important; + } + + .lg\:focus\:via-purple-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)) !important; + } + + .lg\:focus\:via-purple-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)) !important; + } + + .lg\:focus\:via-purple-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)) !important; + } + + .lg\:focus\:via-purple-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)) !important; + } + + .lg\:focus\:via-purple-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)) !important; + } + + .lg\:focus\:via-purple-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)) !important; + } + + .lg\:focus\:via-purple-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)) !important; + } + + .lg\:focus\:via-purple-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)) !important; + } + + .lg\:focus\:via-pink-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)) !important; + } + + .lg\:focus\:via-pink-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)) !important; + } + + .lg\:focus\:via-pink-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)) !important; + } + + .lg\:focus\:via-pink-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)) !important; + } + + .lg\:focus\:via-pink-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)) !important; + } + + .lg\:focus\:via-pink-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)) !important; + } + + .lg\:focus\:via-pink-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)) !important; + } + + .lg\:focus\:via-pink-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)) !important; + } + + .lg\:focus\:via-pink-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)) !important; + } + + .lg\:focus\:via-pink-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)) !important; + } + + .lg\:focus\:via-primary:focus { + --tw-gradient-stops: var(--tw-gradient-from), #003197, var(--tw-gradient-to, rgba(0, 49, 151, 0)) !important; + } + + .lg\:focus\:to-transparent:focus { + --tw-gradient-to: transparent !important; + } + + .lg\:focus\:to-current:focus { + --tw-gradient-to: currentColor !important; + } + + .lg\:focus\:to-black:focus { + --tw-gradient-to: #000 !important; + } + + .lg\:focus\:to-white:focus { + --tw-gradient-to: #fff !important; + } + + .lg\:focus\:to-gray-50:focus { + --tw-gradient-to: #f9fafb !important; + } + + .lg\:focus\:to-gray-100:focus { + --tw-gradient-to: #f3f4f6 !important; + } + + .lg\:focus\:to-gray-200:focus { + --tw-gradient-to: #e5e7eb !important; + } + + .lg\:focus\:to-gray-300:focus { + --tw-gradient-to: #d1d5db !important; + } + + .lg\:focus\:to-gray-400:focus { + --tw-gradient-to: #9ca3af !important; + } + + .lg\:focus\:to-gray-500:focus { + --tw-gradient-to: #6b7280 !important; + } + + .lg\:focus\:to-gray-600:focus { + --tw-gradient-to: #4b5563 !important; + } + + .lg\:focus\:to-gray-700:focus { + --tw-gradient-to: #374151 !important; + } + + .lg\:focus\:to-gray-800:focus { + --tw-gradient-to: #1f2937 !important; + } + + .lg\:focus\:to-gray-900:focus { + --tw-gradient-to: #111827 !important; + } + + .lg\:focus\:to-red-50:focus { + --tw-gradient-to: #fef2f2 !important; + } + + .lg\:focus\:to-red-100:focus { + --tw-gradient-to: #fee2e2 !important; + } + + .lg\:focus\:to-red-200:focus { + --tw-gradient-to: #fecaca !important; + } + + .lg\:focus\:to-red-300:focus { + --tw-gradient-to: #fca5a5 !important; + } + + .lg\:focus\:to-red-400:focus { + --tw-gradient-to: #f87171 !important; + } + + .lg\:focus\:to-red-500:focus { + --tw-gradient-to: #ef4444 !important; + } + + .lg\:focus\:to-red-600:focus { + --tw-gradient-to: #dc2626 !important; + } + + .lg\:focus\:to-red-700:focus { + --tw-gradient-to: #b91c1c !important; + } + + .lg\:focus\:to-red-800:focus { + --tw-gradient-to: #991b1b !important; + } + + .lg\:focus\:to-red-900:focus { + --tw-gradient-to: #7f1d1d !important; + } + + .lg\:focus\:to-yellow-50:focus { + --tw-gradient-to: #fffbeb !important; + } + + .lg\:focus\:to-yellow-100:focus { + --tw-gradient-to: #fef3c7 !important; + } + + .lg\:focus\:to-yellow-200:focus { + --tw-gradient-to: #fde68a !important; + } + + .lg\:focus\:to-yellow-300:focus { + --tw-gradient-to: #fcd34d !important; + } + + .lg\:focus\:to-yellow-400:focus { + --tw-gradient-to: #fbbf24 !important; + } + + .lg\:focus\:to-yellow-500:focus { + --tw-gradient-to: #f59e0b !important; + } + + .lg\:focus\:to-yellow-600:focus { + --tw-gradient-to: #d97706 !important; + } + + .lg\:focus\:to-yellow-700:focus { + --tw-gradient-to: #b45309 !important; + } + + .lg\:focus\:to-yellow-800:focus { + --tw-gradient-to: #92400e !important; + } + + .lg\:focus\:to-yellow-900:focus { + --tw-gradient-to: #78350f !important; + } + + .lg\:focus\:to-green-50:focus { + --tw-gradient-to: #ecfdf5 !important; + } + + .lg\:focus\:to-green-100:focus { + --tw-gradient-to: #d1fae5 !important; + } + + .lg\:focus\:to-green-200:focus { + --tw-gradient-to: #a7f3d0 !important; + } + + .lg\:focus\:to-green-300:focus { + --tw-gradient-to: #6ee7b7 !important; + } + + .lg\:focus\:to-green-400:focus { + --tw-gradient-to: #34d399 !important; + } + + .lg\:focus\:to-green-500:focus { + --tw-gradient-to: #10b981 !important; + } + + .lg\:focus\:to-green-600:focus { + --tw-gradient-to: #059669 !important; + } + + .lg\:focus\:to-green-700:focus { + --tw-gradient-to: #047857 !important; + } + + .lg\:focus\:to-green-800:focus { + --tw-gradient-to: #065f46 !important; + } + + .lg\:focus\:to-green-900:focus { + --tw-gradient-to: #064e3b !important; + } + + .lg\:focus\:to-blue-50:focus { + --tw-gradient-to: #eff6ff !important; + } + + .lg\:focus\:to-blue-100:focus { + --tw-gradient-to: #dbeafe !important; + } + + .lg\:focus\:to-blue-200:focus { + --tw-gradient-to: #bfdbfe !important; + } + + .lg\:focus\:to-blue-300:focus { + --tw-gradient-to: #93c5fd !important; + } + + .lg\:focus\:to-blue-400:focus { + --tw-gradient-to: #60a5fa !important; + } + + .lg\:focus\:to-blue-500:focus { + --tw-gradient-to: #3b82f6 !important; + } + + .lg\:focus\:to-blue-600:focus { + --tw-gradient-to: #2563eb !important; + } + + .lg\:focus\:to-blue-700:focus { + --tw-gradient-to: #1d4ed8 !important; + } + + .lg\:focus\:to-blue-800:focus { + --tw-gradient-to: #1e40af !important; + } + + .lg\:focus\:to-blue-900:focus { + --tw-gradient-to: #1e3a8a !important; + } + + .lg\:focus\:to-indigo-50:focus { + --tw-gradient-to: #eef2ff !important; + } + + .lg\:focus\:to-indigo-100:focus { + --tw-gradient-to: #e0e7ff !important; + } + + .lg\:focus\:to-indigo-200:focus { + --tw-gradient-to: #c7d2fe !important; + } + + .lg\:focus\:to-indigo-300:focus { + --tw-gradient-to: #a5b4fc !important; + } + + .lg\:focus\:to-indigo-400:focus { + --tw-gradient-to: #818cf8 !important; + } + + .lg\:focus\:to-indigo-500:focus { + --tw-gradient-to: #6366f1 !important; + } + + .lg\:focus\:to-indigo-600:focus { + --tw-gradient-to: #4f46e5 !important; + } + + .lg\:focus\:to-indigo-700:focus { + --tw-gradient-to: #4338ca !important; + } + + .lg\:focus\:to-indigo-800:focus { + --tw-gradient-to: #3730a3 !important; + } + + .lg\:focus\:to-indigo-900:focus { + --tw-gradient-to: #312e81 !important; + } + + .lg\:focus\:to-purple-50:focus { + --tw-gradient-to: #f5f3ff !important; + } + + .lg\:focus\:to-purple-100:focus { + --tw-gradient-to: #ede9fe !important; + } + + .lg\:focus\:to-purple-200:focus { + --tw-gradient-to: #ddd6fe !important; + } + + .lg\:focus\:to-purple-300:focus { + --tw-gradient-to: #c4b5fd !important; + } + + .lg\:focus\:to-purple-400:focus { + --tw-gradient-to: #a78bfa !important; + } + + .lg\:focus\:to-purple-500:focus { + --tw-gradient-to: #8b5cf6 !important; + } + + .lg\:focus\:to-purple-600:focus { + --tw-gradient-to: #7c3aed !important; + } + + .lg\:focus\:to-purple-700:focus { + --tw-gradient-to: #6d28d9 !important; + } + + .lg\:focus\:to-purple-800:focus { + --tw-gradient-to: #5b21b6 !important; + } + + .lg\:focus\:to-purple-900:focus { + --tw-gradient-to: #4c1d95 !important; + } + + .lg\:focus\:to-pink-50:focus { + --tw-gradient-to: #fdf2f8 !important; + } + + .lg\:focus\:to-pink-100:focus { + --tw-gradient-to: #fce7f3 !important; + } + + .lg\:focus\:to-pink-200:focus { + --tw-gradient-to: #fbcfe8 !important; + } + + .lg\:focus\:to-pink-300:focus { + --tw-gradient-to: #f9a8d4 !important; + } + + .lg\:focus\:to-pink-400:focus { + --tw-gradient-to: #f472b6 !important; + } + + .lg\:focus\:to-pink-500:focus { + --tw-gradient-to: #ec4899 !important; + } + + .lg\:focus\:to-pink-600:focus { + --tw-gradient-to: #db2777 !important; + } + + .lg\:focus\:to-pink-700:focus { + --tw-gradient-to: #be185d !important; + } + + .lg\:focus\:to-pink-800:focus { + --tw-gradient-to: #9d174d !important; + } + + .lg\:focus\:to-pink-900:focus { + --tw-gradient-to: #831843 !important; + } + + .lg\:focus\:to-primary:focus { + --tw-gradient-to: #003197 !important; + } + + .lg\:bg-opacity-0 { + --tw-bg-opacity: 0 !important; + } + + .lg\:bg-opacity-5 { + --tw-bg-opacity: 0.05 !important; + } + + .lg\:bg-opacity-10 { + --tw-bg-opacity: 0.1 !important; + } + + .lg\:bg-opacity-20 { + --tw-bg-opacity: 0.2 !important; + } + + .lg\:bg-opacity-25 { + --tw-bg-opacity: 0.25 !important; + } + + .lg\:bg-opacity-30 { + --tw-bg-opacity: 0.3 !important; + } + + .lg\:bg-opacity-40 { + --tw-bg-opacity: 0.4 !important; + } + + .lg\:bg-opacity-50 { + --tw-bg-opacity: 0.5 !important; + } + + .lg\:bg-opacity-60 { + --tw-bg-opacity: 0.6 !important; + } + + .lg\:bg-opacity-70 { + --tw-bg-opacity: 0.7 !important; + } + + .lg\:bg-opacity-75 { + --tw-bg-opacity: 0.75 !important; + } + + .lg\:bg-opacity-80 { + --tw-bg-opacity: 0.8 !important; + } + + .lg\:bg-opacity-90 { + --tw-bg-opacity: 0.9 !important; + } + + .lg\:bg-opacity-95 { + --tw-bg-opacity: 0.95 !important; + } + + .lg\:bg-opacity-100 { + --tw-bg-opacity: 1 !important; + } + + .group:hover .lg\:group-hover\:bg-opacity-0 { + --tw-bg-opacity: 0 !important; + } + + .group:hover .lg\:group-hover\:bg-opacity-5 { + --tw-bg-opacity: 0.05 !important; + } + + .group:hover .lg\:group-hover\:bg-opacity-10 { + --tw-bg-opacity: 0.1 !important; + } + + .group:hover .lg\:group-hover\:bg-opacity-20 { + --tw-bg-opacity: 0.2 !important; + } + + .group:hover .lg\:group-hover\:bg-opacity-25 { + --tw-bg-opacity: 0.25 !important; + } + + .group:hover .lg\:group-hover\:bg-opacity-30 { + --tw-bg-opacity: 0.3 !important; + } + + .group:hover .lg\:group-hover\:bg-opacity-40 { + --tw-bg-opacity: 0.4 !important; + } + + .group:hover .lg\:group-hover\:bg-opacity-50 { + --tw-bg-opacity: 0.5 !important; + } + + .group:hover .lg\:group-hover\:bg-opacity-60 { + --tw-bg-opacity: 0.6 !important; + } + + .group:hover .lg\:group-hover\:bg-opacity-70 { + --tw-bg-opacity: 0.7 !important; + } + + .group:hover .lg\:group-hover\:bg-opacity-75 { + --tw-bg-opacity: 0.75 !important; + } + + .group:hover .lg\:group-hover\:bg-opacity-80 { + --tw-bg-opacity: 0.8 !important; + } + + .group:hover .lg\:group-hover\:bg-opacity-90 { + --tw-bg-opacity: 0.9 !important; + } + + .group:hover .lg\:group-hover\:bg-opacity-95 { + --tw-bg-opacity: 0.95 !important; + } + + .group:hover .lg\:group-hover\:bg-opacity-100 { + --tw-bg-opacity: 1 !important; + } + + .lg\:focus-within\:bg-opacity-0:focus-within { + --tw-bg-opacity: 0 !important; + } + + .lg\:focus-within\:bg-opacity-5:focus-within { + --tw-bg-opacity: 0.05 !important; + } + + .lg\:focus-within\:bg-opacity-10:focus-within { + --tw-bg-opacity: 0.1 !important; + } + + .lg\:focus-within\:bg-opacity-20:focus-within { + --tw-bg-opacity: 0.2 !important; + } + + .lg\:focus-within\:bg-opacity-25:focus-within { + --tw-bg-opacity: 0.25 !important; + } + + .lg\:focus-within\:bg-opacity-30:focus-within { + --tw-bg-opacity: 0.3 !important; + } + + .lg\:focus-within\:bg-opacity-40:focus-within { + --tw-bg-opacity: 0.4 !important; + } + + .lg\:focus-within\:bg-opacity-50:focus-within { + --tw-bg-opacity: 0.5 !important; + } + + .lg\:focus-within\:bg-opacity-60:focus-within { + --tw-bg-opacity: 0.6 !important; + } + + .lg\:focus-within\:bg-opacity-70:focus-within { + --tw-bg-opacity: 0.7 !important; + } + + .lg\:focus-within\:bg-opacity-75:focus-within { + --tw-bg-opacity: 0.75 !important; + } + + .lg\:focus-within\:bg-opacity-80:focus-within { + --tw-bg-opacity: 0.8 !important; + } + + .lg\:focus-within\:bg-opacity-90:focus-within { + --tw-bg-opacity: 0.9 !important; + } + + .lg\:focus-within\:bg-opacity-95:focus-within { + --tw-bg-opacity: 0.95 !important; + } + + .lg\:focus-within\:bg-opacity-100:focus-within { + --tw-bg-opacity: 1 !important; + } + + .lg\:hover\:bg-opacity-0:hover { + --tw-bg-opacity: 0 !important; + } + + .lg\:hover\:bg-opacity-5:hover { + --tw-bg-opacity: 0.05 !important; + } + + .lg\:hover\:bg-opacity-10:hover { + --tw-bg-opacity: 0.1 !important; + } + + .lg\:hover\:bg-opacity-20:hover { + --tw-bg-opacity: 0.2 !important; + } + + .lg\:hover\:bg-opacity-25:hover { + --tw-bg-opacity: 0.25 !important; + } + + .lg\:hover\:bg-opacity-30:hover { + --tw-bg-opacity: 0.3 !important; + } + + .lg\:hover\:bg-opacity-40:hover { + --tw-bg-opacity: 0.4 !important; + } + + .lg\:hover\:bg-opacity-50:hover { + --tw-bg-opacity: 0.5 !important; + } + + .lg\:hover\:bg-opacity-60:hover { + --tw-bg-opacity: 0.6 !important; + } + + .lg\:hover\:bg-opacity-70:hover { + --tw-bg-opacity: 0.7 !important; + } + + .lg\:hover\:bg-opacity-75:hover { + --tw-bg-opacity: 0.75 !important; + } + + .lg\:hover\:bg-opacity-80:hover { + --tw-bg-opacity: 0.8 !important; + } + + .lg\:hover\:bg-opacity-90:hover { + --tw-bg-opacity: 0.9 !important; + } + + .lg\:hover\:bg-opacity-95:hover { + --tw-bg-opacity: 0.95 !important; + } + + .lg\:hover\:bg-opacity-100:hover { + --tw-bg-opacity: 1 !important; + } + + .lg\:focus\:bg-opacity-0:focus { + --tw-bg-opacity: 0 !important; + } + + .lg\:focus\:bg-opacity-5:focus { + --tw-bg-opacity: 0.05 !important; + } + + .lg\:focus\:bg-opacity-10:focus { + --tw-bg-opacity: 0.1 !important; + } + + .lg\:focus\:bg-opacity-20:focus { + --tw-bg-opacity: 0.2 !important; + } + + .lg\:focus\:bg-opacity-25:focus { + --tw-bg-opacity: 0.25 !important; + } + + .lg\:focus\:bg-opacity-30:focus { + --tw-bg-opacity: 0.3 !important; + } + + .lg\:focus\:bg-opacity-40:focus { + --tw-bg-opacity: 0.4 !important; + } + + .lg\:focus\:bg-opacity-50:focus { + --tw-bg-opacity: 0.5 !important; + } + + .lg\:focus\:bg-opacity-60:focus { + --tw-bg-opacity: 0.6 !important; + } + + .lg\:focus\:bg-opacity-70:focus { + --tw-bg-opacity: 0.7 !important; + } + + .lg\:focus\:bg-opacity-75:focus { + --tw-bg-opacity: 0.75 !important; + } + + .lg\:focus\:bg-opacity-80:focus { + --tw-bg-opacity: 0.8 !important; + } + + .lg\:focus\:bg-opacity-90:focus { + --tw-bg-opacity: 0.9 !important; + } + + .lg\:focus\:bg-opacity-95:focus { + --tw-bg-opacity: 0.95 !important; + } + + .lg\:focus\:bg-opacity-100:focus { + --tw-bg-opacity: 1 !important; + } + + .lg\:bg-bottom { + background-position: bottom !important; + } + + .lg\:bg-center { + background-position: center !important; + } + + .lg\:bg-left { + background-position: left !important; + } + + .lg\:bg-left-bottom { + background-position: left bottom !important; + } + + .lg\:bg-left-top { + background-position: left top !important; + } + + .lg\:bg-right { + background-position: right !important; + } + + .lg\:bg-right-bottom { + background-position: right bottom !important; + } + + .lg\:bg-right-top { + background-position: right top !important; + } + + .lg\:bg-top { + background-position: top !important; + } + + .lg\:bg-repeat { + background-repeat: repeat !important; + } + + .lg\:bg-no-repeat { + background-repeat: no-repeat !important; + } + + .lg\:bg-repeat-x { + background-repeat: repeat-x !important; + } + + .lg\:bg-repeat-y { + background-repeat: repeat-y !important; + } + + .lg\:bg-repeat-round { + background-repeat: round !important; + } + + .lg\:bg-repeat-space { + background-repeat: space !important; + } + + .lg\:bg-auto { + background-size: auto !important; + } + + .lg\:bg-cover { + background-size: cover !important; + } + + .lg\:bg-contain { + background-size: contain !important; + } + + .lg\:border-collapse { + border-collapse: collapse !important; + } + + .lg\:border-separate { + border-collapse: separate !important; + } + + .lg\:border-transparent { + border-color: transparent !important; + } + + .lg\:border-current { + border-color: currentColor !important; + } + + .lg\:border-black { + --tw-border-opacity: 1 !important; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important; + } + + .lg\:border-white { + --tw-border-opacity: 1 !important; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important; + } + + .lg\:border-gray-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)) !important; + } + + .lg\:border-gray-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)) !important; + } + + .lg\:border-gray-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)) !important; + } + + .lg\:border-gray-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)) !important; + } + + .lg\:border-gray-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)) !important; + } + + .lg\:border-gray-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)) !important; + } + + .lg\:border-gray-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)) !important; + } + + .lg\:border-gray-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)) !important; + } + + .lg\:border-gray-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)) !important; + } + + .lg\:border-gray-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)) !important; + } + + .lg\:border-red-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 242, 242, var(--tw-border-opacity)) !important; + } + + .lg\:border-red-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 226, 226, var(--tw-border-opacity)) !important; + } + + .lg\:border-red-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 202, 202, var(--tw-border-opacity)) !important; + } + + .lg\:border-red-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 165, 165, var(--tw-border-opacity)) !important; + } + + .lg\:border-red-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(248, 113, 113, var(--tw-border-opacity)) !important; + } + + .lg\:border-red-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(239, 68, 68, var(--tw-border-opacity)) !important; + } + + .lg\:border-red-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(220, 38, 38, var(--tw-border-opacity)) !important; + } + + .lg\:border-red-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(185, 28, 28, var(--tw-border-opacity)) !important; + } + + .lg\:border-red-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(153, 27, 27, var(--tw-border-opacity)) !important; + } + + .lg\:border-red-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(127, 29, 29, var(--tw-border-opacity)) !important; + } + + .lg\:border-yellow-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(255, 251, 235, var(--tw-border-opacity)) !important; + } + + .lg\:border-yellow-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 243, 199, var(--tw-border-opacity)) !important; + } + + .lg\:border-yellow-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(253, 230, 138, var(--tw-border-opacity)) !important; + } + + .lg\:border-yellow-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 211, 77, var(--tw-border-opacity)) !important; + } + + .lg\:border-yellow-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(251, 191, 36, var(--tw-border-opacity)) !important; + } + + .lg\:border-yellow-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)) !important; + } + + .lg\:border-yellow-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(217, 119, 6, var(--tw-border-opacity)) !important; + } + + .lg\:border-yellow-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(180, 83, 9, var(--tw-border-opacity)) !important; + } + + .lg\:border-yellow-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(146, 64, 14, var(--tw-border-opacity)) !important; + } + + .lg\:border-yellow-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(120, 53, 15, var(--tw-border-opacity)) !important; + } + + .lg\:border-green-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(236, 253, 245, var(--tw-border-opacity)) !important; + } + + .lg\:border-green-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(209, 250, 229, var(--tw-border-opacity)) !important; + } + + .lg\:border-green-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(167, 243, 208, var(--tw-border-opacity)) !important; + } + + .lg\:border-green-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(110, 231, 183, var(--tw-border-opacity)) !important; + } + + .lg\:border-green-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(52, 211, 153, var(--tw-border-opacity)) !important; + } + + .lg\:border-green-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(16, 185, 129, var(--tw-border-opacity)) !important; + } + + .lg\:border-green-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(5, 150, 105, var(--tw-border-opacity)) !important; + } + + .lg\:border-green-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(4, 120, 87, var(--tw-border-opacity)) !important; + } + + .lg\:border-green-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(6, 95, 70, var(--tw-border-opacity)) !important; + } + + .lg\:border-green-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(6, 78, 59, var(--tw-border-opacity)) !important; + } + + .lg\:border-blue-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(239, 246, 255, var(--tw-border-opacity)) !important; + } + + .lg\:border-blue-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(219, 234, 254, var(--tw-border-opacity)) !important; + } + + .lg\:border-blue-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(191, 219, 254, var(--tw-border-opacity)) !important; + } + + .lg\:border-blue-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(147, 197, 253, var(--tw-border-opacity)) !important; + } + + .lg\:border-blue-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(96, 165, 250, var(--tw-border-opacity)) !important; + } + + .lg\:border-blue-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)) !important; + } + + .lg\:border-blue-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(37, 99, 235, var(--tw-border-opacity)) !important; + } + + .lg\:border-blue-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(29, 78, 216, var(--tw-border-opacity)) !important; + } + + .lg\:border-blue-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(30, 64, 175, var(--tw-border-opacity)) !important; + } + + .lg\:border-blue-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(30, 58, 138, var(--tw-border-opacity)) !important; + } + + .lg\:border-indigo-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(238, 242, 255, var(--tw-border-opacity)) !important; + } + + .lg\:border-indigo-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(224, 231, 255, var(--tw-border-opacity)) !important; + } + + .lg\:border-indigo-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(199, 210, 254, var(--tw-border-opacity)) !important; + } + + .lg\:border-indigo-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(165, 180, 252, var(--tw-border-opacity)) !important; + } + + .lg\:border-indigo-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(129, 140, 248, var(--tw-border-opacity)) !important; + } + + .lg\:border-indigo-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(99, 102, 241, var(--tw-border-opacity)) !important; + } + + .lg\:border-indigo-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(79, 70, 229, var(--tw-border-opacity)) !important; + } + + .lg\:border-indigo-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(67, 56, 202, var(--tw-border-opacity)) !important; + } + + .lg\:border-indigo-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(55, 48, 163, var(--tw-border-opacity)) !important; + } + + .lg\:border-indigo-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(49, 46, 129, var(--tw-border-opacity)) !important; + } + + .lg\:border-purple-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(245, 243, 255, var(--tw-border-opacity)) !important; + } + + .lg\:border-purple-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(237, 233, 254, var(--tw-border-opacity)) !important; + } + + .lg\:border-purple-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(221, 214, 254, var(--tw-border-opacity)) !important; + } + + .lg\:border-purple-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(196, 181, 253, var(--tw-border-opacity)) !important; + } + + .lg\:border-purple-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(167, 139, 250, var(--tw-border-opacity)) !important; + } + + .lg\:border-purple-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(139, 92, 246, var(--tw-border-opacity)) !important; + } + + .lg\:border-purple-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(124, 58, 237, var(--tw-border-opacity)) !important; + } + + .lg\:border-purple-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(109, 40, 217, var(--tw-border-opacity)) !important; + } + + .lg\:border-purple-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(91, 33, 182, var(--tw-border-opacity)) !important; + } + + .lg\:border-purple-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(76, 29, 149, var(--tw-border-opacity)) !important; + } + + .lg\:border-pink-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(253, 242, 248, var(--tw-border-opacity)) !important; + } + + .lg\:border-pink-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 231, 243, var(--tw-border-opacity)) !important; + } + + .lg\:border-pink-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(251, 207, 232, var(--tw-border-opacity)) !important; + } + + .lg\:border-pink-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(249, 168, 212, var(--tw-border-opacity)) !important; + } + + .lg\:border-pink-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(244, 114, 182, var(--tw-border-opacity)) !important; + } + + .lg\:border-pink-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(236, 72, 153, var(--tw-border-opacity)) !important; + } + + .lg\:border-pink-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(219, 39, 119, var(--tw-border-opacity)) !important; + } + + .lg\:border-pink-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(190, 24, 93, var(--tw-border-opacity)) !important; + } + + .lg\:border-pink-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(157, 23, 77, var(--tw-border-opacity)) !important; + } + + .lg\:border-pink-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(131, 24, 67, var(--tw-border-opacity)) !important; + } + + .lg\:border-primary { + --tw-border-opacity: 1 !important; + border-color: rgba(0, 49, 151, var(--tw-border-opacity)) !important; + } + + .group:hover .lg\:group-hover\:border-transparent { + border-color: transparent !important; + } + + .group:hover .lg\:group-hover\:border-current { + border-color: currentColor !important; + } + + .group:hover .lg\:group-hover\:border-black { + --tw-border-opacity: 1 !important; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important; + } + + .group:hover .lg\:group-hover\:border-white { + --tw-border-opacity: 1 !important; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important; + } + + .group:hover .lg\:group-hover\:border-gray-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)) !important; + } + + .group:hover .lg\:group-hover\:border-gray-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)) !important; + } + + .group:hover .lg\:group-hover\:border-gray-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)) !important; + } + + .group:hover .lg\:group-hover\:border-gray-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)) !important; + } + + .group:hover .lg\:group-hover\:border-gray-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)) !important; + } + + .group:hover .lg\:group-hover\:border-gray-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)) !important; + } + + .group:hover .lg\:group-hover\:border-gray-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)) !important; + } + + .group:hover .lg\:group-hover\:border-gray-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)) !important; + } + + .group:hover .lg\:group-hover\:border-gray-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)) !important; + } + + .group:hover .lg\:group-hover\:border-gray-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)) !important; + } + + .group:hover .lg\:group-hover\:border-red-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 242, 242, var(--tw-border-opacity)) !important; + } + + .group:hover .lg\:group-hover\:border-red-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 226, 226, var(--tw-border-opacity)) !important; + } + + .group:hover .lg\:group-hover\:border-red-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 202, 202, var(--tw-border-opacity)) !important; + } + + .group:hover .lg\:group-hover\:border-red-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 165, 165, var(--tw-border-opacity)) !important; + } + + .group:hover .lg\:group-hover\:border-red-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(248, 113, 113, var(--tw-border-opacity)) !important; + } + + .group:hover .lg\:group-hover\:border-red-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(239, 68, 68, var(--tw-border-opacity)) !important; + } + + .group:hover .lg\:group-hover\:border-red-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(220, 38, 38, var(--tw-border-opacity)) !important; + } + + .group:hover .lg\:group-hover\:border-red-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(185, 28, 28, var(--tw-border-opacity)) !important; + } + + .group:hover .lg\:group-hover\:border-red-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(153, 27, 27, var(--tw-border-opacity)) !important; + } + + .group:hover .lg\:group-hover\:border-red-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(127, 29, 29, var(--tw-border-opacity)) !important; + } + + .group:hover .lg\:group-hover\:border-yellow-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(255, 251, 235, var(--tw-border-opacity)) !important; + } + + .group:hover .lg\:group-hover\:border-yellow-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 243, 199, var(--tw-border-opacity)) !important; + } + + .group:hover .lg\:group-hover\:border-yellow-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(253, 230, 138, var(--tw-border-opacity)) !important; + } + + .group:hover .lg\:group-hover\:border-yellow-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 211, 77, var(--tw-border-opacity)) !important; + } + + .group:hover .lg\:group-hover\:border-yellow-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(251, 191, 36, var(--tw-border-opacity)) !important; + } + + .group:hover .lg\:group-hover\:border-yellow-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)) !important; + } + + .group:hover .lg\:group-hover\:border-yellow-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(217, 119, 6, var(--tw-border-opacity)) !important; + } + + .group:hover .lg\:group-hover\:border-yellow-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(180, 83, 9, var(--tw-border-opacity)) !important; + } + + .group:hover .lg\:group-hover\:border-yellow-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(146, 64, 14, var(--tw-border-opacity)) !important; + } + + .group:hover .lg\:group-hover\:border-yellow-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(120, 53, 15, var(--tw-border-opacity)) !important; + } + + .group:hover .lg\:group-hover\:border-green-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(236, 253, 245, var(--tw-border-opacity)) !important; + } + + .group:hover .lg\:group-hover\:border-green-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(209, 250, 229, var(--tw-border-opacity)) !important; + } + + .group:hover .lg\:group-hover\:border-green-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(167, 243, 208, var(--tw-border-opacity)) !important; + } + + .group:hover .lg\:group-hover\:border-green-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(110, 231, 183, var(--tw-border-opacity)) !important; + } + + .group:hover .lg\:group-hover\:border-green-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(52, 211, 153, var(--tw-border-opacity)) !important; + } + + .group:hover .lg\:group-hover\:border-green-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(16, 185, 129, var(--tw-border-opacity)) !important; + } + + .group:hover .lg\:group-hover\:border-green-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(5, 150, 105, var(--tw-border-opacity)) !important; + } + + .group:hover .lg\:group-hover\:border-green-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(4, 120, 87, var(--tw-border-opacity)) !important; + } + + .group:hover .lg\:group-hover\:border-green-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(6, 95, 70, var(--tw-border-opacity)) !important; + } + + .group:hover .lg\:group-hover\:border-green-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(6, 78, 59, var(--tw-border-opacity)) !important; + } + + .group:hover .lg\:group-hover\:border-blue-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(239, 246, 255, var(--tw-border-opacity)) !important; + } + + .group:hover .lg\:group-hover\:border-blue-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(219, 234, 254, var(--tw-border-opacity)) !important; + } + + .group:hover .lg\:group-hover\:border-blue-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(191, 219, 254, var(--tw-border-opacity)) !important; + } + + .group:hover .lg\:group-hover\:border-blue-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(147, 197, 253, var(--tw-border-opacity)) !important; + } + + .group:hover .lg\:group-hover\:border-blue-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(96, 165, 250, var(--tw-border-opacity)) !important; + } + + .group:hover .lg\:group-hover\:border-blue-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)) !important; + } + + .group:hover .lg\:group-hover\:border-blue-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(37, 99, 235, var(--tw-border-opacity)) !important; + } + + .group:hover .lg\:group-hover\:border-blue-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(29, 78, 216, var(--tw-border-opacity)) !important; + } + + .group:hover .lg\:group-hover\:border-blue-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(30, 64, 175, var(--tw-border-opacity)) !important; + } + + .group:hover .lg\:group-hover\:border-blue-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(30, 58, 138, var(--tw-border-opacity)) !important; + } + + .group:hover .lg\:group-hover\:border-indigo-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(238, 242, 255, var(--tw-border-opacity)) !important; + } + + .group:hover .lg\:group-hover\:border-indigo-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(224, 231, 255, var(--tw-border-opacity)) !important; + } + + .group:hover .lg\:group-hover\:border-indigo-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(199, 210, 254, var(--tw-border-opacity)) !important; + } + + .group:hover .lg\:group-hover\:border-indigo-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(165, 180, 252, var(--tw-border-opacity)) !important; + } + + .group:hover .lg\:group-hover\:border-indigo-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(129, 140, 248, var(--tw-border-opacity)) !important; + } + + .group:hover .lg\:group-hover\:border-indigo-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(99, 102, 241, var(--tw-border-opacity)) !important; + } + + .group:hover .lg\:group-hover\:border-indigo-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(79, 70, 229, var(--tw-border-opacity)) !important; + } + + .group:hover .lg\:group-hover\:border-indigo-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(67, 56, 202, var(--tw-border-opacity)) !important; + } + + .group:hover .lg\:group-hover\:border-indigo-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(55, 48, 163, var(--tw-border-opacity)) !important; + } + + .group:hover .lg\:group-hover\:border-indigo-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(49, 46, 129, var(--tw-border-opacity)) !important; + } + + .group:hover .lg\:group-hover\:border-purple-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(245, 243, 255, var(--tw-border-opacity)) !important; + } + + .group:hover .lg\:group-hover\:border-purple-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(237, 233, 254, var(--tw-border-opacity)) !important; + } + + .group:hover .lg\:group-hover\:border-purple-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(221, 214, 254, var(--tw-border-opacity)) !important; + } + + .group:hover .lg\:group-hover\:border-purple-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(196, 181, 253, var(--tw-border-opacity)) !important; + } + + .group:hover .lg\:group-hover\:border-purple-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(167, 139, 250, var(--tw-border-opacity)) !important; + } + + .group:hover .lg\:group-hover\:border-purple-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(139, 92, 246, var(--tw-border-opacity)) !important; + } + + .group:hover .lg\:group-hover\:border-purple-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(124, 58, 237, var(--tw-border-opacity)) !important; + } + + .group:hover .lg\:group-hover\:border-purple-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(109, 40, 217, var(--tw-border-opacity)) !important; + } + + .group:hover .lg\:group-hover\:border-purple-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(91, 33, 182, var(--tw-border-opacity)) !important; + } + + .group:hover .lg\:group-hover\:border-purple-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(76, 29, 149, var(--tw-border-opacity)) !important; + } + + .group:hover .lg\:group-hover\:border-pink-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(253, 242, 248, var(--tw-border-opacity)) !important; + } + + .group:hover .lg\:group-hover\:border-pink-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 231, 243, var(--tw-border-opacity)) !important; + } + + .group:hover .lg\:group-hover\:border-pink-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(251, 207, 232, var(--tw-border-opacity)) !important; + } + + .group:hover .lg\:group-hover\:border-pink-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(249, 168, 212, var(--tw-border-opacity)) !important; + } + + .group:hover .lg\:group-hover\:border-pink-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(244, 114, 182, var(--tw-border-opacity)) !important; + } + + .group:hover .lg\:group-hover\:border-pink-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(236, 72, 153, var(--tw-border-opacity)) !important; + } + + .group:hover .lg\:group-hover\:border-pink-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(219, 39, 119, var(--tw-border-opacity)) !important; + } + + .group:hover .lg\:group-hover\:border-pink-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(190, 24, 93, var(--tw-border-opacity)) !important; + } + + .group:hover .lg\:group-hover\:border-pink-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(157, 23, 77, var(--tw-border-opacity)) !important; + } + + .group:hover .lg\:group-hover\:border-pink-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(131, 24, 67, var(--tw-border-opacity)) !important; + } + + .group:hover .lg\:group-hover\:border-primary { + --tw-border-opacity: 1 !important; + border-color: rgba(0, 49, 151, var(--tw-border-opacity)) !important; + } + + .lg\:focus-within\:border-transparent:focus-within { + border-color: transparent !important; + } + + .lg\:focus-within\:border-current:focus-within { + border-color: currentColor !important; + } + + .lg\:focus-within\:border-black:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important; + } + + .lg\:focus-within\:border-white:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important; + } + + .lg\:focus-within\:border-gray-50:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)) !important; + } + + .lg\:focus-within\:border-gray-100:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)) !important; + } + + .lg\:focus-within\:border-gray-200:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)) !important; + } + + .lg\:focus-within\:border-gray-300:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)) !important; + } + + .lg\:focus-within\:border-gray-400:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)) !important; + } + + .lg\:focus-within\:border-gray-500:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)) !important; + } + + .lg\:focus-within\:border-gray-600:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)) !important; + } + + .lg\:focus-within\:border-gray-700:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)) !important; + } + + .lg\:focus-within\:border-gray-800:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)) !important; + } + + .lg\:focus-within\:border-gray-900:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)) !important; + } + + .lg\:focus-within\:border-red-50:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 242, 242, var(--tw-border-opacity)) !important; + } + + .lg\:focus-within\:border-red-100:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 226, 226, var(--tw-border-opacity)) !important; + } + + .lg\:focus-within\:border-red-200:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 202, 202, var(--tw-border-opacity)) !important; + } + + .lg\:focus-within\:border-red-300:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 165, 165, var(--tw-border-opacity)) !important; + } + + .lg\:focus-within\:border-red-400:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(248, 113, 113, var(--tw-border-opacity)) !important; + } + + .lg\:focus-within\:border-red-500:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(239, 68, 68, var(--tw-border-opacity)) !important; + } + + .lg\:focus-within\:border-red-600:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(220, 38, 38, var(--tw-border-opacity)) !important; + } + + .lg\:focus-within\:border-red-700:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(185, 28, 28, var(--tw-border-opacity)) !important; + } + + .lg\:focus-within\:border-red-800:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(153, 27, 27, var(--tw-border-opacity)) !important; + } + + .lg\:focus-within\:border-red-900:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(127, 29, 29, var(--tw-border-opacity)) !important; + } + + .lg\:focus-within\:border-yellow-50:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(255, 251, 235, var(--tw-border-opacity)) !important; + } + + .lg\:focus-within\:border-yellow-100:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 243, 199, var(--tw-border-opacity)) !important; + } + + .lg\:focus-within\:border-yellow-200:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(253, 230, 138, var(--tw-border-opacity)) !important; + } + + .lg\:focus-within\:border-yellow-300:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 211, 77, var(--tw-border-opacity)) !important; + } + + .lg\:focus-within\:border-yellow-400:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(251, 191, 36, var(--tw-border-opacity)) !important; + } + + .lg\:focus-within\:border-yellow-500:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)) !important; + } + + .lg\:focus-within\:border-yellow-600:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(217, 119, 6, var(--tw-border-opacity)) !important; + } + + .lg\:focus-within\:border-yellow-700:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(180, 83, 9, var(--tw-border-opacity)) !important; + } + + .lg\:focus-within\:border-yellow-800:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(146, 64, 14, var(--tw-border-opacity)) !important; + } + + .lg\:focus-within\:border-yellow-900:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(120, 53, 15, var(--tw-border-opacity)) !important; + } + + .lg\:focus-within\:border-green-50:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(236, 253, 245, var(--tw-border-opacity)) !important; + } + + .lg\:focus-within\:border-green-100:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(209, 250, 229, var(--tw-border-opacity)) !important; + } + + .lg\:focus-within\:border-green-200:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(167, 243, 208, var(--tw-border-opacity)) !important; + } + + .lg\:focus-within\:border-green-300:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(110, 231, 183, var(--tw-border-opacity)) !important; + } + + .lg\:focus-within\:border-green-400:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(52, 211, 153, var(--tw-border-opacity)) !important; + } + + .lg\:focus-within\:border-green-500:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(16, 185, 129, var(--tw-border-opacity)) !important; + } + + .lg\:focus-within\:border-green-600:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(5, 150, 105, var(--tw-border-opacity)) !important; + } + + .lg\:focus-within\:border-green-700:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(4, 120, 87, var(--tw-border-opacity)) !important; + } + + .lg\:focus-within\:border-green-800:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(6, 95, 70, var(--tw-border-opacity)) !important; + } + + .lg\:focus-within\:border-green-900:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(6, 78, 59, var(--tw-border-opacity)) !important; + } + + .lg\:focus-within\:border-blue-50:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(239, 246, 255, var(--tw-border-opacity)) !important; + } + + .lg\:focus-within\:border-blue-100:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(219, 234, 254, var(--tw-border-opacity)) !important; + } + + .lg\:focus-within\:border-blue-200:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(191, 219, 254, var(--tw-border-opacity)) !important; + } + + .lg\:focus-within\:border-blue-300:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(147, 197, 253, var(--tw-border-opacity)) !important; + } + + .lg\:focus-within\:border-blue-400:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(96, 165, 250, var(--tw-border-opacity)) !important; + } + + .lg\:focus-within\:border-blue-500:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)) !important; + } + + .lg\:focus-within\:border-blue-600:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(37, 99, 235, var(--tw-border-opacity)) !important; + } + + .lg\:focus-within\:border-blue-700:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(29, 78, 216, var(--tw-border-opacity)) !important; + } + + .lg\:focus-within\:border-blue-800:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(30, 64, 175, var(--tw-border-opacity)) !important; + } + + .lg\:focus-within\:border-blue-900:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(30, 58, 138, var(--tw-border-opacity)) !important; + } + + .lg\:focus-within\:border-indigo-50:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(238, 242, 255, var(--tw-border-opacity)) !important; + } + + .lg\:focus-within\:border-indigo-100:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(224, 231, 255, var(--tw-border-opacity)) !important; + } + + .lg\:focus-within\:border-indigo-200:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(199, 210, 254, var(--tw-border-opacity)) !important; + } + + .lg\:focus-within\:border-indigo-300:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(165, 180, 252, var(--tw-border-opacity)) !important; + } + + .lg\:focus-within\:border-indigo-400:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(129, 140, 248, var(--tw-border-opacity)) !important; + } + + .lg\:focus-within\:border-indigo-500:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(99, 102, 241, var(--tw-border-opacity)) !important; + } + + .lg\:focus-within\:border-indigo-600:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(79, 70, 229, var(--tw-border-opacity)) !important; + } + + .lg\:focus-within\:border-indigo-700:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(67, 56, 202, var(--tw-border-opacity)) !important; + } + + .lg\:focus-within\:border-indigo-800:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(55, 48, 163, var(--tw-border-opacity)) !important; + } + + .lg\:focus-within\:border-indigo-900:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(49, 46, 129, var(--tw-border-opacity)) !important; + } + + .lg\:focus-within\:border-purple-50:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(245, 243, 255, var(--tw-border-opacity)) !important; + } + + .lg\:focus-within\:border-purple-100:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(237, 233, 254, var(--tw-border-opacity)) !important; + } + + .lg\:focus-within\:border-purple-200:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(221, 214, 254, var(--tw-border-opacity)) !important; + } + + .lg\:focus-within\:border-purple-300:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(196, 181, 253, var(--tw-border-opacity)) !important; + } + + .lg\:focus-within\:border-purple-400:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(167, 139, 250, var(--tw-border-opacity)) !important; + } + + .lg\:focus-within\:border-purple-500:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(139, 92, 246, var(--tw-border-opacity)) !important; + } + + .lg\:focus-within\:border-purple-600:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(124, 58, 237, var(--tw-border-opacity)) !important; + } + + .lg\:focus-within\:border-purple-700:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(109, 40, 217, var(--tw-border-opacity)) !important; + } + + .lg\:focus-within\:border-purple-800:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(91, 33, 182, var(--tw-border-opacity)) !important; + } + + .lg\:focus-within\:border-purple-900:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(76, 29, 149, var(--tw-border-opacity)) !important; + } + + .lg\:focus-within\:border-pink-50:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(253, 242, 248, var(--tw-border-opacity)) !important; + } + + .lg\:focus-within\:border-pink-100:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 231, 243, var(--tw-border-opacity)) !important; + } + + .lg\:focus-within\:border-pink-200:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(251, 207, 232, var(--tw-border-opacity)) !important; + } + + .lg\:focus-within\:border-pink-300:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(249, 168, 212, var(--tw-border-opacity)) !important; + } + + .lg\:focus-within\:border-pink-400:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(244, 114, 182, var(--tw-border-opacity)) !important; + } + + .lg\:focus-within\:border-pink-500:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(236, 72, 153, var(--tw-border-opacity)) !important; + } + + .lg\:focus-within\:border-pink-600:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(219, 39, 119, var(--tw-border-opacity)) !important; + } + + .lg\:focus-within\:border-pink-700:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(190, 24, 93, var(--tw-border-opacity)) !important; + } + + .lg\:focus-within\:border-pink-800:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(157, 23, 77, var(--tw-border-opacity)) !important; + } + + .lg\:focus-within\:border-pink-900:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(131, 24, 67, var(--tw-border-opacity)) !important; + } + + .lg\:focus-within\:border-primary:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(0, 49, 151, var(--tw-border-opacity)) !important; + } + + .lg\:hover\:border-transparent:hover { + border-color: transparent !important; + } + + .lg\:hover\:border-current:hover { + border-color: currentColor !important; + } + + .lg\:hover\:border-black:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important; + } + + .lg\:hover\:border-white:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important; + } + + .lg\:hover\:border-gray-50:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)) !important; + } + + .lg\:hover\:border-gray-100:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)) !important; + } + + .lg\:hover\:border-gray-200:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)) !important; + } + + .lg\:hover\:border-gray-300:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)) !important; + } + + .lg\:hover\:border-gray-400:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)) !important; + } + + .lg\:hover\:border-gray-500:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)) !important; + } + + .lg\:hover\:border-gray-600:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)) !important; + } + + .lg\:hover\:border-gray-700:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)) !important; + } + + .lg\:hover\:border-gray-800:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)) !important; + } + + .lg\:hover\:border-gray-900:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)) !important; + } + + .lg\:hover\:border-red-50:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 242, 242, var(--tw-border-opacity)) !important; + } + + .lg\:hover\:border-red-100:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 226, 226, var(--tw-border-opacity)) !important; + } + + .lg\:hover\:border-red-200:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 202, 202, var(--tw-border-opacity)) !important; + } + + .lg\:hover\:border-red-300:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 165, 165, var(--tw-border-opacity)) !important; + } + + .lg\:hover\:border-red-400:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(248, 113, 113, var(--tw-border-opacity)) !important; + } + + .lg\:hover\:border-red-500:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(239, 68, 68, var(--tw-border-opacity)) !important; + } + + .lg\:hover\:border-red-600:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(220, 38, 38, var(--tw-border-opacity)) !important; + } + + .lg\:hover\:border-red-700:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(185, 28, 28, var(--tw-border-opacity)) !important; + } + + .lg\:hover\:border-red-800:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(153, 27, 27, var(--tw-border-opacity)) !important; + } + + .lg\:hover\:border-red-900:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(127, 29, 29, var(--tw-border-opacity)) !important; + } + + .lg\:hover\:border-yellow-50:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(255, 251, 235, var(--tw-border-opacity)) !important; + } + + .lg\:hover\:border-yellow-100:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 243, 199, var(--tw-border-opacity)) !important; + } + + .lg\:hover\:border-yellow-200:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(253, 230, 138, var(--tw-border-opacity)) !important; + } + + .lg\:hover\:border-yellow-300:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 211, 77, var(--tw-border-opacity)) !important; + } + + .lg\:hover\:border-yellow-400:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(251, 191, 36, var(--tw-border-opacity)) !important; + } + + .lg\:hover\:border-yellow-500:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)) !important; + } + + .lg\:hover\:border-yellow-600:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(217, 119, 6, var(--tw-border-opacity)) !important; + } + + .lg\:hover\:border-yellow-700:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(180, 83, 9, var(--tw-border-opacity)) !important; + } + + .lg\:hover\:border-yellow-800:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(146, 64, 14, var(--tw-border-opacity)) !important; + } + + .lg\:hover\:border-yellow-900:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(120, 53, 15, var(--tw-border-opacity)) !important; + } + + .lg\:hover\:border-green-50:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(236, 253, 245, var(--tw-border-opacity)) !important; + } + + .lg\:hover\:border-green-100:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(209, 250, 229, var(--tw-border-opacity)) !important; + } + + .lg\:hover\:border-green-200:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(167, 243, 208, var(--tw-border-opacity)) !important; + } + + .lg\:hover\:border-green-300:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(110, 231, 183, var(--tw-border-opacity)) !important; + } + + .lg\:hover\:border-green-400:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(52, 211, 153, var(--tw-border-opacity)) !important; + } + + .lg\:hover\:border-green-500:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(16, 185, 129, var(--tw-border-opacity)) !important; + } + + .lg\:hover\:border-green-600:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(5, 150, 105, var(--tw-border-opacity)) !important; + } + + .lg\:hover\:border-green-700:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(4, 120, 87, var(--tw-border-opacity)) !important; + } + + .lg\:hover\:border-green-800:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(6, 95, 70, var(--tw-border-opacity)) !important; + } + + .lg\:hover\:border-green-900:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(6, 78, 59, var(--tw-border-opacity)) !important; + } + + .lg\:hover\:border-blue-50:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(239, 246, 255, var(--tw-border-opacity)) !important; + } + + .lg\:hover\:border-blue-100:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(219, 234, 254, var(--tw-border-opacity)) !important; + } + + .lg\:hover\:border-blue-200:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(191, 219, 254, var(--tw-border-opacity)) !important; + } + + .lg\:hover\:border-blue-300:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(147, 197, 253, var(--tw-border-opacity)) !important; + } + + .lg\:hover\:border-blue-400:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(96, 165, 250, var(--tw-border-opacity)) !important; + } + + .lg\:hover\:border-blue-500:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)) !important; + } + + .lg\:hover\:border-blue-600:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(37, 99, 235, var(--tw-border-opacity)) !important; + } + + .lg\:hover\:border-blue-700:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(29, 78, 216, var(--tw-border-opacity)) !important; + } + + .lg\:hover\:border-blue-800:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(30, 64, 175, var(--tw-border-opacity)) !important; + } + + .lg\:hover\:border-blue-900:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(30, 58, 138, var(--tw-border-opacity)) !important; + } + + .lg\:hover\:border-indigo-50:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(238, 242, 255, var(--tw-border-opacity)) !important; + } + + .lg\:hover\:border-indigo-100:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(224, 231, 255, var(--tw-border-opacity)) !important; + } + + .lg\:hover\:border-indigo-200:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(199, 210, 254, var(--tw-border-opacity)) !important; + } + + .lg\:hover\:border-indigo-300:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(165, 180, 252, var(--tw-border-opacity)) !important; + } + + .lg\:hover\:border-indigo-400:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(129, 140, 248, var(--tw-border-opacity)) !important; + } + + .lg\:hover\:border-indigo-500:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(99, 102, 241, var(--tw-border-opacity)) !important; + } + + .lg\:hover\:border-indigo-600:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(79, 70, 229, var(--tw-border-opacity)) !important; + } + + .lg\:hover\:border-indigo-700:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(67, 56, 202, var(--tw-border-opacity)) !important; + } + + .lg\:hover\:border-indigo-800:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(55, 48, 163, var(--tw-border-opacity)) !important; + } + + .lg\:hover\:border-indigo-900:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(49, 46, 129, var(--tw-border-opacity)) !important; + } + + .lg\:hover\:border-purple-50:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(245, 243, 255, var(--tw-border-opacity)) !important; + } + + .lg\:hover\:border-purple-100:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(237, 233, 254, var(--tw-border-opacity)) !important; + } + + .lg\:hover\:border-purple-200:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(221, 214, 254, var(--tw-border-opacity)) !important; + } + + .lg\:hover\:border-purple-300:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(196, 181, 253, var(--tw-border-opacity)) !important; + } + + .lg\:hover\:border-purple-400:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(167, 139, 250, var(--tw-border-opacity)) !important; + } + + .lg\:hover\:border-purple-500:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(139, 92, 246, var(--tw-border-opacity)) !important; + } + + .lg\:hover\:border-purple-600:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(124, 58, 237, var(--tw-border-opacity)) !important; + } + + .lg\:hover\:border-purple-700:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(109, 40, 217, var(--tw-border-opacity)) !important; + } + + .lg\:hover\:border-purple-800:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(91, 33, 182, var(--tw-border-opacity)) !important; + } + + .lg\:hover\:border-purple-900:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(76, 29, 149, var(--tw-border-opacity)) !important; + } + + .lg\:hover\:border-pink-50:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(253, 242, 248, var(--tw-border-opacity)) !important; + } + + .lg\:hover\:border-pink-100:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 231, 243, var(--tw-border-opacity)) !important; + } + + .lg\:hover\:border-pink-200:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(251, 207, 232, var(--tw-border-opacity)) !important; + } + + .lg\:hover\:border-pink-300:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(249, 168, 212, var(--tw-border-opacity)) !important; + } + + .lg\:hover\:border-pink-400:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(244, 114, 182, var(--tw-border-opacity)) !important; + } + + .lg\:hover\:border-pink-500:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(236, 72, 153, var(--tw-border-opacity)) !important; + } + + .lg\:hover\:border-pink-600:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(219, 39, 119, var(--tw-border-opacity)) !important; + } + + .lg\:hover\:border-pink-700:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(190, 24, 93, var(--tw-border-opacity)) !important; + } + + .lg\:hover\:border-pink-800:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(157, 23, 77, var(--tw-border-opacity)) !important; + } + + .lg\:hover\:border-pink-900:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(131, 24, 67, var(--tw-border-opacity)) !important; + } + + .lg\:hover\:border-primary:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(0, 49, 151, var(--tw-border-opacity)) !important; + } + + .lg\:focus\:border-transparent:focus { + border-color: transparent !important; + } + + .lg\:focus\:border-current:focus { + border-color: currentColor !important; + } + + .lg\:focus\:border-black:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important; + } + + .lg\:focus\:border-white:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important; + } + + .lg\:focus\:border-gray-50:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)) !important; + } + + .lg\:focus\:border-gray-100:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)) !important; + } + + .lg\:focus\:border-gray-200:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)) !important; + } + + .lg\:focus\:border-gray-300:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)) !important; + } + + .lg\:focus\:border-gray-400:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)) !important; + } + + .lg\:focus\:border-gray-500:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)) !important; + } + + .lg\:focus\:border-gray-600:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)) !important; + } + + .lg\:focus\:border-gray-700:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)) !important; + } + + .lg\:focus\:border-gray-800:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)) !important; + } + + .lg\:focus\:border-gray-900:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)) !important; + } + + .lg\:focus\:border-red-50:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 242, 242, var(--tw-border-opacity)) !important; + } + + .lg\:focus\:border-red-100:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 226, 226, var(--tw-border-opacity)) !important; + } + + .lg\:focus\:border-red-200:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 202, 202, var(--tw-border-opacity)) !important; + } + + .lg\:focus\:border-red-300:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 165, 165, var(--tw-border-opacity)) !important; + } + + .lg\:focus\:border-red-400:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(248, 113, 113, var(--tw-border-opacity)) !important; + } + + .lg\:focus\:border-red-500:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(239, 68, 68, var(--tw-border-opacity)) !important; + } + + .lg\:focus\:border-red-600:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(220, 38, 38, var(--tw-border-opacity)) !important; + } + + .lg\:focus\:border-red-700:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(185, 28, 28, var(--tw-border-opacity)) !important; + } + + .lg\:focus\:border-red-800:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(153, 27, 27, var(--tw-border-opacity)) !important; + } + + .lg\:focus\:border-red-900:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(127, 29, 29, var(--tw-border-opacity)) !important; + } + + .lg\:focus\:border-yellow-50:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(255, 251, 235, var(--tw-border-opacity)) !important; + } + + .lg\:focus\:border-yellow-100:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 243, 199, var(--tw-border-opacity)) !important; + } + + .lg\:focus\:border-yellow-200:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(253, 230, 138, var(--tw-border-opacity)) !important; + } + + .lg\:focus\:border-yellow-300:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 211, 77, var(--tw-border-opacity)) !important; + } + + .lg\:focus\:border-yellow-400:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(251, 191, 36, var(--tw-border-opacity)) !important; + } + + .lg\:focus\:border-yellow-500:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)) !important; + } + + .lg\:focus\:border-yellow-600:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(217, 119, 6, var(--tw-border-opacity)) !important; + } + + .lg\:focus\:border-yellow-700:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(180, 83, 9, var(--tw-border-opacity)) !important; + } + + .lg\:focus\:border-yellow-800:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(146, 64, 14, var(--tw-border-opacity)) !important; + } + + .lg\:focus\:border-yellow-900:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(120, 53, 15, var(--tw-border-opacity)) !important; + } + + .lg\:focus\:border-green-50:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(236, 253, 245, var(--tw-border-opacity)) !important; + } + + .lg\:focus\:border-green-100:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(209, 250, 229, var(--tw-border-opacity)) !important; + } + + .lg\:focus\:border-green-200:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(167, 243, 208, var(--tw-border-opacity)) !important; + } + + .lg\:focus\:border-green-300:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(110, 231, 183, var(--tw-border-opacity)) !important; + } + + .lg\:focus\:border-green-400:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(52, 211, 153, var(--tw-border-opacity)) !important; + } + + .lg\:focus\:border-green-500:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(16, 185, 129, var(--tw-border-opacity)) !important; + } + + .lg\:focus\:border-green-600:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(5, 150, 105, var(--tw-border-opacity)) !important; + } + + .lg\:focus\:border-green-700:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(4, 120, 87, var(--tw-border-opacity)) !important; + } + + .lg\:focus\:border-green-800:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(6, 95, 70, var(--tw-border-opacity)) !important; + } + + .lg\:focus\:border-green-900:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(6, 78, 59, var(--tw-border-opacity)) !important; + } + + .lg\:focus\:border-blue-50:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(239, 246, 255, var(--tw-border-opacity)) !important; + } + + .lg\:focus\:border-blue-100:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(219, 234, 254, var(--tw-border-opacity)) !important; + } + + .lg\:focus\:border-blue-200:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(191, 219, 254, var(--tw-border-opacity)) !important; + } + + .lg\:focus\:border-blue-300:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(147, 197, 253, var(--tw-border-opacity)) !important; + } + + .lg\:focus\:border-blue-400:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(96, 165, 250, var(--tw-border-opacity)) !important; + } + + .lg\:focus\:border-blue-500:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)) !important; + } + + .lg\:focus\:border-blue-600:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(37, 99, 235, var(--tw-border-opacity)) !important; + } + + .lg\:focus\:border-blue-700:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(29, 78, 216, var(--tw-border-opacity)) !important; + } + + .lg\:focus\:border-blue-800:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(30, 64, 175, var(--tw-border-opacity)) !important; + } + + .lg\:focus\:border-blue-900:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(30, 58, 138, var(--tw-border-opacity)) !important; + } + + .lg\:focus\:border-indigo-50:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(238, 242, 255, var(--tw-border-opacity)) !important; + } + + .lg\:focus\:border-indigo-100:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(224, 231, 255, var(--tw-border-opacity)) !important; + } + + .lg\:focus\:border-indigo-200:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(199, 210, 254, var(--tw-border-opacity)) !important; + } + + .lg\:focus\:border-indigo-300:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(165, 180, 252, var(--tw-border-opacity)) !important; + } + + .lg\:focus\:border-indigo-400:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(129, 140, 248, var(--tw-border-opacity)) !important; + } + + .lg\:focus\:border-indigo-500:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(99, 102, 241, var(--tw-border-opacity)) !important; + } + + .lg\:focus\:border-indigo-600:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(79, 70, 229, var(--tw-border-opacity)) !important; + } + + .lg\:focus\:border-indigo-700:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(67, 56, 202, var(--tw-border-opacity)) !important; + } + + .lg\:focus\:border-indigo-800:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(55, 48, 163, var(--tw-border-opacity)) !important; + } + + .lg\:focus\:border-indigo-900:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(49, 46, 129, var(--tw-border-opacity)) !important; + } + + .lg\:focus\:border-purple-50:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(245, 243, 255, var(--tw-border-opacity)) !important; + } + + .lg\:focus\:border-purple-100:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(237, 233, 254, var(--tw-border-opacity)) !important; + } + + .lg\:focus\:border-purple-200:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(221, 214, 254, var(--tw-border-opacity)) !important; + } + + .lg\:focus\:border-purple-300:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(196, 181, 253, var(--tw-border-opacity)) !important; + } + + .lg\:focus\:border-purple-400:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(167, 139, 250, var(--tw-border-opacity)) !important; + } + + .lg\:focus\:border-purple-500:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(139, 92, 246, var(--tw-border-opacity)) !important; + } + + .lg\:focus\:border-purple-600:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(124, 58, 237, var(--tw-border-opacity)) !important; + } + + .lg\:focus\:border-purple-700:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(109, 40, 217, var(--tw-border-opacity)) !important; + } + + .lg\:focus\:border-purple-800:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(91, 33, 182, var(--tw-border-opacity)) !important; + } + + .lg\:focus\:border-purple-900:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(76, 29, 149, var(--tw-border-opacity)) !important; + } + + .lg\:focus\:border-pink-50:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(253, 242, 248, var(--tw-border-opacity)) !important; + } + + .lg\:focus\:border-pink-100:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 231, 243, var(--tw-border-opacity)) !important; + } + + .lg\:focus\:border-pink-200:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(251, 207, 232, var(--tw-border-opacity)) !important; + } + + .lg\:focus\:border-pink-300:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(249, 168, 212, var(--tw-border-opacity)) !important; + } + + .lg\:focus\:border-pink-400:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(244, 114, 182, var(--tw-border-opacity)) !important; + } + + .lg\:focus\:border-pink-500:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(236, 72, 153, var(--tw-border-opacity)) !important; + } + + .lg\:focus\:border-pink-600:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(219, 39, 119, var(--tw-border-opacity)) !important; + } + + .lg\:focus\:border-pink-700:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(190, 24, 93, var(--tw-border-opacity)) !important; + } + + .lg\:focus\:border-pink-800:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(157, 23, 77, var(--tw-border-opacity)) !important; + } + + .lg\:focus\:border-pink-900:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(131, 24, 67, var(--tw-border-opacity)) !important; + } + + .lg\:focus\:border-primary:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(0, 49, 151, var(--tw-border-opacity)) !important; + } + + .lg\:border-opacity-0 { + --tw-border-opacity: 0 !important; + } + + .lg\:border-opacity-5 { + --tw-border-opacity: 0.05 !important; + } + + .lg\:border-opacity-10 { + --tw-border-opacity: 0.1 !important; + } + + .lg\:border-opacity-20 { + --tw-border-opacity: 0.2 !important; + } + + .lg\:border-opacity-25 { + --tw-border-opacity: 0.25 !important; + } + + .lg\:border-opacity-30 { + --tw-border-opacity: 0.3 !important; + } + + .lg\:border-opacity-40 { + --tw-border-opacity: 0.4 !important; + } + + .lg\:border-opacity-50 { + --tw-border-opacity: 0.5 !important; + } + + .lg\:border-opacity-60 { + --tw-border-opacity: 0.6 !important; + } + + .lg\:border-opacity-70 { + --tw-border-opacity: 0.7 !important; + } + + .lg\:border-opacity-75 { + --tw-border-opacity: 0.75 !important; + } + + .lg\:border-opacity-80 { + --tw-border-opacity: 0.8 !important; + } + + .lg\:border-opacity-90 { + --tw-border-opacity: 0.9 !important; + } + + .lg\:border-opacity-95 { + --tw-border-opacity: 0.95 !important; + } + + .lg\:border-opacity-100 { + --tw-border-opacity: 1 !important; + } + + .group:hover .lg\:group-hover\:border-opacity-0 { + --tw-border-opacity: 0 !important; + } + + .group:hover .lg\:group-hover\:border-opacity-5 { + --tw-border-opacity: 0.05 !important; + } + + .group:hover .lg\:group-hover\:border-opacity-10 { + --tw-border-opacity: 0.1 !important; + } + + .group:hover .lg\:group-hover\:border-opacity-20 { + --tw-border-opacity: 0.2 !important; + } + + .group:hover .lg\:group-hover\:border-opacity-25 { + --tw-border-opacity: 0.25 !important; + } + + .group:hover .lg\:group-hover\:border-opacity-30 { + --tw-border-opacity: 0.3 !important; + } + + .group:hover .lg\:group-hover\:border-opacity-40 { + --tw-border-opacity: 0.4 !important; + } + + .group:hover .lg\:group-hover\:border-opacity-50 { + --tw-border-opacity: 0.5 !important; + } + + .group:hover .lg\:group-hover\:border-opacity-60 { + --tw-border-opacity: 0.6 !important; + } + + .group:hover .lg\:group-hover\:border-opacity-70 { + --tw-border-opacity: 0.7 !important; + } + + .group:hover .lg\:group-hover\:border-opacity-75 { + --tw-border-opacity: 0.75 !important; + } + + .group:hover .lg\:group-hover\:border-opacity-80 { + --tw-border-opacity: 0.8 !important; + } + + .group:hover .lg\:group-hover\:border-opacity-90 { + --tw-border-opacity: 0.9 !important; + } + + .group:hover .lg\:group-hover\:border-opacity-95 { + --tw-border-opacity: 0.95 !important; + } + + .group:hover .lg\:group-hover\:border-opacity-100 { + --tw-border-opacity: 1 !important; + } + + .lg\:focus-within\:border-opacity-0:focus-within { + --tw-border-opacity: 0 !important; + } + + .lg\:focus-within\:border-opacity-5:focus-within { + --tw-border-opacity: 0.05 !important; + } + + .lg\:focus-within\:border-opacity-10:focus-within { + --tw-border-opacity: 0.1 !important; + } + + .lg\:focus-within\:border-opacity-20:focus-within { + --tw-border-opacity: 0.2 !important; + } + + .lg\:focus-within\:border-opacity-25:focus-within { + --tw-border-opacity: 0.25 !important; + } + + .lg\:focus-within\:border-opacity-30:focus-within { + --tw-border-opacity: 0.3 !important; + } + + .lg\:focus-within\:border-opacity-40:focus-within { + --tw-border-opacity: 0.4 !important; + } + + .lg\:focus-within\:border-opacity-50:focus-within { + --tw-border-opacity: 0.5 !important; + } + + .lg\:focus-within\:border-opacity-60:focus-within { + --tw-border-opacity: 0.6 !important; + } + + .lg\:focus-within\:border-opacity-70:focus-within { + --tw-border-opacity: 0.7 !important; + } + + .lg\:focus-within\:border-opacity-75:focus-within { + --tw-border-opacity: 0.75 !important; + } + + .lg\:focus-within\:border-opacity-80:focus-within { + --tw-border-opacity: 0.8 !important; + } + + .lg\:focus-within\:border-opacity-90:focus-within { + --tw-border-opacity: 0.9 !important; + } + + .lg\:focus-within\:border-opacity-95:focus-within { + --tw-border-opacity: 0.95 !important; + } + + .lg\:focus-within\:border-opacity-100:focus-within { + --tw-border-opacity: 1 !important; + } + + .lg\:hover\:border-opacity-0:hover { + --tw-border-opacity: 0 !important; + } + + .lg\:hover\:border-opacity-5:hover { + --tw-border-opacity: 0.05 !important; + } + + .lg\:hover\:border-opacity-10:hover { + --tw-border-opacity: 0.1 !important; + } + + .lg\:hover\:border-opacity-20:hover { + --tw-border-opacity: 0.2 !important; + } + + .lg\:hover\:border-opacity-25:hover { + --tw-border-opacity: 0.25 !important; + } + + .lg\:hover\:border-opacity-30:hover { + --tw-border-opacity: 0.3 !important; + } + + .lg\:hover\:border-opacity-40:hover { + --tw-border-opacity: 0.4 !important; + } + + .lg\:hover\:border-opacity-50:hover { + --tw-border-opacity: 0.5 !important; + } + + .lg\:hover\:border-opacity-60:hover { + --tw-border-opacity: 0.6 !important; + } + + .lg\:hover\:border-opacity-70:hover { + --tw-border-opacity: 0.7 !important; + } + + .lg\:hover\:border-opacity-75:hover { + --tw-border-opacity: 0.75 !important; + } + + .lg\:hover\:border-opacity-80:hover { + --tw-border-opacity: 0.8 !important; + } + + .lg\:hover\:border-opacity-90:hover { + --tw-border-opacity: 0.9 !important; + } + + .lg\:hover\:border-opacity-95:hover { + --tw-border-opacity: 0.95 !important; + } + + .lg\:hover\:border-opacity-100:hover { + --tw-border-opacity: 1 !important; + } + + .lg\:focus\:border-opacity-0:focus { + --tw-border-opacity: 0 !important; + } + + .lg\:focus\:border-opacity-5:focus { + --tw-border-opacity: 0.05 !important; + } + + .lg\:focus\:border-opacity-10:focus { + --tw-border-opacity: 0.1 !important; + } + + .lg\:focus\:border-opacity-20:focus { + --tw-border-opacity: 0.2 !important; + } + + .lg\:focus\:border-opacity-25:focus { + --tw-border-opacity: 0.25 !important; + } + + .lg\:focus\:border-opacity-30:focus { + --tw-border-opacity: 0.3 !important; + } + + .lg\:focus\:border-opacity-40:focus { + --tw-border-opacity: 0.4 !important; + } + + .lg\:focus\:border-opacity-50:focus { + --tw-border-opacity: 0.5 !important; + } + + .lg\:focus\:border-opacity-60:focus { + --tw-border-opacity: 0.6 !important; + } + + .lg\:focus\:border-opacity-70:focus { + --tw-border-opacity: 0.7 !important; + } + + .lg\:focus\:border-opacity-75:focus { + --tw-border-opacity: 0.75 !important; + } + + .lg\:focus\:border-opacity-80:focus { + --tw-border-opacity: 0.8 !important; + } + + .lg\:focus\:border-opacity-90:focus { + --tw-border-opacity: 0.9 !important; + } + + .lg\:focus\:border-opacity-95:focus { + --tw-border-opacity: 0.95 !important; + } + + .lg\:focus\:border-opacity-100:focus { + --tw-border-opacity: 1 !important; + } + + .lg\:rounded-none { + border-radius: 0px !important; + } + + .lg\:rounded-sm { + border-radius: 0.125rem !important; + } + + .lg\:rounded { + border-radius: 0.25rem !important; + } + + .lg\:rounded-md { + border-radius: 0.375rem !important; + } + + .lg\:rounded-lg { + border-radius: 0.5rem !important; + } + + .lg\:rounded-xl { + border-radius: 0.75rem !important; + } + + .lg\:rounded-2xl { + border-radius: 1rem !important; + } + + .lg\:rounded-3xl { + border-radius: 1.5rem !important; + } + + .lg\:rounded-full { + border-radius: 9999px !important; + } + + .lg\:rounded-t-none { + border-top-left-radius: 0px !important; + border-top-right-radius: 0px !important; + } + + .lg\:rounded-r-none { + border-top-right-radius: 0px !important; + border-bottom-right-radius: 0px !important; + } + + .lg\:rounded-b-none { + border-bottom-right-radius: 0px !important; + border-bottom-left-radius: 0px !important; + } + + .lg\:rounded-l-none { + border-top-left-radius: 0px !important; + border-bottom-left-radius: 0px !important; + } + + .lg\:rounded-t-sm { + border-top-left-radius: 0.125rem !important; + border-top-right-radius: 0.125rem !important; + } + + .lg\:rounded-r-sm { + border-top-right-radius: 0.125rem !important; + border-bottom-right-radius: 0.125rem !important; + } + + .lg\:rounded-b-sm { + border-bottom-right-radius: 0.125rem !important; + border-bottom-left-radius: 0.125rem !important; + } + + .lg\:rounded-l-sm { + border-top-left-radius: 0.125rem !important; + border-bottom-left-radius: 0.125rem !important; + } + + .lg\:rounded-t { + border-top-left-radius: 0.25rem !important; + border-top-right-radius: 0.25rem !important; + } + + .lg\:rounded-r { + border-top-right-radius: 0.25rem !important; + border-bottom-right-radius: 0.25rem !important; + } + + .lg\:rounded-b { + border-bottom-right-radius: 0.25rem !important; + border-bottom-left-radius: 0.25rem !important; + } + + .lg\:rounded-l { + border-top-left-radius: 0.25rem !important; + border-bottom-left-radius: 0.25rem !important; + } + + .lg\:rounded-t-md { + border-top-left-radius: 0.375rem !important; + border-top-right-radius: 0.375rem !important; + } + + .lg\:rounded-r-md { + border-top-right-radius: 0.375rem !important; + border-bottom-right-radius: 0.375rem !important; + } + + .lg\:rounded-b-md { + border-bottom-right-radius: 0.375rem !important; + border-bottom-left-radius: 0.375rem !important; + } + + .lg\:rounded-l-md { + border-top-left-radius: 0.375rem !important; + border-bottom-left-radius: 0.375rem !important; + } + + .lg\:rounded-t-lg { + border-top-left-radius: 0.5rem !important; + border-top-right-radius: 0.5rem !important; + } + + .lg\:rounded-r-lg { + border-top-right-radius: 0.5rem !important; + border-bottom-right-radius: 0.5rem !important; + } + + .lg\:rounded-b-lg { + border-bottom-right-radius: 0.5rem !important; + border-bottom-left-radius: 0.5rem !important; + } + + .lg\:rounded-l-lg { + border-top-left-radius: 0.5rem !important; + border-bottom-left-radius: 0.5rem !important; + } + + .lg\:rounded-t-xl { + border-top-left-radius: 0.75rem !important; + border-top-right-radius: 0.75rem !important; + } + + .lg\:rounded-r-xl { + border-top-right-radius: 0.75rem !important; + border-bottom-right-radius: 0.75rem !important; + } + + .lg\:rounded-b-xl { + border-bottom-right-radius: 0.75rem !important; + border-bottom-left-radius: 0.75rem !important; + } + + .lg\:rounded-l-xl { + border-top-left-radius: 0.75rem !important; + border-bottom-left-radius: 0.75rem !important; + } + + .lg\:rounded-t-2xl { + border-top-left-radius: 1rem !important; + border-top-right-radius: 1rem !important; + } + + .lg\:rounded-r-2xl { + border-top-right-radius: 1rem !important; + border-bottom-right-radius: 1rem !important; + } + + .lg\:rounded-b-2xl { + border-bottom-right-radius: 1rem !important; + border-bottom-left-radius: 1rem !important; + } + + .lg\:rounded-l-2xl { + border-top-left-radius: 1rem !important; + border-bottom-left-radius: 1rem !important; + } + + .lg\:rounded-t-3xl { + border-top-left-radius: 1.5rem !important; + border-top-right-radius: 1.5rem !important; + } + + .lg\:rounded-r-3xl { + border-top-right-radius: 1.5rem !important; + border-bottom-right-radius: 1.5rem !important; + } + + .lg\:rounded-b-3xl { + border-bottom-right-radius: 1.5rem !important; + border-bottom-left-radius: 1.5rem !important; + } + + .lg\:rounded-l-3xl { + border-top-left-radius: 1.5rem !important; + border-bottom-left-radius: 1.5rem !important; + } + + .lg\:rounded-t-full { + border-top-left-radius: 9999px !important; + border-top-right-radius: 9999px !important; + } + + .lg\:rounded-r-full { + border-top-right-radius: 9999px !important; + border-bottom-right-radius: 9999px !important; + } + + .lg\:rounded-b-full { + border-bottom-right-radius: 9999px !important; + border-bottom-left-radius: 9999px !important; + } + + .lg\:rounded-l-full { + border-top-left-radius: 9999px !important; + border-bottom-left-radius: 9999px !important; + } + + .lg\:rounded-tl-none { + border-top-left-radius: 0px !important; + } + + .lg\:rounded-tr-none { + border-top-right-radius: 0px !important; + } + + .lg\:rounded-br-none { + border-bottom-right-radius: 0px !important; + } + + .lg\:rounded-bl-none { + border-bottom-left-radius: 0px !important; + } + + .lg\:rounded-tl-sm { + border-top-left-radius: 0.125rem !important; + } + + .lg\:rounded-tr-sm { + border-top-right-radius: 0.125rem !important; + } + + .lg\:rounded-br-sm { + border-bottom-right-radius: 0.125rem !important; + } + + .lg\:rounded-bl-sm { + border-bottom-left-radius: 0.125rem !important; + } + + .lg\:rounded-tl { + border-top-left-radius: 0.25rem !important; + } + + .lg\:rounded-tr { + border-top-right-radius: 0.25rem !important; + } + + .lg\:rounded-br { + border-bottom-right-radius: 0.25rem !important; + } + + .lg\:rounded-bl { + border-bottom-left-radius: 0.25rem !important; + } + + .lg\:rounded-tl-md { + border-top-left-radius: 0.375rem !important; + } + + .lg\:rounded-tr-md { + border-top-right-radius: 0.375rem !important; + } + + .lg\:rounded-br-md { + border-bottom-right-radius: 0.375rem !important; + } + + .lg\:rounded-bl-md { + border-bottom-left-radius: 0.375rem !important; + } + + .lg\:rounded-tl-lg { + border-top-left-radius: 0.5rem !important; + } + + .lg\:rounded-tr-lg { + border-top-right-radius: 0.5rem !important; + } + + .lg\:rounded-br-lg { + border-bottom-right-radius: 0.5rem !important; + } + + .lg\:rounded-bl-lg { + border-bottom-left-radius: 0.5rem !important; + } + + .lg\:rounded-tl-xl { + border-top-left-radius: 0.75rem !important; + } + + .lg\:rounded-tr-xl { + border-top-right-radius: 0.75rem !important; + } + + .lg\:rounded-br-xl { + border-bottom-right-radius: 0.75rem !important; + } + + .lg\:rounded-bl-xl { + border-bottom-left-radius: 0.75rem !important; + } + + .lg\:rounded-tl-2xl { + border-top-left-radius: 1rem !important; + } + + .lg\:rounded-tr-2xl { + border-top-right-radius: 1rem !important; + } + + .lg\:rounded-br-2xl { + border-bottom-right-radius: 1rem !important; + } + + .lg\:rounded-bl-2xl { + border-bottom-left-radius: 1rem !important; + } + + .lg\:rounded-tl-3xl { + border-top-left-radius: 1.5rem !important; + } + + .lg\:rounded-tr-3xl { + border-top-right-radius: 1.5rem !important; + } + + .lg\:rounded-br-3xl { + border-bottom-right-radius: 1.5rem !important; + } + + .lg\:rounded-bl-3xl { + border-bottom-left-radius: 1.5rem !important; + } + + .lg\:rounded-tl-full { + border-top-left-radius: 9999px !important; + } + + .lg\:rounded-tr-full { + border-top-right-radius: 9999px !important; + } + + .lg\:rounded-br-full { + border-bottom-right-radius: 9999px !important; + } + + .lg\:rounded-bl-full { + border-bottom-left-radius: 9999px !important; + } + + .lg\:border-solid { + border-style: solid !important; + } + + .lg\:border-dashed { + border-style: dashed !important; + } + + .lg\:border-dotted { + border-style: dotted !important; + } + + .lg\:border-double { + border-style: double !important; + } + + .lg\:border-none { + border-style: none !important; + } + + .lg\:border-0 { + border-width: 0px !important; + } + + .lg\:border-2 { + border-width: 2px !important; + } + + .lg\:border-4 { + border-width: 4px !important; + } + + .lg\:border-8 { + border-width: 8px !important; + } + + .lg\:border { + border-width: 1px !important; + } + + .lg\:border-t-0 { + border-top-width: 0px !important; + } + + .lg\:border-r-0 { + border-right-width: 0px !important; + } + + .lg\:border-b-0 { + border-bottom-width: 0px !important; + } + + .lg\:border-l-0 { + border-left-width: 0px !important; + } + + .lg\:border-t-2 { + border-top-width: 2px !important; + } + + .lg\:border-r-2 { + border-right-width: 2px !important; + } + + .lg\:border-b-2 { + border-bottom-width: 2px !important; + } + + .lg\:border-l-2 { + border-left-width: 2px !important; + } + + .lg\:border-t-4 { + border-top-width: 4px !important; + } + + .lg\:border-r-4 { + border-right-width: 4px !important; + } + + .lg\:border-b-4 { + border-bottom-width: 4px !important; + } + + .lg\:border-l-4 { + border-left-width: 4px !important; + } + + .lg\:border-t-8 { + border-top-width: 8px !important; + } + + .lg\:border-r-8 { + border-right-width: 8px !important; + } + + .lg\:border-b-8 { + border-bottom-width: 8px !important; + } + + .lg\:border-l-8 { + border-left-width: 8px !important; + } + + .lg\:border-t { + border-top-width: 1px !important; + } + + .lg\:border-r { + border-right-width: 1px !important; + } + + .lg\:border-b { + border-bottom-width: 1px !important; + } + + .lg\:border-l { + border-left-width: 1px !important; + } + + .lg\:decoration-slice { + -webkit-box-decoration-break: slice !important; + box-decoration-break: slice !important; + } + + .lg\:decoration-clone { + -webkit-box-decoration-break: clone !important; + box-decoration-break: clone !important; + } + + .lg\:box-border { + box-sizing: border-box !important; + } + + .lg\:box-content { + box-sizing: content-box !important; + } + + .lg\:cursor-auto { + cursor: auto !important; + } + + .lg\:cursor-default { + cursor: default !important; + } + + .lg\:cursor-pointer { + cursor: pointer !important; + } + + .lg\:cursor-wait { + cursor: wait !important; + } + + .lg\:cursor-text { + cursor: text !important; + } + + .lg\:cursor-move { + cursor: move !important; + } + + .lg\:cursor-help { + cursor: help !important; + } + + .lg\:cursor-not-allowed { + cursor: not-allowed !important; + } + + .lg\:block { + display: block !important; + } + + .lg\:inline-block { + display: inline-block !important; + } + + .lg\:inline { + display: inline !important; + } + + .lg\:flex { + display: flex !important; + } + + .lg\:inline-flex { + display: inline-flex !important; + } + + .lg\:table { + display: table !important; + } + + .lg\:inline-table { + display: inline-table !important; + } + + .lg\:table-caption { + display: table-caption !important; + } + + .lg\:table-cell { + display: table-cell !important; + } + + .lg\:table-column { + display: table-column !important; + } + + .lg\:table-column-group { + display: table-column-group !important; + } + + .lg\:table-footer-group { + display: table-footer-group !important; + } + + .lg\:table-header-group { + display: table-header-group !important; + } + + .lg\:table-row-group { + display: table-row-group !important; + } + + .lg\:table-row { + display: table-row !important; + } + + .lg\:flow-root { + display: flow-root !important; + } + + .lg\:grid { + display: grid !important; + } + + .lg\:inline-grid { + display: inline-grid !important; + } + + .lg\:contents { + display: contents !important; + } + + .lg\:list-item { + display: list-item !important; + } + + .lg\:hidden { + display: none !important; + } + + .lg\:flex-row { + flex-direction: row !important; + } + + .lg\:flex-row-reverse { + flex-direction: row-reverse !important; + } + + .lg\:flex-col { + flex-direction: column !important; + } + + .lg\:flex-col-reverse { + flex-direction: column-reverse !important; + } + + .lg\:flex-wrap { + flex-wrap: wrap !important; + } + + .lg\:flex-wrap-reverse { + flex-wrap: wrap-reverse !important; + } + + .lg\:flex-nowrap { + flex-wrap: nowrap !important; + } + + .lg\:place-items-start { + place-items: start !important; + } + + .lg\:place-items-end { + place-items: end !important; + } + + .lg\:place-items-center { + place-items: center !important; + } + + .lg\:place-items-stretch { + place-items: stretch !important; + } + + .lg\:place-content-center { + place-content: center !important; + } + + .lg\:place-content-start { + place-content: start !important; + } + + .lg\:place-content-end { + place-content: end !important; + } + + .lg\:place-content-between { + place-content: space-between !important; + } + + .lg\:place-content-around { + place-content: space-around !important; + } + + .lg\:place-content-evenly { + place-content: space-evenly !important; + } + + .lg\:place-content-stretch { + place-content: stretch !important; + } + + .lg\:place-self-auto { + place-self: auto !important; + } + + .lg\:place-self-start { + place-self: start !important; + } + + .lg\:place-self-end { + place-self: end !important; + } + + .lg\:place-self-center { + place-self: center !important; + } + + .lg\:place-self-stretch { + place-self: stretch !important; + } + + .lg\:items-start { + align-items: flex-start !important; + } + + .lg\:items-end { + align-items: flex-end !important; + } + + .lg\:items-center { + align-items: center !important; + } + + .lg\:items-baseline { + align-items: baseline !important; + } + + .lg\:items-stretch { + align-items: stretch !important; + } + + .lg\:content-center { + align-content: center !important; + } + + .lg\:content-start { + align-content: flex-start !important; + } + + .lg\:content-end { + align-content: flex-end !important; + } + + .lg\:content-between { + align-content: space-between !important; + } + + .lg\:content-around { + align-content: space-around !important; + } + + .lg\:content-evenly { + align-content: space-evenly !important; + } + + .lg\:self-auto { + align-self: auto !important; + } + + .lg\:self-start { + align-self: flex-start !important; + } + + .lg\:self-end { + align-self: flex-end !important; + } + + .lg\:self-center { + align-self: center !important; + } + + .lg\:self-stretch { + align-self: stretch !important; + } + + .lg\:justify-items-start { + justify-items: start !important; + } + + .lg\:justify-items-end { + justify-items: end !important; + } + + .lg\:justify-items-center { + justify-items: center !important; + } + + .lg\:justify-items-stretch { + justify-items: stretch !important; + } + + .lg\:justify-start { + justify-content: flex-start !important; + } + + .lg\:justify-end { + justify-content: flex-end !important; + } + + .lg\:justify-center { + justify-content: center !important; + } + + .lg\:justify-between { + justify-content: space-between !important; + } + + .lg\:justify-around { + justify-content: space-around !important; + } + + .lg\:justify-evenly { + justify-content: space-evenly !important; + } + + .lg\:justify-self-auto { + justify-self: auto !important; + } + + .lg\:justify-self-start { + justify-self: start !important; + } + + .lg\:justify-self-end { + justify-self: end !important; + } + + .lg\:justify-self-center { + justify-self: center !important; + } + + .lg\:justify-self-stretch { + justify-self: stretch !important; + } + + .lg\:flex-1 { + flex: 1 1 0% !important; + } + + .lg\:flex-auto { + flex: 1 1 auto !important; + } + + .lg\:flex-initial { + flex: 0 1 auto !important; + } + + .lg\:flex-none { + flex: none !important; + } + + .lg\:flex-grow-0 { + flex-grow: 0 !important; + } + + .lg\:flex-grow { + flex-grow: 1 !important; + } + + .lg\:flex-shrink-0 { + flex-shrink: 0 !important; + } + + .lg\:flex-shrink { + flex-shrink: 1 !important; + } + + .lg\:order-1 { + order: 1 !important; + } + + .lg\:order-2 { + order: 2 !important; + } + + .lg\:order-3 { + order: 3 !important; + } + + .lg\:order-4 { + order: 4 !important; + } + + .lg\:order-5 { + order: 5 !important; + } + + .lg\:order-6 { + order: 6 !important; + } + + .lg\:order-7 { + order: 7 !important; + } + + .lg\:order-8 { + order: 8 !important; + } + + .lg\:order-9 { + order: 9 !important; + } + + .lg\:order-10 { + order: 10 !important; + } + + .lg\:order-11 { + order: 11 !important; + } + + .lg\:order-12 { + order: 12 !important; + } + + .lg\:order-first { + order: -9999 !important; + } + + .lg\:order-last { + order: 9999 !important; + } + + .lg\:order-none { + order: 0 !important; + } + + .lg\:float-right { + float: right !important; + } + + .lg\:float-left { + float: left !important; + } + + .lg\:float-none { + float: none !important; + } + + .lg\:clear-left { + clear: left !important; + } + + .lg\:clear-right { + clear: right !important; + } + + .lg\:clear-both { + clear: both !important; + } + + .lg\:clear-none { + clear: none !important; + } + + .lg\:font-sans { + font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important; + } + + .lg\:font-serif { + font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif !important; + } + + .lg\:font-mono { + font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important; + } + + .lg\:font-thin { + font-weight: 100 !important; + } + + .lg\:font-extralight { + font-weight: 200 !important; + } + + .lg\:font-light { + font-weight: 300 !important; + } + + .lg\:font-normal { + font-weight: 400 !important; + } + + .lg\:font-medium { + font-weight: 500 !important; + } + + .lg\:font-semibold { + font-weight: 600 !important; + } + + .lg\:font-bold { + font-weight: 700 !important; + } + + .lg\:font-extrabold { + font-weight: 800 !important; + } + + .lg\:font-black { + font-weight: 900 !important; + } + + .lg\:h-0 { + height: 0px !important; + } + + .lg\:h-1 { + height: 0.25rem !important; + } + + .lg\:h-2 { + height: 0.5rem !important; + } + + .lg\:h-3 { + height: 0.75rem !important; + } + + .lg\:h-4 { + height: 1rem !important; + } + + .lg\:h-5 { + height: 1.25rem !important; + } + + .lg\:h-6 { + height: 1.5rem !important; + } + + .lg\:h-7 { + height: 1.75rem !important; + } + + .lg\:h-8 { + height: 2rem !important; + } + + .lg\:h-9 { + height: 2.25rem !important; + } + + .lg\:h-10 { + height: 2.5rem !important; + } + + .lg\:h-11 { + height: 2.75rem !important; + } + + .lg\:h-12 { + height: 3rem !important; + } + + .lg\:h-14 { + height: 3.5rem !important; + } + + .lg\:h-16 { + height: 4rem !important; + } + + .lg\:h-20 { + height: 5rem !important; + } + + .lg\:h-24 { + height: 6rem !important; + } + + .lg\:h-28 { + height: 7rem !important; + } + + .lg\:h-32 { + height: 8rem !important; + } + + .lg\:h-36 { + height: 9rem !important; + } + + .lg\:h-40 { + height: 10rem !important; + } + + .lg\:h-44 { + height: 11rem !important; + } + + .lg\:h-48 { + height: 12rem !important; + } + + .lg\:h-52 { + height: 13rem !important; + } + + .lg\:h-56 { + height: 14rem !important; + } + + .lg\:h-60 { + height: 15rem !important; + } + + .lg\:h-64 { + height: 16rem !important; + } + + .lg\:h-72 { + height: 18rem !important; + } + + .lg\:h-80 { + height: 20rem !important; + } + + .lg\:h-96 { + height: 24rem !important; + } + + .lg\:h-auto { + height: auto !important; + } + + .lg\:h-px { + height: 1px !important; + } + + .lg\:h-0\.5 { + height: 0.125rem !important; + } + + .lg\:h-1\.5 { + height: 0.375rem !important; + } + + .lg\:h-2\.5 { + height: 0.625rem !important; + } + + .lg\:h-3\.5 { + height: 0.875rem !important; + } + + .lg\:h-1\/2 { + height: 50% !important; + } + + .lg\:h-1\/3 { + height: 33.333333% !important; + } + + .lg\:h-2\/3 { + height: 66.666667% !important; + } + + .lg\:h-1\/4 { + height: 25% !important; + } + + .lg\:h-2\/4 { + height: 50% !important; + } + + .lg\:h-3\/4 { + height: 75% !important; + } + + .lg\:h-1\/5 { + height: 20% !important; + } + + .lg\:h-2\/5 { + height: 40% !important; + } + + .lg\:h-3\/5 { + height: 60% !important; + } + + .lg\:h-4\/5 { + height: 80% !important; + } + + .lg\:h-1\/6 { + height: 16.666667% !important; + } + + .lg\:h-2\/6 { + height: 33.333333% !important; + } + + .lg\:h-3\/6 { + height: 50% !important; + } + + .lg\:h-4\/6 { + height: 66.666667% !important; + } + + .lg\:h-5\/6 { + height: 83.333333% !important; + } + + .lg\:h-full { + height: 100% !important; + } + + .lg\:h-screen { + height: 100vh !important; + } + + .lg\:text-xs { + font-size: 0.75rem !important; + line-height: 1rem !important; + } + + .lg\:text-sm { + font-size: 0.875rem !important; + line-height: 1.25rem !important; + } + + .lg\:text-base { + font-size: 1rem !important; + line-height: 1.5rem !important; + } + + .lg\:text-lg { + font-size: 1.125rem !important; + line-height: 1.75rem !important; + } + + .lg\:text-xl { + font-size: 1.25rem !important; + line-height: 1.75rem !important; + } + + .lg\:text-2xl { + font-size: 1.5rem !important; + line-height: 2rem !important; + } + + .lg\:text-3xl { + font-size: 1.875rem !important; + line-height: 2.25rem !important; + } + + .lg\:text-4xl { + font-size: 2.25rem !important; + line-height: 2.5rem !important; + } + + .lg\:text-5xl { + font-size: 3rem !important; + line-height: 1 !important; + } + + .lg\:text-6xl { + font-size: 3.75rem !important; + line-height: 1 !important; + } + + .lg\:text-7xl { + font-size: 4.5rem !important; + line-height: 1 !important; + } + + .lg\:text-8xl { + font-size: 6rem !important; + line-height: 1 !important; + } + + .lg\:text-9xl { + font-size: 8rem !important; + line-height: 1 !important; + } + + .lg\:leading-3 { + line-height: .75rem !important; + } + + .lg\:leading-4 { + line-height: 1rem !important; + } + + .lg\:leading-5 { + line-height: 1.25rem !important; + } + + .lg\:leading-6 { + line-height: 1.5rem !important; + } + + .lg\:leading-7 { + line-height: 1.75rem !important; + } + + .lg\:leading-8 { + line-height: 2rem !important; + } + + .lg\:leading-9 { + line-height: 2.25rem !important; + } + + .lg\:leading-10 { + line-height: 2.5rem !important; + } + + .lg\:leading-none { + line-height: 1 !important; + } + + .lg\:leading-tight { + line-height: 1.25 !important; + } + + .lg\:leading-snug { + line-height: 1.375 !important; + } + + .lg\:leading-normal { + line-height: 1.5 !important; + } + + .lg\:leading-relaxed { + line-height: 1.625 !important; + } + + .lg\:leading-loose { + line-height: 2 !important; + } + + .lg\:list-inside { + list-style-position: inside !important; + } + + .lg\:list-outside { + list-style-position: outside !important; + } + + .lg\:list-none { + list-style-type: none !important; + } + + .lg\:list-disc { + list-style-type: disc !important; + } + + .lg\:list-decimal { + list-style-type: decimal !important; + } + + .lg\:m-0 { + margin: 0px !important; + } + + .lg\:m-1 { + margin: 0.25rem !important; + } + + .lg\:m-2 { + margin: 0.5rem !important; + } + + .lg\:m-3 { + margin: 0.75rem !important; + } + + .lg\:m-4 { + margin: 1rem !important; + } + + .lg\:m-5 { + margin: 1.25rem !important; + } + + .lg\:m-6 { + margin: 1.5rem !important; + } + + .lg\:m-7 { + margin: 1.75rem !important; + } + + .lg\:m-8 { + margin: 2rem !important; + } + + .lg\:m-9 { + margin: 2.25rem !important; + } + + .lg\:m-10 { + margin: 2.5rem !important; + } + + .lg\:m-11 { + margin: 2.75rem !important; + } + + .lg\:m-12 { + margin: 3rem !important; + } + + .lg\:m-14 { + margin: 3.5rem !important; + } + + .lg\:m-16 { + margin: 4rem !important; + } + + .lg\:m-20 { + margin: 5rem !important; + } + + .lg\:m-24 { + margin: 6rem !important; + } + + .lg\:m-28 { + margin: 7rem !important; + } + + .lg\:m-32 { + margin: 8rem !important; + } + + .lg\:m-36 { + margin: 9rem !important; + } + + .lg\:m-40 { + margin: 10rem !important; + } + + .lg\:m-44 { + margin: 11rem !important; + } + + .lg\:m-48 { + margin: 12rem !important; + } + + .lg\:m-52 { + margin: 13rem !important; + } + + .lg\:m-56 { + margin: 14rem !important; + } + + .lg\:m-60 { + margin: 15rem !important; + } + + .lg\:m-64 { + margin: 16rem !important; + } + + .lg\:m-72 { + margin: 18rem !important; + } + + .lg\:m-80 { + margin: 20rem !important; + } + + .lg\:m-96 { + margin: 24rem !important; + } + + .lg\:m-auto { + margin: auto !important; + } + + .lg\:m-px { + margin: 1px !important; + } + + .lg\:m-0\.5 { + margin: 0.125rem !important; + } + + .lg\:m-1\.5 { + margin: 0.375rem !important; + } + + .lg\:m-2\.5 { + margin: 0.625rem !important; + } + + .lg\:m-3\.5 { + margin: 0.875rem !important; + } + + .lg\:-m-0 { + margin: 0px !important; + } + + .lg\:-m-1 { + margin: -0.25rem !important; + } + + .lg\:-m-2 { + margin: -0.5rem !important; + } + + .lg\:-m-3 { + margin: -0.75rem !important; + } + + .lg\:-m-4 { + margin: -1rem !important; + } + + .lg\:-m-5 { + margin: -1.25rem !important; + } + + .lg\:-m-6 { + margin: -1.5rem !important; + } + + .lg\:-m-7 { + margin: -1.75rem !important; + } + + .lg\:-m-8 { + margin: -2rem !important; + } + + .lg\:-m-9 { + margin: -2.25rem !important; + } + + .lg\:-m-10 { + margin: -2.5rem !important; + } + + .lg\:-m-11 { + margin: -2.75rem !important; + } + + .lg\:-m-12 { + margin: -3rem !important; + } + + .lg\:-m-14 { + margin: -3.5rem !important; + } + + .lg\:-m-16 { + margin: -4rem !important; + } + + .lg\:-m-20 { + margin: -5rem !important; + } + + .lg\:-m-24 { + margin: -6rem !important; + } + + .lg\:-m-28 { + margin: -7rem !important; + } + + .lg\:-m-32 { + margin: -8rem !important; + } + + .lg\:-m-36 { + margin: -9rem !important; + } + + .lg\:-m-40 { + margin: -10rem !important; + } + + .lg\:-m-44 { + margin: -11rem !important; + } + + .lg\:-m-48 { + margin: -12rem !important; + } + + .lg\:-m-52 { + margin: -13rem !important; + } + + .lg\:-m-56 { + margin: -14rem !important; + } + + .lg\:-m-60 { + margin: -15rem !important; + } + + .lg\:-m-64 { + margin: -16rem !important; + } + + .lg\:-m-72 { + margin: -18rem !important; + } + + .lg\:-m-80 { + margin: -20rem !important; + } + + .lg\:-m-96 { + margin: -24rem !important; + } + + .lg\:-m-px { + margin: -1px !important; + } + + .lg\:-m-0\.5 { + margin: -0.125rem !important; + } + + .lg\:-m-1\.5 { + margin: -0.375rem !important; + } + + .lg\:-m-2\.5 { + margin: -0.625rem !important; + } + + .lg\:-m-3\.5 { + margin: -0.875rem !important; + } + + .lg\:my-0 { + margin-top: 0px !important; + margin-bottom: 0px !important; + } + + .lg\:mx-0 { + margin-left: 0px !important; + margin-right: 0px !important; + } + + .lg\:my-1 { + margin-top: 0.25rem !important; + margin-bottom: 0.25rem !important; + } + + .lg\:mx-1 { + margin-left: 0.25rem !important; + margin-right: 0.25rem !important; + } + + .lg\:my-2 { + margin-top: 0.5rem !important; + margin-bottom: 0.5rem !important; + } + + .lg\:mx-2 { + margin-left: 0.5rem !important; + margin-right: 0.5rem !important; + } + + .lg\:my-3 { + margin-top: 0.75rem !important; + margin-bottom: 0.75rem !important; + } + + .lg\:mx-3 { + margin-left: 0.75rem !important; + margin-right: 0.75rem !important; + } + + .lg\:my-4 { + margin-top: 1rem !important; + margin-bottom: 1rem !important; + } + + .lg\:mx-4 { + margin-left: 1rem !important; + margin-right: 1rem !important; + } + + .lg\:my-5 { + margin-top: 1.25rem !important; + margin-bottom: 1.25rem !important; + } + + .lg\:mx-5 { + margin-left: 1.25rem !important; + margin-right: 1.25rem !important; + } + + .lg\:my-6 { + margin-top: 1.5rem !important; + margin-bottom: 1.5rem !important; + } + + .lg\:mx-6 { + margin-left: 1.5rem !important; + margin-right: 1.5rem !important; + } + + .lg\:my-7 { + margin-top: 1.75rem !important; + margin-bottom: 1.75rem !important; + } + + .lg\:mx-7 { + margin-left: 1.75rem !important; + margin-right: 1.75rem !important; + } + + .lg\:my-8 { + margin-top: 2rem !important; + margin-bottom: 2rem !important; + } + + .lg\:mx-8 { + margin-left: 2rem !important; + margin-right: 2rem !important; + } + + .lg\:my-9 { + margin-top: 2.25rem !important; + margin-bottom: 2.25rem !important; + } + + .lg\:mx-9 { + margin-left: 2.25rem !important; + margin-right: 2.25rem !important; + } + + .lg\:my-10 { + margin-top: 2.5rem !important; + margin-bottom: 2.5rem !important; + } + + .lg\:mx-10 { + margin-left: 2.5rem !important; + margin-right: 2.5rem !important; + } + + .lg\:my-11 { + margin-top: 2.75rem !important; + margin-bottom: 2.75rem !important; + } + + .lg\:mx-11 { + margin-left: 2.75rem !important; + margin-right: 2.75rem !important; + } + + .lg\:my-12 { + margin-top: 3rem !important; + margin-bottom: 3rem !important; + } + + .lg\:mx-12 { + margin-left: 3rem !important; + margin-right: 3rem !important; + } + + .lg\:my-14 { + margin-top: 3.5rem !important; + margin-bottom: 3.5rem !important; + } + + .lg\:mx-14 { + margin-left: 3.5rem !important; + margin-right: 3.5rem !important; + } + + .lg\:my-16 { + margin-top: 4rem !important; + margin-bottom: 4rem !important; + } + + .lg\:mx-16 { + margin-left: 4rem !important; + margin-right: 4rem !important; + } + + .lg\:my-20 { + margin-top: 5rem !important; + margin-bottom: 5rem !important; + } + + .lg\:mx-20 { + margin-left: 5rem !important; + margin-right: 5rem !important; + } + + .lg\:my-24 { + margin-top: 6rem !important; + margin-bottom: 6rem !important; + } + + .lg\:mx-24 { + margin-left: 6rem !important; + margin-right: 6rem !important; + } + + .lg\:my-28 { + margin-top: 7rem !important; + margin-bottom: 7rem !important; + } + + .lg\:mx-28 { + margin-left: 7rem !important; + margin-right: 7rem !important; + } + + .lg\:my-32 { + margin-top: 8rem !important; + margin-bottom: 8rem !important; + } + + .lg\:mx-32 { + margin-left: 8rem !important; + margin-right: 8rem !important; + } + + .lg\:my-36 { + margin-top: 9rem !important; + margin-bottom: 9rem !important; + } + + .lg\:mx-36 { + margin-left: 9rem !important; + margin-right: 9rem !important; + } + + .lg\:my-40 { + margin-top: 10rem !important; + margin-bottom: 10rem !important; + } + + .lg\:mx-40 { + margin-left: 10rem !important; + margin-right: 10rem !important; + } + + .lg\:my-44 { + margin-top: 11rem !important; + margin-bottom: 11rem !important; + } + + .lg\:mx-44 { + margin-left: 11rem !important; + margin-right: 11rem !important; + } + + .lg\:my-48 { + margin-top: 12rem !important; + margin-bottom: 12rem !important; + } + + .lg\:mx-48 { + margin-left: 12rem !important; + margin-right: 12rem !important; + } + + .lg\:my-52 { + margin-top: 13rem !important; + margin-bottom: 13rem !important; + } + + .lg\:mx-52 { + margin-left: 13rem !important; + margin-right: 13rem !important; + } + + .lg\:my-56 { + margin-top: 14rem !important; + margin-bottom: 14rem !important; + } + + .lg\:mx-56 { + margin-left: 14rem !important; + margin-right: 14rem !important; + } + + .lg\:my-60 { + margin-top: 15rem !important; + margin-bottom: 15rem !important; + } + + .lg\:mx-60 { + margin-left: 15rem !important; + margin-right: 15rem !important; + } + + .lg\:my-64 { + margin-top: 16rem !important; + margin-bottom: 16rem !important; + } + + .lg\:mx-64 { + margin-left: 16rem !important; + margin-right: 16rem !important; + } + + .lg\:my-72 { + margin-top: 18rem !important; + margin-bottom: 18rem !important; + } + + .lg\:mx-72 { + margin-left: 18rem !important; + margin-right: 18rem !important; + } + + .lg\:my-80 { + margin-top: 20rem !important; + margin-bottom: 20rem !important; + } + + .lg\:mx-80 { + margin-left: 20rem !important; + margin-right: 20rem !important; + } + + .lg\:my-96 { + margin-top: 24rem !important; + margin-bottom: 24rem !important; + } + + .lg\:mx-96 { + margin-left: 24rem !important; + margin-right: 24rem !important; + } + + .lg\:my-auto { + margin-top: auto !important; + margin-bottom: auto !important; + } + + .lg\:mx-auto { + margin-left: auto !important; + margin-right: auto !important; + } + + .lg\:my-px { + margin-top: 1px !important; + margin-bottom: 1px !important; + } + + .lg\:mx-px { + margin-left: 1px !important; + margin-right: 1px !important; + } + + .lg\:my-0\.5 { + margin-top: 0.125rem !important; + margin-bottom: 0.125rem !important; + } + + .lg\:mx-0\.5 { + margin-left: 0.125rem !important; + margin-right: 0.125rem !important; + } + + .lg\:my-1\.5 { + margin-top: 0.375rem !important; + margin-bottom: 0.375rem !important; + } + + .lg\:mx-1\.5 { + margin-left: 0.375rem !important; + margin-right: 0.375rem !important; + } + + .lg\:my-2\.5 { + margin-top: 0.625rem !important; + margin-bottom: 0.625rem !important; + } + + .lg\:mx-2\.5 { + margin-left: 0.625rem !important; + margin-right: 0.625rem !important; + } + + .lg\:my-3\.5 { + margin-top: 0.875rem !important; + margin-bottom: 0.875rem !important; + } + + .lg\:mx-3\.5 { + margin-left: 0.875rem !important; + margin-right: 0.875rem !important; + } + + .lg\:-my-0 { + margin-top: 0px !important; + margin-bottom: 0px !important; + } + + .lg\:-mx-0 { + margin-left: 0px !important; + margin-right: 0px !important; + } + + .lg\:-my-1 { + margin-top: -0.25rem !important; + margin-bottom: -0.25rem !important; + } + + .lg\:-mx-1 { + margin-left: -0.25rem !important; + margin-right: -0.25rem !important; + } + + .lg\:-my-2 { + margin-top: -0.5rem !important; + margin-bottom: -0.5rem !important; + } + + .lg\:-mx-2 { + margin-left: -0.5rem !important; + margin-right: -0.5rem !important; + } + + .lg\:-my-3 { + margin-top: -0.75rem !important; + margin-bottom: -0.75rem !important; + } + + .lg\:-mx-3 { + margin-left: -0.75rem !important; + margin-right: -0.75rem !important; + } + + .lg\:-my-4 { + margin-top: -1rem !important; + margin-bottom: -1rem !important; + } + + .lg\:-mx-4 { + margin-left: -1rem !important; + margin-right: -1rem !important; + } + + .lg\:-my-5 { + margin-top: -1.25rem !important; + margin-bottom: -1.25rem !important; + } + + .lg\:-mx-5 { + margin-left: -1.25rem !important; + margin-right: -1.25rem !important; + } + + .lg\:-my-6 { + margin-top: -1.5rem !important; + margin-bottom: -1.5rem !important; + } + + .lg\:-mx-6 { + margin-left: -1.5rem !important; + margin-right: -1.5rem !important; + } + + .lg\:-my-7 { + margin-top: -1.75rem !important; + margin-bottom: -1.75rem !important; + } + + .lg\:-mx-7 { + margin-left: -1.75rem !important; + margin-right: -1.75rem !important; + } + + .lg\:-my-8 { + margin-top: -2rem !important; + margin-bottom: -2rem !important; + } + + .lg\:-mx-8 { + margin-left: -2rem !important; + margin-right: -2rem !important; + } + + .lg\:-my-9 { + margin-top: -2.25rem !important; + margin-bottom: -2.25rem !important; + } + + .lg\:-mx-9 { + margin-left: -2.25rem !important; + margin-right: -2.25rem !important; + } + + .lg\:-my-10 { + margin-top: -2.5rem !important; + margin-bottom: -2.5rem !important; + } + + .lg\:-mx-10 { + margin-left: -2.5rem !important; + margin-right: -2.5rem !important; + } + + .lg\:-my-11 { + margin-top: -2.75rem !important; + margin-bottom: -2.75rem !important; + } + + .lg\:-mx-11 { + margin-left: -2.75rem !important; + margin-right: -2.75rem !important; + } + + .lg\:-my-12 { + margin-top: -3rem !important; + margin-bottom: -3rem !important; + } + + .lg\:-mx-12 { + margin-left: -3rem !important; + margin-right: -3rem !important; + } + + .lg\:-my-14 { + margin-top: -3.5rem !important; + margin-bottom: -3.5rem !important; + } + + .lg\:-mx-14 { + margin-left: -3.5rem !important; + margin-right: -3.5rem !important; + } + + .lg\:-my-16 { + margin-top: -4rem !important; + margin-bottom: -4rem !important; + } + + .lg\:-mx-16 { + margin-left: -4rem !important; + margin-right: -4rem !important; + } + + .lg\:-my-20 { + margin-top: -5rem !important; + margin-bottom: -5rem !important; + } + + .lg\:-mx-20 { + margin-left: -5rem !important; + margin-right: -5rem !important; + } + + .lg\:-my-24 { + margin-top: -6rem !important; + margin-bottom: -6rem !important; + } + + .lg\:-mx-24 { + margin-left: -6rem !important; + margin-right: -6rem !important; + } + + .lg\:-my-28 { + margin-top: -7rem !important; + margin-bottom: -7rem !important; + } + + .lg\:-mx-28 { + margin-left: -7rem !important; + margin-right: -7rem !important; + } + + .lg\:-my-32 { + margin-top: -8rem !important; + margin-bottom: -8rem !important; + } + + .lg\:-mx-32 { + margin-left: -8rem !important; + margin-right: -8rem !important; + } + + .lg\:-my-36 { + margin-top: -9rem !important; + margin-bottom: -9rem !important; + } + + .lg\:-mx-36 { + margin-left: -9rem !important; + margin-right: -9rem !important; + } + + .lg\:-my-40 { + margin-top: -10rem !important; + margin-bottom: -10rem !important; + } + + .lg\:-mx-40 { + margin-left: -10rem !important; + margin-right: -10rem !important; + } + + .lg\:-my-44 { + margin-top: -11rem !important; + margin-bottom: -11rem !important; + } + + .lg\:-mx-44 { + margin-left: -11rem !important; + margin-right: -11rem !important; + } + + .lg\:-my-48 { + margin-top: -12rem !important; + margin-bottom: -12rem !important; + } + + .lg\:-mx-48 { + margin-left: -12rem !important; + margin-right: -12rem !important; + } + + .lg\:-my-52 { + margin-top: -13rem !important; + margin-bottom: -13rem !important; + } + + .lg\:-mx-52 { + margin-left: -13rem !important; + margin-right: -13rem !important; + } + + .lg\:-my-56 { + margin-top: -14rem !important; + margin-bottom: -14rem !important; + } + + .lg\:-mx-56 { + margin-left: -14rem !important; + margin-right: -14rem !important; + } + + .lg\:-my-60 { + margin-top: -15rem !important; + margin-bottom: -15rem !important; + } + + .lg\:-mx-60 { + margin-left: -15rem !important; + margin-right: -15rem !important; + } + + .lg\:-my-64 { + margin-top: -16rem !important; + margin-bottom: -16rem !important; + } + + .lg\:-mx-64 { + margin-left: -16rem !important; + margin-right: -16rem !important; + } + + .lg\:-my-72 { + margin-top: -18rem !important; + margin-bottom: -18rem !important; + } + + .lg\:-mx-72 { + margin-left: -18rem !important; + margin-right: -18rem !important; + } + + .lg\:-my-80 { + margin-top: -20rem !important; + margin-bottom: -20rem !important; + } + + .lg\:-mx-80 { + margin-left: -20rem !important; + margin-right: -20rem !important; + } + + .lg\:-my-96 { + margin-top: -24rem !important; + margin-bottom: -24rem !important; + } + + .lg\:-mx-96 { + margin-left: -24rem !important; + margin-right: -24rem !important; + } + + .lg\:-my-px { + margin-top: -1px !important; + margin-bottom: -1px !important; + } + + .lg\:-mx-px { + margin-left: -1px !important; + margin-right: -1px !important; + } + + .lg\:-my-0\.5 { + margin-top: -0.125rem !important; + margin-bottom: -0.125rem !important; + } + + .lg\:-mx-0\.5 { + margin-left: -0.125rem !important; + margin-right: -0.125rem !important; + } + + .lg\:-my-1\.5 { + margin-top: -0.375rem !important; + margin-bottom: -0.375rem !important; + } + + .lg\:-mx-1\.5 { + margin-left: -0.375rem !important; + margin-right: -0.375rem !important; + } + + .lg\:-my-2\.5 { + margin-top: -0.625rem !important; + margin-bottom: -0.625rem !important; + } + + .lg\:-mx-2\.5 { + margin-left: -0.625rem !important; + margin-right: -0.625rem !important; + } + + .lg\:-my-3\.5 { + margin-top: -0.875rem !important; + margin-bottom: -0.875rem !important; + } + + .lg\:-mx-3\.5 { + margin-left: -0.875rem !important; + margin-right: -0.875rem !important; + } + + .lg\:mt-0 { + margin-top: 0px !important; + } + + .lg\:mr-0 { + margin-right: 0px !important; + } + + .lg\:mb-0 { + margin-bottom: 0px !important; + } + + .lg\:ml-0 { + margin-left: 0px !important; + } + + .lg\:mt-1 { + margin-top: 0.25rem !important; + } + + .lg\:mr-1 { + margin-right: 0.25rem !important; + } + + .lg\:mb-1 { + margin-bottom: 0.25rem !important; + } + + .lg\:ml-1 { + margin-left: 0.25rem !important; + } + + .lg\:mt-2 { + margin-top: 0.5rem !important; + } + + .lg\:mr-2 { + margin-right: 0.5rem !important; + } + + .lg\:mb-2 { + margin-bottom: 0.5rem !important; + } + + .lg\:ml-2 { + margin-left: 0.5rem !important; + } + + .lg\:mt-3 { + margin-top: 0.75rem !important; + } + + .lg\:mr-3 { + margin-right: 0.75rem !important; + } + + .lg\:mb-3 { + margin-bottom: 0.75rem !important; + } + + .lg\:ml-3 { + margin-left: 0.75rem !important; + } + + .lg\:mt-4 { + margin-top: 1rem !important; + } + + .lg\:mr-4 { + margin-right: 1rem !important; + } + + .lg\:mb-4 { + margin-bottom: 1rem !important; + } + + .lg\:ml-4 { + margin-left: 1rem !important; + } + + .lg\:mt-5 { + margin-top: 1.25rem !important; + } + + .lg\:mr-5 { + margin-right: 1.25rem !important; + } + + .lg\:mb-5 { + margin-bottom: 1.25rem !important; + } + + .lg\:ml-5 { + margin-left: 1.25rem !important; + } + + .lg\:mt-6 { + margin-top: 1.5rem !important; + } + + .lg\:mr-6 { + margin-right: 1.5rem !important; + } + + .lg\:mb-6 { + margin-bottom: 1.5rem !important; + } + + .lg\:ml-6 { + margin-left: 1.5rem !important; + } + + .lg\:mt-7 { + margin-top: 1.75rem !important; + } + + .lg\:mr-7 { + margin-right: 1.75rem !important; + } + + .lg\:mb-7 { + margin-bottom: 1.75rem !important; + } + + .lg\:ml-7 { + margin-left: 1.75rem !important; + } + + .lg\:mt-8 { + margin-top: 2rem !important; + } + + .lg\:mr-8 { + margin-right: 2rem !important; + } + + .lg\:mb-8 { + margin-bottom: 2rem !important; + } + + .lg\:ml-8 { + margin-left: 2rem !important; + } + + .lg\:mt-9 { + margin-top: 2.25rem !important; + } + + .lg\:mr-9 { + margin-right: 2.25rem !important; + } + + .lg\:mb-9 { + margin-bottom: 2.25rem !important; + } + + .lg\:ml-9 { + margin-left: 2.25rem !important; + } + + .lg\:mt-10 { + margin-top: 2.5rem !important; + } + + .lg\:mr-10 { + margin-right: 2.5rem !important; + } + + .lg\:mb-10 { + margin-bottom: 2.5rem !important; + } + + .lg\:ml-10 { + margin-left: 2.5rem !important; + } + + .lg\:mt-11 { + margin-top: 2.75rem !important; + } + + .lg\:mr-11 { + margin-right: 2.75rem !important; + } + + .lg\:mb-11 { + margin-bottom: 2.75rem !important; + } + + .lg\:ml-11 { + margin-left: 2.75rem !important; + } + + .lg\:mt-12 { + margin-top: 3rem !important; + } + + .lg\:mr-12 { + margin-right: 3rem !important; + } + + .lg\:mb-12 { + margin-bottom: 3rem !important; + } + + .lg\:ml-12 { + margin-left: 3rem !important; + } + + .lg\:mt-14 { + margin-top: 3.5rem !important; + } + + .lg\:mr-14 { + margin-right: 3.5rem !important; + } + + .lg\:mb-14 { + margin-bottom: 3.5rem !important; + } + + .lg\:ml-14 { + margin-left: 3.5rem !important; + } + + .lg\:mt-16 { + margin-top: 4rem !important; + } + + .lg\:mr-16 { + margin-right: 4rem !important; + } + + .lg\:mb-16 { + margin-bottom: 4rem !important; + } + + .lg\:ml-16 { + margin-left: 4rem !important; + } + + .lg\:mt-20 { + margin-top: 5rem !important; + } + + .lg\:mr-20 { + margin-right: 5rem !important; + } + + .lg\:mb-20 { + margin-bottom: 5rem !important; + } + + .lg\:ml-20 { + margin-left: 5rem !important; + } + + .lg\:mt-24 { + margin-top: 6rem !important; + } + + .lg\:mr-24 { + margin-right: 6rem !important; + } + + .lg\:mb-24 { + margin-bottom: 6rem !important; + } + + .lg\:ml-24 { + margin-left: 6rem !important; + } + + .lg\:mt-28 { + margin-top: 7rem !important; + } + + .lg\:mr-28 { + margin-right: 7rem !important; + } + + .lg\:mb-28 { + margin-bottom: 7rem !important; + } + + .lg\:ml-28 { + margin-left: 7rem !important; + } + + .lg\:mt-32 { + margin-top: 8rem !important; + } + + .lg\:mr-32 { + margin-right: 8rem !important; + } + + .lg\:mb-32 { + margin-bottom: 8rem !important; + } + + .lg\:ml-32 { + margin-left: 8rem !important; + } + + .lg\:mt-36 { + margin-top: 9rem !important; + } + + .lg\:mr-36 { + margin-right: 9rem !important; + } + + .lg\:mb-36 { + margin-bottom: 9rem !important; + } + + .lg\:ml-36 { + margin-left: 9rem !important; + } + + .lg\:mt-40 { + margin-top: 10rem !important; + } + + .lg\:mr-40 { + margin-right: 10rem !important; + } + + .lg\:mb-40 { + margin-bottom: 10rem !important; + } + + .lg\:ml-40 { + margin-left: 10rem !important; + } + + .lg\:mt-44 { + margin-top: 11rem !important; + } + + .lg\:mr-44 { + margin-right: 11rem !important; + } + + .lg\:mb-44 { + margin-bottom: 11rem !important; + } + + .lg\:ml-44 { + margin-left: 11rem !important; + } + + .lg\:mt-48 { + margin-top: 12rem !important; + } + + .lg\:mr-48 { + margin-right: 12rem !important; + } + + .lg\:mb-48 { + margin-bottom: 12rem !important; + } + + .lg\:ml-48 { + margin-left: 12rem !important; + } + + .lg\:mt-52 { + margin-top: 13rem !important; + } + + .lg\:mr-52 { + margin-right: 13rem !important; + } + + .lg\:mb-52 { + margin-bottom: 13rem !important; + } + + .lg\:ml-52 { + margin-left: 13rem !important; + } + + .lg\:mt-56 { + margin-top: 14rem !important; + } + + .lg\:mr-56 { + margin-right: 14rem !important; + } + + .lg\:mb-56 { + margin-bottom: 14rem !important; + } + + .lg\:ml-56 { + margin-left: 14rem !important; + } + + .lg\:mt-60 { + margin-top: 15rem !important; + } + + .lg\:mr-60 { + margin-right: 15rem !important; + } + + .lg\:mb-60 { + margin-bottom: 15rem !important; + } + + .lg\:ml-60 { + margin-left: 15rem !important; + } + + .lg\:mt-64 { + margin-top: 16rem !important; + } + + .lg\:mr-64 { + margin-right: 16rem !important; + } + + .lg\:mb-64 { + margin-bottom: 16rem !important; + } + + .lg\:ml-64 { + margin-left: 16rem !important; + } + + .lg\:mt-72 { + margin-top: 18rem !important; + } + + .lg\:mr-72 { + margin-right: 18rem !important; + } + + .lg\:mb-72 { + margin-bottom: 18rem !important; + } + + .lg\:ml-72 { + margin-left: 18rem !important; + } + + .lg\:mt-80 { + margin-top: 20rem !important; + } + + .lg\:mr-80 { + margin-right: 20rem !important; + } + + .lg\:mb-80 { + margin-bottom: 20rem !important; + } + + .lg\:ml-80 { + margin-left: 20rem !important; + } + + .lg\:mt-96 { + margin-top: 24rem !important; + } + + .lg\:mr-96 { + margin-right: 24rem !important; + } + + .lg\:mb-96 { + margin-bottom: 24rem !important; + } + + .lg\:ml-96 { + margin-left: 24rem !important; + } + + .lg\:mt-auto { + margin-top: auto !important; + } + + .lg\:mr-auto { + margin-right: auto !important; + } + + .lg\:mb-auto { + margin-bottom: auto !important; + } + + .lg\:ml-auto { + margin-left: auto !important; + } + + .lg\:mt-px { + margin-top: 1px !important; + } + + .lg\:mr-px { + margin-right: 1px !important; + } + + .lg\:mb-px { + margin-bottom: 1px !important; + } + + .lg\:ml-px { + margin-left: 1px !important; + } + + .lg\:mt-0\.5 { + margin-top: 0.125rem !important; + } + + .lg\:mr-0\.5 { + margin-right: 0.125rem !important; + } + + .lg\:mb-0\.5 { + margin-bottom: 0.125rem !important; + } + + .lg\:ml-0\.5 { + margin-left: 0.125rem !important; + } + + .lg\:mt-1\.5 { + margin-top: 0.375rem !important; + } + + .lg\:mr-1\.5 { + margin-right: 0.375rem !important; + } + + .lg\:mb-1\.5 { + margin-bottom: 0.375rem !important; + } + + .lg\:ml-1\.5 { + margin-left: 0.375rem !important; + } + + .lg\:mt-2\.5 { + margin-top: 0.625rem !important; + } + + .lg\:mr-2\.5 { + margin-right: 0.625rem !important; + } + + .lg\:mb-2\.5 { + margin-bottom: 0.625rem !important; + } + + .lg\:ml-2\.5 { + margin-left: 0.625rem !important; + } + + .lg\:mt-3\.5 { + margin-top: 0.875rem !important; + } + + .lg\:mr-3\.5 { + margin-right: 0.875rem !important; + } + + .lg\:mb-3\.5 { + margin-bottom: 0.875rem !important; + } + + .lg\:ml-3\.5 { + margin-left: 0.875rem !important; + } + + .lg\:-mt-0 { + margin-top: 0px !important; + } + + .lg\:-mr-0 { + margin-right: 0px !important; + } + + .lg\:-mb-0 { + margin-bottom: 0px !important; + } + + .lg\:-ml-0 { + margin-left: 0px !important; + } + + .lg\:-mt-1 { + margin-top: -0.25rem !important; + } + + .lg\:-mr-1 { + margin-right: -0.25rem !important; + } + + .lg\:-mb-1 { + margin-bottom: -0.25rem !important; + } + + .lg\:-ml-1 { + margin-left: -0.25rem !important; + } + + .lg\:-mt-2 { + margin-top: -0.5rem !important; + } + + .lg\:-mr-2 { + margin-right: -0.5rem !important; + } + + .lg\:-mb-2 { + margin-bottom: -0.5rem !important; + } + + .lg\:-ml-2 { + margin-left: -0.5rem !important; + } + + .lg\:-mt-3 { + margin-top: -0.75rem !important; + } + + .lg\:-mr-3 { + margin-right: -0.75rem !important; + } + + .lg\:-mb-3 { + margin-bottom: -0.75rem !important; + } + + .lg\:-ml-3 { + margin-left: -0.75rem !important; + } + + .lg\:-mt-4 { + margin-top: -1rem !important; + } + + .lg\:-mr-4 { + margin-right: -1rem !important; + } + + .lg\:-mb-4 { + margin-bottom: -1rem !important; + } + + .lg\:-ml-4 { + margin-left: -1rem !important; + } + + .lg\:-mt-5 { + margin-top: -1.25rem !important; + } + + .lg\:-mr-5 { + margin-right: -1.25rem !important; + } + + .lg\:-mb-5 { + margin-bottom: -1.25rem !important; + } + + .lg\:-ml-5 { + margin-left: -1.25rem !important; + } + + .lg\:-mt-6 { + margin-top: -1.5rem !important; + } + + .lg\:-mr-6 { + margin-right: -1.5rem !important; + } + + .lg\:-mb-6 { + margin-bottom: -1.5rem !important; + } + + .lg\:-ml-6 { + margin-left: -1.5rem !important; + } + + .lg\:-mt-7 { + margin-top: -1.75rem !important; + } + + .lg\:-mr-7 { + margin-right: -1.75rem !important; + } + + .lg\:-mb-7 { + margin-bottom: -1.75rem !important; + } + + .lg\:-ml-7 { + margin-left: -1.75rem !important; + } + + .lg\:-mt-8 { + margin-top: -2rem !important; + } + + .lg\:-mr-8 { + margin-right: -2rem !important; + } + + .lg\:-mb-8 { + margin-bottom: -2rem !important; + } + + .lg\:-ml-8 { + margin-left: -2rem !important; + } + + .lg\:-mt-9 { + margin-top: -2.25rem !important; + } + + .lg\:-mr-9 { + margin-right: -2.25rem !important; + } + + .lg\:-mb-9 { + margin-bottom: -2.25rem !important; + } + + .lg\:-ml-9 { + margin-left: -2.25rem !important; + } + + .lg\:-mt-10 { + margin-top: -2.5rem !important; + } + + .lg\:-mr-10 { + margin-right: -2.5rem !important; + } + + .lg\:-mb-10 { + margin-bottom: -2.5rem !important; + } + + .lg\:-ml-10 { + margin-left: -2.5rem !important; + } + + .lg\:-mt-11 { + margin-top: -2.75rem !important; + } + + .lg\:-mr-11 { + margin-right: -2.75rem !important; + } + + .lg\:-mb-11 { + margin-bottom: -2.75rem !important; + } + + .lg\:-ml-11 { + margin-left: -2.75rem !important; + } + + .lg\:-mt-12 { + margin-top: -3rem !important; + } + + .lg\:-mr-12 { + margin-right: -3rem !important; + } + + .lg\:-mb-12 { + margin-bottom: -3rem !important; + } + + .lg\:-ml-12 { + margin-left: -3rem !important; + } + + .lg\:-mt-14 { + margin-top: -3.5rem !important; + } + + .lg\:-mr-14 { + margin-right: -3.5rem !important; + } + + .lg\:-mb-14 { + margin-bottom: -3.5rem !important; + } + + .lg\:-ml-14 { + margin-left: -3.5rem !important; + } + + .lg\:-mt-16 { + margin-top: -4rem !important; + } + + .lg\:-mr-16 { + margin-right: -4rem !important; + } + + .lg\:-mb-16 { + margin-bottom: -4rem !important; + } + + .lg\:-ml-16 { + margin-left: -4rem !important; + } + + .lg\:-mt-20 { + margin-top: -5rem !important; + } + + .lg\:-mr-20 { + margin-right: -5rem !important; + } + + .lg\:-mb-20 { + margin-bottom: -5rem !important; + } + + .lg\:-ml-20 { + margin-left: -5rem !important; + } + + .lg\:-mt-24 { + margin-top: -6rem !important; + } + + .lg\:-mr-24 { + margin-right: -6rem !important; + } + + .lg\:-mb-24 { + margin-bottom: -6rem !important; + } + + .lg\:-ml-24 { + margin-left: -6rem !important; + } + + .lg\:-mt-28 { + margin-top: -7rem !important; + } + + .lg\:-mr-28 { + margin-right: -7rem !important; + } + + .lg\:-mb-28 { + margin-bottom: -7rem !important; + } + + .lg\:-ml-28 { + margin-left: -7rem !important; + } + + .lg\:-mt-32 { + margin-top: -8rem !important; + } + + .lg\:-mr-32 { + margin-right: -8rem !important; + } + + .lg\:-mb-32 { + margin-bottom: -8rem !important; + } + + .lg\:-ml-32 { + margin-left: -8rem !important; + } + + .lg\:-mt-36 { + margin-top: -9rem !important; + } + + .lg\:-mr-36 { + margin-right: -9rem !important; + } + + .lg\:-mb-36 { + margin-bottom: -9rem !important; + } + + .lg\:-ml-36 { + margin-left: -9rem !important; + } + + .lg\:-mt-40 { + margin-top: -10rem !important; + } + + .lg\:-mr-40 { + margin-right: -10rem !important; + } + + .lg\:-mb-40 { + margin-bottom: -10rem !important; + } + + .lg\:-ml-40 { + margin-left: -10rem !important; + } + + .lg\:-mt-44 { + margin-top: -11rem !important; + } + + .lg\:-mr-44 { + margin-right: -11rem !important; + } + + .lg\:-mb-44 { + margin-bottom: -11rem !important; + } + + .lg\:-ml-44 { + margin-left: -11rem !important; + } + + .lg\:-mt-48 { + margin-top: -12rem !important; + } + + .lg\:-mr-48 { + margin-right: -12rem !important; + } + + .lg\:-mb-48 { + margin-bottom: -12rem !important; + } + + .lg\:-ml-48 { + margin-left: -12rem !important; + } + + .lg\:-mt-52 { + margin-top: -13rem !important; + } + + .lg\:-mr-52 { + margin-right: -13rem !important; + } + + .lg\:-mb-52 { + margin-bottom: -13rem !important; + } + + .lg\:-ml-52 { + margin-left: -13rem !important; + } + + .lg\:-mt-56 { + margin-top: -14rem !important; + } + + .lg\:-mr-56 { + margin-right: -14rem !important; + } + + .lg\:-mb-56 { + margin-bottom: -14rem !important; + } + + .lg\:-ml-56 { + margin-left: -14rem !important; + } + + .lg\:-mt-60 { + margin-top: -15rem !important; + } + + .lg\:-mr-60 { + margin-right: -15rem !important; + } + + .lg\:-mb-60 { + margin-bottom: -15rem !important; + } + + .lg\:-ml-60 { + margin-left: -15rem !important; + } + + .lg\:-mt-64 { + margin-top: -16rem !important; + } + + .lg\:-mr-64 { + margin-right: -16rem !important; + } + + .lg\:-mb-64 { + margin-bottom: -16rem !important; + } + + .lg\:-ml-64 { + margin-left: -16rem !important; + } + + .lg\:-mt-72 { + margin-top: -18rem !important; + } + + .lg\:-mr-72 { + margin-right: -18rem !important; + } + + .lg\:-mb-72 { + margin-bottom: -18rem !important; + } + + .lg\:-ml-72 { + margin-left: -18rem !important; + } + + .lg\:-mt-80 { + margin-top: -20rem !important; + } + + .lg\:-mr-80 { + margin-right: -20rem !important; + } + + .lg\:-mb-80 { + margin-bottom: -20rem !important; + } + + .lg\:-ml-80 { + margin-left: -20rem !important; + } + + .lg\:-mt-96 { + margin-top: -24rem !important; + } + + .lg\:-mr-96 { + margin-right: -24rem !important; + } + + .lg\:-mb-96 { + margin-bottom: -24rem !important; + } + + .lg\:-ml-96 { + margin-left: -24rem !important; + } + + .lg\:-mt-px { + margin-top: -1px !important; + } + + .lg\:-mr-px { + margin-right: -1px !important; + } + + .lg\:-mb-px { + margin-bottom: -1px !important; + } + + .lg\:-ml-px { + margin-left: -1px !important; + } + + .lg\:-mt-0\.5 { + margin-top: -0.125rem !important; + } + + .lg\:-mr-0\.5 { + margin-right: -0.125rem !important; + } + + .lg\:-mb-0\.5 { + margin-bottom: -0.125rem !important; + } + + .lg\:-ml-0\.5 { + margin-left: -0.125rem !important; + } + + .lg\:-mt-1\.5 { + margin-top: -0.375rem !important; + } + + .lg\:-mr-1\.5 { + margin-right: -0.375rem !important; + } + + .lg\:-mb-1\.5 { + margin-bottom: -0.375rem !important; + } + + .lg\:-ml-1\.5 { + margin-left: -0.375rem !important; + } + + .lg\:-mt-2\.5 { + margin-top: -0.625rem !important; + } + + .lg\:-mr-2\.5 { + margin-right: -0.625rem !important; + } + + .lg\:-mb-2\.5 { + margin-bottom: -0.625rem !important; + } + + .lg\:-ml-2\.5 { + margin-left: -0.625rem !important; + } + + .lg\:-mt-3\.5 { + margin-top: -0.875rem !important; + } + + .lg\:-mr-3\.5 { + margin-right: -0.875rem !important; + } + + .lg\:-mb-3\.5 { + margin-bottom: -0.875rem !important; + } + + .lg\:-ml-3\.5 { + margin-left: -0.875rem !important; + } + + .lg\:max-h-0 { + max-height: 0px !important; + } + + .lg\:max-h-1 { + max-height: 0.25rem !important; + } + + .lg\:max-h-2 { + max-height: 0.5rem !important; + } + + .lg\:max-h-3 { + max-height: 0.75rem !important; + } + + .lg\:max-h-4 { + max-height: 1rem !important; + } + + .lg\:max-h-5 { + max-height: 1.25rem !important; + } + + .lg\:max-h-6 { + max-height: 1.5rem !important; + } + + .lg\:max-h-7 { + max-height: 1.75rem !important; + } + + .lg\:max-h-8 { + max-height: 2rem !important; + } + + .lg\:max-h-9 { + max-height: 2.25rem !important; + } + + .lg\:max-h-10 { + max-height: 2.5rem !important; + } + + .lg\:max-h-11 { + max-height: 2.75rem !important; + } + + .lg\:max-h-12 { + max-height: 3rem !important; + } + + .lg\:max-h-14 { + max-height: 3.5rem !important; + } + + .lg\:max-h-16 { + max-height: 4rem !important; + } + + .lg\:max-h-20 { + max-height: 5rem !important; + } + + .lg\:max-h-24 { + max-height: 6rem !important; + } + + .lg\:max-h-28 { + max-height: 7rem !important; + } + + .lg\:max-h-32 { + max-height: 8rem !important; + } + + .lg\:max-h-36 { + max-height: 9rem !important; + } + + .lg\:max-h-40 { + max-height: 10rem !important; + } + + .lg\:max-h-44 { + max-height: 11rem !important; + } + + .lg\:max-h-48 { + max-height: 12rem !important; + } + + .lg\:max-h-52 { + max-height: 13rem !important; + } + + .lg\:max-h-56 { + max-height: 14rem !important; + } + + .lg\:max-h-60 { + max-height: 15rem !important; + } + + .lg\:max-h-64 { + max-height: 16rem !important; + } + + .lg\:max-h-72 { + max-height: 18rem !important; + } + + .lg\:max-h-80 { + max-height: 20rem !important; + } + + .lg\:max-h-96 { + max-height: 24rem !important; + } + + .lg\:max-h-px { + max-height: 1px !important; + } + + .lg\:max-h-0\.5 { + max-height: 0.125rem !important; + } + + .lg\:max-h-1\.5 { + max-height: 0.375rem !important; + } + + .lg\:max-h-2\.5 { + max-height: 0.625rem !important; + } + + .lg\:max-h-3\.5 { + max-height: 0.875rem !important; + } + + .lg\:max-h-full { + max-height: 100% !important; + } + + .lg\:max-h-screen { + max-height: 100vh !important; + } + + .lg\:max-w-0 { + max-width: 0rem !important; + } + + .lg\:max-w-none { + max-width: none !important; + } + + .lg\:max-w-xs { + max-width: 20rem !important; + } + + .lg\:max-w-sm { + max-width: 24rem !important; + } + + .lg\:max-w-md { + max-width: 28rem !important; + } + + .lg\:max-w-lg { + max-width: 32rem !important; + } + + .lg\:max-w-xl { + max-width: 36rem !important; + } + + .lg\:max-w-2xl { + max-width: 42rem !important; + } + + .lg\:max-w-3xl { + max-width: 48rem !important; + } + + .lg\:max-w-4xl { + max-width: 56rem !important; + } + + .lg\:max-w-5xl { + max-width: 64rem !important; + } + + .lg\:max-w-6xl { + max-width: 72rem !important; + } + + .lg\:max-w-7xl { + max-width: 80rem !important; + } + + .lg\:max-w-full { + max-width: 100% !important; + } + + .lg\:max-w-min { + max-width: -webkit-min-content !important; + max-width: -moz-min-content !important; + max-width: min-content !important; + } + + .lg\:max-w-max { + max-width: -webkit-max-content !important; + max-width: -moz-max-content !important; + max-width: max-content !important; + } + + .lg\:max-w-prose { + max-width: 65ch !important; + } + + .lg\:max-w-screen-sm { + max-width: 640px !important; + } + + .lg\:max-w-screen-md { + max-width: 768px !important; + } + + .lg\:max-w-screen-lg { + max-width: 1024px !important; + } + + .lg\:max-w-screen-xl { + max-width: 1280px !important; + } + + .lg\:max-w-screen-2xl { + max-width: 1536px !important; + } + + .lg\:min-h-0 { + min-height: 0px !important; + } + + .lg\:min-h-full { + min-height: 100% !important; + } + + .lg\:min-h-screen { + min-height: 100vh !important; + } + + .lg\:min-w-0 { + min-width: 0px !important; + } + + .lg\:min-w-full { + min-width: 100% !important; + } + + .lg\:min-w-min { + min-width: -webkit-min-content !important; + min-width: -moz-min-content !important; + min-width: min-content !important; + } + + .lg\:min-w-max { + min-width: -webkit-max-content !important; + min-width: -moz-max-content !important; + min-width: max-content !important; + } + + .lg\:object-contain { + -o-object-fit: contain !important; + object-fit: contain !important; + } + + .lg\:object-cover { + -o-object-fit: cover !important; + object-fit: cover !important; + } + + .lg\:object-fill { + -o-object-fit: fill !important; + object-fit: fill !important; + } + + .lg\:object-none { + -o-object-fit: none !important; + object-fit: none !important; + } + + .lg\:object-scale-down { + -o-object-fit: scale-down !important; + object-fit: scale-down !important; + } + + .lg\:object-bottom { + -o-object-position: bottom !important; + object-position: bottom !important; + } + + .lg\:object-center { + -o-object-position: center !important; + object-position: center !important; + } + + .lg\:object-left { + -o-object-position: left !important; + object-position: left !important; + } + + .lg\:object-left-bottom { + -o-object-position: left bottom !important; + object-position: left bottom !important; + } + + .lg\:object-left-top { + -o-object-position: left top !important; + object-position: left top !important; + } + + .lg\:object-right { + -o-object-position: right !important; + object-position: right !important; + } + + .lg\:object-right-bottom { + -o-object-position: right bottom !important; + object-position: right bottom !important; + } + + .lg\:object-right-top { + -o-object-position: right top !important; + object-position: right top !important; + } + + .lg\:object-top { + -o-object-position: top !important; + object-position: top !important; + } + + .lg\:opacity-0 { + opacity: 0 !important; + } + + .lg\:opacity-5 { + opacity: 0.05 !important; + } + + .lg\:opacity-10 { + opacity: 0.1 !important; + } + + .lg\:opacity-20 { + opacity: 0.2 !important; + } + + .lg\:opacity-25 { + opacity: 0.25 !important; + } + + .lg\:opacity-30 { + opacity: 0.3 !important; + } + + .lg\:opacity-40 { + opacity: 0.4 !important; + } + + .lg\:opacity-50 { + opacity: 0.5 !important; + } + + .lg\:opacity-60 { + opacity: 0.6 !important; + } + + .lg\:opacity-70 { + opacity: 0.7 !important; + } + + .lg\:opacity-75 { + opacity: 0.75 !important; + } + + .lg\:opacity-80 { + opacity: 0.8 !important; + } + + .lg\:opacity-90 { + opacity: 0.9 !important; + } + + .lg\:opacity-95 { + opacity: 0.95 !important; + } + + .lg\:opacity-100 { + opacity: 1 !important; + } + + .group:hover .lg\:group-hover\:opacity-0 { + opacity: 0 !important; + } + + .group:hover .lg\:group-hover\:opacity-5 { + opacity: 0.05 !important; + } + + .group:hover .lg\:group-hover\:opacity-10 { + opacity: 0.1 !important; + } + + .group:hover .lg\:group-hover\:opacity-20 { + opacity: 0.2 !important; + } + + .group:hover .lg\:group-hover\:opacity-25 { + opacity: 0.25 !important; + } + + .group:hover .lg\:group-hover\:opacity-30 { + opacity: 0.3 !important; + } + + .group:hover .lg\:group-hover\:opacity-40 { + opacity: 0.4 !important; + } + + .group:hover .lg\:group-hover\:opacity-50 { + opacity: 0.5 !important; + } + + .group:hover .lg\:group-hover\:opacity-60 { + opacity: 0.6 !important; + } + + .group:hover .lg\:group-hover\:opacity-70 { + opacity: 0.7 !important; + } + + .group:hover .lg\:group-hover\:opacity-75 { + opacity: 0.75 !important; + } + + .group:hover .lg\:group-hover\:opacity-80 { + opacity: 0.8 !important; + } + + .group:hover .lg\:group-hover\:opacity-90 { + opacity: 0.9 !important; + } + + .group:hover .lg\:group-hover\:opacity-95 { + opacity: 0.95 !important; + } + + .group:hover .lg\:group-hover\:opacity-100 { + opacity: 1 !important; + } + + .lg\:focus-within\:opacity-0:focus-within { + opacity: 0 !important; + } + + .lg\:focus-within\:opacity-5:focus-within { + opacity: 0.05 !important; + } + + .lg\:focus-within\:opacity-10:focus-within { + opacity: 0.1 !important; + } + + .lg\:focus-within\:opacity-20:focus-within { + opacity: 0.2 !important; + } + + .lg\:focus-within\:opacity-25:focus-within { + opacity: 0.25 !important; + } + + .lg\:focus-within\:opacity-30:focus-within { + opacity: 0.3 !important; + } + + .lg\:focus-within\:opacity-40:focus-within { + opacity: 0.4 !important; + } + + .lg\:focus-within\:opacity-50:focus-within { + opacity: 0.5 !important; + } + + .lg\:focus-within\:opacity-60:focus-within { + opacity: 0.6 !important; + } + + .lg\:focus-within\:opacity-70:focus-within { + opacity: 0.7 !important; + } + + .lg\:focus-within\:opacity-75:focus-within { + opacity: 0.75 !important; + } + + .lg\:focus-within\:opacity-80:focus-within { + opacity: 0.8 !important; + } + + .lg\:focus-within\:opacity-90:focus-within { + opacity: 0.9 !important; + } + + .lg\:focus-within\:opacity-95:focus-within { + opacity: 0.95 !important; + } + + .lg\:focus-within\:opacity-100:focus-within { + opacity: 1 !important; + } + + .lg\:hover\:opacity-0:hover { + opacity: 0 !important; + } + + .lg\:hover\:opacity-5:hover { + opacity: 0.05 !important; + } + + .lg\:hover\:opacity-10:hover { + opacity: 0.1 !important; + } + + .lg\:hover\:opacity-20:hover { + opacity: 0.2 !important; + } + + .lg\:hover\:opacity-25:hover { + opacity: 0.25 !important; + } + + .lg\:hover\:opacity-30:hover { + opacity: 0.3 !important; + } + + .lg\:hover\:opacity-40:hover { + opacity: 0.4 !important; + } + + .lg\:hover\:opacity-50:hover { + opacity: 0.5 !important; + } + + .lg\:hover\:opacity-60:hover { + opacity: 0.6 !important; + } + + .lg\:hover\:opacity-70:hover { + opacity: 0.7 !important; + } + + .lg\:hover\:opacity-75:hover { + opacity: 0.75 !important; + } + + .lg\:hover\:opacity-80:hover { + opacity: 0.8 !important; + } + + .lg\:hover\:opacity-90:hover { + opacity: 0.9 !important; + } + + .lg\:hover\:opacity-95:hover { + opacity: 0.95 !important; + } + + .lg\:hover\:opacity-100:hover { + opacity: 1 !important; + } + + .lg\:focus\:opacity-0:focus { + opacity: 0 !important; + } + + .lg\:focus\:opacity-5:focus { + opacity: 0.05 !important; + } + + .lg\:focus\:opacity-10:focus { + opacity: 0.1 !important; + } + + .lg\:focus\:opacity-20:focus { + opacity: 0.2 !important; + } + + .lg\:focus\:opacity-25:focus { + opacity: 0.25 !important; + } + + .lg\:focus\:opacity-30:focus { + opacity: 0.3 !important; + } + + .lg\:focus\:opacity-40:focus { + opacity: 0.4 !important; + } + + .lg\:focus\:opacity-50:focus { + opacity: 0.5 !important; + } + + .lg\:focus\:opacity-60:focus { + opacity: 0.6 !important; + } + + .lg\:focus\:opacity-70:focus { + opacity: 0.7 !important; + } + + .lg\:focus\:opacity-75:focus { + opacity: 0.75 !important; + } + + .lg\:focus\:opacity-80:focus { + opacity: 0.8 !important; + } + + .lg\:focus\:opacity-90:focus { + opacity: 0.9 !important; + } + + .lg\:focus\:opacity-95:focus { + opacity: 0.95 !important; + } + + .lg\:focus\:opacity-100:focus { + opacity: 1 !important; + } + + .lg\:disabled\:opacity-0:disabled { + opacity: 0 !important; + } + + .lg\:disabled\:opacity-5:disabled { + opacity: 0.05 !important; + } + + .lg\:disabled\:opacity-10:disabled { + opacity: 0.1 !important; + } + + .lg\:disabled\:opacity-20:disabled { + opacity: 0.2 !important; + } + + .lg\:disabled\:opacity-25:disabled { + opacity: 0.25 !important; + } + + .lg\:disabled\:opacity-30:disabled { + opacity: 0.3 !important; + } + + .lg\:disabled\:opacity-40:disabled { + opacity: 0.4 !important; + } + + .lg\:disabled\:opacity-50:disabled { + opacity: 0.5 !important; + } + + .lg\:disabled\:opacity-60:disabled { + opacity: 0.6 !important; + } + + .lg\:disabled\:opacity-70:disabled { + opacity: 0.7 !important; + } + + .lg\:disabled\:opacity-75:disabled { + opacity: 0.75 !important; + } + + .lg\:disabled\:opacity-80:disabled { + opacity: 0.8 !important; + } + + .lg\:disabled\:opacity-90:disabled { + opacity: 0.9 !important; + } + + .lg\:disabled\:opacity-95:disabled { + opacity: 0.95 !important; + } + + .lg\:disabled\:opacity-100:disabled { + opacity: 1 !important; + } + + .lg\:outline-none { + outline: 2px solid transparent !important; + outline-offset: 2px !important; + } + + .lg\:outline-white { + outline: 2px dotted white !important; + outline-offset: 2px !important; + } + + .lg\:outline-black { + outline: 2px dotted black !important; + outline-offset: 2px !important; + } + + .lg\:focus-within\:outline-none:focus-within { + outline: 2px solid transparent !important; + outline-offset: 2px !important; + } + + .lg\:focus-within\:outline-white:focus-within { + outline: 2px dotted white !important; + outline-offset: 2px !important; + } + + .lg\:focus-within\:outline-black:focus-within { + outline: 2px dotted black !important; + outline-offset: 2px !important; + } + + .lg\:focus\:outline-none:focus { + outline: 2px solid transparent !important; + outline-offset: 2px !important; + } + + .lg\:focus\:outline-white:focus { + outline: 2px dotted white !important; + outline-offset: 2px !important; + } + + .lg\:focus\:outline-black:focus { + outline: 2px dotted black !important; + outline-offset: 2px !important; + } + + .lg\:overflow-auto { + overflow: auto !important; + } + + .lg\:overflow-hidden { + overflow: hidden !important; + } + + .lg\:overflow-visible { + overflow: visible !important; + } + + .lg\:overflow-scroll { + overflow: scroll !important; + } + + .lg\:overflow-x-auto { + overflow-x: auto !important; + } + + .lg\:overflow-y-auto { + overflow-y: auto !important; + } + + .lg\:overflow-x-hidden { + overflow-x: hidden !important; + } + + .lg\:overflow-y-hidden { + overflow-y: hidden !important; + } + + .lg\:overflow-x-visible { + overflow-x: visible !important; + } + + .lg\:overflow-y-visible { + overflow-y: visible !important; + } + + .lg\:overflow-x-scroll { + overflow-x: scroll !important; + } + + .lg\:overflow-y-scroll { + overflow-y: scroll !important; + } + + .lg\:overscroll-auto { + -ms-scroll-chaining: chained !important; + overscroll-behavior: auto !important; + } + + .lg\:overscroll-contain { + -ms-scroll-chaining: none !important; + overscroll-behavior: contain !important; + } + + .lg\:overscroll-none { + -ms-scroll-chaining: none !important; + overscroll-behavior: none !important; + } + + .lg\:overscroll-y-auto { + overscroll-behavior-y: auto !important; + } + + .lg\:overscroll-y-contain { + overscroll-behavior-y: contain !important; + } + + .lg\:overscroll-y-none { + overscroll-behavior-y: none !important; + } + + .lg\:overscroll-x-auto { + overscroll-behavior-x: auto !important; + } + + .lg\:overscroll-x-contain { + overscroll-behavior-x: contain !important; + } + + .lg\:overscroll-x-none { + overscroll-behavior-x: none !important; + } + + .lg\:p-0 { + padding: 0px !important; + } + + .lg\:p-1 { + padding: 0.25rem !important; + } + + .lg\:p-2 { + padding: 0.5rem !important; + } + + .lg\:p-3 { + padding: 0.75rem !important; + } + + .lg\:p-4 { + padding: 1rem !important; + } + + .lg\:p-5 { + padding: 1.25rem !important; + } + + .lg\:p-6 { + padding: 1.5rem !important; + } + + .lg\:p-7 { + padding: 1.75rem !important; + } + + .lg\:p-8 { + padding: 2rem !important; + } + + .lg\:p-9 { + padding: 2.25rem !important; + } + + .lg\:p-10 { + padding: 2.5rem !important; + } + + .lg\:p-11 { + padding: 2.75rem !important; + } + + .lg\:p-12 { + padding: 3rem !important; + } + + .lg\:p-14 { + padding: 3.5rem !important; + } + + .lg\:p-16 { + padding: 4rem !important; + } + + .lg\:p-20 { + padding: 5rem !important; + } + + .lg\:p-24 { + padding: 6rem !important; + } + + .lg\:p-28 { + padding: 7rem !important; + } + + .lg\:p-32 { + padding: 8rem !important; + } + + .lg\:p-36 { + padding: 9rem !important; + } + + .lg\:p-40 { + padding: 10rem !important; + } + + .lg\:p-44 { + padding: 11rem !important; + } + + .lg\:p-48 { + padding: 12rem !important; + } + + .lg\:p-52 { + padding: 13rem !important; + } + + .lg\:p-56 { + padding: 14rem !important; + } + + .lg\:p-60 { + padding: 15rem !important; + } + + .lg\:p-64 { + padding: 16rem !important; + } + + .lg\:p-72 { + padding: 18rem !important; + } + + .lg\:p-80 { + padding: 20rem !important; + } + + .lg\:p-96 { + padding: 24rem !important; + } + + .lg\:p-px { + padding: 1px !important; + } + + .lg\:p-0\.5 { + padding: 0.125rem !important; + } + + .lg\:p-1\.5 { + padding: 0.375rem !important; + } + + .lg\:p-2\.5 { + padding: 0.625rem !important; + } + + .lg\:p-3\.5 { + padding: 0.875rem !important; + } + + .lg\:py-0 { + padding-top: 0px !important; + padding-bottom: 0px !important; + } + + .lg\:px-0 { + padding-left: 0px !important; + padding-right: 0px !important; + } + + .lg\:py-1 { + padding-top: 0.25rem !important; + padding-bottom: 0.25rem !important; + } + + .lg\:px-1 { + padding-left: 0.25rem !important; + padding-right: 0.25rem !important; + } + + .lg\:py-2 { + padding-top: 0.5rem !important; + padding-bottom: 0.5rem !important; + } + + .lg\:px-2 { + padding-left: 0.5rem !important; + padding-right: 0.5rem !important; + } + + .lg\:py-3 { + padding-top: 0.75rem !important; + padding-bottom: 0.75rem !important; + } + + .lg\:px-3 { + padding-left: 0.75rem !important; + padding-right: 0.75rem !important; + } + + .lg\:py-4 { + padding-top: 1rem !important; + padding-bottom: 1rem !important; + } + + .lg\:px-4 { + padding-left: 1rem !important; + padding-right: 1rem !important; + } + + .lg\:py-5 { + padding-top: 1.25rem !important; + padding-bottom: 1.25rem !important; + } + + .lg\:px-5 { + padding-left: 1.25rem !important; + padding-right: 1.25rem !important; + } + + .lg\:py-6 { + padding-top: 1.5rem !important; + padding-bottom: 1.5rem !important; + } + + .lg\:px-6 { + padding-left: 1.5rem !important; + padding-right: 1.5rem !important; + } + + .lg\:py-7 { + padding-top: 1.75rem !important; + padding-bottom: 1.75rem !important; + } + + .lg\:px-7 { + padding-left: 1.75rem !important; + padding-right: 1.75rem !important; + } + + .lg\:py-8 { + padding-top: 2rem !important; + padding-bottom: 2rem !important; + } + + .lg\:px-8 { + padding-left: 2rem !important; + padding-right: 2rem !important; + } + + .lg\:py-9 { + padding-top: 2.25rem !important; + padding-bottom: 2.25rem !important; + } + + .lg\:px-9 { + padding-left: 2.25rem !important; + padding-right: 2.25rem !important; + } + + .lg\:py-10 { + padding-top: 2.5rem !important; + padding-bottom: 2.5rem !important; + } + + .lg\:px-10 { + padding-left: 2.5rem !important; + padding-right: 2.5rem !important; + } + + .lg\:py-11 { + padding-top: 2.75rem !important; + padding-bottom: 2.75rem !important; + } + + .lg\:px-11 { + padding-left: 2.75rem !important; + padding-right: 2.75rem !important; + } + + .lg\:py-12 { + padding-top: 3rem !important; + padding-bottom: 3rem !important; + } + + .lg\:px-12 { + padding-left: 3rem !important; + padding-right: 3rem !important; + } + + .lg\:py-14 { + padding-top: 3.5rem !important; + padding-bottom: 3.5rem !important; + } + + .lg\:px-14 { + padding-left: 3.5rem !important; + padding-right: 3.5rem !important; + } + + .lg\:py-16 { + padding-top: 4rem !important; + padding-bottom: 4rem !important; + } + + .lg\:px-16 { + padding-left: 4rem !important; + padding-right: 4rem !important; + } + + .lg\:py-20 { + padding-top: 5rem !important; + padding-bottom: 5rem !important; + } + + .lg\:px-20 { + padding-left: 5rem !important; + padding-right: 5rem !important; + } + + .lg\:py-24 { + padding-top: 6rem !important; + padding-bottom: 6rem !important; + } + + .lg\:px-24 { + padding-left: 6rem !important; + padding-right: 6rem !important; + } + + .lg\:py-28 { + padding-top: 7rem !important; + padding-bottom: 7rem !important; + } + + .lg\:px-28 { + padding-left: 7rem !important; + padding-right: 7rem !important; + } + + .lg\:py-32 { + padding-top: 8rem !important; + padding-bottom: 8rem !important; + } + + .lg\:px-32 { + padding-left: 8rem !important; + padding-right: 8rem !important; + } + + .lg\:py-36 { + padding-top: 9rem !important; + padding-bottom: 9rem !important; + } + + .lg\:px-36 { + padding-left: 9rem !important; + padding-right: 9rem !important; + } + + .lg\:py-40 { + padding-top: 10rem !important; + padding-bottom: 10rem !important; + } + + .lg\:px-40 { + padding-left: 10rem !important; + padding-right: 10rem !important; + } + + .lg\:py-44 { + padding-top: 11rem !important; + padding-bottom: 11rem !important; + } + + .lg\:px-44 { + padding-left: 11rem !important; + padding-right: 11rem !important; + } + + .lg\:py-48 { + padding-top: 12rem !important; + padding-bottom: 12rem !important; + } + + .lg\:px-48 { + padding-left: 12rem !important; + padding-right: 12rem !important; + } + + .lg\:py-52 { + padding-top: 13rem !important; + padding-bottom: 13rem !important; + } + + .lg\:px-52 { + padding-left: 13rem !important; + padding-right: 13rem !important; + } + + .lg\:py-56 { + padding-top: 14rem !important; + padding-bottom: 14rem !important; + } + + .lg\:px-56 { + padding-left: 14rem !important; + padding-right: 14rem !important; + } + + .lg\:py-60 { + padding-top: 15rem !important; + padding-bottom: 15rem !important; + } + + .lg\:px-60 { + padding-left: 15rem !important; + padding-right: 15rem !important; + } + + .lg\:py-64 { + padding-top: 16rem !important; + padding-bottom: 16rem !important; + } + + .lg\:px-64 { + padding-left: 16rem !important; + padding-right: 16rem !important; + } + + .lg\:py-72 { + padding-top: 18rem !important; + padding-bottom: 18rem !important; + } + + .lg\:px-72 { + padding-left: 18rem !important; + padding-right: 18rem !important; + } + + .lg\:py-80 { + padding-top: 20rem !important; + padding-bottom: 20rem !important; + } + + .lg\:px-80 { + padding-left: 20rem !important; + padding-right: 20rem !important; + } + + .lg\:py-96 { + padding-top: 24rem !important; + padding-bottom: 24rem !important; + } + + .lg\:px-96 { + padding-left: 24rem !important; + padding-right: 24rem !important; + } + + .lg\:py-px { + padding-top: 1px !important; + padding-bottom: 1px !important; + } + + .lg\:px-px { + padding-left: 1px !important; + padding-right: 1px !important; + } + + .lg\:py-0\.5 { + padding-top: 0.125rem !important; + padding-bottom: 0.125rem !important; + } + + .lg\:px-0\.5 { + padding-left: 0.125rem !important; + padding-right: 0.125rem !important; + } + + .lg\:py-1\.5 { + padding-top: 0.375rem !important; + padding-bottom: 0.375rem !important; + } + + .lg\:px-1\.5 { + padding-left: 0.375rem !important; + padding-right: 0.375rem !important; + } + + .lg\:py-2\.5 { + padding-top: 0.625rem !important; + padding-bottom: 0.625rem !important; + } + + .lg\:px-2\.5 { + padding-left: 0.625rem !important; + padding-right: 0.625rem !important; + } + + .lg\:py-3\.5 { + padding-top: 0.875rem !important; + padding-bottom: 0.875rem !important; + } + + .lg\:px-3\.5 { + padding-left: 0.875rem !important; + padding-right: 0.875rem !important; + } + + .lg\:pt-0 { + padding-top: 0px !important; + } + + .lg\:pr-0 { + padding-right: 0px !important; + } + + .lg\:pb-0 { + padding-bottom: 0px !important; + } + + .lg\:pl-0 { + padding-left: 0px !important; + } + + .lg\:pt-1 { + padding-top: 0.25rem !important; + } + + .lg\:pr-1 { + padding-right: 0.25rem !important; + } + + .lg\:pb-1 { + padding-bottom: 0.25rem !important; + } + + .lg\:pl-1 { + padding-left: 0.25rem !important; + } + + .lg\:pt-2 { + padding-top: 0.5rem !important; + } + + .lg\:pr-2 { + padding-right: 0.5rem !important; + } + + .lg\:pb-2 { + padding-bottom: 0.5rem !important; + } + + .lg\:pl-2 { + padding-left: 0.5rem !important; + } + + .lg\:pt-3 { + padding-top: 0.75rem !important; + } + + .lg\:pr-3 { + padding-right: 0.75rem !important; + } + + .lg\:pb-3 { + padding-bottom: 0.75rem !important; + } + + .lg\:pl-3 { + padding-left: 0.75rem !important; + } + + .lg\:pt-4 { + padding-top: 1rem !important; + } + + .lg\:pr-4 { + padding-right: 1rem !important; + } + + .lg\:pb-4 { + padding-bottom: 1rem !important; + } + + .lg\:pl-4 { + padding-left: 1rem !important; + } + + .lg\:pt-5 { + padding-top: 1.25rem !important; + } + + .lg\:pr-5 { + padding-right: 1.25rem !important; + } + + .lg\:pb-5 { + padding-bottom: 1.25rem !important; + } + + .lg\:pl-5 { + padding-left: 1.25rem !important; + } + + .lg\:pt-6 { + padding-top: 1.5rem !important; + } + + .lg\:pr-6 { + padding-right: 1.5rem !important; + } + + .lg\:pb-6 { + padding-bottom: 1.5rem !important; + } + + .lg\:pl-6 { + padding-left: 1.5rem !important; + } + + .lg\:pt-7 { + padding-top: 1.75rem !important; + } + + .lg\:pr-7 { + padding-right: 1.75rem !important; + } + + .lg\:pb-7 { + padding-bottom: 1.75rem !important; + } + + .lg\:pl-7 { + padding-left: 1.75rem !important; + } + + .lg\:pt-8 { + padding-top: 2rem !important; + } + + .lg\:pr-8 { + padding-right: 2rem !important; + } + + .lg\:pb-8 { + padding-bottom: 2rem !important; + } + + .lg\:pl-8 { + padding-left: 2rem !important; + } + + .lg\:pt-9 { + padding-top: 2.25rem !important; + } + + .lg\:pr-9 { + padding-right: 2.25rem !important; + } + + .lg\:pb-9 { + padding-bottom: 2.25rem !important; + } + + .lg\:pl-9 { + padding-left: 2.25rem !important; + } + + .lg\:pt-10 { + padding-top: 2.5rem !important; + } + + .lg\:pr-10 { + padding-right: 2.5rem !important; + } + + .lg\:pb-10 { + padding-bottom: 2.5rem !important; + } + + .lg\:pl-10 { + padding-left: 2.5rem !important; + } + + .lg\:pt-11 { + padding-top: 2.75rem !important; + } + + .lg\:pr-11 { + padding-right: 2.75rem !important; + } + + .lg\:pb-11 { + padding-bottom: 2.75rem !important; + } + + .lg\:pl-11 { + padding-left: 2.75rem !important; + } + + .lg\:pt-12 { + padding-top: 3rem !important; + } + + .lg\:pr-12 { + padding-right: 3rem !important; + } + + .lg\:pb-12 { + padding-bottom: 3rem !important; + } + + .lg\:pl-12 { + padding-left: 3rem !important; + } + + .lg\:pt-14 { + padding-top: 3.5rem !important; + } + + .lg\:pr-14 { + padding-right: 3.5rem !important; + } + + .lg\:pb-14 { + padding-bottom: 3.5rem !important; + } + + .lg\:pl-14 { + padding-left: 3.5rem !important; + } + + .lg\:pt-16 { + padding-top: 4rem !important; + } + + .lg\:pr-16 { + padding-right: 4rem !important; + } + + .lg\:pb-16 { + padding-bottom: 4rem !important; + } + + .lg\:pl-16 { + padding-left: 4rem !important; + } + + .lg\:pt-20 { + padding-top: 5rem !important; + } + + .lg\:pr-20 { + padding-right: 5rem !important; + } + + .lg\:pb-20 { + padding-bottom: 5rem !important; + } + + .lg\:pl-20 { + padding-left: 5rem !important; + } + + .lg\:pt-24 { + padding-top: 6rem !important; + } + + .lg\:pr-24 { + padding-right: 6rem !important; + } + + .lg\:pb-24 { + padding-bottom: 6rem !important; + } + + .lg\:pl-24 { + padding-left: 6rem !important; + } + + .lg\:pt-28 { + padding-top: 7rem !important; + } + + .lg\:pr-28 { + padding-right: 7rem !important; + } + + .lg\:pb-28 { + padding-bottom: 7rem !important; + } + + .lg\:pl-28 { + padding-left: 7rem !important; + } + + .lg\:pt-32 { + padding-top: 8rem !important; + } + + .lg\:pr-32 { + padding-right: 8rem !important; + } + + .lg\:pb-32 { + padding-bottom: 8rem !important; + } + + .lg\:pl-32 { + padding-left: 8rem !important; + } + + .lg\:pt-36 { + padding-top: 9rem !important; + } + + .lg\:pr-36 { + padding-right: 9rem !important; + } + + .lg\:pb-36 { + padding-bottom: 9rem !important; + } + + .lg\:pl-36 { + padding-left: 9rem !important; + } + + .lg\:pt-40 { + padding-top: 10rem !important; + } + + .lg\:pr-40 { + padding-right: 10rem !important; + } + + .lg\:pb-40 { + padding-bottom: 10rem !important; + } + + .lg\:pl-40 { + padding-left: 10rem !important; + } + + .lg\:pt-44 { + padding-top: 11rem !important; + } + + .lg\:pr-44 { + padding-right: 11rem !important; + } + + .lg\:pb-44 { + padding-bottom: 11rem !important; + } + + .lg\:pl-44 { + padding-left: 11rem !important; + } + + .lg\:pt-48 { + padding-top: 12rem !important; + } + + .lg\:pr-48 { + padding-right: 12rem !important; + } + + .lg\:pb-48 { + padding-bottom: 12rem !important; + } + + .lg\:pl-48 { + padding-left: 12rem !important; + } + + .lg\:pt-52 { + padding-top: 13rem !important; + } + + .lg\:pr-52 { + padding-right: 13rem !important; + } + + .lg\:pb-52 { + padding-bottom: 13rem !important; + } + + .lg\:pl-52 { + padding-left: 13rem !important; + } + + .lg\:pt-56 { + padding-top: 14rem !important; + } + + .lg\:pr-56 { + padding-right: 14rem !important; + } + + .lg\:pb-56 { + padding-bottom: 14rem !important; + } + + .lg\:pl-56 { + padding-left: 14rem !important; + } + + .lg\:pt-60 { + padding-top: 15rem !important; + } + + .lg\:pr-60 { + padding-right: 15rem !important; + } + + .lg\:pb-60 { + padding-bottom: 15rem !important; + } + + .lg\:pl-60 { + padding-left: 15rem !important; + } + + .lg\:pt-64 { + padding-top: 16rem !important; + } + + .lg\:pr-64 { + padding-right: 16rem !important; + } + + .lg\:pb-64 { + padding-bottom: 16rem !important; + } + + .lg\:pl-64 { + padding-left: 16rem !important; + } + + .lg\:pt-72 { + padding-top: 18rem !important; + } + + .lg\:pr-72 { + padding-right: 18rem !important; + } + + .lg\:pb-72 { + padding-bottom: 18rem !important; + } + + .lg\:pl-72 { + padding-left: 18rem !important; + } + + .lg\:pt-80 { + padding-top: 20rem !important; + } + + .lg\:pr-80 { + padding-right: 20rem !important; + } + + .lg\:pb-80 { + padding-bottom: 20rem !important; + } + + .lg\:pl-80 { + padding-left: 20rem !important; + } + + .lg\:pt-96 { + padding-top: 24rem !important; + } + + .lg\:pr-96 { + padding-right: 24rem !important; + } + + .lg\:pb-96 { + padding-bottom: 24rem !important; + } + + .lg\:pl-96 { + padding-left: 24rem !important; + } + + .lg\:pt-px { + padding-top: 1px !important; + } + + .lg\:pr-px { + padding-right: 1px !important; + } + + .lg\:pb-px { + padding-bottom: 1px !important; + } + + .lg\:pl-px { + padding-left: 1px !important; + } + + .lg\:pt-0\.5 { + padding-top: 0.125rem !important; + } + + .lg\:pr-0\.5 { + padding-right: 0.125rem !important; + } + + .lg\:pb-0\.5 { + padding-bottom: 0.125rem !important; + } + + .lg\:pl-0\.5 { + padding-left: 0.125rem !important; + } + + .lg\:pt-1\.5 { + padding-top: 0.375rem !important; + } + + .lg\:pr-1\.5 { + padding-right: 0.375rem !important; + } + + .lg\:pb-1\.5 { + padding-bottom: 0.375rem !important; + } + + .lg\:pl-1\.5 { + padding-left: 0.375rem !important; + } + + .lg\:pt-2\.5 { + padding-top: 0.625rem !important; + } + + .lg\:pr-2\.5 { + padding-right: 0.625rem !important; + } + + .lg\:pb-2\.5 { + padding-bottom: 0.625rem !important; + } + + .lg\:pl-2\.5 { + padding-left: 0.625rem !important; + } + + .lg\:pt-3\.5 { + padding-top: 0.875rem !important; + } + + .lg\:pr-3\.5 { + padding-right: 0.875rem !important; + } + + .lg\:pb-3\.5 { + padding-bottom: 0.875rem !important; + } + + .lg\:pl-3\.5 { + padding-left: 0.875rem !important; + } + + .lg\:placeholder-transparent::-moz-placeholder { + color: transparent !important; + } + + .lg\:placeholder-transparent:-ms-input-placeholder { + color: transparent !important; + } + + .lg\:placeholder-transparent::placeholder { + color: transparent !important; + } + + .lg\:placeholder-current::-moz-placeholder { + color: currentColor !important; + } + + .lg\:placeholder-current:-ms-input-placeholder { + color: currentColor !important; + } + + .lg\:placeholder-current::placeholder { + color: currentColor !important; + } + + .lg\:placeholder-black::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-black:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-black::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-white::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-white:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-white::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-gray-50::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-gray-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-gray-50::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-gray-100::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-gray-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-gray-100::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-gray-200::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-gray-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-gray-200::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-gray-300::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-gray-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-gray-300::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-gray-400::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-gray-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-gray-400::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-gray-500::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-gray-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-gray-500::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-gray-600::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-gray-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-gray-600::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-gray-700::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-gray-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-gray-700::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-gray-800::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-gray-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-gray-800::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-gray-900::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-gray-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-gray-900::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-red-50::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 242, 242, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-red-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 242, 242, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-red-50::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 242, 242, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-red-100::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 226, 226, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-red-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 226, 226, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-red-100::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 226, 226, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-red-200::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 202, 202, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-red-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 202, 202, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-red-200::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 202, 202, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-red-300::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 165, 165, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-red-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 165, 165, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-red-300::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 165, 165, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-red-400::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(248, 113, 113, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-red-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(248, 113, 113, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-red-400::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(248, 113, 113, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-red-500::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(239, 68, 68, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-red-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(239, 68, 68, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-red-500::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(239, 68, 68, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-red-600::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(220, 38, 38, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-red-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(220, 38, 38, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-red-600::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(220, 38, 38, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-red-700::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(185, 28, 28, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-red-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(185, 28, 28, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-red-700::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(185, 28, 28, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-red-800::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(153, 27, 27, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-red-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(153, 27, 27, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-red-800::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(153, 27, 27, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-red-900::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(127, 29, 29, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-red-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(127, 29, 29, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-red-900::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(127, 29, 29, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-yellow-50::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(255, 251, 235, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-yellow-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(255, 251, 235, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-yellow-50::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(255, 251, 235, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-yellow-100::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 243, 199, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-yellow-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 243, 199, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-yellow-100::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 243, 199, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-yellow-200::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(253, 230, 138, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-yellow-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(253, 230, 138, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-yellow-200::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(253, 230, 138, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-yellow-300::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 211, 77, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-yellow-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 211, 77, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-yellow-300::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 211, 77, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-yellow-400::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(251, 191, 36, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-yellow-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(251, 191, 36, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-yellow-400::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(251, 191, 36, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-yellow-500::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-yellow-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-yellow-500::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-yellow-600::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(217, 119, 6, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-yellow-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(217, 119, 6, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-yellow-600::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(217, 119, 6, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-yellow-700::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(180, 83, 9, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-yellow-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(180, 83, 9, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-yellow-700::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(180, 83, 9, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-yellow-800::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(146, 64, 14, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-yellow-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(146, 64, 14, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-yellow-800::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(146, 64, 14, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-yellow-900::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(120, 53, 15, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-yellow-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(120, 53, 15, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-yellow-900::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(120, 53, 15, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-green-50::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(236, 253, 245, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-green-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(236, 253, 245, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-green-50::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(236, 253, 245, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-green-100::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(209, 250, 229, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-green-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(209, 250, 229, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-green-100::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(209, 250, 229, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-green-200::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(167, 243, 208, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-green-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(167, 243, 208, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-green-200::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(167, 243, 208, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-green-300::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(110, 231, 183, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-green-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(110, 231, 183, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-green-300::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(110, 231, 183, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-green-400::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(52, 211, 153, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-green-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(52, 211, 153, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-green-400::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(52, 211, 153, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-green-500::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(16, 185, 129, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-green-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(16, 185, 129, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-green-500::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(16, 185, 129, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-green-600::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(5, 150, 105, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-green-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(5, 150, 105, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-green-600::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(5, 150, 105, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-green-700::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(4, 120, 87, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-green-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(4, 120, 87, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-green-700::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(4, 120, 87, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-green-800::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(6, 95, 70, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-green-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(6, 95, 70, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-green-800::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(6, 95, 70, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-green-900::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(6, 78, 59, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-green-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(6, 78, 59, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-green-900::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(6, 78, 59, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-blue-50::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(239, 246, 255, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-blue-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(239, 246, 255, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-blue-50::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(239, 246, 255, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-blue-100::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(219, 234, 254, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-blue-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(219, 234, 254, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-blue-100::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(219, 234, 254, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-blue-200::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(191, 219, 254, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-blue-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(191, 219, 254, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-blue-200::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(191, 219, 254, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-blue-300::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(147, 197, 253, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-blue-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(147, 197, 253, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-blue-300::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(147, 197, 253, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-blue-400::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(96, 165, 250, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-blue-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(96, 165, 250, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-blue-400::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(96, 165, 250, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-blue-500::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-blue-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-blue-500::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-blue-600::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(37, 99, 235, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-blue-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(37, 99, 235, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-blue-600::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(37, 99, 235, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-blue-700::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(29, 78, 216, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-blue-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(29, 78, 216, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-blue-700::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(29, 78, 216, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-blue-800::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(30, 64, 175, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-blue-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(30, 64, 175, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-blue-800::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(30, 64, 175, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-blue-900::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(30, 58, 138, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-blue-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(30, 58, 138, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-blue-900::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(30, 58, 138, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-indigo-50::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(238, 242, 255, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-indigo-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(238, 242, 255, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-indigo-50::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(238, 242, 255, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-indigo-100::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(224, 231, 255, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-indigo-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(224, 231, 255, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-indigo-100::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(224, 231, 255, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-indigo-200::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(199, 210, 254, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-indigo-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(199, 210, 254, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-indigo-200::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(199, 210, 254, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-indigo-300::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(165, 180, 252, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-indigo-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(165, 180, 252, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-indigo-300::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(165, 180, 252, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-indigo-400::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(129, 140, 248, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-indigo-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(129, 140, 248, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-indigo-400::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(129, 140, 248, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-indigo-500::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(99, 102, 241, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-indigo-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(99, 102, 241, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-indigo-500::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(99, 102, 241, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-indigo-600::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(79, 70, 229, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-indigo-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(79, 70, 229, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-indigo-600::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(79, 70, 229, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-indigo-700::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(67, 56, 202, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-indigo-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(67, 56, 202, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-indigo-700::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(67, 56, 202, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-indigo-800::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(55, 48, 163, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-indigo-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(55, 48, 163, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-indigo-800::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(55, 48, 163, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-indigo-900::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(49, 46, 129, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-indigo-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(49, 46, 129, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-indigo-900::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(49, 46, 129, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-purple-50::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(245, 243, 255, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-purple-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(245, 243, 255, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-purple-50::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(245, 243, 255, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-purple-100::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(237, 233, 254, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-purple-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(237, 233, 254, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-purple-100::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(237, 233, 254, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-purple-200::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(221, 214, 254, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-purple-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(221, 214, 254, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-purple-200::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(221, 214, 254, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-purple-300::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(196, 181, 253, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-purple-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(196, 181, 253, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-purple-300::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(196, 181, 253, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-purple-400::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(167, 139, 250, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-purple-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(167, 139, 250, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-purple-400::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(167, 139, 250, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-purple-500::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(139, 92, 246, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-purple-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(139, 92, 246, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-purple-500::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(139, 92, 246, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-purple-600::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(124, 58, 237, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-purple-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(124, 58, 237, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-purple-600::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(124, 58, 237, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-purple-700::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(109, 40, 217, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-purple-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(109, 40, 217, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-purple-700::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(109, 40, 217, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-purple-800::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(91, 33, 182, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-purple-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(91, 33, 182, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-purple-800::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(91, 33, 182, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-purple-900::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(76, 29, 149, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-purple-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(76, 29, 149, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-purple-900::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(76, 29, 149, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-pink-50::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(253, 242, 248, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-pink-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(253, 242, 248, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-pink-50::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(253, 242, 248, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-pink-100::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 231, 243, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-pink-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 231, 243, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-pink-100::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 231, 243, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-pink-200::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(251, 207, 232, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-pink-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(251, 207, 232, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-pink-200::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(251, 207, 232, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-pink-300::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(249, 168, 212, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-pink-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(249, 168, 212, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-pink-300::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(249, 168, 212, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-pink-400::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(244, 114, 182, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-pink-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(244, 114, 182, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-pink-400::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(244, 114, 182, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-pink-500::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(236, 72, 153, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-pink-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(236, 72, 153, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-pink-500::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(236, 72, 153, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-pink-600::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(219, 39, 119, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-pink-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(219, 39, 119, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-pink-600::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(219, 39, 119, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-pink-700::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(190, 24, 93, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-pink-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(190, 24, 93, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-pink-700::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(190, 24, 93, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-pink-800::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(157, 23, 77, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-pink-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(157, 23, 77, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-pink-800::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(157, 23, 77, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-pink-900::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(131, 24, 67, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-pink-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(131, 24, 67, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-pink-900::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(131, 24, 67, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-primary::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(0, 49, 151, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-primary:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(0, 49, 151, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-primary::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(0, 49, 151, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-transparent:focus::-moz-placeholder { + color: transparent !important; + } + + .lg\:focus\:placeholder-transparent:focus:-ms-input-placeholder { + color: transparent !important; + } + + .lg\:focus\:placeholder-transparent:focus::placeholder { + color: transparent !important; + } + + .lg\:focus\:placeholder-current:focus::-moz-placeholder { + color: currentColor !important; + } + + .lg\:focus\:placeholder-current:focus:-ms-input-placeholder { + color: currentColor !important; + } + + .lg\:focus\:placeholder-current:focus::placeholder { + color: currentColor !important; + } + + .lg\:focus\:placeholder-black:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-black:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-black:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-white:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-white:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-white:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-gray-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-gray-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-gray-50:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-gray-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-gray-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-gray-100:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-gray-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-gray-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-gray-200:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-gray-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-gray-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-gray-300:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-gray-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-gray-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-gray-400:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-gray-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-gray-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-gray-500:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-gray-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-gray-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-gray-600:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-gray-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-gray-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-gray-700:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-gray-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-gray-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-gray-800:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-gray-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-gray-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-gray-900:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-red-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 242, 242, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-red-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 242, 242, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-red-50:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 242, 242, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-red-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 226, 226, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-red-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 226, 226, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-red-100:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 226, 226, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-red-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 202, 202, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-red-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 202, 202, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-red-200:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 202, 202, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-red-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 165, 165, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-red-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 165, 165, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-red-300:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 165, 165, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-red-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(248, 113, 113, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-red-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(248, 113, 113, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-red-400:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(248, 113, 113, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-red-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(239, 68, 68, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-red-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(239, 68, 68, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-red-500:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(239, 68, 68, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-red-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(220, 38, 38, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-red-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(220, 38, 38, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-red-600:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(220, 38, 38, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-red-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(185, 28, 28, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-red-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(185, 28, 28, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-red-700:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(185, 28, 28, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-red-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(153, 27, 27, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-red-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(153, 27, 27, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-red-800:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(153, 27, 27, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-red-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(127, 29, 29, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-red-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(127, 29, 29, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-red-900:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(127, 29, 29, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-yellow-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(255, 251, 235, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-yellow-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(255, 251, 235, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-yellow-50:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(255, 251, 235, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-yellow-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 243, 199, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-yellow-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 243, 199, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-yellow-100:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 243, 199, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-yellow-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(253, 230, 138, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-yellow-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(253, 230, 138, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-yellow-200:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(253, 230, 138, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-yellow-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 211, 77, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-yellow-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 211, 77, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-yellow-300:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 211, 77, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-yellow-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(251, 191, 36, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-yellow-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(251, 191, 36, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-yellow-400:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(251, 191, 36, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-yellow-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-yellow-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-yellow-500:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-yellow-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(217, 119, 6, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-yellow-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(217, 119, 6, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-yellow-600:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(217, 119, 6, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-yellow-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(180, 83, 9, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-yellow-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(180, 83, 9, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-yellow-700:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(180, 83, 9, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-yellow-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(146, 64, 14, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-yellow-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(146, 64, 14, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-yellow-800:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(146, 64, 14, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-yellow-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(120, 53, 15, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-yellow-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(120, 53, 15, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-yellow-900:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(120, 53, 15, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-green-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(236, 253, 245, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-green-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(236, 253, 245, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-green-50:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(236, 253, 245, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-green-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(209, 250, 229, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-green-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(209, 250, 229, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-green-100:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(209, 250, 229, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-green-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(167, 243, 208, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-green-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(167, 243, 208, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-green-200:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(167, 243, 208, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-green-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(110, 231, 183, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-green-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(110, 231, 183, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-green-300:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(110, 231, 183, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-green-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(52, 211, 153, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-green-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(52, 211, 153, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-green-400:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(52, 211, 153, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-green-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(16, 185, 129, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-green-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(16, 185, 129, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-green-500:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(16, 185, 129, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-green-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(5, 150, 105, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-green-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(5, 150, 105, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-green-600:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(5, 150, 105, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-green-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(4, 120, 87, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-green-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(4, 120, 87, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-green-700:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(4, 120, 87, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-green-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(6, 95, 70, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-green-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(6, 95, 70, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-green-800:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(6, 95, 70, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-green-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(6, 78, 59, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-green-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(6, 78, 59, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-green-900:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(6, 78, 59, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-blue-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(239, 246, 255, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-blue-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(239, 246, 255, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-blue-50:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(239, 246, 255, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-blue-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(219, 234, 254, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-blue-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(219, 234, 254, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-blue-100:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(219, 234, 254, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-blue-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(191, 219, 254, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-blue-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(191, 219, 254, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-blue-200:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(191, 219, 254, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-blue-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(147, 197, 253, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-blue-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(147, 197, 253, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-blue-300:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(147, 197, 253, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-blue-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(96, 165, 250, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-blue-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(96, 165, 250, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-blue-400:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(96, 165, 250, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-blue-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-blue-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-blue-500:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-blue-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(37, 99, 235, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-blue-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(37, 99, 235, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-blue-600:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(37, 99, 235, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-blue-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(29, 78, 216, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-blue-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(29, 78, 216, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-blue-700:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(29, 78, 216, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-blue-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(30, 64, 175, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-blue-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(30, 64, 175, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-blue-800:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(30, 64, 175, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-blue-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(30, 58, 138, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-blue-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(30, 58, 138, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-blue-900:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(30, 58, 138, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-indigo-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(238, 242, 255, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-indigo-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(238, 242, 255, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-indigo-50:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(238, 242, 255, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-indigo-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(224, 231, 255, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-indigo-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(224, 231, 255, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-indigo-100:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(224, 231, 255, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-indigo-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(199, 210, 254, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-indigo-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(199, 210, 254, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-indigo-200:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(199, 210, 254, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-indigo-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(165, 180, 252, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-indigo-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(165, 180, 252, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-indigo-300:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(165, 180, 252, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-indigo-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(129, 140, 248, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-indigo-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(129, 140, 248, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-indigo-400:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(129, 140, 248, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-indigo-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(99, 102, 241, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-indigo-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(99, 102, 241, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-indigo-500:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(99, 102, 241, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-indigo-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(79, 70, 229, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-indigo-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(79, 70, 229, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-indigo-600:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(79, 70, 229, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-indigo-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(67, 56, 202, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-indigo-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(67, 56, 202, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-indigo-700:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(67, 56, 202, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-indigo-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(55, 48, 163, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-indigo-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(55, 48, 163, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-indigo-800:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(55, 48, 163, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-indigo-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(49, 46, 129, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-indigo-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(49, 46, 129, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-indigo-900:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(49, 46, 129, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-purple-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(245, 243, 255, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-purple-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(245, 243, 255, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-purple-50:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(245, 243, 255, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-purple-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(237, 233, 254, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-purple-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(237, 233, 254, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-purple-100:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(237, 233, 254, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-purple-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(221, 214, 254, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-purple-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(221, 214, 254, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-purple-200:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(221, 214, 254, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-purple-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(196, 181, 253, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-purple-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(196, 181, 253, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-purple-300:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(196, 181, 253, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-purple-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(167, 139, 250, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-purple-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(167, 139, 250, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-purple-400:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(167, 139, 250, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-purple-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(139, 92, 246, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-purple-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(139, 92, 246, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-purple-500:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(139, 92, 246, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-purple-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(124, 58, 237, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-purple-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(124, 58, 237, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-purple-600:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(124, 58, 237, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-purple-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(109, 40, 217, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-purple-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(109, 40, 217, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-purple-700:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(109, 40, 217, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-purple-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(91, 33, 182, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-purple-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(91, 33, 182, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-purple-800:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(91, 33, 182, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-purple-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(76, 29, 149, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-purple-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(76, 29, 149, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-purple-900:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(76, 29, 149, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-pink-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(253, 242, 248, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-pink-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(253, 242, 248, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-pink-50:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(253, 242, 248, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-pink-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 231, 243, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-pink-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 231, 243, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-pink-100:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 231, 243, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-pink-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(251, 207, 232, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-pink-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(251, 207, 232, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-pink-200:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(251, 207, 232, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-pink-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(249, 168, 212, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-pink-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(249, 168, 212, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-pink-300:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(249, 168, 212, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-pink-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(244, 114, 182, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-pink-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(244, 114, 182, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-pink-400:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(244, 114, 182, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-pink-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(236, 72, 153, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-pink-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(236, 72, 153, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-pink-500:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(236, 72, 153, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-pink-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(219, 39, 119, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-pink-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(219, 39, 119, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-pink-600:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(219, 39, 119, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-pink-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(190, 24, 93, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-pink-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(190, 24, 93, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-pink-700:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(190, 24, 93, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-pink-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(157, 23, 77, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-pink-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(157, 23, 77, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-pink-800:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(157, 23, 77, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-pink-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(131, 24, 67, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-pink-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(131, 24, 67, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-pink-900:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(131, 24, 67, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-primary:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(0, 49, 151, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-primary:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(0, 49, 151, var(--tw-placeholder-opacity)) !important; + } + + .lg\:focus\:placeholder-primary:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(0, 49, 151, var(--tw-placeholder-opacity)) !important; + } + + .lg\:placeholder-opacity-0::-moz-placeholder { + --tw-placeholder-opacity: 0 !important; + } + + .lg\:placeholder-opacity-0:-ms-input-placeholder { + --tw-placeholder-opacity: 0 !important; + } + + .lg\:placeholder-opacity-0::placeholder { + --tw-placeholder-opacity: 0 !important; + } + + .lg\:placeholder-opacity-5::-moz-placeholder { + --tw-placeholder-opacity: 0.05 !important; + } + + .lg\:placeholder-opacity-5:-ms-input-placeholder { + --tw-placeholder-opacity: 0.05 !important; + } + + .lg\:placeholder-opacity-5::placeholder { + --tw-placeholder-opacity: 0.05 !important; + } + + .lg\:placeholder-opacity-10::-moz-placeholder { + --tw-placeholder-opacity: 0.1 !important; + } + + .lg\:placeholder-opacity-10:-ms-input-placeholder { + --tw-placeholder-opacity: 0.1 !important; + } + + .lg\:placeholder-opacity-10::placeholder { + --tw-placeholder-opacity: 0.1 !important; + } + + .lg\:placeholder-opacity-20::-moz-placeholder { + --tw-placeholder-opacity: 0.2 !important; + } + + .lg\:placeholder-opacity-20:-ms-input-placeholder { + --tw-placeholder-opacity: 0.2 !important; + } + + .lg\:placeholder-opacity-20::placeholder { + --tw-placeholder-opacity: 0.2 !important; + } + + .lg\:placeholder-opacity-25::-moz-placeholder { + --tw-placeholder-opacity: 0.25 !important; + } + + .lg\:placeholder-opacity-25:-ms-input-placeholder { + --tw-placeholder-opacity: 0.25 !important; + } + + .lg\:placeholder-opacity-25::placeholder { + --tw-placeholder-opacity: 0.25 !important; + } + + .lg\:placeholder-opacity-30::-moz-placeholder { + --tw-placeholder-opacity: 0.3 !important; + } + + .lg\:placeholder-opacity-30:-ms-input-placeholder { + --tw-placeholder-opacity: 0.3 !important; + } + + .lg\:placeholder-opacity-30::placeholder { + --tw-placeholder-opacity: 0.3 !important; + } + + .lg\:placeholder-opacity-40::-moz-placeholder { + --tw-placeholder-opacity: 0.4 !important; + } + + .lg\:placeholder-opacity-40:-ms-input-placeholder { + --tw-placeholder-opacity: 0.4 !important; + } + + .lg\:placeholder-opacity-40::placeholder { + --tw-placeholder-opacity: 0.4 !important; + } + + .lg\:placeholder-opacity-50::-moz-placeholder { + --tw-placeholder-opacity: 0.5 !important; + } + + .lg\:placeholder-opacity-50:-ms-input-placeholder { + --tw-placeholder-opacity: 0.5 !important; + } + + .lg\:placeholder-opacity-50::placeholder { + --tw-placeholder-opacity: 0.5 !important; + } + + .lg\:placeholder-opacity-60::-moz-placeholder { + --tw-placeholder-opacity: 0.6 !important; + } + + .lg\:placeholder-opacity-60:-ms-input-placeholder { + --tw-placeholder-opacity: 0.6 !important; + } + + .lg\:placeholder-opacity-60::placeholder { + --tw-placeholder-opacity: 0.6 !important; + } + + .lg\:placeholder-opacity-70::-moz-placeholder { + --tw-placeholder-opacity: 0.7 !important; + } + + .lg\:placeholder-opacity-70:-ms-input-placeholder { + --tw-placeholder-opacity: 0.7 !important; + } + + .lg\:placeholder-opacity-70::placeholder { + --tw-placeholder-opacity: 0.7 !important; + } + + .lg\:placeholder-opacity-75::-moz-placeholder { + --tw-placeholder-opacity: 0.75 !important; + } + + .lg\:placeholder-opacity-75:-ms-input-placeholder { + --tw-placeholder-opacity: 0.75 !important; + } + + .lg\:placeholder-opacity-75::placeholder { + --tw-placeholder-opacity: 0.75 !important; + } + + .lg\:placeholder-opacity-80::-moz-placeholder { + --tw-placeholder-opacity: 0.8 !important; + } + + .lg\:placeholder-opacity-80:-ms-input-placeholder { + --tw-placeholder-opacity: 0.8 !important; + } + + .lg\:placeholder-opacity-80::placeholder { + --tw-placeholder-opacity: 0.8 !important; + } + + .lg\:placeholder-opacity-90::-moz-placeholder { + --tw-placeholder-opacity: 0.9 !important; + } + + .lg\:placeholder-opacity-90:-ms-input-placeholder { + --tw-placeholder-opacity: 0.9 !important; + } + + .lg\:placeholder-opacity-90::placeholder { + --tw-placeholder-opacity: 0.9 !important; + } + + .lg\:placeholder-opacity-95::-moz-placeholder { + --tw-placeholder-opacity: 0.95 !important; + } + + .lg\:placeholder-opacity-95:-ms-input-placeholder { + --tw-placeholder-opacity: 0.95 !important; + } + + .lg\:placeholder-opacity-95::placeholder { + --tw-placeholder-opacity: 0.95 !important; + } + + .lg\:placeholder-opacity-100::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + } + + .lg\:placeholder-opacity-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + } + + .lg\:placeholder-opacity-100::placeholder { + --tw-placeholder-opacity: 1 !important; + } + + .lg\:focus\:placeholder-opacity-0:focus::-moz-placeholder { + --tw-placeholder-opacity: 0 !important; + } + + .lg\:focus\:placeholder-opacity-0:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0 !important; + } + + .lg\:focus\:placeholder-opacity-0:focus::placeholder { + --tw-placeholder-opacity: 0 !important; + } + + .lg\:focus\:placeholder-opacity-5:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.05 !important; + } + + .lg\:focus\:placeholder-opacity-5:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.05 !important; + } + + .lg\:focus\:placeholder-opacity-5:focus::placeholder { + --tw-placeholder-opacity: 0.05 !important; + } + + .lg\:focus\:placeholder-opacity-10:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.1 !important; + } + + .lg\:focus\:placeholder-opacity-10:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.1 !important; + } + + .lg\:focus\:placeholder-opacity-10:focus::placeholder { + --tw-placeholder-opacity: 0.1 !important; + } + + .lg\:focus\:placeholder-opacity-20:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.2 !important; + } + + .lg\:focus\:placeholder-opacity-20:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.2 !important; + } + + .lg\:focus\:placeholder-opacity-20:focus::placeholder { + --tw-placeholder-opacity: 0.2 !important; + } + + .lg\:focus\:placeholder-opacity-25:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.25 !important; + } + + .lg\:focus\:placeholder-opacity-25:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.25 !important; + } + + .lg\:focus\:placeholder-opacity-25:focus::placeholder { + --tw-placeholder-opacity: 0.25 !important; + } + + .lg\:focus\:placeholder-opacity-30:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.3 !important; + } + + .lg\:focus\:placeholder-opacity-30:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.3 !important; + } + + .lg\:focus\:placeholder-opacity-30:focus::placeholder { + --tw-placeholder-opacity: 0.3 !important; + } + + .lg\:focus\:placeholder-opacity-40:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.4 !important; + } + + .lg\:focus\:placeholder-opacity-40:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.4 !important; + } + + .lg\:focus\:placeholder-opacity-40:focus::placeholder { + --tw-placeholder-opacity: 0.4 !important; + } + + .lg\:focus\:placeholder-opacity-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.5 !important; + } + + .lg\:focus\:placeholder-opacity-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.5 !important; + } + + .lg\:focus\:placeholder-opacity-50:focus::placeholder { + --tw-placeholder-opacity: 0.5 !important; + } + + .lg\:focus\:placeholder-opacity-60:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.6 !important; + } + + .lg\:focus\:placeholder-opacity-60:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.6 !important; + } + + .lg\:focus\:placeholder-opacity-60:focus::placeholder { + --tw-placeholder-opacity: 0.6 !important; + } + + .lg\:focus\:placeholder-opacity-70:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.7 !important; + } + + .lg\:focus\:placeholder-opacity-70:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.7 !important; + } + + .lg\:focus\:placeholder-opacity-70:focus::placeholder { + --tw-placeholder-opacity: 0.7 !important; + } + + .lg\:focus\:placeholder-opacity-75:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.75 !important; + } + + .lg\:focus\:placeholder-opacity-75:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.75 !important; + } + + .lg\:focus\:placeholder-opacity-75:focus::placeholder { + --tw-placeholder-opacity: 0.75 !important; + } + + .lg\:focus\:placeholder-opacity-80:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.8 !important; + } + + .lg\:focus\:placeholder-opacity-80:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.8 !important; + } + + .lg\:focus\:placeholder-opacity-80:focus::placeholder { + --tw-placeholder-opacity: 0.8 !important; + } + + .lg\:focus\:placeholder-opacity-90:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.9 !important; + } + + .lg\:focus\:placeholder-opacity-90:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.9 !important; + } + + .lg\:focus\:placeholder-opacity-90:focus::placeholder { + --tw-placeholder-opacity: 0.9 !important; + } + + .lg\:focus\:placeholder-opacity-95:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.95 !important; + } + + .lg\:focus\:placeholder-opacity-95:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.95 !important; + } + + .lg\:focus\:placeholder-opacity-95:focus::placeholder { + --tw-placeholder-opacity: 0.95 !important; + } + + .lg\:focus\:placeholder-opacity-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + } + + .lg\:focus\:placeholder-opacity-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + } + + .lg\:focus\:placeholder-opacity-100:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + } + + .lg\:pointer-events-none { + pointer-events: none !important; + } + + .lg\:pointer-events-auto { + pointer-events: auto !important; + } + + .lg\:static { + position: static !important; + } + + .lg\:fixed { + position: fixed !important; + } + + .lg\:absolute { + position: absolute !important; + } + + .lg\:relative { + position: relative !important; + } + + .lg\:sticky { + position: sticky !important; + } + + .lg\:inset-0 { + top: 0px !important; + right: 0px !important; + bottom: 0px !important; + left: 0px !important; + } + + .lg\:inset-1 { + top: 0.25rem !important; + right: 0.25rem !important; + bottom: 0.25rem !important; + left: 0.25rem !important; + } + + .lg\:inset-2 { + top: 0.5rem !important; + right: 0.5rem !important; + bottom: 0.5rem !important; + left: 0.5rem !important; + } + + .lg\:inset-3 { + top: 0.75rem !important; + right: 0.75rem !important; + bottom: 0.75rem !important; + left: 0.75rem !important; + } + + .lg\:inset-4 { + top: 1rem !important; + right: 1rem !important; + bottom: 1rem !important; + left: 1rem !important; + } + + .lg\:inset-5 { + top: 1.25rem !important; + right: 1.25rem !important; + bottom: 1.25rem !important; + left: 1.25rem !important; + } + + .lg\:inset-6 { + top: 1.5rem !important; + right: 1.5rem !important; + bottom: 1.5rem !important; + left: 1.5rem !important; + } + + .lg\:inset-7 { + top: 1.75rem !important; + right: 1.75rem !important; + bottom: 1.75rem !important; + left: 1.75rem !important; + } + + .lg\:inset-8 { + top: 2rem !important; + right: 2rem !important; + bottom: 2rem !important; + left: 2rem !important; + } + + .lg\:inset-9 { + top: 2.25rem !important; + right: 2.25rem !important; + bottom: 2.25rem !important; + left: 2.25rem !important; + } + + .lg\:inset-10 { + top: 2.5rem !important; + right: 2.5rem !important; + bottom: 2.5rem !important; + left: 2.5rem !important; + } + + .lg\:inset-11 { + top: 2.75rem !important; + right: 2.75rem !important; + bottom: 2.75rem !important; + left: 2.75rem !important; + } + + .lg\:inset-12 { + top: 3rem !important; + right: 3rem !important; + bottom: 3rem !important; + left: 3rem !important; + } + + .lg\:inset-14 { + top: 3.5rem !important; + right: 3.5rem !important; + bottom: 3.5rem !important; + left: 3.5rem !important; + } + + .lg\:inset-16 { + top: 4rem !important; + right: 4rem !important; + bottom: 4rem !important; + left: 4rem !important; + } + + .lg\:inset-20 { + top: 5rem !important; + right: 5rem !important; + bottom: 5rem !important; + left: 5rem !important; + } + + .lg\:inset-24 { + top: 6rem !important; + right: 6rem !important; + bottom: 6rem !important; + left: 6rem !important; + } + + .lg\:inset-28 { + top: 7rem !important; + right: 7rem !important; + bottom: 7rem !important; + left: 7rem !important; + } + + .lg\:inset-32 { + top: 8rem !important; + right: 8rem !important; + bottom: 8rem !important; + left: 8rem !important; + } + + .lg\:inset-36 { + top: 9rem !important; + right: 9rem !important; + bottom: 9rem !important; + left: 9rem !important; + } + + .lg\:inset-40 { + top: 10rem !important; + right: 10rem !important; + bottom: 10rem !important; + left: 10rem !important; + } + + .lg\:inset-44 { + top: 11rem !important; + right: 11rem !important; + bottom: 11rem !important; + left: 11rem !important; + } + + .lg\:inset-48 { + top: 12rem !important; + right: 12rem !important; + bottom: 12rem !important; + left: 12rem !important; + } + + .lg\:inset-52 { + top: 13rem !important; + right: 13rem !important; + bottom: 13rem !important; + left: 13rem !important; + } + + .lg\:inset-56 { + top: 14rem !important; + right: 14rem !important; + bottom: 14rem !important; + left: 14rem !important; + } + + .lg\:inset-60 { + top: 15rem !important; + right: 15rem !important; + bottom: 15rem !important; + left: 15rem !important; + } + + .lg\:inset-64 { + top: 16rem !important; + right: 16rem !important; + bottom: 16rem !important; + left: 16rem !important; + } + + .lg\:inset-72 { + top: 18rem !important; + right: 18rem !important; + bottom: 18rem !important; + left: 18rem !important; + } + + .lg\:inset-80 { + top: 20rem !important; + right: 20rem !important; + bottom: 20rem !important; + left: 20rem !important; + } + + .lg\:inset-96 { + top: 24rem !important; + right: 24rem !important; + bottom: 24rem !important; + left: 24rem !important; + } + + .lg\:inset-auto { + top: auto !important; + right: auto !important; + bottom: auto !important; + left: auto !important; + } + + .lg\:inset-px { + top: 1px !important; + right: 1px !important; + bottom: 1px !important; + left: 1px !important; + } + + .lg\:inset-0\.5 { + top: 0.125rem !important; + right: 0.125rem !important; + bottom: 0.125rem !important; + left: 0.125rem !important; + } + + .lg\:inset-1\.5 { + top: 0.375rem !important; + right: 0.375rem !important; + bottom: 0.375rem !important; + left: 0.375rem !important; + } + + .lg\:inset-2\.5 { + top: 0.625rem !important; + right: 0.625rem !important; + bottom: 0.625rem !important; + left: 0.625rem !important; + } + + .lg\:inset-3\.5 { + top: 0.875rem !important; + right: 0.875rem !important; + bottom: 0.875rem !important; + left: 0.875rem !important; + } + + .lg\:-inset-0 { + top: 0px !important; + right: 0px !important; + bottom: 0px !important; + left: 0px !important; + } + + .lg\:-inset-1 { + top: -0.25rem !important; + right: -0.25rem !important; + bottom: -0.25rem !important; + left: -0.25rem !important; + } + + .lg\:-inset-2 { + top: -0.5rem !important; + right: -0.5rem !important; + bottom: -0.5rem !important; + left: -0.5rem !important; + } + + .lg\:-inset-3 { + top: -0.75rem !important; + right: -0.75rem !important; + bottom: -0.75rem !important; + left: -0.75rem !important; + } + + .lg\:-inset-4 { + top: -1rem !important; + right: -1rem !important; + bottom: -1rem !important; + left: -1rem !important; + } + + .lg\:-inset-5 { + top: -1.25rem !important; + right: -1.25rem !important; + bottom: -1.25rem !important; + left: -1.25rem !important; + } + + .lg\:-inset-6 { + top: -1.5rem !important; + right: -1.5rem !important; + bottom: -1.5rem !important; + left: -1.5rem !important; + } + + .lg\:-inset-7 { + top: -1.75rem !important; + right: -1.75rem !important; + bottom: -1.75rem !important; + left: -1.75rem !important; + } + + .lg\:-inset-8 { + top: -2rem !important; + right: -2rem !important; + bottom: -2rem !important; + left: -2rem !important; + } + + .lg\:-inset-9 { + top: -2.25rem !important; + right: -2.25rem !important; + bottom: -2.25rem !important; + left: -2.25rem !important; + } + + .lg\:-inset-10 { + top: -2.5rem !important; + right: -2.5rem !important; + bottom: -2.5rem !important; + left: -2.5rem !important; + } + + .lg\:-inset-11 { + top: -2.75rem !important; + right: -2.75rem !important; + bottom: -2.75rem !important; + left: -2.75rem !important; + } + + .lg\:-inset-12 { + top: -3rem !important; + right: -3rem !important; + bottom: -3rem !important; + left: -3rem !important; + } + + .lg\:-inset-14 { + top: -3.5rem !important; + right: -3.5rem !important; + bottom: -3.5rem !important; + left: -3.5rem !important; + } + + .lg\:-inset-16 { + top: -4rem !important; + right: -4rem !important; + bottom: -4rem !important; + left: -4rem !important; + } + + .lg\:-inset-20 { + top: -5rem !important; + right: -5rem !important; + bottom: -5rem !important; + left: -5rem !important; + } + + .lg\:-inset-24 { + top: -6rem !important; + right: -6rem !important; + bottom: -6rem !important; + left: -6rem !important; + } + + .lg\:-inset-28 { + top: -7rem !important; + right: -7rem !important; + bottom: -7rem !important; + left: -7rem !important; + } + + .lg\:-inset-32 { + top: -8rem !important; + right: -8rem !important; + bottom: -8rem !important; + left: -8rem !important; + } + + .lg\:-inset-36 { + top: -9rem !important; + right: -9rem !important; + bottom: -9rem !important; + left: -9rem !important; + } + + .lg\:-inset-40 { + top: -10rem !important; + right: -10rem !important; + bottom: -10rem !important; + left: -10rem !important; + } + + .lg\:-inset-44 { + top: -11rem !important; + right: -11rem !important; + bottom: -11rem !important; + left: -11rem !important; + } + + .lg\:-inset-48 { + top: -12rem !important; + right: -12rem !important; + bottom: -12rem !important; + left: -12rem !important; + } + + .lg\:-inset-52 { + top: -13rem !important; + right: -13rem !important; + bottom: -13rem !important; + left: -13rem !important; + } + + .lg\:-inset-56 { + top: -14rem !important; + right: -14rem !important; + bottom: -14rem !important; + left: -14rem !important; + } + + .lg\:-inset-60 { + top: -15rem !important; + right: -15rem !important; + bottom: -15rem !important; + left: -15rem !important; + } + + .lg\:-inset-64 { + top: -16rem !important; + right: -16rem !important; + bottom: -16rem !important; + left: -16rem !important; + } + + .lg\:-inset-72 { + top: -18rem !important; + right: -18rem !important; + bottom: -18rem !important; + left: -18rem !important; + } + + .lg\:-inset-80 { + top: -20rem !important; + right: -20rem !important; + bottom: -20rem !important; + left: -20rem !important; + } + + .lg\:-inset-96 { + top: -24rem !important; + right: -24rem !important; + bottom: -24rem !important; + left: -24rem !important; + } + + .lg\:-inset-px { + top: -1px !important; + right: -1px !important; + bottom: -1px !important; + left: -1px !important; + } + + .lg\:-inset-0\.5 { + top: -0.125rem !important; + right: -0.125rem !important; + bottom: -0.125rem !important; + left: -0.125rem !important; + } + + .lg\:-inset-1\.5 { + top: -0.375rem !important; + right: -0.375rem !important; + bottom: -0.375rem !important; + left: -0.375rem !important; + } + + .lg\:-inset-2\.5 { + top: -0.625rem !important; + right: -0.625rem !important; + bottom: -0.625rem !important; + left: -0.625rem !important; + } + + .lg\:-inset-3\.5 { + top: -0.875rem !important; + right: -0.875rem !important; + bottom: -0.875rem !important; + left: -0.875rem !important; + } + + .lg\:inset-1\/2 { + top: 50% !important; + right: 50% !important; + bottom: 50% !important; + left: 50% !important; + } + + .lg\:inset-1\/3 { + top: 33.333333% !important; + right: 33.333333% !important; + bottom: 33.333333% !important; + left: 33.333333% !important; + } + + .lg\:inset-2\/3 { + top: 66.666667% !important; + right: 66.666667% !important; + bottom: 66.666667% !important; + left: 66.666667% !important; + } + + .lg\:inset-1\/4 { + top: 25% !important; + right: 25% !important; + bottom: 25% !important; + left: 25% !important; + } + + .lg\:inset-2\/4 { + top: 50% !important; + right: 50% !important; + bottom: 50% !important; + left: 50% !important; + } + + .lg\:inset-3\/4 { + top: 75% !important; + right: 75% !important; + bottom: 75% !important; + left: 75% !important; + } + + .lg\:inset-full { + top: 100% !important; + right: 100% !important; + bottom: 100% !important; + left: 100% !important; + } + + .lg\:-inset-1\/2 { + top: -50% !important; + right: -50% !important; + bottom: -50% !important; + left: -50% !important; + } + + .lg\:-inset-1\/3 { + top: -33.333333% !important; + right: -33.333333% !important; + bottom: -33.333333% !important; + left: -33.333333% !important; + } + + .lg\:-inset-2\/3 { + top: -66.666667% !important; + right: -66.666667% !important; + bottom: -66.666667% !important; + left: -66.666667% !important; + } + + .lg\:-inset-1\/4 { + top: -25% !important; + right: -25% !important; + bottom: -25% !important; + left: -25% !important; + } + + .lg\:-inset-2\/4 { + top: -50% !important; + right: -50% !important; + bottom: -50% !important; + left: -50% !important; + } + + .lg\:-inset-3\/4 { + top: -75% !important; + right: -75% !important; + bottom: -75% !important; + left: -75% !important; + } + + .lg\:-inset-full { + top: -100% !important; + right: -100% !important; + bottom: -100% !important; + left: -100% !important; + } + + .lg\:inset-y-0 { + top: 0px !important; + bottom: 0px !important; + } + + .lg\:inset-x-0 { + right: 0px !important; + left: 0px !important; + } + + .lg\:inset-y-1 { + top: 0.25rem !important; + bottom: 0.25rem !important; + } + + .lg\:inset-x-1 { + right: 0.25rem !important; + left: 0.25rem !important; + } + + .lg\:inset-y-2 { + top: 0.5rem !important; + bottom: 0.5rem !important; + } + + .lg\:inset-x-2 { + right: 0.5rem !important; + left: 0.5rem !important; + } + + .lg\:inset-y-3 { + top: 0.75rem !important; + bottom: 0.75rem !important; + } + + .lg\:inset-x-3 { + right: 0.75rem !important; + left: 0.75rem !important; + } + + .lg\:inset-y-4 { + top: 1rem !important; + bottom: 1rem !important; + } + + .lg\:inset-x-4 { + right: 1rem !important; + left: 1rem !important; + } + + .lg\:inset-y-5 { + top: 1.25rem !important; + bottom: 1.25rem !important; + } + + .lg\:inset-x-5 { + right: 1.25rem !important; + left: 1.25rem !important; + } + + .lg\:inset-y-6 { + top: 1.5rem !important; + bottom: 1.5rem !important; + } + + .lg\:inset-x-6 { + right: 1.5rem !important; + left: 1.5rem !important; + } + + .lg\:inset-y-7 { + top: 1.75rem !important; + bottom: 1.75rem !important; + } + + .lg\:inset-x-7 { + right: 1.75rem !important; + left: 1.75rem !important; + } + + .lg\:inset-y-8 { + top: 2rem !important; + bottom: 2rem !important; + } + + .lg\:inset-x-8 { + right: 2rem !important; + left: 2rem !important; + } + + .lg\:inset-y-9 { + top: 2.25rem !important; + bottom: 2.25rem !important; + } + + .lg\:inset-x-9 { + right: 2.25rem !important; + left: 2.25rem !important; + } + + .lg\:inset-y-10 { + top: 2.5rem !important; + bottom: 2.5rem !important; + } + + .lg\:inset-x-10 { + right: 2.5rem !important; + left: 2.5rem !important; + } + + .lg\:inset-y-11 { + top: 2.75rem !important; + bottom: 2.75rem !important; + } + + .lg\:inset-x-11 { + right: 2.75rem !important; + left: 2.75rem !important; + } + + .lg\:inset-y-12 { + top: 3rem !important; + bottom: 3rem !important; + } + + .lg\:inset-x-12 { + right: 3rem !important; + left: 3rem !important; + } + + .lg\:inset-y-14 { + top: 3.5rem !important; + bottom: 3.5rem !important; + } + + .lg\:inset-x-14 { + right: 3.5rem !important; + left: 3.5rem !important; + } + + .lg\:inset-y-16 { + top: 4rem !important; + bottom: 4rem !important; + } + + .lg\:inset-x-16 { + right: 4rem !important; + left: 4rem !important; + } + + .lg\:inset-y-20 { + top: 5rem !important; + bottom: 5rem !important; + } + + .lg\:inset-x-20 { + right: 5rem !important; + left: 5rem !important; + } + + .lg\:inset-y-24 { + top: 6rem !important; + bottom: 6rem !important; + } + + .lg\:inset-x-24 { + right: 6rem !important; + left: 6rem !important; + } + + .lg\:inset-y-28 { + top: 7rem !important; + bottom: 7rem !important; + } + + .lg\:inset-x-28 { + right: 7rem !important; + left: 7rem !important; + } + + .lg\:inset-y-32 { + top: 8rem !important; + bottom: 8rem !important; + } + + .lg\:inset-x-32 { + right: 8rem !important; + left: 8rem !important; + } + + .lg\:inset-y-36 { + top: 9rem !important; + bottom: 9rem !important; + } + + .lg\:inset-x-36 { + right: 9rem !important; + left: 9rem !important; + } + + .lg\:inset-y-40 { + top: 10rem !important; + bottom: 10rem !important; + } + + .lg\:inset-x-40 { + right: 10rem !important; + left: 10rem !important; + } + + .lg\:inset-y-44 { + top: 11rem !important; + bottom: 11rem !important; + } + + .lg\:inset-x-44 { + right: 11rem !important; + left: 11rem !important; + } + + .lg\:inset-y-48 { + top: 12rem !important; + bottom: 12rem !important; + } + + .lg\:inset-x-48 { + right: 12rem !important; + left: 12rem !important; + } + + .lg\:inset-y-52 { + top: 13rem !important; + bottom: 13rem !important; + } + + .lg\:inset-x-52 { + right: 13rem !important; + left: 13rem !important; + } + + .lg\:inset-y-56 { + top: 14rem !important; + bottom: 14rem !important; + } + + .lg\:inset-x-56 { + right: 14rem !important; + left: 14rem !important; + } + + .lg\:inset-y-60 { + top: 15rem !important; + bottom: 15rem !important; + } + + .lg\:inset-x-60 { + right: 15rem !important; + left: 15rem !important; + } + + .lg\:inset-y-64 { + top: 16rem !important; + bottom: 16rem !important; + } + + .lg\:inset-x-64 { + right: 16rem !important; + left: 16rem !important; + } + + .lg\:inset-y-72 { + top: 18rem !important; + bottom: 18rem !important; + } + + .lg\:inset-x-72 { + right: 18rem !important; + left: 18rem !important; + } + + .lg\:inset-y-80 { + top: 20rem !important; + bottom: 20rem !important; + } + + .lg\:inset-x-80 { + right: 20rem !important; + left: 20rem !important; + } + + .lg\:inset-y-96 { + top: 24rem !important; + bottom: 24rem !important; + } + + .lg\:inset-x-96 { + right: 24rem !important; + left: 24rem !important; + } + + .lg\:inset-y-auto { + top: auto !important; + bottom: auto !important; + } + + .lg\:inset-x-auto { + right: auto !important; + left: auto !important; + } + + .lg\:inset-y-px { + top: 1px !important; + bottom: 1px !important; + } + + .lg\:inset-x-px { + right: 1px !important; + left: 1px !important; + } + + .lg\:inset-y-0\.5 { + top: 0.125rem !important; + bottom: 0.125rem !important; + } + + .lg\:inset-x-0\.5 { + right: 0.125rem !important; + left: 0.125rem !important; + } + + .lg\:inset-y-1\.5 { + top: 0.375rem !important; + bottom: 0.375rem !important; + } + + .lg\:inset-x-1\.5 { + right: 0.375rem !important; + left: 0.375rem !important; + } + + .lg\:inset-y-2\.5 { + top: 0.625rem !important; + bottom: 0.625rem !important; + } + + .lg\:inset-x-2\.5 { + right: 0.625rem !important; + left: 0.625rem !important; + } + + .lg\:inset-y-3\.5 { + top: 0.875rem !important; + bottom: 0.875rem !important; + } + + .lg\:inset-x-3\.5 { + right: 0.875rem !important; + left: 0.875rem !important; + } + + .lg\:-inset-y-0 { + top: 0px !important; + bottom: 0px !important; + } + + .lg\:-inset-x-0 { + right: 0px !important; + left: 0px !important; + } + + .lg\:-inset-y-1 { + top: -0.25rem !important; + bottom: -0.25rem !important; + } + + .lg\:-inset-x-1 { + right: -0.25rem !important; + left: -0.25rem !important; + } + + .lg\:-inset-y-2 { + top: -0.5rem !important; + bottom: -0.5rem !important; + } + + .lg\:-inset-x-2 { + right: -0.5rem !important; + left: -0.5rem !important; + } + + .lg\:-inset-y-3 { + top: -0.75rem !important; + bottom: -0.75rem !important; + } + + .lg\:-inset-x-3 { + right: -0.75rem !important; + left: -0.75rem !important; + } + + .lg\:-inset-y-4 { + top: -1rem !important; + bottom: -1rem !important; + } + + .lg\:-inset-x-4 { + right: -1rem !important; + left: -1rem !important; + } + + .lg\:-inset-y-5 { + top: -1.25rem !important; + bottom: -1.25rem !important; + } + + .lg\:-inset-x-5 { + right: -1.25rem !important; + left: -1.25rem !important; + } + + .lg\:-inset-y-6 { + top: -1.5rem !important; + bottom: -1.5rem !important; + } + + .lg\:-inset-x-6 { + right: -1.5rem !important; + left: -1.5rem !important; + } + + .lg\:-inset-y-7 { + top: -1.75rem !important; + bottom: -1.75rem !important; + } + + .lg\:-inset-x-7 { + right: -1.75rem !important; + left: -1.75rem !important; + } + + .lg\:-inset-y-8 { + top: -2rem !important; + bottom: -2rem !important; + } + + .lg\:-inset-x-8 { + right: -2rem !important; + left: -2rem !important; + } + + .lg\:-inset-y-9 { + top: -2.25rem !important; + bottom: -2.25rem !important; + } + + .lg\:-inset-x-9 { + right: -2.25rem !important; + left: -2.25rem !important; + } + + .lg\:-inset-y-10 { + top: -2.5rem !important; + bottom: -2.5rem !important; + } + + .lg\:-inset-x-10 { + right: -2.5rem !important; + left: -2.5rem !important; + } + + .lg\:-inset-y-11 { + top: -2.75rem !important; + bottom: -2.75rem !important; + } + + .lg\:-inset-x-11 { + right: -2.75rem !important; + left: -2.75rem !important; + } + + .lg\:-inset-y-12 { + top: -3rem !important; + bottom: -3rem !important; + } + + .lg\:-inset-x-12 { + right: -3rem !important; + left: -3rem !important; + } + + .lg\:-inset-y-14 { + top: -3.5rem !important; + bottom: -3.5rem !important; + } + + .lg\:-inset-x-14 { + right: -3.5rem !important; + left: -3.5rem !important; + } + + .lg\:-inset-y-16 { + top: -4rem !important; + bottom: -4rem !important; + } + + .lg\:-inset-x-16 { + right: -4rem !important; + left: -4rem !important; + } + + .lg\:-inset-y-20 { + top: -5rem !important; + bottom: -5rem !important; + } + + .lg\:-inset-x-20 { + right: -5rem !important; + left: -5rem !important; + } + + .lg\:-inset-y-24 { + top: -6rem !important; + bottom: -6rem !important; + } + + .lg\:-inset-x-24 { + right: -6rem !important; + left: -6rem !important; + } + + .lg\:-inset-y-28 { + top: -7rem !important; + bottom: -7rem !important; + } + + .lg\:-inset-x-28 { + right: -7rem !important; + left: -7rem !important; + } + + .lg\:-inset-y-32 { + top: -8rem !important; + bottom: -8rem !important; + } + + .lg\:-inset-x-32 { + right: -8rem !important; + left: -8rem !important; + } + + .lg\:-inset-y-36 { + top: -9rem !important; + bottom: -9rem !important; + } + + .lg\:-inset-x-36 { + right: -9rem !important; + left: -9rem !important; + } + + .lg\:-inset-y-40 { + top: -10rem !important; + bottom: -10rem !important; + } + + .lg\:-inset-x-40 { + right: -10rem !important; + left: -10rem !important; + } + + .lg\:-inset-y-44 { + top: -11rem !important; + bottom: -11rem !important; + } + + .lg\:-inset-x-44 { + right: -11rem !important; + left: -11rem !important; + } + + .lg\:-inset-y-48 { + top: -12rem !important; + bottom: -12rem !important; + } + + .lg\:-inset-x-48 { + right: -12rem !important; + left: -12rem !important; + } + + .lg\:-inset-y-52 { + top: -13rem !important; + bottom: -13rem !important; + } + + .lg\:-inset-x-52 { + right: -13rem !important; + left: -13rem !important; + } + + .lg\:-inset-y-56 { + top: -14rem !important; + bottom: -14rem !important; + } + + .lg\:-inset-x-56 { + right: -14rem !important; + left: -14rem !important; + } + + .lg\:-inset-y-60 { + top: -15rem !important; + bottom: -15rem !important; + } + + .lg\:-inset-x-60 { + right: -15rem !important; + left: -15rem !important; + } + + .lg\:-inset-y-64 { + top: -16rem !important; + bottom: -16rem !important; + } + + .lg\:-inset-x-64 { + right: -16rem !important; + left: -16rem !important; + } + + .lg\:-inset-y-72 { + top: -18rem !important; + bottom: -18rem !important; + } + + .lg\:-inset-x-72 { + right: -18rem !important; + left: -18rem !important; + } + + .lg\:-inset-y-80 { + top: -20rem !important; + bottom: -20rem !important; + } + + .lg\:-inset-x-80 { + right: -20rem !important; + left: -20rem !important; + } + + .lg\:-inset-y-96 { + top: -24rem !important; + bottom: -24rem !important; + } + + .lg\:-inset-x-96 { + right: -24rem !important; + left: -24rem !important; + } + + .lg\:-inset-y-px { + top: -1px !important; + bottom: -1px !important; + } + + .lg\:-inset-x-px { + right: -1px !important; + left: -1px !important; + } + + .lg\:-inset-y-0\.5 { + top: -0.125rem !important; + bottom: -0.125rem !important; + } + + .lg\:-inset-x-0\.5 { + right: -0.125rem !important; + left: -0.125rem !important; + } + + .lg\:-inset-y-1\.5 { + top: -0.375rem !important; + bottom: -0.375rem !important; + } + + .lg\:-inset-x-1\.5 { + right: -0.375rem !important; + left: -0.375rem !important; + } + + .lg\:-inset-y-2\.5 { + top: -0.625rem !important; + bottom: -0.625rem !important; + } + + .lg\:-inset-x-2\.5 { + right: -0.625rem !important; + left: -0.625rem !important; + } + + .lg\:-inset-y-3\.5 { + top: -0.875rem !important; + bottom: -0.875rem !important; + } + + .lg\:-inset-x-3\.5 { + right: -0.875rem !important; + left: -0.875rem !important; + } + + .lg\:inset-y-1\/2 { + top: 50% !important; + bottom: 50% !important; + } + + .lg\:inset-x-1\/2 { + right: 50% !important; + left: 50% !important; + } + + .lg\:inset-y-1\/3 { + top: 33.333333% !important; + bottom: 33.333333% !important; + } + + .lg\:inset-x-1\/3 { + right: 33.333333% !important; + left: 33.333333% !important; + } + + .lg\:inset-y-2\/3 { + top: 66.666667% !important; + bottom: 66.666667% !important; + } + + .lg\:inset-x-2\/3 { + right: 66.666667% !important; + left: 66.666667% !important; + } + + .lg\:inset-y-1\/4 { + top: 25% !important; + bottom: 25% !important; + } + + .lg\:inset-x-1\/4 { + right: 25% !important; + left: 25% !important; + } + + .lg\:inset-y-2\/4 { + top: 50% !important; + bottom: 50% !important; + } + + .lg\:inset-x-2\/4 { + right: 50% !important; + left: 50% !important; + } + + .lg\:inset-y-3\/4 { + top: 75% !important; + bottom: 75% !important; + } + + .lg\:inset-x-3\/4 { + right: 75% !important; + left: 75% !important; + } + + .lg\:inset-y-full { + top: 100% !important; + bottom: 100% !important; + } + + .lg\:inset-x-full { + right: 100% !important; + left: 100% !important; + } + + .lg\:-inset-y-1\/2 { + top: -50% !important; + bottom: -50% !important; + } + + .lg\:-inset-x-1\/2 { + right: -50% !important; + left: -50% !important; + } + + .lg\:-inset-y-1\/3 { + top: -33.333333% !important; + bottom: -33.333333% !important; + } + + .lg\:-inset-x-1\/3 { + right: -33.333333% !important; + left: -33.333333% !important; + } + + .lg\:-inset-y-2\/3 { + top: -66.666667% !important; + bottom: -66.666667% !important; + } + + .lg\:-inset-x-2\/3 { + right: -66.666667% !important; + left: -66.666667% !important; + } + + .lg\:-inset-y-1\/4 { + top: -25% !important; + bottom: -25% !important; + } + + .lg\:-inset-x-1\/4 { + right: -25% !important; + left: -25% !important; + } + + .lg\:-inset-y-2\/4 { + top: -50% !important; + bottom: -50% !important; + } + + .lg\:-inset-x-2\/4 { + right: -50% !important; + left: -50% !important; + } + + .lg\:-inset-y-3\/4 { + top: -75% !important; + bottom: -75% !important; + } + + .lg\:-inset-x-3\/4 { + right: -75% !important; + left: -75% !important; + } + + .lg\:-inset-y-full { + top: -100% !important; + bottom: -100% !important; + } + + .lg\:-inset-x-full { + right: -100% !important; + left: -100% !important; + } + + .lg\:top-0 { + top: 0px !important; + } + + .lg\:right-0 { + right: 0px !important; + } + + .lg\:bottom-0 { + bottom: 0px !important; + } + + .lg\:left-0 { + left: 0px !important; + } + + .lg\:top-1 { + top: 0.25rem !important; + } + + .lg\:right-1 { + right: 0.25rem !important; + } + + .lg\:bottom-1 { + bottom: 0.25rem !important; + } + + .lg\:left-1 { + left: 0.25rem !important; + } + + .lg\:top-2 { + top: 0.5rem !important; + } + + .lg\:right-2 { + right: 0.5rem !important; + } + + .lg\:bottom-2 { + bottom: 0.5rem !important; + } + + .lg\:left-2 { + left: 0.5rem !important; + } + + .lg\:top-3 { + top: 0.75rem !important; + } + + .lg\:right-3 { + right: 0.75rem !important; + } + + .lg\:bottom-3 { + bottom: 0.75rem !important; + } + + .lg\:left-3 { + left: 0.75rem !important; + } + + .lg\:top-4 { + top: 1rem !important; + } + + .lg\:right-4 { + right: 1rem !important; + } + + .lg\:bottom-4 { + bottom: 1rem !important; + } + + .lg\:left-4 { + left: 1rem !important; + } + + .lg\:top-5 { + top: 1.25rem !important; + } + + .lg\:right-5 { + right: 1.25rem !important; + } + + .lg\:bottom-5 { + bottom: 1.25rem !important; + } + + .lg\:left-5 { + left: 1.25rem !important; + } + + .lg\:top-6 { + top: 1.5rem !important; + } + + .lg\:right-6 { + right: 1.5rem !important; + } + + .lg\:bottom-6 { + bottom: 1.5rem !important; + } + + .lg\:left-6 { + left: 1.5rem !important; + } + + .lg\:top-7 { + top: 1.75rem !important; + } + + .lg\:right-7 { + right: 1.75rem !important; + } + + .lg\:bottom-7 { + bottom: 1.75rem !important; + } + + .lg\:left-7 { + left: 1.75rem !important; + } + + .lg\:top-8 { + top: 2rem !important; + } + + .lg\:right-8 { + right: 2rem !important; + } + + .lg\:bottom-8 { + bottom: 2rem !important; + } + + .lg\:left-8 { + left: 2rem !important; + } + + .lg\:top-9 { + top: 2.25rem !important; + } + + .lg\:right-9 { + right: 2.25rem !important; + } + + .lg\:bottom-9 { + bottom: 2.25rem !important; + } + + .lg\:left-9 { + left: 2.25rem !important; + } + + .lg\:top-10 { + top: 2.5rem !important; + } + + .lg\:right-10 { + right: 2.5rem !important; + } + + .lg\:bottom-10 { + bottom: 2.5rem !important; + } + + .lg\:left-10 { + left: 2.5rem !important; + } + + .lg\:top-11 { + top: 2.75rem !important; + } + + .lg\:right-11 { + right: 2.75rem !important; + } + + .lg\:bottom-11 { + bottom: 2.75rem !important; + } + + .lg\:left-11 { + left: 2.75rem !important; + } + + .lg\:top-12 { + top: 3rem !important; + } + + .lg\:right-12 { + right: 3rem !important; + } + + .lg\:bottom-12 { + bottom: 3rem !important; + } + + .lg\:left-12 { + left: 3rem !important; + } + + .lg\:top-14 { + top: 3.5rem !important; + } + + .lg\:right-14 { + right: 3.5rem !important; + } + + .lg\:bottom-14 { + bottom: 3.5rem !important; + } + + .lg\:left-14 { + left: 3.5rem !important; + } + + .lg\:top-16 { + top: 4rem !important; + } + + .lg\:right-16 { + right: 4rem !important; + } + + .lg\:bottom-16 { + bottom: 4rem !important; + } + + .lg\:left-16 { + left: 4rem !important; + } + + .lg\:top-20 { + top: 5rem !important; + } + + .lg\:right-20 { + right: 5rem !important; + } + + .lg\:bottom-20 { + bottom: 5rem !important; + } + + .lg\:left-20 { + left: 5rem !important; + } + + .lg\:top-24 { + top: 6rem !important; + } + + .lg\:right-24 { + right: 6rem !important; + } + + .lg\:bottom-24 { + bottom: 6rem !important; + } + + .lg\:left-24 { + left: 6rem !important; + } + + .lg\:top-28 { + top: 7rem !important; + } + + .lg\:right-28 { + right: 7rem !important; + } + + .lg\:bottom-28 { + bottom: 7rem !important; + } + + .lg\:left-28 { + left: 7rem !important; + } + + .lg\:top-32 { + top: 8rem !important; + } + + .lg\:right-32 { + right: 8rem !important; + } + + .lg\:bottom-32 { + bottom: 8rem !important; + } + + .lg\:left-32 { + left: 8rem !important; + } + + .lg\:top-36 { + top: 9rem !important; + } + + .lg\:right-36 { + right: 9rem !important; + } + + .lg\:bottom-36 { + bottom: 9rem !important; + } + + .lg\:left-36 { + left: 9rem !important; + } + + .lg\:top-40 { + top: 10rem !important; + } + + .lg\:right-40 { + right: 10rem !important; + } + + .lg\:bottom-40 { + bottom: 10rem !important; + } + + .lg\:left-40 { + left: 10rem !important; + } + + .lg\:top-44 { + top: 11rem !important; + } + + .lg\:right-44 { + right: 11rem !important; + } + + .lg\:bottom-44 { + bottom: 11rem !important; + } + + .lg\:left-44 { + left: 11rem !important; + } + + .lg\:top-48 { + top: 12rem !important; + } + + .lg\:right-48 { + right: 12rem !important; + } + + .lg\:bottom-48 { + bottom: 12rem !important; + } + + .lg\:left-48 { + left: 12rem !important; + } + + .lg\:top-52 { + top: 13rem !important; + } + + .lg\:right-52 { + right: 13rem !important; + } + + .lg\:bottom-52 { + bottom: 13rem !important; + } + + .lg\:left-52 { + left: 13rem !important; + } + + .lg\:top-56 { + top: 14rem !important; + } + + .lg\:right-56 { + right: 14rem !important; + } + + .lg\:bottom-56 { + bottom: 14rem !important; + } + + .lg\:left-56 { + left: 14rem !important; + } + + .lg\:top-60 { + top: 15rem !important; + } + + .lg\:right-60 { + right: 15rem !important; + } + + .lg\:bottom-60 { + bottom: 15rem !important; + } + + .lg\:left-60 { + left: 15rem !important; + } + + .lg\:top-64 { + top: 16rem !important; + } + + .lg\:right-64 { + right: 16rem !important; + } + + .lg\:bottom-64 { + bottom: 16rem !important; + } + + .lg\:left-64 { + left: 16rem !important; + } + + .lg\:top-72 { + top: 18rem !important; + } + + .lg\:right-72 { + right: 18rem !important; + } + + .lg\:bottom-72 { + bottom: 18rem !important; + } + + .lg\:left-72 { + left: 18rem !important; + } + + .lg\:top-80 { + top: 20rem !important; + } + + .lg\:right-80 { + right: 20rem !important; + } + + .lg\:bottom-80 { + bottom: 20rem !important; + } + + .lg\:left-80 { + left: 20rem !important; + } + + .lg\:top-96 { + top: 24rem !important; + } + + .lg\:right-96 { + right: 24rem !important; + } + + .lg\:bottom-96 { + bottom: 24rem !important; + } + + .lg\:left-96 { + left: 24rem !important; + } + + .lg\:top-auto { + top: auto !important; + } + + .lg\:right-auto { + right: auto !important; + } + + .lg\:bottom-auto { + bottom: auto !important; + } + + .lg\:left-auto { + left: auto !important; + } + + .lg\:top-px { + top: 1px !important; + } + + .lg\:right-px { + right: 1px !important; + } + + .lg\:bottom-px { + bottom: 1px !important; + } + + .lg\:left-px { + left: 1px !important; + } + + .lg\:top-0\.5 { + top: 0.125rem !important; + } + + .lg\:right-0\.5 { + right: 0.125rem !important; + } + + .lg\:bottom-0\.5 { + bottom: 0.125rem !important; + } + + .lg\:left-0\.5 { + left: 0.125rem !important; + } + + .lg\:top-1\.5 { + top: 0.375rem !important; + } + + .lg\:right-1\.5 { + right: 0.375rem !important; + } + + .lg\:bottom-1\.5 { + bottom: 0.375rem !important; + } + + .lg\:left-1\.5 { + left: 0.375rem !important; + } + + .lg\:top-2\.5 { + top: 0.625rem !important; + } + + .lg\:right-2\.5 { + right: 0.625rem !important; + } + + .lg\:bottom-2\.5 { + bottom: 0.625rem !important; + } + + .lg\:left-2\.5 { + left: 0.625rem !important; + } + + .lg\:top-3\.5 { + top: 0.875rem !important; + } + + .lg\:right-3\.5 { + right: 0.875rem !important; + } + + .lg\:bottom-3\.5 { + bottom: 0.875rem !important; + } + + .lg\:left-3\.5 { + left: 0.875rem !important; + } + + .lg\:-top-0 { + top: 0px !important; + } + + .lg\:-right-0 { + right: 0px !important; + } + + .lg\:-bottom-0 { + bottom: 0px !important; + } + + .lg\:-left-0 { + left: 0px !important; + } + + .lg\:-top-1 { + top: -0.25rem !important; + } + + .lg\:-right-1 { + right: -0.25rem !important; + } + + .lg\:-bottom-1 { + bottom: -0.25rem !important; + } + + .lg\:-left-1 { + left: -0.25rem !important; + } + + .lg\:-top-2 { + top: -0.5rem !important; + } + + .lg\:-right-2 { + right: -0.5rem !important; + } + + .lg\:-bottom-2 { + bottom: -0.5rem !important; + } + + .lg\:-left-2 { + left: -0.5rem !important; + } + + .lg\:-top-3 { + top: -0.75rem !important; + } + + .lg\:-right-3 { + right: -0.75rem !important; + } + + .lg\:-bottom-3 { + bottom: -0.75rem !important; + } + + .lg\:-left-3 { + left: -0.75rem !important; + } + + .lg\:-top-4 { + top: -1rem !important; + } + + .lg\:-right-4 { + right: -1rem !important; + } + + .lg\:-bottom-4 { + bottom: -1rem !important; + } + + .lg\:-left-4 { + left: -1rem !important; + } + + .lg\:-top-5 { + top: -1.25rem !important; + } + + .lg\:-right-5 { + right: -1.25rem !important; + } + + .lg\:-bottom-5 { + bottom: -1.25rem !important; + } + + .lg\:-left-5 { + left: -1.25rem !important; + } + + .lg\:-top-6 { + top: -1.5rem !important; + } + + .lg\:-right-6 { + right: -1.5rem !important; + } + + .lg\:-bottom-6 { + bottom: -1.5rem !important; + } + + .lg\:-left-6 { + left: -1.5rem !important; + } + + .lg\:-top-7 { + top: -1.75rem !important; + } + + .lg\:-right-7 { + right: -1.75rem !important; + } + + .lg\:-bottom-7 { + bottom: -1.75rem !important; + } + + .lg\:-left-7 { + left: -1.75rem !important; + } + + .lg\:-top-8 { + top: -2rem !important; + } + + .lg\:-right-8 { + right: -2rem !important; + } + + .lg\:-bottom-8 { + bottom: -2rem !important; + } + + .lg\:-left-8 { + left: -2rem !important; + } + + .lg\:-top-9 { + top: -2.25rem !important; + } + + .lg\:-right-9 { + right: -2.25rem !important; + } + + .lg\:-bottom-9 { + bottom: -2.25rem !important; + } + + .lg\:-left-9 { + left: -2.25rem !important; + } + + .lg\:-top-10 { + top: -2.5rem !important; + } + + .lg\:-right-10 { + right: -2.5rem !important; + } + + .lg\:-bottom-10 { + bottom: -2.5rem !important; + } + + .lg\:-left-10 { + left: -2.5rem !important; + } + + .lg\:-top-11 { + top: -2.75rem !important; + } + + .lg\:-right-11 { + right: -2.75rem !important; + } + + .lg\:-bottom-11 { + bottom: -2.75rem !important; + } + + .lg\:-left-11 { + left: -2.75rem !important; + } + + .lg\:-top-12 { + top: -3rem !important; + } + + .lg\:-right-12 { + right: -3rem !important; + } + + .lg\:-bottom-12 { + bottom: -3rem !important; + } + + .lg\:-left-12 { + left: -3rem !important; + } + + .lg\:-top-14 { + top: -3.5rem !important; + } + + .lg\:-right-14 { + right: -3.5rem !important; + } + + .lg\:-bottom-14 { + bottom: -3.5rem !important; + } + + .lg\:-left-14 { + left: -3.5rem !important; + } + + .lg\:-top-16 { + top: -4rem !important; + } + + .lg\:-right-16 { + right: -4rem !important; + } + + .lg\:-bottom-16 { + bottom: -4rem !important; + } + + .lg\:-left-16 { + left: -4rem !important; + } + + .lg\:-top-20 { + top: -5rem !important; + } + + .lg\:-right-20 { + right: -5rem !important; + } + + .lg\:-bottom-20 { + bottom: -5rem !important; + } + + .lg\:-left-20 { + left: -5rem !important; + } + + .lg\:-top-24 { + top: -6rem !important; + } + + .lg\:-right-24 { + right: -6rem !important; + } + + .lg\:-bottom-24 { + bottom: -6rem !important; + } + + .lg\:-left-24 { + left: -6rem !important; + } + + .lg\:-top-28 { + top: -7rem !important; + } + + .lg\:-right-28 { + right: -7rem !important; + } + + .lg\:-bottom-28 { + bottom: -7rem !important; + } + + .lg\:-left-28 { + left: -7rem !important; + } + + .lg\:-top-32 { + top: -8rem !important; + } + + .lg\:-right-32 { + right: -8rem !important; + } + + .lg\:-bottom-32 { + bottom: -8rem !important; + } + + .lg\:-left-32 { + left: -8rem !important; + } + + .lg\:-top-36 { + top: -9rem !important; + } + + .lg\:-right-36 { + right: -9rem !important; + } + + .lg\:-bottom-36 { + bottom: -9rem !important; + } + + .lg\:-left-36 { + left: -9rem !important; + } + + .lg\:-top-40 { + top: -10rem !important; + } + + .lg\:-right-40 { + right: -10rem !important; + } + + .lg\:-bottom-40 { + bottom: -10rem !important; + } + + .lg\:-left-40 { + left: -10rem !important; + } + + .lg\:-top-44 { + top: -11rem !important; + } + + .lg\:-right-44 { + right: -11rem !important; + } + + .lg\:-bottom-44 { + bottom: -11rem !important; + } + + .lg\:-left-44 { + left: -11rem !important; + } + + .lg\:-top-48 { + top: -12rem !important; + } + + .lg\:-right-48 { + right: -12rem !important; + } + + .lg\:-bottom-48 { + bottom: -12rem !important; + } + + .lg\:-left-48 { + left: -12rem !important; + } + + .lg\:-top-52 { + top: -13rem !important; + } + + .lg\:-right-52 { + right: -13rem !important; + } + + .lg\:-bottom-52 { + bottom: -13rem !important; + } + + .lg\:-left-52 { + left: -13rem !important; + } + + .lg\:-top-56 { + top: -14rem !important; + } + + .lg\:-right-56 { + right: -14rem !important; + } + + .lg\:-bottom-56 { + bottom: -14rem !important; + } + + .lg\:-left-56 { + left: -14rem !important; + } + + .lg\:-top-60 { + top: -15rem !important; + } + + .lg\:-right-60 { + right: -15rem !important; + } + + .lg\:-bottom-60 { + bottom: -15rem !important; + } + + .lg\:-left-60 { + left: -15rem !important; + } + + .lg\:-top-64 { + top: -16rem !important; + } + + .lg\:-right-64 { + right: -16rem !important; + } + + .lg\:-bottom-64 { + bottom: -16rem !important; + } + + .lg\:-left-64 { + left: -16rem !important; + } + + .lg\:-top-72 { + top: -18rem !important; + } + + .lg\:-right-72 { + right: -18rem !important; + } + + .lg\:-bottom-72 { + bottom: -18rem !important; + } + + .lg\:-left-72 { + left: -18rem !important; + } + + .lg\:-top-80 { + top: -20rem !important; + } + + .lg\:-right-80 { + right: -20rem !important; + } + + .lg\:-bottom-80 { + bottom: -20rem !important; + } + + .lg\:-left-80 { + left: -20rem !important; + } + + .lg\:-top-96 { + top: -24rem !important; + } + + .lg\:-right-96 { + right: -24rem !important; + } + + .lg\:-bottom-96 { + bottom: -24rem !important; + } + + .lg\:-left-96 { + left: -24rem !important; + } + + .lg\:-top-px { + top: -1px !important; + } + + .lg\:-right-px { + right: -1px !important; + } + + .lg\:-bottom-px { + bottom: -1px !important; + } + + .lg\:-left-px { + left: -1px !important; + } + + .lg\:-top-0\.5 { + top: -0.125rem !important; + } + + .lg\:-right-0\.5 { + right: -0.125rem !important; + } + + .lg\:-bottom-0\.5 { + bottom: -0.125rem !important; + } + + .lg\:-left-0\.5 { + left: -0.125rem !important; + } + + .lg\:-top-1\.5 { + top: -0.375rem !important; + } + + .lg\:-right-1\.5 { + right: -0.375rem !important; + } + + .lg\:-bottom-1\.5 { + bottom: -0.375rem !important; + } + + .lg\:-left-1\.5 { + left: -0.375rem !important; + } + + .lg\:-top-2\.5 { + top: -0.625rem !important; + } + + .lg\:-right-2\.5 { + right: -0.625rem !important; + } + + .lg\:-bottom-2\.5 { + bottom: -0.625rem !important; + } + + .lg\:-left-2\.5 { + left: -0.625rem !important; + } + + .lg\:-top-3\.5 { + top: -0.875rem !important; + } + + .lg\:-right-3\.5 { + right: -0.875rem !important; + } + + .lg\:-bottom-3\.5 { + bottom: -0.875rem !important; + } + + .lg\:-left-3\.5 { + left: -0.875rem !important; + } + + .lg\:top-1\/2 { + top: 50% !important; + } + + .lg\:right-1\/2 { + right: 50% !important; + } + + .lg\:bottom-1\/2 { + bottom: 50% !important; + } + + .lg\:left-1\/2 { + left: 50% !important; + } + + .lg\:top-1\/3 { + top: 33.333333% !important; + } + + .lg\:right-1\/3 { + right: 33.333333% !important; + } + + .lg\:bottom-1\/3 { + bottom: 33.333333% !important; + } + + .lg\:left-1\/3 { + left: 33.333333% !important; + } + + .lg\:top-2\/3 { + top: 66.666667% !important; + } + + .lg\:right-2\/3 { + right: 66.666667% !important; + } + + .lg\:bottom-2\/3 { + bottom: 66.666667% !important; + } + + .lg\:left-2\/3 { + left: 66.666667% !important; + } + + .lg\:top-1\/4 { + top: 25% !important; + } + + .lg\:right-1\/4 { + right: 25% !important; + } + + .lg\:bottom-1\/4 { + bottom: 25% !important; + } + + .lg\:left-1\/4 { + left: 25% !important; + } + + .lg\:top-2\/4 { + top: 50% !important; + } + + .lg\:right-2\/4 { + right: 50% !important; + } + + .lg\:bottom-2\/4 { + bottom: 50% !important; + } + + .lg\:left-2\/4 { + left: 50% !important; + } + + .lg\:top-3\/4 { + top: 75% !important; + } + + .lg\:right-3\/4 { + right: 75% !important; + } + + .lg\:bottom-3\/4 { + bottom: 75% !important; + } + + .lg\:left-3\/4 { + left: 75% !important; + } + + .lg\:top-full { + top: 100% !important; + } + + .lg\:right-full { + right: 100% !important; + } + + .lg\:bottom-full { + bottom: 100% !important; + } + + .lg\:left-full { + left: 100% !important; + } + + .lg\:-top-1\/2 { + top: -50% !important; + } + + .lg\:-right-1\/2 { + right: -50% !important; + } + + .lg\:-bottom-1\/2 { + bottom: -50% !important; + } + + .lg\:-left-1\/2 { + left: -50% !important; + } + + .lg\:-top-1\/3 { + top: -33.333333% !important; + } + + .lg\:-right-1\/3 { + right: -33.333333% !important; + } + + .lg\:-bottom-1\/3 { + bottom: -33.333333% !important; + } + + .lg\:-left-1\/3 { + left: -33.333333% !important; + } + + .lg\:-top-2\/3 { + top: -66.666667% !important; + } + + .lg\:-right-2\/3 { + right: -66.666667% !important; + } + + .lg\:-bottom-2\/3 { + bottom: -66.666667% !important; + } + + .lg\:-left-2\/3 { + left: -66.666667% !important; + } + + .lg\:-top-1\/4 { + top: -25% !important; + } + + .lg\:-right-1\/4 { + right: -25% !important; + } + + .lg\:-bottom-1\/4 { + bottom: -25% !important; + } + + .lg\:-left-1\/4 { + left: -25% !important; + } + + .lg\:-top-2\/4 { + top: -50% !important; + } + + .lg\:-right-2\/4 { + right: -50% !important; + } + + .lg\:-bottom-2\/4 { + bottom: -50% !important; + } + + .lg\:-left-2\/4 { + left: -50% !important; + } + + .lg\:-top-3\/4 { + top: -75% !important; + } + + .lg\:-right-3\/4 { + right: -75% !important; + } + + .lg\:-bottom-3\/4 { + bottom: -75% !important; + } + + .lg\:-left-3\/4 { + left: -75% !important; + } + + .lg\:-top-full { + top: -100% !important; + } + + .lg\:-right-full { + right: -100% !important; + } + + .lg\:-bottom-full { + bottom: -100% !important; + } + + .lg\:-left-full { + left: -100% !important; + } + + .lg\:resize-none { + resize: none !important; + } + + .lg\:resize-y { + resize: vertical !important; + } + + .lg\:resize-x { + resize: horizontal !important; + } + + .lg\:resize { + resize: both !important; + } + + .lg\:shadow-sm { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .lg\:shadow { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .lg\:shadow-md { + --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .lg\:shadow-lg { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .lg\:shadow-xl { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .lg\:shadow-2xl { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .lg\:shadow-inner { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .lg\:shadow-none { + --tw-shadow: 0 0 #0000 !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .group:hover .lg\:group-hover\:shadow-sm { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .group:hover .lg\:group-hover\:shadow { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .group:hover .lg\:group-hover\:shadow-md { + --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .group:hover .lg\:group-hover\:shadow-lg { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .group:hover .lg\:group-hover\:shadow-xl { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .group:hover .lg\:group-hover\:shadow-2xl { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .group:hover .lg\:group-hover\:shadow-inner { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .group:hover .lg\:group-hover\:shadow-none { + --tw-shadow: 0 0 #0000 !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .lg\:focus-within\:shadow-sm:focus-within { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .lg\:focus-within\:shadow:focus-within { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .lg\:focus-within\:shadow-md:focus-within { + --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .lg\:focus-within\:shadow-lg:focus-within { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .lg\:focus-within\:shadow-xl:focus-within { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .lg\:focus-within\:shadow-2xl:focus-within { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .lg\:focus-within\:shadow-inner:focus-within { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .lg\:focus-within\:shadow-none:focus-within { + --tw-shadow: 0 0 #0000 !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .lg\:hover\:shadow-sm:hover { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .lg\:hover\:shadow:hover { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .lg\:hover\:shadow-md:hover { + --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .lg\:hover\:shadow-lg:hover { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .lg\:hover\:shadow-xl:hover { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .lg\:hover\:shadow-2xl:hover { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .lg\:hover\:shadow-inner:hover { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .lg\:hover\:shadow-none:hover { + --tw-shadow: 0 0 #0000 !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .lg\:focus\:shadow-sm:focus { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .lg\:focus\:shadow:focus { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .lg\:focus\:shadow-md:focus { + --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .lg\:focus\:shadow-lg:focus { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .lg\:focus\:shadow-xl:focus { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .lg\:focus\:shadow-2xl:focus { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .lg\:focus\:shadow-inner:focus { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .lg\:focus\:shadow-none:focus { + --tw-shadow: 0 0 #0000 !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .lg\:ring-0 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; + } + + .lg\:ring-1 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; + } + + .lg\:ring-2 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; + } + + .lg\:ring-4 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; + } + + .lg\:ring-8 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; + } + + .lg\:ring { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; + } + + .lg\:ring-inset { + --tw-ring-inset: inset !important; + } + + .lg\:focus-within\:ring-0:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; + } + + .lg\:focus-within\:ring-1:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; + } + + .lg\: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) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; + } + + .lg\:focus-within\:ring-4:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; + } + + .lg\:focus-within\:ring-8:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; + } + + .lg\:focus-within\:ring:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; + } + + .lg\:focus-within\:ring-inset:focus-within { + --tw-ring-inset: inset !important; + } + + .lg\: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) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; + } + + .lg\: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) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; + } + + .lg\: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) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; + } + + .lg\:focus\:ring-4:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; + } + + .lg\:focus\:ring-8:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; + } + + .lg\:focus\:ring:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; + } + + .lg\:focus\:ring-inset:focus { + --tw-ring-inset: inset !important; + } + + .lg\:ring-offset-transparent { + --tw-ring-offset-color: transparent !important; + } + + .lg\:ring-offset-current { + --tw-ring-offset-color: currentColor !important; + } + + .lg\:ring-offset-black { + --tw-ring-offset-color: #000 !important; + } + + .lg\:ring-offset-white { + --tw-ring-offset-color: #fff !important; + } + + .lg\:ring-offset-gray-50 { + --tw-ring-offset-color: #f9fafb !important; + } + + .lg\:ring-offset-gray-100 { + --tw-ring-offset-color: #f3f4f6 !important; + } + + .lg\:ring-offset-gray-200 { + --tw-ring-offset-color: #e5e7eb !important; + } + + .lg\:ring-offset-gray-300 { + --tw-ring-offset-color: #d1d5db !important; + } + + .lg\:ring-offset-gray-400 { + --tw-ring-offset-color: #9ca3af !important; + } + + .lg\:ring-offset-gray-500 { + --tw-ring-offset-color: #6b7280 !important; + } + + .lg\:ring-offset-gray-600 { + --tw-ring-offset-color: #4b5563 !important; + } + + .lg\:ring-offset-gray-700 { + --tw-ring-offset-color: #374151 !important; + } + + .lg\:ring-offset-gray-800 { + --tw-ring-offset-color: #1f2937 !important; + } + + .lg\:ring-offset-gray-900 { + --tw-ring-offset-color: #111827 !important; + } + + .lg\:ring-offset-red-50 { + --tw-ring-offset-color: #fef2f2 !important; + } + + .lg\:ring-offset-red-100 { + --tw-ring-offset-color: #fee2e2 !important; + } + + .lg\:ring-offset-red-200 { + --tw-ring-offset-color: #fecaca !important; + } + + .lg\:ring-offset-red-300 { + --tw-ring-offset-color: #fca5a5 !important; + } + + .lg\:ring-offset-red-400 { + --tw-ring-offset-color: #f87171 !important; + } + + .lg\:ring-offset-red-500 { + --tw-ring-offset-color: #ef4444 !important; + } + + .lg\:ring-offset-red-600 { + --tw-ring-offset-color: #dc2626 !important; + } + + .lg\:ring-offset-red-700 { + --tw-ring-offset-color: #b91c1c !important; + } + + .lg\:ring-offset-red-800 { + --tw-ring-offset-color: #991b1b !important; + } + + .lg\:ring-offset-red-900 { + --tw-ring-offset-color: #7f1d1d !important; + } + + .lg\:ring-offset-yellow-50 { + --tw-ring-offset-color: #fffbeb !important; + } + + .lg\:ring-offset-yellow-100 { + --tw-ring-offset-color: #fef3c7 !important; + } + + .lg\:ring-offset-yellow-200 { + --tw-ring-offset-color: #fde68a !important; + } + + .lg\:ring-offset-yellow-300 { + --tw-ring-offset-color: #fcd34d !important; + } + + .lg\:ring-offset-yellow-400 { + --tw-ring-offset-color: #fbbf24 !important; + } + + .lg\:ring-offset-yellow-500 { + --tw-ring-offset-color: #f59e0b !important; + } + + .lg\:ring-offset-yellow-600 { + --tw-ring-offset-color: #d97706 !important; + } + + .lg\:ring-offset-yellow-700 { + --tw-ring-offset-color: #b45309 !important; + } + + .lg\:ring-offset-yellow-800 { + --tw-ring-offset-color: #92400e !important; + } + + .lg\:ring-offset-yellow-900 { + --tw-ring-offset-color: #78350f !important; + } + + .lg\:ring-offset-green-50 { + --tw-ring-offset-color: #ecfdf5 !important; + } + + .lg\:ring-offset-green-100 { + --tw-ring-offset-color: #d1fae5 !important; + } + + .lg\:ring-offset-green-200 { + --tw-ring-offset-color: #a7f3d0 !important; + } + + .lg\:ring-offset-green-300 { + --tw-ring-offset-color: #6ee7b7 !important; + } + + .lg\:ring-offset-green-400 { + --tw-ring-offset-color: #34d399 !important; + } + + .lg\:ring-offset-green-500 { + --tw-ring-offset-color: #10b981 !important; + } + + .lg\:ring-offset-green-600 { + --tw-ring-offset-color: #059669 !important; + } + + .lg\:ring-offset-green-700 { + --tw-ring-offset-color: #047857 !important; + } + + .lg\:ring-offset-green-800 { + --tw-ring-offset-color: #065f46 !important; + } + + .lg\:ring-offset-green-900 { + --tw-ring-offset-color: #064e3b !important; + } + + .lg\:ring-offset-blue-50 { + --tw-ring-offset-color: #eff6ff !important; + } + + .lg\:ring-offset-blue-100 { + --tw-ring-offset-color: #dbeafe !important; + } + + .lg\:ring-offset-blue-200 { + --tw-ring-offset-color: #bfdbfe !important; + } + + .lg\:ring-offset-blue-300 { + --tw-ring-offset-color: #93c5fd !important; + } + + .lg\:ring-offset-blue-400 { + --tw-ring-offset-color: #60a5fa !important; + } + + .lg\:ring-offset-blue-500 { + --tw-ring-offset-color: #3b82f6 !important; + } + + .lg\:ring-offset-blue-600 { + --tw-ring-offset-color: #2563eb !important; + } + + .lg\:ring-offset-blue-700 { + --tw-ring-offset-color: #1d4ed8 !important; + } + + .lg\:ring-offset-blue-800 { + --tw-ring-offset-color: #1e40af !important; + } + + .lg\:ring-offset-blue-900 { + --tw-ring-offset-color: #1e3a8a !important; + } + + .lg\:ring-offset-indigo-50 { + --tw-ring-offset-color: #eef2ff !important; + } + + .lg\:ring-offset-indigo-100 { + --tw-ring-offset-color: #e0e7ff !important; + } + + .lg\:ring-offset-indigo-200 { + --tw-ring-offset-color: #c7d2fe !important; + } + + .lg\:ring-offset-indigo-300 { + --tw-ring-offset-color: #a5b4fc !important; + } + + .lg\:ring-offset-indigo-400 { + --tw-ring-offset-color: #818cf8 !important; + } + + .lg\:ring-offset-indigo-500 { + --tw-ring-offset-color: #6366f1 !important; + } + + .lg\:ring-offset-indigo-600 { + --tw-ring-offset-color: #4f46e5 !important; + } + + .lg\:ring-offset-indigo-700 { + --tw-ring-offset-color: #4338ca !important; + } + + .lg\:ring-offset-indigo-800 { + --tw-ring-offset-color: #3730a3 !important; + } + + .lg\:ring-offset-indigo-900 { + --tw-ring-offset-color: #312e81 !important; + } + + .lg\:ring-offset-purple-50 { + --tw-ring-offset-color: #f5f3ff !important; + } + + .lg\:ring-offset-purple-100 { + --tw-ring-offset-color: #ede9fe !important; + } + + .lg\:ring-offset-purple-200 { + --tw-ring-offset-color: #ddd6fe !important; + } + + .lg\:ring-offset-purple-300 { + --tw-ring-offset-color: #c4b5fd !important; + } + + .lg\:ring-offset-purple-400 { + --tw-ring-offset-color: #a78bfa !important; + } + + .lg\:ring-offset-purple-500 { + --tw-ring-offset-color: #8b5cf6 !important; + } + + .lg\:ring-offset-purple-600 { + --tw-ring-offset-color: #7c3aed !important; + } + + .lg\:ring-offset-purple-700 { + --tw-ring-offset-color: #6d28d9 !important; + } + + .lg\:ring-offset-purple-800 { + --tw-ring-offset-color: #5b21b6 !important; + } + + .lg\:ring-offset-purple-900 { + --tw-ring-offset-color: #4c1d95 !important; + } + + .lg\:ring-offset-pink-50 { + --tw-ring-offset-color: #fdf2f8 !important; + } + + .lg\:ring-offset-pink-100 { + --tw-ring-offset-color: #fce7f3 !important; + } + + .lg\:ring-offset-pink-200 { + --tw-ring-offset-color: #fbcfe8 !important; + } + + .lg\:ring-offset-pink-300 { + --tw-ring-offset-color: #f9a8d4 !important; + } + + .lg\:ring-offset-pink-400 { + --tw-ring-offset-color: #f472b6 !important; + } + + .lg\:ring-offset-pink-500 { + --tw-ring-offset-color: #ec4899 !important; + } + + .lg\:ring-offset-pink-600 { + --tw-ring-offset-color: #db2777 !important; + } + + .lg\:ring-offset-pink-700 { + --tw-ring-offset-color: #be185d !important; + } + + .lg\:ring-offset-pink-800 { + --tw-ring-offset-color: #9d174d !important; + } + + .lg\:ring-offset-pink-900 { + --tw-ring-offset-color: #831843 !important; + } + + .lg\:ring-offset-primary { + --tw-ring-offset-color: #003197 !important; + } + + .lg\:focus-within\:ring-offset-transparent:focus-within { + --tw-ring-offset-color: transparent !important; + } + + .lg\:focus-within\:ring-offset-current:focus-within { + --tw-ring-offset-color: currentColor !important; + } + + .lg\:focus-within\:ring-offset-black:focus-within { + --tw-ring-offset-color: #000 !important; + } + + .lg\:focus-within\:ring-offset-white:focus-within { + --tw-ring-offset-color: #fff !important; + } + + .lg\:focus-within\:ring-offset-gray-50:focus-within { + --tw-ring-offset-color: #f9fafb !important; + } + + .lg\:focus-within\:ring-offset-gray-100:focus-within { + --tw-ring-offset-color: #f3f4f6 !important; + } + + .lg\:focus-within\:ring-offset-gray-200:focus-within { + --tw-ring-offset-color: #e5e7eb !important; + } + + .lg\:focus-within\:ring-offset-gray-300:focus-within { + --tw-ring-offset-color: #d1d5db !important; + } + + .lg\:focus-within\:ring-offset-gray-400:focus-within { + --tw-ring-offset-color: #9ca3af !important; + } + + .lg\:focus-within\:ring-offset-gray-500:focus-within { + --tw-ring-offset-color: #6b7280 !important; + } + + .lg\:focus-within\:ring-offset-gray-600:focus-within { + --tw-ring-offset-color: #4b5563 !important; + } + + .lg\:focus-within\:ring-offset-gray-700:focus-within { + --tw-ring-offset-color: #374151 !important; + } + + .lg\:focus-within\:ring-offset-gray-800:focus-within { + --tw-ring-offset-color: #1f2937 !important; + } + + .lg\:focus-within\:ring-offset-gray-900:focus-within { + --tw-ring-offset-color: #111827 !important; + } + + .lg\:focus-within\:ring-offset-red-50:focus-within { + --tw-ring-offset-color: #fef2f2 !important; + } + + .lg\:focus-within\:ring-offset-red-100:focus-within { + --tw-ring-offset-color: #fee2e2 !important; + } + + .lg\:focus-within\:ring-offset-red-200:focus-within { + --tw-ring-offset-color: #fecaca !important; + } + + .lg\:focus-within\:ring-offset-red-300:focus-within { + --tw-ring-offset-color: #fca5a5 !important; + } + + .lg\:focus-within\:ring-offset-red-400:focus-within { + --tw-ring-offset-color: #f87171 !important; + } + + .lg\:focus-within\:ring-offset-red-500:focus-within { + --tw-ring-offset-color: #ef4444 !important; + } + + .lg\:focus-within\:ring-offset-red-600:focus-within { + --tw-ring-offset-color: #dc2626 !important; + } + + .lg\:focus-within\:ring-offset-red-700:focus-within { + --tw-ring-offset-color: #b91c1c !important; + } + + .lg\:focus-within\:ring-offset-red-800:focus-within { + --tw-ring-offset-color: #991b1b !important; + } + + .lg\:focus-within\:ring-offset-red-900:focus-within { + --tw-ring-offset-color: #7f1d1d !important; + } + + .lg\:focus-within\:ring-offset-yellow-50:focus-within { + --tw-ring-offset-color: #fffbeb !important; + } + + .lg\:focus-within\:ring-offset-yellow-100:focus-within { + --tw-ring-offset-color: #fef3c7 !important; + } + + .lg\:focus-within\:ring-offset-yellow-200:focus-within { + --tw-ring-offset-color: #fde68a !important; + } + + .lg\:focus-within\:ring-offset-yellow-300:focus-within { + --tw-ring-offset-color: #fcd34d !important; + } + + .lg\:focus-within\:ring-offset-yellow-400:focus-within { + --tw-ring-offset-color: #fbbf24 !important; + } + + .lg\:focus-within\:ring-offset-yellow-500:focus-within { + --tw-ring-offset-color: #f59e0b !important; + } + + .lg\:focus-within\:ring-offset-yellow-600:focus-within { + --tw-ring-offset-color: #d97706 !important; + } + + .lg\:focus-within\:ring-offset-yellow-700:focus-within { + --tw-ring-offset-color: #b45309 !important; + } + + .lg\:focus-within\:ring-offset-yellow-800:focus-within { + --tw-ring-offset-color: #92400e !important; + } + + .lg\:focus-within\:ring-offset-yellow-900:focus-within { + --tw-ring-offset-color: #78350f !important; + } + + .lg\:focus-within\:ring-offset-green-50:focus-within { + --tw-ring-offset-color: #ecfdf5 !important; + } + + .lg\:focus-within\:ring-offset-green-100:focus-within { + --tw-ring-offset-color: #d1fae5 !important; + } + + .lg\:focus-within\:ring-offset-green-200:focus-within { + --tw-ring-offset-color: #a7f3d0 !important; + } + + .lg\:focus-within\:ring-offset-green-300:focus-within { + --tw-ring-offset-color: #6ee7b7 !important; + } + + .lg\:focus-within\:ring-offset-green-400:focus-within { + --tw-ring-offset-color: #34d399 !important; + } + + .lg\:focus-within\:ring-offset-green-500:focus-within { + --tw-ring-offset-color: #10b981 !important; + } + + .lg\:focus-within\:ring-offset-green-600:focus-within { + --tw-ring-offset-color: #059669 !important; + } + + .lg\:focus-within\:ring-offset-green-700:focus-within { + --tw-ring-offset-color: #047857 !important; + } + + .lg\:focus-within\:ring-offset-green-800:focus-within { + --tw-ring-offset-color: #065f46 !important; + } + + .lg\:focus-within\:ring-offset-green-900:focus-within { + --tw-ring-offset-color: #064e3b !important; + } + + .lg\:focus-within\:ring-offset-blue-50:focus-within { + --tw-ring-offset-color: #eff6ff !important; + } + + .lg\:focus-within\:ring-offset-blue-100:focus-within { + --tw-ring-offset-color: #dbeafe !important; + } + + .lg\:focus-within\:ring-offset-blue-200:focus-within { + --tw-ring-offset-color: #bfdbfe !important; + } + + .lg\:focus-within\:ring-offset-blue-300:focus-within { + --tw-ring-offset-color: #93c5fd !important; + } + + .lg\:focus-within\:ring-offset-blue-400:focus-within { + --tw-ring-offset-color: #60a5fa !important; + } + + .lg\:focus-within\:ring-offset-blue-500:focus-within { + --tw-ring-offset-color: #3b82f6 !important; + } + + .lg\:focus-within\:ring-offset-blue-600:focus-within { + --tw-ring-offset-color: #2563eb !important; + } + + .lg\:focus-within\:ring-offset-blue-700:focus-within { + --tw-ring-offset-color: #1d4ed8 !important; + } + + .lg\:focus-within\:ring-offset-blue-800:focus-within { + --tw-ring-offset-color: #1e40af !important; + } + + .lg\:focus-within\:ring-offset-blue-900:focus-within { + --tw-ring-offset-color: #1e3a8a !important; + } + + .lg\:focus-within\:ring-offset-indigo-50:focus-within { + --tw-ring-offset-color: #eef2ff !important; + } + + .lg\:focus-within\:ring-offset-indigo-100:focus-within { + --tw-ring-offset-color: #e0e7ff !important; + } + + .lg\:focus-within\:ring-offset-indigo-200:focus-within { + --tw-ring-offset-color: #c7d2fe !important; + } + + .lg\:focus-within\:ring-offset-indigo-300:focus-within { + --tw-ring-offset-color: #a5b4fc !important; + } + + .lg\:focus-within\:ring-offset-indigo-400:focus-within { + --tw-ring-offset-color: #818cf8 !important; + } + + .lg\:focus-within\:ring-offset-indigo-500:focus-within { + --tw-ring-offset-color: #6366f1 !important; + } + + .lg\:focus-within\:ring-offset-indigo-600:focus-within { + --tw-ring-offset-color: #4f46e5 !important; + } + + .lg\:focus-within\:ring-offset-indigo-700:focus-within { + --tw-ring-offset-color: #4338ca !important; + } + + .lg\:focus-within\:ring-offset-indigo-800:focus-within { + --tw-ring-offset-color: #3730a3 !important; + } + + .lg\:focus-within\:ring-offset-indigo-900:focus-within { + --tw-ring-offset-color: #312e81 !important; + } + + .lg\:focus-within\:ring-offset-purple-50:focus-within { + --tw-ring-offset-color: #f5f3ff !important; + } + + .lg\:focus-within\:ring-offset-purple-100:focus-within { + --tw-ring-offset-color: #ede9fe !important; + } + + .lg\:focus-within\:ring-offset-purple-200:focus-within { + --tw-ring-offset-color: #ddd6fe !important; + } + + .lg\:focus-within\:ring-offset-purple-300:focus-within { + --tw-ring-offset-color: #c4b5fd !important; + } + + .lg\:focus-within\:ring-offset-purple-400:focus-within { + --tw-ring-offset-color: #a78bfa !important; + } + + .lg\:focus-within\:ring-offset-purple-500:focus-within { + --tw-ring-offset-color: #8b5cf6 !important; + } + + .lg\:focus-within\:ring-offset-purple-600:focus-within { + --tw-ring-offset-color: #7c3aed !important; + } + + .lg\:focus-within\:ring-offset-purple-700:focus-within { + --tw-ring-offset-color: #6d28d9 !important; + } + + .lg\:focus-within\:ring-offset-purple-800:focus-within { + --tw-ring-offset-color: #5b21b6 !important; + } + + .lg\:focus-within\:ring-offset-purple-900:focus-within { + --tw-ring-offset-color: #4c1d95 !important; + } + + .lg\:focus-within\:ring-offset-pink-50:focus-within { + --tw-ring-offset-color: #fdf2f8 !important; + } + + .lg\:focus-within\:ring-offset-pink-100:focus-within { + --tw-ring-offset-color: #fce7f3 !important; + } + + .lg\:focus-within\:ring-offset-pink-200:focus-within { + --tw-ring-offset-color: #fbcfe8 !important; + } + + .lg\:focus-within\:ring-offset-pink-300:focus-within { + --tw-ring-offset-color: #f9a8d4 !important; + } + + .lg\:focus-within\:ring-offset-pink-400:focus-within { + --tw-ring-offset-color: #f472b6 !important; + } + + .lg\:focus-within\:ring-offset-pink-500:focus-within { + --tw-ring-offset-color: #ec4899 !important; + } + + .lg\:focus-within\:ring-offset-pink-600:focus-within { + --tw-ring-offset-color: #db2777 !important; + } + + .lg\:focus-within\:ring-offset-pink-700:focus-within { + --tw-ring-offset-color: #be185d !important; + } + + .lg\:focus-within\:ring-offset-pink-800:focus-within { + --tw-ring-offset-color: #9d174d !important; + } + + .lg\:focus-within\:ring-offset-pink-900:focus-within { + --tw-ring-offset-color: #831843 !important; + } + + .lg\:focus-within\:ring-offset-primary:focus-within { + --tw-ring-offset-color: #003197 !important; + } + + .lg\:focus\:ring-offset-transparent:focus { + --tw-ring-offset-color: transparent !important; + } + + .lg\:focus\:ring-offset-current:focus { + --tw-ring-offset-color: currentColor !important; + } + + .lg\:focus\:ring-offset-black:focus { + --tw-ring-offset-color: #000 !important; + } + + .lg\:focus\:ring-offset-white:focus { + --tw-ring-offset-color: #fff !important; + } + + .lg\:focus\:ring-offset-gray-50:focus { + --tw-ring-offset-color: #f9fafb !important; + } + + .lg\:focus\:ring-offset-gray-100:focus { + --tw-ring-offset-color: #f3f4f6 !important; + } + + .lg\:focus\:ring-offset-gray-200:focus { + --tw-ring-offset-color: #e5e7eb !important; + } + + .lg\:focus\:ring-offset-gray-300:focus { + --tw-ring-offset-color: #d1d5db !important; + } + + .lg\:focus\:ring-offset-gray-400:focus { + --tw-ring-offset-color: #9ca3af !important; + } + + .lg\:focus\:ring-offset-gray-500:focus { + --tw-ring-offset-color: #6b7280 !important; + } + + .lg\:focus\:ring-offset-gray-600:focus { + --tw-ring-offset-color: #4b5563 !important; + } + + .lg\:focus\:ring-offset-gray-700:focus { + --tw-ring-offset-color: #374151 !important; + } + + .lg\:focus\:ring-offset-gray-800:focus { + --tw-ring-offset-color: #1f2937 !important; + } + + .lg\:focus\:ring-offset-gray-900:focus { + --tw-ring-offset-color: #111827 !important; + } + + .lg\:focus\:ring-offset-red-50:focus { + --tw-ring-offset-color: #fef2f2 !important; + } + + .lg\:focus\:ring-offset-red-100:focus { + --tw-ring-offset-color: #fee2e2 !important; + } + + .lg\:focus\:ring-offset-red-200:focus { + --tw-ring-offset-color: #fecaca !important; + } + + .lg\:focus\:ring-offset-red-300:focus { + --tw-ring-offset-color: #fca5a5 !important; + } + + .lg\:focus\:ring-offset-red-400:focus { + --tw-ring-offset-color: #f87171 !important; + } + + .lg\:focus\:ring-offset-red-500:focus { + --tw-ring-offset-color: #ef4444 !important; + } + + .lg\:focus\:ring-offset-red-600:focus { + --tw-ring-offset-color: #dc2626 !important; + } + + .lg\:focus\:ring-offset-red-700:focus { + --tw-ring-offset-color: #b91c1c !important; + } + + .lg\:focus\:ring-offset-red-800:focus { + --tw-ring-offset-color: #991b1b !important; + } + + .lg\:focus\:ring-offset-red-900:focus { + --tw-ring-offset-color: #7f1d1d !important; + } + + .lg\:focus\:ring-offset-yellow-50:focus { + --tw-ring-offset-color: #fffbeb !important; + } + + .lg\:focus\:ring-offset-yellow-100:focus { + --tw-ring-offset-color: #fef3c7 !important; + } + + .lg\:focus\:ring-offset-yellow-200:focus { + --tw-ring-offset-color: #fde68a !important; + } + + .lg\:focus\:ring-offset-yellow-300:focus { + --tw-ring-offset-color: #fcd34d !important; + } + + .lg\:focus\:ring-offset-yellow-400:focus { + --tw-ring-offset-color: #fbbf24 !important; + } + + .lg\:focus\:ring-offset-yellow-500:focus { + --tw-ring-offset-color: #f59e0b !important; + } + + .lg\:focus\:ring-offset-yellow-600:focus { + --tw-ring-offset-color: #d97706 !important; + } + + .lg\:focus\:ring-offset-yellow-700:focus { + --tw-ring-offset-color: #b45309 !important; + } + + .lg\:focus\:ring-offset-yellow-800:focus { + --tw-ring-offset-color: #92400e !important; + } + + .lg\:focus\:ring-offset-yellow-900:focus { + --tw-ring-offset-color: #78350f !important; + } + + .lg\:focus\:ring-offset-green-50:focus { + --tw-ring-offset-color: #ecfdf5 !important; + } + + .lg\:focus\:ring-offset-green-100:focus { + --tw-ring-offset-color: #d1fae5 !important; + } + + .lg\:focus\:ring-offset-green-200:focus { + --tw-ring-offset-color: #a7f3d0 !important; + } + + .lg\:focus\:ring-offset-green-300:focus { + --tw-ring-offset-color: #6ee7b7 !important; + } + + .lg\:focus\:ring-offset-green-400:focus { + --tw-ring-offset-color: #34d399 !important; + } + + .lg\:focus\:ring-offset-green-500:focus { + --tw-ring-offset-color: #10b981 !important; + } + + .lg\:focus\:ring-offset-green-600:focus { + --tw-ring-offset-color: #059669 !important; + } + + .lg\:focus\:ring-offset-green-700:focus { + --tw-ring-offset-color: #047857 !important; + } + + .lg\:focus\:ring-offset-green-800:focus { + --tw-ring-offset-color: #065f46 !important; + } + + .lg\:focus\:ring-offset-green-900:focus { + --tw-ring-offset-color: #064e3b !important; + } + + .lg\:focus\:ring-offset-blue-50:focus { + --tw-ring-offset-color: #eff6ff !important; + } + + .lg\:focus\:ring-offset-blue-100:focus { + --tw-ring-offset-color: #dbeafe !important; + } + + .lg\:focus\:ring-offset-blue-200:focus { + --tw-ring-offset-color: #bfdbfe !important; + } + + .lg\:focus\:ring-offset-blue-300:focus { + --tw-ring-offset-color: #93c5fd !important; + } + + .lg\:focus\:ring-offset-blue-400:focus { + --tw-ring-offset-color: #60a5fa !important; + } + + .lg\:focus\:ring-offset-blue-500:focus { + --tw-ring-offset-color: #3b82f6 !important; + } + + .lg\:focus\:ring-offset-blue-600:focus { + --tw-ring-offset-color: #2563eb !important; + } + + .lg\:focus\:ring-offset-blue-700:focus { + --tw-ring-offset-color: #1d4ed8 !important; + } + + .lg\:focus\:ring-offset-blue-800:focus { + --tw-ring-offset-color: #1e40af !important; + } + + .lg\:focus\:ring-offset-blue-900:focus { + --tw-ring-offset-color: #1e3a8a !important; + } + + .lg\:focus\:ring-offset-indigo-50:focus { + --tw-ring-offset-color: #eef2ff !important; + } + + .lg\:focus\:ring-offset-indigo-100:focus { + --tw-ring-offset-color: #e0e7ff !important; + } + + .lg\:focus\:ring-offset-indigo-200:focus { + --tw-ring-offset-color: #c7d2fe !important; + } + + .lg\:focus\:ring-offset-indigo-300:focus { + --tw-ring-offset-color: #a5b4fc !important; + } + + .lg\:focus\:ring-offset-indigo-400:focus { + --tw-ring-offset-color: #818cf8 !important; + } + + .lg\:focus\:ring-offset-indigo-500:focus { + --tw-ring-offset-color: #6366f1 !important; + } + + .lg\:focus\:ring-offset-indigo-600:focus { + --tw-ring-offset-color: #4f46e5 !important; + } + + .lg\:focus\:ring-offset-indigo-700:focus { + --tw-ring-offset-color: #4338ca !important; + } + + .lg\:focus\:ring-offset-indigo-800:focus { + --tw-ring-offset-color: #3730a3 !important; + } + + .lg\:focus\:ring-offset-indigo-900:focus { + --tw-ring-offset-color: #312e81 !important; + } + + .lg\:focus\:ring-offset-purple-50:focus { + --tw-ring-offset-color: #f5f3ff !important; + } + + .lg\:focus\:ring-offset-purple-100:focus { + --tw-ring-offset-color: #ede9fe !important; + } + + .lg\:focus\:ring-offset-purple-200:focus { + --tw-ring-offset-color: #ddd6fe !important; + } + + .lg\:focus\:ring-offset-purple-300:focus { + --tw-ring-offset-color: #c4b5fd !important; + } + + .lg\:focus\:ring-offset-purple-400:focus { + --tw-ring-offset-color: #a78bfa !important; + } + + .lg\:focus\:ring-offset-purple-500:focus { + --tw-ring-offset-color: #8b5cf6 !important; + } + + .lg\:focus\:ring-offset-purple-600:focus { + --tw-ring-offset-color: #7c3aed !important; + } + + .lg\:focus\:ring-offset-purple-700:focus { + --tw-ring-offset-color: #6d28d9 !important; + } + + .lg\:focus\:ring-offset-purple-800:focus { + --tw-ring-offset-color: #5b21b6 !important; + } + + .lg\:focus\:ring-offset-purple-900:focus { + --tw-ring-offset-color: #4c1d95 !important; + } + + .lg\:focus\:ring-offset-pink-50:focus { + --tw-ring-offset-color: #fdf2f8 !important; + } + + .lg\:focus\:ring-offset-pink-100:focus { + --tw-ring-offset-color: #fce7f3 !important; + } + + .lg\:focus\:ring-offset-pink-200:focus { + --tw-ring-offset-color: #fbcfe8 !important; + } + + .lg\:focus\:ring-offset-pink-300:focus { + --tw-ring-offset-color: #f9a8d4 !important; + } + + .lg\:focus\:ring-offset-pink-400:focus { + --tw-ring-offset-color: #f472b6 !important; + } + + .lg\:focus\:ring-offset-pink-500:focus { + --tw-ring-offset-color: #ec4899 !important; + } + + .lg\:focus\:ring-offset-pink-600:focus { + --tw-ring-offset-color: #db2777 !important; + } + + .lg\:focus\:ring-offset-pink-700:focus { + --tw-ring-offset-color: #be185d !important; + } + + .lg\:focus\:ring-offset-pink-800:focus { + --tw-ring-offset-color: #9d174d !important; + } + + .lg\:focus\:ring-offset-pink-900:focus { + --tw-ring-offset-color: #831843 !important; + } + + .lg\:focus\:ring-offset-primary:focus { + --tw-ring-offset-color: #003197 !important; + } + + .lg\:ring-offset-0 { + --tw-ring-offset-width: 0px !important; + } + + .lg\:ring-offset-1 { + --tw-ring-offset-width: 1px !important; + } + + .lg\:ring-offset-2 { + --tw-ring-offset-width: 2px !important; + } + + .lg\:ring-offset-4 { + --tw-ring-offset-width: 4px !important; + } + + .lg\:ring-offset-8 { + --tw-ring-offset-width: 8px !important; + } + + .lg\:focus-within\:ring-offset-0:focus-within { + --tw-ring-offset-width: 0px !important; + } + + .lg\:focus-within\:ring-offset-1:focus-within { + --tw-ring-offset-width: 1px !important; + } + + .lg\:focus-within\:ring-offset-2:focus-within { + --tw-ring-offset-width: 2px !important; + } + + .lg\:focus-within\:ring-offset-4:focus-within { + --tw-ring-offset-width: 4px !important; + } + + .lg\:focus-within\:ring-offset-8:focus-within { + --tw-ring-offset-width: 8px !important; + } + + .lg\:focus\:ring-offset-0:focus { + --tw-ring-offset-width: 0px !important; + } + + .lg\:focus\:ring-offset-1:focus { + --tw-ring-offset-width: 1px !important; + } + + .lg\:focus\:ring-offset-2:focus { + --tw-ring-offset-width: 2px !important; + } + + .lg\:focus\:ring-offset-4:focus { + --tw-ring-offset-width: 4px !important; + } + + .lg\:focus\:ring-offset-8:focus { + --tw-ring-offset-width: 8px !important; + } + + .lg\:ring-transparent { + --tw-ring-color: transparent !important; + } + + .lg\:ring-current { + --tw-ring-color: currentColor !important; + } + + .lg\:ring-black { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important; + } + + .lg\:ring-white { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)) !important; + } + + .lg\:ring-gray-50 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)) !important; + } + + .lg\:ring-gray-100 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)) !important; + } + + .lg\:ring-gray-200 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)) !important; + } + + .lg\:ring-gray-300 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)) !important; + } + + .lg\:ring-gray-400 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)) !important; + } + + .lg\:ring-gray-500 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)) !important; + } + + .lg\:ring-gray-600 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)) !important; + } + + .lg\:ring-gray-700 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)) !important; + } + + .lg\:ring-gray-800 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)) !important; + } + + .lg\:ring-gray-900 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)) !important; + } + + .lg\:ring-red-50 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)) !important; + } + + .lg\:ring-red-100 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)) !important; + } + + .lg\:ring-red-200 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)) !important; + } + + .lg\:ring-red-300 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)) !important; + } + + .lg\:ring-red-400 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)) !important; + } + + .lg\:ring-red-500 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)) !important; + } + + .lg\:ring-red-600 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)) !important; + } + + .lg\:ring-red-700 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)) !important; + } + + .lg\:ring-red-800 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)) !important; + } + + .lg\:ring-red-900 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)) !important; + } + + .lg\:ring-yellow-50 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)) !important; + } + + .lg\:ring-yellow-100 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)) !important; + } + + .lg\:ring-yellow-200 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)) !important; + } + + .lg\:ring-yellow-300 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)) !important; + } + + .lg\:ring-yellow-400 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)) !important; + } + + .lg\:ring-yellow-500 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)) !important; + } + + .lg\:ring-yellow-600 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)) !important; + } + + .lg\:ring-yellow-700 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)) !important; + } + + .lg\:ring-yellow-800 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)) !important; + } + + .lg\:ring-yellow-900 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)) !important; + } + + .lg\:ring-green-50 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)) !important; + } + + .lg\:ring-green-100 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)) !important; + } + + .lg\:ring-green-200 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)) !important; + } + + .lg\:ring-green-300 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)) !important; + } + + .lg\:ring-green-400 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)) !important; + } + + .lg\:ring-green-500 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)) !important; + } + + .lg\:ring-green-600 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)) !important; + } + + .lg\:ring-green-700 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)) !important; + } + + .lg\:ring-green-800 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)) !important; + } + + .lg\:ring-green-900 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)) !important; + } + + .lg\:ring-blue-50 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)) !important; + } + + .lg\:ring-blue-100 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)) !important; + } + + .lg\:ring-blue-200 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)) !important; + } + + .lg\:ring-blue-300 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)) !important; + } + + .lg\:ring-blue-400 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)) !important; + } + + .lg\:ring-blue-500 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)) !important; + } + + .lg\:ring-blue-600 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)) !important; + } + + .lg\:ring-blue-700 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)) !important; + } + + .lg\:ring-blue-800 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)) !important; + } + + .lg\:ring-blue-900 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)) !important; + } + + .lg\:ring-indigo-50 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)) !important; + } + + .lg\:ring-indigo-100 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)) !important; + } + + .lg\:ring-indigo-200 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)) !important; + } + + .lg\:ring-indigo-300 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)) !important; + } + + .lg\:ring-indigo-400 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)) !important; + } + + .lg\:ring-indigo-500 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)) !important; + } + + .lg\:ring-indigo-600 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)) !important; + } + + .lg\:ring-indigo-700 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)) !important; + } + + .lg\:ring-indigo-800 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)) !important; + } + + .lg\:ring-indigo-900 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)) !important; + } + + .lg\:ring-purple-50 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)) !important; + } + + .lg\:ring-purple-100 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)) !important; + } + + .lg\:ring-purple-200 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)) !important; + } + + .lg\:ring-purple-300 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)) !important; + } + + .lg\:ring-purple-400 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)) !important; + } + + .lg\:ring-purple-500 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)) !important; + } + + .lg\:ring-purple-600 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)) !important; + } + + .lg\:ring-purple-700 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)) !important; + } + + .lg\:ring-purple-800 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)) !important; + } + + .lg\:ring-purple-900 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)) !important; + } + + .lg\:ring-pink-50 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)) !important; + } + + .lg\:ring-pink-100 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)) !important; + } + + .lg\:ring-pink-200 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)) !important; + } + + .lg\:ring-pink-300 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)) !important; + } + + .lg\:ring-pink-400 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)) !important; + } + + .lg\:ring-pink-500 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)) !important; + } + + .lg\:ring-pink-600 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)) !important; + } + + .lg\:ring-pink-700 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)) !important; + } + + .lg\:ring-pink-800 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)) !important; + } + + .lg\:ring-pink-900 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)) !important; + } + + .lg\:ring-primary { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(0, 49, 151, var(--tw-ring-opacity)) !important; + } + + .lg\:focus-within\:ring-transparent:focus-within { + --tw-ring-color: transparent !important; + } + + .lg\:focus-within\:ring-current:focus-within { + --tw-ring-color: currentColor !important; + } + + .lg\:focus-within\:ring-black:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important; + } + + .lg\:focus-within\:ring-white:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)) !important; + } + + .lg\:focus-within\:ring-gray-50:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)) !important; + } + + .lg\:focus-within\:ring-gray-100:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)) !important; + } + + .lg\:focus-within\:ring-gray-200:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)) !important; + } + + .lg\:focus-within\:ring-gray-300:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)) !important; + } + + .lg\:focus-within\:ring-gray-400:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)) !important; + } + + .lg\:focus-within\:ring-gray-500:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)) !important; + } + + .lg\:focus-within\:ring-gray-600:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)) !important; + } + + .lg\:focus-within\:ring-gray-700:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)) !important; + } + + .lg\:focus-within\:ring-gray-800:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)) !important; + } + + .lg\:focus-within\:ring-gray-900:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)) !important; + } + + .lg\:focus-within\:ring-red-50:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)) !important; + } + + .lg\:focus-within\:ring-red-100:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)) !important; + } + + .lg\:focus-within\:ring-red-200:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)) !important; + } + + .lg\:focus-within\:ring-red-300:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)) !important; + } + + .lg\:focus-within\:ring-red-400:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)) !important; + } + + .lg\:focus-within\:ring-red-500:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)) !important; + } + + .lg\:focus-within\:ring-red-600:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)) !important; + } + + .lg\:focus-within\:ring-red-700:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)) !important; + } + + .lg\:focus-within\:ring-red-800:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)) !important; + } + + .lg\:focus-within\:ring-red-900:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)) !important; + } + + .lg\:focus-within\:ring-yellow-50:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)) !important; + } + + .lg\:focus-within\:ring-yellow-100:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)) !important; + } + + .lg\:focus-within\:ring-yellow-200:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)) !important; + } + + .lg\:focus-within\:ring-yellow-300:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)) !important; + } + + .lg\:focus-within\:ring-yellow-400:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)) !important; + } + + .lg\:focus-within\:ring-yellow-500:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)) !important; + } + + .lg\:focus-within\:ring-yellow-600:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)) !important; + } + + .lg\:focus-within\:ring-yellow-700:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)) !important; + } + + .lg\:focus-within\:ring-yellow-800:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)) !important; + } + + .lg\:focus-within\:ring-yellow-900:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)) !important; + } + + .lg\:focus-within\:ring-green-50:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)) !important; + } + + .lg\:focus-within\:ring-green-100:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)) !important; + } + + .lg\:focus-within\:ring-green-200:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)) !important; + } + + .lg\:focus-within\:ring-green-300:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)) !important; + } + + .lg\:focus-within\:ring-green-400:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)) !important; + } + + .lg\:focus-within\:ring-green-500:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)) !important; + } + + .lg\:focus-within\:ring-green-600:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)) !important; + } + + .lg\:focus-within\:ring-green-700:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)) !important; + } + + .lg\:focus-within\:ring-green-800:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)) !important; + } + + .lg\:focus-within\:ring-green-900:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)) !important; + } + + .lg\:focus-within\:ring-blue-50:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)) !important; + } + + .lg\:focus-within\:ring-blue-100:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)) !important; + } + + .lg\:focus-within\:ring-blue-200:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)) !important; + } + + .lg\:focus-within\:ring-blue-300:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)) !important; + } + + .lg\:focus-within\:ring-blue-400:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)) !important; + } + + .lg\:focus-within\:ring-blue-500:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)) !important; + } + + .lg\:focus-within\:ring-blue-600:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)) !important; + } + + .lg\:focus-within\:ring-blue-700:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)) !important; + } + + .lg\:focus-within\:ring-blue-800:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)) !important; + } + + .lg\:focus-within\:ring-blue-900:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)) !important; + } + + .lg\:focus-within\:ring-indigo-50:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)) !important; + } + + .lg\:focus-within\:ring-indigo-100:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)) !important; + } + + .lg\:focus-within\:ring-indigo-200:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)) !important; + } + + .lg\:focus-within\:ring-indigo-300:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)) !important; + } + + .lg\:focus-within\:ring-indigo-400:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)) !important; + } + + .lg\:focus-within\:ring-indigo-500:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)) !important; + } + + .lg\:focus-within\:ring-indigo-600:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)) !important; + } + + .lg\:focus-within\:ring-indigo-700:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)) !important; + } + + .lg\:focus-within\:ring-indigo-800:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)) !important; + } + + .lg\:focus-within\:ring-indigo-900:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)) !important; + } + + .lg\:focus-within\:ring-purple-50:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)) !important; + } + + .lg\:focus-within\:ring-purple-100:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)) !important; + } + + .lg\:focus-within\:ring-purple-200:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)) !important; + } + + .lg\:focus-within\:ring-purple-300:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)) !important; + } + + .lg\:focus-within\:ring-purple-400:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)) !important; + } + + .lg\:focus-within\:ring-purple-500:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)) !important; + } + + .lg\:focus-within\:ring-purple-600:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)) !important; + } + + .lg\:focus-within\:ring-purple-700:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)) !important; + } + + .lg\:focus-within\:ring-purple-800:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)) !important; + } + + .lg\:focus-within\:ring-purple-900:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)) !important; + } + + .lg\:focus-within\:ring-pink-50:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)) !important; + } + + .lg\:focus-within\:ring-pink-100:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)) !important; + } + + .lg\:focus-within\:ring-pink-200:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)) !important; + } + + .lg\:focus-within\:ring-pink-300:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)) !important; + } + + .lg\:focus-within\:ring-pink-400:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)) !important; + } + + .lg\:focus-within\:ring-pink-500:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)) !important; + } + + .lg\:focus-within\:ring-pink-600:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)) !important; + } + + .lg\:focus-within\:ring-pink-700:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)) !important; + } + + .lg\:focus-within\:ring-pink-800:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)) !important; + } + + .lg\:focus-within\:ring-pink-900:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)) !important; + } + + .lg\:focus-within\:ring-primary:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(0, 49, 151, var(--tw-ring-opacity)) !important; + } + + .lg\:focus\:ring-transparent:focus { + --tw-ring-color: transparent !important; + } + + .lg\:focus\:ring-current:focus { + --tw-ring-color: currentColor !important; + } + + .lg\:focus\:ring-black:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important; + } + + .lg\:focus\:ring-white:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)) !important; + } + + .lg\:focus\:ring-gray-50:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)) !important; + } + + .lg\:focus\:ring-gray-100:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)) !important; + } + + .lg\:focus\:ring-gray-200:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)) !important; + } + + .lg\:focus\:ring-gray-300:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)) !important; + } + + .lg\:focus\:ring-gray-400:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)) !important; + } + + .lg\:focus\:ring-gray-500:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)) !important; + } + + .lg\:focus\:ring-gray-600:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)) !important; + } + + .lg\:focus\:ring-gray-700:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)) !important; + } + + .lg\:focus\:ring-gray-800:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)) !important; + } + + .lg\:focus\:ring-gray-900:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)) !important; + } + + .lg\:focus\:ring-red-50:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)) !important; + } + + .lg\:focus\:ring-red-100:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)) !important; + } + + .lg\:focus\:ring-red-200:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)) !important; + } + + .lg\:focus\:ring-red-300:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)) !important; + } + + .lg\:focus\:ring-red-400:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)) !important; + } + + .lg\:focus\:ring-red-500:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)) !important; + } + + .lg\:focus\:ring-red-600:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)) !important; + } + + .lg\:focus\:ring-red-700:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)) !important; + } + + .lg\:focus\:ring-red-800:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)) !important; + } + + .lg\:focus\:ring-red-900:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)) !important; + } + + .lg\:focus\:ring-yellow-50:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)) !important; + } + + .lg\:focus\:ring-yellow-100:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)) !important; + } + + .lg\:focus\:ring-yellow-200:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)) !important; + } + + .lg\:focus\:ring-yellow-300:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)) !important; + } + + .lg\:focus\:ring-yellow-400:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)) !important; + } + + .lg\:focus\:ring-yellow-500:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)) !important; + } + + .lg\:focus\:ring-yellow-600:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)) !important; + } + + .lg\:focus\:ring-yellow-700:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)) !important; + } + + .lg\:focus\:ring-yellow-800:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)) !important; + } + + .lg\:focus\:ring-yellow-900:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)) !important; + } + + .lg\:focus\:ring-green-50:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)) !important; + } + + .lg\:focus\:ring-green-100:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)) !important; + } + + .lg\:focus\:ring-green-200:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)) !important; + } + + .lg\:focus\:ring-green-300:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)) !important; + } + + .lg\:focus\:ring-green-400:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)) !important; + } + + .lg\:focus\:ring-green-500:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)) !important; + } + + .lg\:focus\:ring-green-600:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)) !important; + } + + .lg\:focus\:ring-green-700:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)) !important; + } + + .lg\:focus\:ring-green-800:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)) !important; + } + + .lg\:focus\:ring-green-900:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)) !important; + } + + .lg\:focus\:ring-blue-50:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)) !important; + } + + .lg\:focus\:ring-blue-100:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)) !important; + } + + .lg\:focus\:ring-blue-200:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)) !important; + } + + .lg\:focus\:ring-blue-300:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)) !important; + } + + .lg\:focus\:ring-blue-400:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)) !important; + } + + .lg\:focus\:ring-blue-500:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)) !important; + } + + .lg\:focus\:ring-blue-600:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)) !important; + } + + .lg\:focus\:ring-blue-700:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)) !important; + } + + .lg\:focus\:ring-blue-800:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)) !important; + } + + .lg\:focus\:ring-blue-900:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)) !important; + } + + .lg\:focus\:ring-indigo-50:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)) !important; + } + + .lg\:focus\:ring-indigo-100:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)) !important; + } + + .lg\:focus\:ring-indigo-200:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)) !important; + } + + .lg\:focus\:ring-indigo-300:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)) !important; + } + + .lg\:focus\:ring-indigo-400:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)) !important; + } + + .lg\:focus\:ring-indigo-500:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)) !important; + } + + .lg\:focus\:ring-indigo-600:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)) !important; + } + + .lg\:focus\:ring-indigo-700:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)) !important; + } + + .lg\:focus\:ring-indigo-800:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)) !important; + } + + .lg\:focus\:ring-indigo-900:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)) !important; + } + + .lg\:focus\:ring-purple-50:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)) !important; + } + + .lg\:focus\:ring-purple-100:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)) !important; + } + + .lg\:focus\:ring-purple-200:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)) !important; + } + + .lg\:focus\:ring-purple-300:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)) !important; + } + + .lg\:focus\:ring-purple-400:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)) !important; + } + + .lg\:focus\:ring-purple-500:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)) !important; + } + + .lg\:focus\:ring-purple-600:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)) !important; + } + + .lg\:focus\:ring-purple-700:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)) !important; + } + + .lg\:focus\:ring-purple-800:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)) !important; + } + + .lg\:focus\:ring-purple-900:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)) !important; + } + + .lg\:focus\:ring-pink-50:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)) !important; + } + + .lg\:focus\:ring-pink-100:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)) !important; + } + + .lg\:focus\:ring-pink-200:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)) !important; + } + + .lg\:focus\:ring-pink-300:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)) !important; + } + + .lg\:focus\:ring-pink-400:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)) !important; + } + + .lg\:focus\:ring-pink-500:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)) !important; + } + + .lg\:focus\:ring-pink-600:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)) !important; + } + + .lg\:focus\:ring-pink-700:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)) !important; + } + + .lg\:focus\:ring-pink-800:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)) !important; + } + + .lg\:focus\:ring-pink-900:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)) !important; + } + + .lg\:focus\:ring-primary:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(0, 49, 151, var(--tw-ring-opacity)) !important; + } + + .lg\:ring-opacity-0 { + --tw-ring-opacity: 0 !important; + } + + .lg\:ring-opacity-5 { + --tw-ring-opacity: 0.05 !important; + } + + .lg\:ring-opacity-10 { + --tw-ring-opacity: 0.1 !important; + } + + .lg\:ring-opacity-20 { + --tw-ring-opacity: 0.2 !important; + } + + .lg\:ring-opacity-25 { + --tw-ring-opacity: 0.25 !important; + } + + .lg\:ring-opacity-30 { + --tw-ring-opacity: 0.3 !important; + } + + .lg\:ring-opacity-40 { + --tw-ring-opacity: 0.4 !important; + } + + .lg\:ring-opacity-50 { + --tw-ring-opacity: 0.5 !important; + } + + .lg\:ring-opacity-60 { + --tw-ring-opacity: 0.6 !important; + } + + .lg\:ring-opacity-70 { + --tw-ring-opacity: 0.7 !important; + } + + .lg\:ring-opacity-75 { + --tw-ring-opacity: 0.75 !important; + } + + .lg\:ring-opacity-80 { + --tw-ring-opacity: 0.8 !important; + } + + .lg\:ring-opacity-90 { + --tw-ring-opacity: 0.9 !important; + } + + .lg\:ring-opacity-95 { + --tw-ring-opacity: 0.95 !important; + } + + .lg\:ring-opacity-100 { + --tw-ring-opacity: 1 !important; + } + + .lg\:focus-within\:ring-opacity-0:focus-within { + --tw-ring-opacity: 0 !important; + } + + .lg\:focus-within\:ring-opacity-5:focus-within { + --tw-ring-opacity: 0.05 !important; + } + + .lg\:focus-within\:ring-opacity-10:focus-within { + --tw-ring-opacity: 0.1 !important; + } + + .lg\:focus-within\:ring-opacity-20:focus-within { + --tw-ring-opacity: 0.2 !important; + } + + .lg\:focus-within\:ring-opacity-25:focus-within { + --tw-ring-opacity: 0.25 !important; + } + + .lg\:focus-within\:ring-opacity-30:focus-within { + --tw-ring-opacity: 0.3 !important; + } + + .lg\:focus-within\:ring-opacity-40:focus-within { + --tw-ring-opacity: 0.4 !important; + } + + .lg\:focus-within\:ring-opacity-50:focus-within { + --tw-ring-opacity: 0.5 !important; + } + + .lg\:focus-within\:ring-opacity-60:focus-within { + --tw-ring-opacity: 0.6 !important; + } + + .lg\:focus-within\:ring-opacity-70:focus-within { + --tw-ring-opacity: 0.7 !important; + } + + .lg\:focus-within\:ring-opacity-75:focus-within { + --tw-ring-opacity: 0.75 !important; + } + + .lg\:focus-within\:ring-opacity-80:focus-within { + --tw-ring-opacity: 0.8 !important; + } + + .lg\:focus-within\:ring-opacity-90:focus-within { + --tw-ring-opacity: 0.9 !important; + } + + .lg\:focus-within\:ring-opacity-95:focus-within { + --tw-ring-opacity: 0.95 !important; + } + + .lg\:focus-within\:ring-opacity-100:focus-within { + --tw-ring-opacity: 1 !important; + } + + .lg\:focus\:ring-opacity-0:focus { + --tw-ring-opacity: 0 !important; + } + + .lg\:focus\:ring-opacity-5:focus { + --tw-ring-opacity: 0.05 !important; + } + + .lg\:focus\:ring-opacity-10:focus { + --tw-ring-opacity: 0.1 !important; + } + + .lg\:focus\:ring-opacity-20:focus { + --tw-ring-opacity: 0.2 !important; + } + + .lg\:focus\:ring-opacity-25:focus { + --tw-ring-opacity: 0.25 !important; + } + + .lg\:focus\:ring-opacity-30:focus { + --tw-ring-opacity: 0.3 !important; + } + + .lg\:focus\:ring-opacity-40:focus { + --tw-ring-opacity: 0.4 !important; + } + + .lg\:focus\:ring-opacity-50:focus { + --tw-ring-opacity: 0.5 !important; + } + + .lg\:focus\:ring-opacity-60:focus { + --tw-ring-opacity: 0.6 !important; + } + + .lg\:focus\:ring-opacity-70:focus { + --tw-ring-opacity: 0.7 !important; + } + + .lg\:focus\:ring-opacity-75:focus { + --tw-ring-opacity: 0.75 !important; + } + + .lg\:focus\:ring-opacity-80:focus { + --tw-ring-opacity: 0.8 !important; + } + + .lg\:focus\:ring-opacity-90:focus { + --tw-ring-opacity: 0.9 !important; + } + + .lg\:focus\:ring-opacity-95:focus { + --tw-ring-opacity: 0.95 !important; + } + + .lg\:focus\:ring-opacity-100:focus { + --tw-ring-opacity: 1 !important; + } + + .lg\:fill-current { + fill: currentColor !important; + } + + .lg\:stroke-current { + stroke: currentColor !important; + } + + .lg\:stroke-0 { + stroke-width: 0 !important; + } + + .lg\:stroke-1 { + stroke-width: 1 !important; + } + + .lg\:stroke-2 { + stroke-width: 2 !important; + } + + .lg\:table-auto { + table-layout: auto !important; + } + + .lg\:table-fixed { + table-layout: fixed !important; + } + + .lg\:text-left { + text-align: left !important; + } + + .lg\:text-center { + text-align: center !important; + } + + .lg\:text-right { + text-align: right !important; + } + + .lg\:text-justify { + text-align: justify !important; + } + + .lg\:text-transparent { + color: transparent !important; + } + + .lg\:text-current { + color: currentColor !important; + } + + .lg\:text-black { + --tw-text-opacity: 1 !important; + color: rgba(0, 0, 0, var(--tw-text-opacity)) !important; + } + + .lg\:text-white { + --tw-text-opacity: 1 !important; + color: rgba(255, 255, 255, var(--tw-text-opacity)) !important; + } + + .lg\:text-gray-50 { + --tw-text-opacity: 1 !important; + color: rgba(249, 250, 251, var(--tw-text-opacity)) !important; + } + + .lg\:text-gray-100 { + --tw-text-opacity: 1 !important; + color: rgba(243, 244, 246, var(--tw-text-opacity)) !important; + } + + .lg\:text-gray-200 { + --tw-text-opacity: 1 !important; + color: rgba(229, 231, 235, var(--tw-text-opacity)) !important; + } + + .lg\:text-gray-300 { + --tw-text-opacity: 1 !important; + color: rgba(209, 213, 219, var(--tw-text-opacity)) !important; + } + + .lg\:text-gray-400 { + --tw-text-opacity: 1 !important; + color: rgba(156, 163, 175, var(--tw-text-opacity)) !important; + } + + .lg\:text-gray-500 { + --tw-text-opacity: 1 !important; + color: rgba(107, 114, 128, var(--tw-text-opacity)) !important; + } + + .lg\:text-gray-600 { + --tw-text-opacity: 1 !important; + color: rgba(75, 85, 99, var(--tw-text-opacity)) !important; + } + + .lg\:text-gray-700 { + --tw-text-opacity: 1 !important; + color: rgba(55, 65, 81, var(--tw-text-opacity)) !important; + } + + .lg\:text-gray-800 { + --tw-text-opacity: 1 !important; + color: rgba(31, 41, 55, var(--tw-text-opacity)) !important; + } + + .lg\:text-gray-900 { + --tw-text-opacity: 1 !important; + color: rgba(17, 24, 39, var(--tw-text-opacity)) !important; + } + + .lg\:text-red-50 { + --tw-text-opacity: 1 !important; + color: rgba(254, 242, 242, var(--tw-text-opacity)) !important; + } + + .lg\:text-red-100 { + --tw-text-opacity: 1 !important; + color: rgba(254, 226, 226, var(--tw-text-opacity)) !important; + } + + .lg\:text-red-200 { + --tw-text-opacity: 1 !important; + color: rgba(254, 202, 202, var(--tw-text-opacity)) !important; + } + + .lg\:text-red-300 { + --tw-text-opacity: 1 !important; + color: rgba(252, 165, 165, var(--tw-text-opacity)) !important; + } + + .lg\:text-red-400 { + --tw-text-opacity: 1 !important; + color: rgba(248, 113, 113, var(--tw-text-opacity)) !important; + } + + .lg\:text-red-500 { + --tw-text-opacity: 1 !important; + color: rgba(239, 68, 68, var(--tw-text-opacity)) !important; + } + + .lg\:text-red-600 { + --tw-text-opacity: 1 !important; + color: rgba(220, 38, 38, var(--tw-text-opacity)) !important; + } + + .lg\:text-red-700 { + --tw-text-opacity: 1 !important; + color: rgba(185, 28, 28, var(--tw-text-opacity)) !important; + } + + .lg\:text-red-800 { + --tw-text-opacity: 1 !important; + color: rgba(153, 27, 27, var(--tw-text-opacity)) !important; + } + + .lg\:text-red-900 { + --tw-text-opacity: 1 !important; + color: rgba(127, 29, 29, var(--tw-text-opacity)) !important; + } + + .lg\:text-yellow-50 { + --tw-text-opacity: 1 !important; + color: rgba(255, 251, 235, var(--tw-text-opacity)) !important; + } + + .lg\:text-yellow-100 { + --tw-text-opacity: 1 !important; + color: rgba(254, 243, 199, var(--tw-text-opacity)) !important; + } + + .lg\:text-yellow-200 { + --tw-text-opacity: 1 !important; + color: rgba(253, 230, 138, var(--tw-text-opacity)) !important; + } + + .lg\:text-yellow-300 { + --tw-text-opacity: 1 !important; + color: rgba(252, 211, 77, var(--tw-text-opacity)) !important; + } + + .lg\:text-yellow-400 { + --tw-text-opacity: 1 !important; + color: rgba(251, 191, 36, var(--tw-text-opacity)) !important; + } + + .lg\:text-yellow-500 { + --tw-text-opacity: 1 !important; + color: rgba(245, 158, 11, var(--tw-text-opacity)) !important; + } + + .lg\:text-yellow-600 { + --tw-text-opacity: 1 !important; + color: rgba(217, 119, 6, var(--tw-text-opacity)) !important; + } + + .lg\:text-yellow-700 { + --tw-text-opacity: 1 !important; + color: rgba(180, 83, 9, var(--tw-text-opacity)) !important; + } + + .lg\:text-yellow-800 { + --tw-text-opacity: 1 !important; + color: rgba(146, 64, 14, var(--tw-text-opacity)) !important; + } + + .lg\:text-yellow-900 { + --tw-text-opacity: 1 !important; + color: rgba(120, 53, 15, var(--tw-text-opacity)) !important; + } + + .lg\:text-green-50 { + --tw-text-opacity: 1 !important; + color: rgba(236, 253, 245, var(--tw-text-opacity)) !important; + } + + .lg\:text-green-100 { + --tw-text-opacity: 1 !important; + color: rgba(209, 250, 229, var(--tw-text-opacity)) !important; + } + + .lg\:text-green-200 { + --tw-text-opacity: 1 !important; + color: rgba(167, 243, 208, var(--tw-text-opacity)) !important; + } + + .lg\:text-green-300 { + --tw-text-opacity: 1 !important; + color: rgba(110, 231, 183, var(--tw-text-opacity)) !important; + } + + .lg\:text-green-400 { + --tw-text-opacity: 1 !important; + color: rgba(52, 211, 153, var(--tw-text-opacity)) !important; + } + + .lg\:text-green-500 { + --tw-text-opacity: 1 !important; + color: rgba(16, 185, 129, var(--tw-text-opacity)) !important; + } + + .lg\:text-green-600 { + --tw-text-opacity: 1 !important; + color: rgba(5, 150, 105, var(--tw-text-opacity)) !important; + } + + .lg\:text-green-700 { + --tw-text-opacity: 1 !important; + color: rgba(4, 120, 87, var(--tw-text-opacity)) !important; + } + + .lg\:text-green-800 { + --tw-text-opacity: 1 !important; + color: rgba(6, 95, 70, var(--tw-text-opacity)) !important; + } + + .lg\:text-green-900 { + --tw-text-opacity: 1 !important; + color: rgba(6, 78, 59, var(--tw-text-opacity)) !important; + } + + .lg\:text-blue-50 { + --tw-text-opacity: 1 !important; + color: rgba(239, 246, 255, var(--tw-text-opacity)) !important; + } + + .lg\:text-blue-100 { + --tw-text-opacity: 1 !important; + color: rgba(219, 234, 254, var(--tw-text-opacity)) !important; + } + + .lg\:text-blue-200 { + --tw-text-opacity: 1 !important; + color: rgba(191, 219, 254, var(--tw-text-opacity)) !important; + } + + .lg\:text-blue-300 { + --tw-text-opacity: 1 !important; + color: rgba(147, 197, 253, var(--tw-text-opacity)) !important; + } + + .lg\:text-blue-400 { + --tw-text-opacity: 1 !important; + color: rgba(96, 165, 250, var(--tw-text-opacity)) !important; + } + + .lg\:text-blue-500 { + --tw-text-opacity: 1 !important; + color: rgba(59, 130, 246, var(--tw-text-opacity)) !important; + } + + .lg\:text-blue-600 { + --tw-text-opacity: 1 !important; + color: rgba(37, 99, 235, var(--tw-text-opacity)) !important; + } + + .lg\:text-blue-700 { + --tw-text-opacity: 1 !important; + color: rgba(29, 78, 216, var(--tw-text-opacity)) !important; + } + + .lg\:text-blue-800 { + --tw-text-opacity: 1 !important; + color: rgba(30, 64, 175, var(--tw-text-opacity)) !important; + } + + .lg\:text-blue-900 { + --tw-text-opacity: 1 !important; + color: rgba(30, 58, 138, var(--tw-text-opacity)) !important; + } + + .lg\:text-indigo-50 { + --tw-text-opacity: 1 !important; + color: rgba(238, 242, 255, var(--tw-text-opacity)) !important; + } + + .lg\:text-indigo-100 { + --tw-text-opacity: 1 !important; + color: rgba(224, 231, 255, var(--tw-text-opacity)) !important; + } + + .lg\:text-indigo-200 { + --tw-text-opacity: 1 !important; + color: rgba(199, 210, 254, var(--tw-text-opacity)) !important; + } + + .lg\:text-indigo-300 { + --tw-text-opacity: 1 !important; + color: rgba(165, 180, 252, var(--tw-text-opacity)) !important; + } + + .lg\:text-indigo-400 { + --tw-text-opacity: 1 !important; + color: rgba(129, 140, 248, var(--tw-text-opacity)) !important; + } + + .lg\:text-indigo-500 { + --tw-text-opacity: 1 !important; + color: rgba(99, 102, 241, var(--tw-text-opacity)) !important; + } + + .lg\:text-indigo-600 { + --tw-text-opacity: 1 !important; + color: rgba(79, 70, 229, var(--tw-text-opacity)) !important; + } + + .lg\:text-indigo-700 { + --tw-text-opacity: 1 !important; + color: rgba(67, 56, 202, var(--tw-text-opacity)) !important; + } + + .lg\:text-indigo-800 { + --tw-text-opacity: 1 !important; + color: rgba(55, 48, 163, var(--tw-text-opacity)) !important; + } + + .lg\:text-indigo-900 { + --tw-text-opacity: 1 !important; + color: rgba(49, 46, 129, var(--tw-text-opacity)) !important; + } + + .lg\:text-purple-50 { + --tw-text-opacity: 1 !important; + color: rgba(245, 243, 255, var(--tw-text-opacity)) !important; + } + + .lg\:text-purple-100 { + --tw-text-opacity: 1 !important; + color: rgba(237, 233, 254, var(--tw-text-opacity)) !important; + } + + .lg\:text-purple-200 { + --tw-text-opacity: 1 !important; + color: rgba(221, 214, 254, var(--tw-text-opacity)) !important; + } + + .lg\:text-purple-300 { + --tw-text-opacity: 1 !important; + color: rgba(196, 181, 253, var(--tw-text-opacity)) !important; + } + + .lg\:text-purple-400 { + --tw-text-opacity: 1 !important; + color: rgba(167, 139, 250, var(--tw-text-opacity)) !important; + } + + .lg\:text-purple-500 { + --tw-text-opacity: 1 !important; + color: rgba(139, 92, 246, var(--tw-text-opacity)) !important; + } + + .lg\:text-purple-600 { + --tw-text-opacity: 1 !important; + color: rgba(124, 58, 237, var(--tw-text-opacity)) !important; + } + + .lg\:text-purple-700 { + --tw-text-opacity: 1 !important; + color: rgba(109, 40, 217, var(--tw-text-opacity)) !important; + } + + .lg\:text-purple-800 { + --tw-text-opacity: 1 !important; + color: rgba(91, 33, 182, var(--tw-text-opacity)) !important; + } + + .lg\:text-purple-900 { + --tw-text-opacity: 1 !important; + color: rgba(76, 29, 149, var(--tw-text-opacity)) !important; + } + + .lg\:text-pink-50 { + --tw-text-opacity: 1 !important; + color: rgba(253, 242, 248, var(--tw-text-opacity)) !important; + } + + .lg\:text-pink-100 { + --tw-text-opacity: 1 !important; + color: rgba(252, 231, 243, var(--tw-text-opacity)) !important; + } + + .lg\:text-pink-200 { + --tw-text-opacity: 1 !important; + color: rgba(251, 207, 232, var(--tw-text-opacity)) !important; + } + + .lg\:text-pink-300 { + --tw-text-opacity: 1 !important; + color: rgba(249, 168, 212, var(--tw-text-opacity)) !important; + } + + .lg\:text-pink-400 { + --tw-text-opacity: 1 !important; + color: rgba(244, 114, 182, var(--tw-text-opacity)) !important; + } + + .lg\:text-pink-500 { + --tw-text-opacity: 1 !important; + color: rgba(236, 72, 153, var(--tw-text-opacity)) !important; + } + + .lg\:text-pink-600 { + --tw-text-opacity: 1 !important; + color: rgba(219, 39, 119, var(--tw-text-opacity)) !important; + } + + .lg\:text-pink-700 { + --tw-text-opacity: 1 !important; + color: rgba(190, 24, 93, var(--tw-text-opacity)) !important; + } + + .lg\:text-pink-800 { + --tw-text-opacity: 1 !important; + color: rgba(157, 23, 77, var(--tw-text-opacity)) !important; + } + + .lg\:text-pink-900 { + --tw-text-opacity: 1 !important; + color: rgba(131, 24, 67, var(--tw-text-opacity)) !important; + } + + .lg\:text-primary { + --tw-text-opacity: 1 !important; + color: rgba(0, 49, 151, var(--tw-text-opacity)) !important; + } + + .group:hover .lg\:group-hover\:text-transparent { + color: transparent !important; + } + + .group:hover .lg\:group-hover\:text-current { + color: currentColor !important; + } + + .group:hover .lg\:group-hover\:text-black { + --tw-text-opacity: 1 !important; + color: rgba(0, 0, 0, var(--tw-text-opacity)) !important; + } + + .group:hover .lg\:group-hover\:text-white { + --tw-text-opacity: 1 !important; + color: rgba(255, 255, 255, var(--tw-text-opacity)) !important; + } + + .group:hover .lg\:group-hover\:text-gray-50 { + --tw-text-opacity: 1 !important; + color: rgba(249, 250, 251, var(--tw-text-opacity)) !important; + } + + .group:hover .lg\:group-hover\:text-gray-100 { + --tw-text-opacity: 1 !important; + color: rgba(243, 244, 246, var(--tw-text-opacity)) !important; + } + + .group:hover .lg\:group-hover\:text-gray-200 { + --tw-text-opacity: 1 !important; + color: rgba(229, 231, 235, var(--tw-text-opacity)) !important; + } + + .group:hover .lg\:group-hover\:text-gray-300 { + --tw-text-opacity: 1 !important; + color: rgba(209, 213, 219, var(--tw-text-opacity)) !important; + } + + .group:hover .lg\:group-hover\:text-gray-400 { + --tw-text-opacity: 1 !important; + color: rgba(156, 163, 175, var(--tw-text-opacity)) !important; + } + + .group:hover .lg\:group-hover\:text-gray-500 { + --tw-text-opacity: 1 !important; + color: rgba(107, 114, 128, var(--tw-text-opacity)) !important; + } + + .group:hover .lg\:group-hover\:text-gray-600 { + --tw-text-opacity: 1 !important; + color: rgba(75, 85, 99, var(--tw-text-opacity)) !important; + } + + .group:hover .lg\:group-hover\:text-gray-700 { + --tw-text-opacity: 1 !important; + color: rgba(55, 65, 81, var(--tw-text-opacity)) !important; + } + + .group:hover .lg\:group-hover\:text-gray-800 { + --tw-text-opacity: 1 !important; + color: rgba(31, 41, 55, var(--tw-text-opacity)) !important; + } + + .group:hover .lg\:group-hover\:text-gray-900 { + --tw-text-opacity: 1 !important; + color: rgba(17, 24, 39, var(--tw-text-opacity)) !important; + } + + .group:hover .lg\:group-hover\:text-red-50 { + --tw-text-opacity: 1 !important; + color: rgba(254, 242, 242, var(--tw-text-opacity)) !important; + } + + .group:hover .lg\:group-hover\:text-red-100 { + --tw-text-opacity: 1 !important; + color: rgba(254, 226, 226, var(--tw-text-opacity)) !important; + } + + .group:hover .lg\:group-hover\:text-red-200 { + --tw-text-opacity: 1 !important; + color: rgba(254, 202, 202, var(--tw-text-opacity)) !important; + } + + .group:hover .lg\:group-hover\:text-red-300 { + --tw-text-opacity: 1 !important; + color: rgba(252, 165, 165, var(--tw-text-opacity)) !important; + } + + .group:hover .lg\:group-hover\:text-red-400 { + --tw-text-opacity: 1 !important; + color: rgba(248, 113, 113, var(--tw-text-opacity)) !important; + } + + .group:hover .lg\:group-hover\:text-red-500 { + --tw-text-opacity: 1 !important; + color: rgba(239, 68, 68, var(--tw-text-opacity)) !important; + } + + .group:hover .lg\:group-hover\:text-red-600 { + --tw-text-opacity: 1 !important; + color: rgba(220, 38, 38, var(--tw-text-opacity)) !important; + } + + .group:hover .lg\:group-hover\:text-red-700 { + --tw-text-opacity: 1 !important; + color: rgba(185, 28, 28, var(--tw-text-opacity)) !important; + } + + .group:hover .lg\:group-hover\:text-red-800 { + --tw-text-opacity: 1 !important; + color: rgba(153, 27, 27, var(--tw-text-opacity)) !important; + } + + .group:hover .lg\:group-hover\:text-red-900 { + --tw-text-opacity: 1 !important; + color: rgba(127, 29, 29, var(--tw-text-opacity)) !important; + } + + .group:hover .lg\:group-hover\:text-yellow-50 { + --tw-text-opacity: 1 !important; + color: rgba(255, 251, 235, var(--tw-text-opacity)) !important; + } + + .group:hover .lg\:group-hover\:text-yellow-100 { + --tw-text-opacity: 1 !important; + color: rgba(254, 243, 199, var(--tw-text-opacity)) !important; + } + + .group:hover .lg\:group-hover\:text-yellow-200 { + --tw-text-opacity: 1 !important; + color: rgba(253, 230, 138, var(--tw-text-opacity)) !important; + } + + .group:hover .lg\:group-hover\:text-yellow-300 { + --tw-text-opacity: 1 !important; + color: rgba(252, 211, 77, var(--tw-text-opacity)) !important; + } + + .group:hover .lg\:group-hover\:text-yellow-400 { + --tw-text-opacity: 1 !important; + color: rgba(251, 191, 36, var(--tw-text-opacity)) !important; + } + + .group:hover .lg\:group-hover\:text-yellow-500 { + --tw-text-opacity: 1 !important; + color: rgba(245, 158, 11, var(--tw-text-opacity)) !important; + } + + .group:hover .lg\:group-hover\:text-yellow-600 { + --tw-text-opacity: 1 !important; + color: rgba(217, 119, 6, var(--tw-text-opacity)) !important; + } + + .group:hover .lg\:group-hover\:text-yellow-700 { + --tw-text-opacity: 1 !important; + color: rgba(180, 83, 9, var(--tw-text-opacity)) !important; + } + + .group:hover .lg\:group-hover\:text-yellow-800 { + --tw-text-opacity: 1 !important; + color: rgba(146, 64, 14, var(--tw-text-opacity)) !important; + } + + .group:hover .lg\:group-hover\:text-yellow-900 { + --tw-text-opacity: 1 !important; + color: rgba(120, 53, 15, var(--tw-text-opacity)) !important; + } + + .group:hover .lg\:group-hover\:text-green-50 { + --tw-text-opacity: 1 !important; + color: rgba(236, 253, 245, var(--tw-text-opacity)) !important; + } + + .group:hover .lg\:group-hover\:text-green-100 { + --tw-text-opacity: 1 !important; + color: rgba(209, 250, 229, var(--tw-text-opacity)) !important; + } + + .group:hover .lg\:group-hover\:text-green-200 { + --tw-text-opacity: 1 !important; + color: rgba(167, 243, 208, var(--tw-text-opacity)) !important; + } + + .group:hover .lg\:group-hover\:text-green-300 { + --tw-text-opacity: 1 !important; + color: rgba(110, 231, 183, var(--tw-text-opacity)) !important; + } + + .group:hover .lg\:group-hover\:text-green-400 { + --tw-text-opacity: 1 !important; + color: rgba(52, 211, 153, var(--tw-text-opacity)) !important; + } + + .group:hover .lg\:group-hover\:text-green-500 { + --tw-text-opacity: 1 !important; + color: rgba(16, 185, 129, var(--tw-text-opacity)) !important; + } + + .group:hover .lg\:group-hover\:text-green-600 { + --tw-text-opacity: 1 !important; + color: rgba(5, 150, 105, var(--tw-text-opacity)) !important; + } + + .group:hover .lg\:group-hover\:text-green-700 { + --tw-text-opacity: 1 !important; + color: rgba(4, 120, 87, var(--tw-text-opacity)) !important; + } + + .group:hover .lg\:group-hover\:text-green-800 { + --tw-text-opacity: 1 !important; + color: rgba(6, 95, 70, var(--tw-text-opacity)) !important; + } + + .group:hover .lg\:group-hover\:text-green-900 { + --tw-text-opacity: 1 !important; + color: rgba(6, 78, 59, var(--tw-text-opacity)) !important; + } + + .group:hover .lg\:group-hover\:text-blue-50 { + --tw-text-opacity: 1 !important; + color: rgba(239, 246, 255, var(--tw-text-opacity)) !important; + } + + .group:hover .lg\:group-hover\:text-blue-100 { + --tw-text-opacity: 1 !important; + color: rgba(219, 234, 254, var(--tw-text-opacity)) !important; + } + + .group:hover .lg\:group-hover\:text-blue-200 { + --tw-text-opacity: 1 !important; + color: rgba(191, 219, 254, var(--tw-text-opacity)) !important; + } + + .group:hover .lg\:group-hover\:text-blue-300 { + --tw-text-opacity: 1 !important; + color: rgba(147, 197, 253, var(--tw-text-opacity)) !important; + } + + .group:hover .lg\:group-hover\:text-blue-400 { + --tw-text-opacity: 1 !important; + color: rgba(96, 165, 250, var(--tw-text-opacity)) !important; + } + + .group:hover .lg\:group-hover\:text-blue-500 { + --tw-text-opacity: 1 !important; + color: rgba(59, 130, 246, var(--tw-text-opacity)) !important; + } + + .group:hover .lg\:group-hover\:text-blue-600 { + --tw-text-opacity: 1 !important; + color: rgba(37, 99, 235, var(--tw-text-opacity)) !important; + } + + .group:hover .lg\:group-hover\:text-blue-700 { + --tw-text-opacity: 1 !important; + color: rgba(29, 78, 216, var(--tw-text-opacity)) !important; + } + + .group:hover .lg\:group-hover\:text-blue-800 { + --tw-text-opacity: 1 !important; + color: rgba(30, 64, 175, var(--tw-text-opacity)) !important; + } + + .group:hover .lg\:group-hover\:text-blue-900 { + --tw-text-opacity: 1 !important; + color: rgba(30, 58, 138, var(--tw-text-opacity)) !important; + } + + .group:hover .lg\:group-hover\:text-indigo-50 { + --tw-text-opacity: 1 !important; + color: rgba(238, 242, 255, var(--tw-text-opacity)) !important; + } + + .group:hover .lg\:group-hover\:text-indigo-100 { + --tw-text-opacity: 1 !important; + color: rgba(224, 231, 255, var(--tw-text-opacity)) !important; + } + + .group:hover .lg\:group-hover\:text-indigo-200 { + --tw-text-opacity: 1 !important; + color: rgba(199, 210, 254, var(--tw-text-opacity)) !important; + } + + .group:hover .lg\:group-hover\:text-indigo-300 { + --tw-text-opacity: 1 !important; + color: rgba(165, 180, 252, var(--tw-text-opacity)) !important; + } + + .group:hover .lg\:group-hover\:text-indigo-400 { + --tw-text-opacity: 1 !important; + color: rgba(129, 140, 248, var(--tw-text-opacity)) !important; + } + + .group:hover .lg\:group-hover\:text-indigo-500 { + --tw-text-opacity: 1 !important; + color: rgba(99, 102, 241, var(--tw-text-opacity)) !important; + } + + .group:hover .lg\:group-hover\:text-indigo-600 { + --tw-text-opacity: 1 !important; + color: rgba(79, 70, 229, var(--tw-text-opacity)) !important; + } + + .group:hover .lg\:group-hover\:text-indigo-700 { + --tw-text-opacity: 1 !important; + color: rgba(67, 56, 202, var(--tw-text-opacity)) !important; + } + + .group:hover .lg\:group-hover\:text-indigo-800 { + --tw-text-opacity: 1 !important; + color: rgba(55, 48, 163, var(--tw-text-opacity)) !important; + } + + .group:hover .lg\:group-hover\:text-indigo-900 { + --tw-text-opacity: 1 !important; + color: rgba(49, 46, 129, var(--tw-text-opacity)) !important; + } + + .group:hover .lg\:group-hover\:text-purple-50 { + --tw-text-opacity: 1 !important; + color: rgba(245, 243, 255, var(--tw-text-opacity)) !important; + } + + .group:hover .lg\:group-hover\:text-purple-100 { + --tw-text-opacity: 1 !important; + color: rgba(237, 233, 254, var(--tw-text-opacity)) !important; + } + + .group:hover .lg\:group-hover\:text-purple-200 { + --tw-text-opacity: 1 !important; + color: rgba(221, 214, 254, var(--tw-text-opacity)) !important; + } + + .group:hover .lg\:group-hover\:text-purple-300 { + --tw-text-opacity: 1 !important; + color: rgba(196, 181, 253, var(--tw-text-opacity)) !important; + } + + .group:hover .lg\:group-hover\:text-purple-400 { + --tw-text-opacity: 1 !important; + color: rgba(167, 139, 250, var(--tw-text-opacity)) !important; + } + + .group:hover .lg\:group-hover\:text-purple-500 { + --tw-text-opacity: 1 !important; + color: rgba(139, 92, 246, var(--tw-text-opacity)) !important; + } + + .group:hover .lg\:group-hover\:text-purple-600 { + --tw-text-opacity: 1 !important; + color: rgba(124, 58, 237, var(--tw-text-opacity)) !important; + } + + .group:hover .lg\:group-hover\:text-purple-700 { + --tw-text-opacity: 1 !important; + color: rgba(109, 40, 217, var(--tw-text-opacity)) !important; + } + + .group:hover .lg\:group-hover\:text-purple-800 { + --tw-text-opacity: 1 !important; + color: rgba(91, 33, 182, var(--tw-text-opacity)) !important; + } + + .group:hover .lg\:group-hover\:text-purple-900 { + --tw-text-opacity: 1 !important; + color: rgba(76, 29, 149, var(--tw-text-opacity)) !important; + } + + .group:hover .lg\:group-hover\:text-pink-50 { + --tw-text-opacity: 1 !important; + color: rgba(253, 242, 248, var(--tw-text-opacity)) !important; + } + + .group:hover .lg\:group-hover\:text-pink-100 { + --tw-text-opacity: 1 !important; + color: rgba(252, 231, 243, var(--tw-text-opacity)) !important; + } + + .group:hover .lg\:group-hover\:text-pink-200 { + --tw-text-opacity: 1 !important; + color: rgba(251, 207, 232, var(--tw-text-opacity)) !important; + } + + .group:hover .lg\:group-hover\:text-pink-300 { + --tw-text-opacity: 1 !important; + color: rgba(249, 168, 212, var(--tw-text-opacity)) !important; + } + + .group:hover .lg\:group-hover\:text-pink-400 { + --tw-text-opacity: 1 !important; + color: rgba(244, 114, 182, var(--tw-text-opacity)) !important; + } + + .group:hover .lg\:group-hover\:text-pink-500 { + --tw-text-opacity: 1 !important; + color: rgba(236, 72, 153, var(--tw-text-opacity)) !important; + } + + .group:hover .lg\:group-hover\:text-pink-600 { + --tw-text-opacity: 1 !important; + color: rgba(219, 39, 119, var(--tw-text-opacity)) !important; + } + + .group:hover .lg\:group-hover\:text-pink-700 { + --tw-text-opacity: 1 !important; + color: rgba(190, 24, 93, var(--tw-text-opacity)) !important; + } + + .group:hover .lg\:group-hover\:text-pink-800 { + --tw-text-opacity: 1 !important; + color: rgba(157, 23, 77, var(--tw-text-opacity)) !important; + } + + .group:hover .lg\:group-hover\:text-pink-900 { + --tw-text-opacity: 1 !important; + color: rgba(131, 24, 67, var(--tw-text-opacity)) !important; + } + + .group:hover .lg\:group-hover\:text-primary { + --tw-text-opacity: 1 !important; + color: rgba(0, 49, 151, var(--tw-text-opacity)) !important; + } + + .lg\:focus-within\:text-transparent:focus-within { + color: transparent !important; + } + + .lg\:focus-within\:text-current:focus-within { + color: currentColor !important; + } + + .lg\:focus-within\:text-black:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(0, 0, 0, var(--tw-text-opacity)) !important; + } + + .lg\:focus-within\:text-white:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(255, 255, 255, var(--tw-text-opacity)) !important; + } + + .lg\:focus-within\:text-gray-50:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(249, 250, 251, var(--tw-text-opacity)) !important; + } + + .lg\:focus-within\:text-gray-100:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(243, 244, 246, var(--tw-text-opacity)) !important; + } + + .lg\:focus-within\:text-gray-200:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(229, 231, 235, var(--tw-text-opacity)) !important; + } + + .lg\:focus-within\:text-gray-300:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(209, 213, 219, var(--tw-text-opacity)) !important; + } + + .lg\:focus-within\:text-gray-400:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(156, 163, 175, var(--tw-text-opacity)) !important; + } + + .lg\:focus-within\:text-gray-500:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(107, 114, 128, var(--tw-text-opacity)) !important; + } + + .lg\:focus-within\:text-gray-600:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(75, 85, 99, var(--tw-text-opacity)) !important; + } + + .lg\:focus-within\:text-gray-700:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(55, 65, 81, var(--tw-text-opacity)) !important; + } + + .lg\:focus-within\:text-gray-800:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(31, 41, 55, var(--tw-text-opacity)) !important; + } + + .lg\:focus-within\:text-gray-900:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(17, 24, 39, var(--tw-text-opacity)) !important; + } + + .lg\:focus-within\:text-red-50:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(254, 242, 242, var(--tw-text-opacity)) !important; + } + + .lg\:focus-within\:text-red-100:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(254, 226, 226, var(--tw-text-opacity)) !important; + } + + .lg\:focus-within\:text-red-200:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(254, 202, 202, var(--tw-text-opacity)) !important; + } + + .lg\:focus-within\:text-red-300:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(252, 165, 165, var(--tw-text-opacity)) !important; + } + + .lg\:focus-within\:text-red-400:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(248, 113, 113, var(--tw-text-opacity)) !important; + } + + .lg\:focus-within\:text-red-500:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(239, 68, 68, var(--tw-text-opacity)) !important; + } + + .lg\:focus-within\:text-red-600:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(220, 38, 38, var(--tw-text-opacity)) !important; + } + + .lg\:focus-within\:text-red-700:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(185, 28, 28, var(--tw-text-opacity)) !important; + } + + .lg\:focus-within\:text-red-800:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(153, 27, 27, var(--tw-text-opacity)) !important; + } + + .lg\:focus-within\:text-red-900:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(127, 29, 29, var(--tw-text-opacity)) !important; + } + + .lg\:focus-within\:text-yellow-50:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(255, 251, 235, var(--tw-text-opacity)) !important; + } + + .lg\:focus-within\:text-yellow-100:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(254, 243, 199, var(--tw-text-opacity)) !important; + } + + .lg\:focus-within\:text-yellow-200:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(253, 230, 138, var(--tw-text-opacity)) !important; + } + + .lg\:focus-within\:text-yellow-300:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(252, 211, 77, var(--tw-text-opacity)) !important; + } + + .lg\:focus-within\:text-yellow-400:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(251, 191, 36, var(--tw-text-opacity)) !important; + } + + .lg\:focus-within\:text-yellow-500:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(245, 158, 11, var(--tw-text-opacity)) !important; + } + + .lg\:focus-within\:text-yellow-600:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(217, 119, 6, var(--tw-text-opacity)) !important; + } + + .lg\:focus-within\:text-yellow-700:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(180, 83, 9, var(--tw-text-opacity)) !important; + } + + .lg\:focus-within\:text-yellow-800:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(146, 64, 14, var(--tw-text-opacity)) !important; + } + + .lg\:focus-within\:text-yellow-900:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(120, 53, 15, var(--tw-text-opacity)) !important; + } + + .lg\:focus-within\:text-green-50:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(236, 253, 245, var(--tw-text-opacity)) !important; + } + + .lg\:focus-within\:text-green-100:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(209, 250, 229, var(--tw-text-opacity)) !important; + } + + .lg\:focus-within\:text-green-200:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(167, 243, 208, var(--tw-text-opacity)) !important; + } + + .lg\:focus-within\:text-green-300:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(110, 231, 183, var(--tw-text-opacity)) !important; + } + + .lg\:focus-within\:text-green-400:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(52, 211, 153, var(--tw-text-opacity)) !important; + } + + .lg\:focus-within\:text-green-500:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(16, 185, 129, var(--tw-text-opacity)) !important; + } + + .lg\:focus-within\:text-green-600:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(5, 150, 105, var(--tw-text-opacity)) !important; + } + + .lg\:focus-within\:text-green-700:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(4, 120, 87, var(--tw-text-opacity)) !important; + } + + .lg\:focus-within\:text-green-800:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(6, 95, 70, var(--tw-text-opacity)) !important; + } + + .lg\:focus-within\:text-green-900:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(6, 78, 59, var(--tw-text-opacity)) !important; + } + + .lg\:focus-within\:text-blue-50:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(239, 246, 255, var(--tw-text-opacity)) !important; + } + + .lg\:focus-within\:text-blue-100:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(219, 234, 254, var(--tw-text-opacity)) !important; + } + + .lg\:focus-within\:text-blue-200:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(191, 219, 254, var(--tw-text-opacity)) !important; + } + + .lg\:focus-within\:text-blue-300:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(147, 197, 253, var(--tw-text-opacity)) !important; + } + + .lg\:focus-within\:text-blue-400:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(96, 165, 250, var(--tw-text-opacity)) !important; + } + + .lg\:focus-within\:text-blue-500:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(59, 130, 246, var(--tw-text-opacity)) !important; + } + + .lg\:focus-within\:text-blue-600:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(37, 99, 235, var(--tw-text-opacity)) !important; + } + + .lg\:focus-within\:text-blue-700:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(29, 78, 216, var(--tw-text-opacity)) !important; + } + + .lg\:focus-within\:text-blue-800:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(30, 64, 175, var(--tw-text-opacity)) !important; + } + + .lg\:focus-within\:text-blue-900:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(30, 58, 138, var(--tw-text-opacity)) !important; + } + + .lg\:focus-within\:text-indigo-50:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(238, 242, 255, var(--tw-text-opacity)) !important; + } + + .lg\:focus-within\:text-indigo-100:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(224, 231, 255, var(--tw-text-opacity)) !important; + } + + .lg\:focus-within\:text-indigo-200:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(199, 210, 254, var(--tw-text-opacity)) !important; + } + + .lg\:focus-within\:text-indigo-300:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(165, 180, 252, var(--tw-text-opacity)) !important; + } + + .lg\:focus-within\:text-indigo-400:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(129, 140, 248, var(--tw-text-opacity)) !important; + } + + .lg\:focus-within\:text-indigo-500:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(99, 102, 241, var(--tw-text-opacity)) !important; + } + + .lg\:focus-within\:text-indigo-600:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(79, 70, 229, var(--tw-text-opacity)) !important; + } + + .lg\:focus-within\:text-indigo-700:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(67, 56, 202, var(--tw-text-opacity)) !important; + } + + .lg\:focus-within\:text-indigo-800:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(55, 48, 163, var(--tw-text-opacity)) !important; + } + + .lg\:focus-within\:text-indigo-900:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(49, 46, 129, var(--tw-text-opacity)) !important; + } + + .lg\:focus-within\:text-purple-50:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(245, 243, 255, var(--tw-text-opacity)) !important; + } + + .lg\:focus-within\:text-purple-100:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(237, 233, 254, var(--tw-text-opacity)) !important; + } + + .lg\:focus-within\:text-purple-200:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(221, 214, 254, var(--tw-text-opacity)) !important; + } + + .lg\:focus-within\:text-purple-300:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(196, 181, 253, var(--tw-text-opacity)) !important; + } + + .lg\:focus-within\:text-purple-400:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(167, 139, 250, var(--tw-text-opacity)) !important; + } + + .lg\:focus-within\:text-purple-500:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(139, 92, 246, var(--tw-text-opacity)) !important; + } + + .lg\:focus-within\:text-purple-600:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(124, 58, 237, var(--tw-text-opacity)) !important; + } + + .lg\:focus-within\:text-purple-700:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(109, 40, 217, var(--tw-text-opacity)) !important; + } + + .lg\:focus-within\:text-purple-800:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(91, 33, 182, var(--tw-text-opacity)) !important; + } + + .lg\:focus-within\:text-purple-900:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(76, 29, 149, var(--tw-text-opacity)) !important; + } + + .lg\:focus-within\:text-pink-50:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(253, 242, 248, var(--tw-text-opacity)) !important; + } + + .lg\:focus-within\:text-pink-100:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(252, 231, 243, var(--tw-text-opacity)) !important; + } + + .lg\:focus-within\:text-pink-200:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(251, 207, 232, var(--tw-text-opacity)) !important; + } + + .lg\:focus-within\:text-pink-300:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(249, 168, 212, var(--tw-text-opacity)) !important; + } + + .lg\:focus-within\:text-pink-400:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(244, 114, 182, var(--tw-text-opacity)) !important; + } + + .lg\:focus-within\:text-pink-500:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(236, 72, 153, var(--tw-text-opacity)) !important; + } + + .lg\:focus-within\:text-pink-600:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(219, 39, 119, var(--tw-text-opacity)) !important; + } + + .lg\:focus-within\:text-pink-700:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(190, 24, 93, var(--tw-text-opacity)) !important; + } + + .lg\:focus-within\:text-pink-800:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(157, 23, 77, var(--tw-text-opacity)) !important; + } + + .lg\:focus-within\:text-pink-900:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(131, 24, 67, var(--tw-text-opacity)) !important; + } + + .lg\:focus-within\:text-primary:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(0, 49, 151, var(--tw-text-opacity)) !important; + } + + .lg\:hover\:text-transparent:hover { + color: transparent !important; + } + + .lg\:hover\:text-current:hover { + color: currentColor !important; + } + + .lg\:hover\:text-black:hover { + --tw-text-opacity: 1 !important; + color: rgba(0, 0, 0, var(--tw-text-opacity)) !important; + } + + .lg\:hover\:text-white:hover { + --tw-text-opacity: 1 !important; + color: rgba(255, 255, 255, var(--tw-text-opacity)) !important; + } + + .lg\:hover\:text-gray-50:hover { + --tw-text-opacity: 1 !important; + color: rgba(249, 250, 251, var(--tw-text-opacity)) !important; + } + + .lg\:hover\:text-gray-100:hover { + --tw-text-opacity: 1 !important; + color: rgba(243, 244, 246, var(--tw-text-opacity)) !important; + } + + .lg\:hover\:text-gray-200:hover { + --tw-text-opacity: 1 !important; + color: rgba(229, 231, 235, var(--tw-text-opacity)) !important; + } + + .lg\:hover\:text-gray-300:hover { + --tw-text-opacity: 1 !important; + color: rgba(209, 213, 219, var(--tw-text-opacity)) !important; + } + + .lg\:hover\:text-gray-400:hover { + --tw-text-opacity: 1 !important; + color: rgba(156, 163, 175, var(--tw-text-opacity)) !important; + } + + .lg\:hover\:text-gray-500:hover { + --tw-text-opacity: 1 !important; + color: rgba(107, 114, 128, var(--tw-text-opacity)) !important; + } + + .lg\:hover\:text-gray-600:hover { + --tw-text-opacity: 1 !important; + color: rgba(75, 85, 99, var(--tw-text-opacity)) !important; + } + + .lg\:hover\:text-gray-700:hover { + --tw-text-opacity: 1 !important; + color: rgba(55, 65, 81, var(--tw-text-opacity)) !important; + } + + .lg\:hover\:text-gray-800:hover { + --tw-text-opacity: 1 !important; + color: rgba(31, 41, 55, var(--tw-text-opacity)) !important; + } + + .lg\:hover\:text-gray-900:hover { + --tw-text-opacity: 1 !important; + color: rgba(17, 24, 39, var(--tw-text-opacity)) !important; + } + + .lg\:hover\:text-red-50:hover { + --tw-text-opacity: 1 !important; + color: rgba(254, 242, 242, var(--tw-text-opacity)) !important; + } + + .lg\:hover\:text-red-100:hover { + --tw-text-opacity: 1 !important; + color: rgba(254, 226, 226, var(--tw-text-opacity)) !important; + } + + .lg\:hover\:text-red-200:hover { + --tw-text-opacity: 1 !important; + color: rgba(254, 202, 202, var(--tw-text-opacity)) !important; + } + + .lg\:hover\:text-red-300:hover { + --tw-text-opacity: 1 !important; + color: rgba(252, 165, 165, var(--tw-text-opacity)) !important; + } + + .lg\:hover\:text-red-400:hover { + --tw-text-opacity: 1 !important; + color: rgba(248, 113, 113, var(--tw-text-opacity)) !important; + } + + .lg\:hover\:text-red-500:hover { + --tw-text-opacity: 1 !important; + color: rgba(239, 68, 68, var(--tw-text-opacity)) !important; + } + + .lg\:hover\:text-red-600:hover { + --tw-text-opacity: 1 !important; + color: rgba(220, 38, 38, var(--tw-text-opacity)) !important; + } + + .lg\:hover\:text-red-700:hover { + --tw-text-opacity: 1 !important; + color: rgba(185, 28, 28, var(--tw-text-opacity)) !important; + } + + .lg\:hover\:text-red-800:hover { + --tw-text-opacity: 1 !important; + color: rgba(153, 27, 27, var(--tw-text-opacity)) !important; + } + + .lg\:hover\:text-red-900:hover { + --tw-text-opacity: 1 !important; + color: rgba(127, 29, 29, var(--tw-text-opacity)) !important; + } + + .lg\:hover\:text-yellow-50:hover { + --tw-text-opacity: 1 !important; + color: rgba(255, 251, 235, var(--tw-text-opacity)) !important; + } + + .lg\:hover\:text-yellow-100:hover { + --tw-text-opacity: 1 !important; + color: rgba(254, 243, 199, var(--tw-text-opacity)) !important; + } + + .lg\:hover\:text-yellow-200:hover { + --tw-text-opacity: 1 !important; + color: rgba(253, 230, 138, var(--tw-text-opacity)) !important; + } + + .lg\:hover\:text-yellow-300:hover { + --tw-text-opacity: 1 !important; + color: rgba(252, 211, 77, var(--tw-text-opacity)) !important; + } + + .lg\:hover\:text-yellow-400:hover { + --tw-text-opacity: 1 !important; + color: rgba(251, 191, 36, var(--tw-text-opacity)) !important; + } + + .lg\:hover\:text-yellow-500:hover { + --tw-text-opacity: 1 !important; + color: rgba(245, 158, 11, var(--tw-text-opacity)) !important; + } + + .lg\:hover\:text-yellow-600:hover { + --tw-text-opacity: 1 !important; + color: rgba(217, 119, 6, var(--tw-text-opacity)) !important; + } + + .lg\:hover\:text-yellow-700:hover { + --tw-text-opacity: 1 !important; + color: rgba(180, 83, 9, var(--tw-text-opacity)) !important; + } + + .lg\:hover\:text-yellow-800:hover { + --tw-text-opacity: 1 !important; + color: rgba(146, 64, 14, var(--tw-text-opacity)) !important; + } + + .lg\:hover\:text-yellow-900:hover { + --tw-text-opacity: 1 !important; + color: rgba(120, 53, 15, var(--tw-text-opacity)) !important; + } + + .lg\:hover\:text-green-50:hover { + --tw-text-opacity: 1 !important; + color: rgba(236, 253, 245, var(--tw-text-opacity)) !important; + } + + .lg\:hover\:text-green-100:hover { + --tw-text-opacity: 1 !important; + color: rgba(209, 250, 229, var(--tw-text-opacity)) !important; + } + + .lg\:hover\:text-green-200:hover { + --tw-text-opacity: 1 !important; + color: rgba(167, 243, 208, var(--tw-text-opacity)) !important; + } + + .lg\:hover\:text-green-300:hover { + --tw-text-opacity: 1 !important; + color: rgba(110, 231, 183, var(--tw-text-opacity)) !important; + } + + .lg\:hover\:text-green-400:hover { + --tw-text-opacity: 1 !important; + color: rgba(52, 211, 153, var(--tw-text-opacity)) !important; + } + + .lg\:hover\:text-green-500:hover { + --tw-text-opacity: 1 !important; + color: rgba(16, 185, 129, var(--tw-text-opacity)) !important; + } + + .lg\:hover\:text-green-600:hover { + --tw-text-opacity: 1 !important; + color: rgba(5, 150, 105, var(--tw-text-opacity)) !important; + } + + .lg\:hover\:text-green-700:hover { + --tw-text-opacity: 1 !important; + color: rgba(4, 120, 87, var(--tw-text-opacity)) !important; + } + + .lg\:hover\:text-green-800:hover { + --tw-text-opacity: 1 !important; + color: rgba(6, 95, 70, var(--tw-text-opacity)) !important; + } + + .lg\:hover\:text-green-900:hover { + --tw-text-opacity: 1 !important; + color: rgba(6, 78, 59, var(--tw-text-opacity)) !important; + } + + .lg\:hover\:text-blue-50:hover { + --tw-text-opacity: 1 !important; + color: rgba(239, 246, 255, var(--tw-text-opacity)) !important; + } + + .lg\:hover\:text-blue-100:hover { + --tw-text-opacity: 1 !important; + color: rgba(219, 234, 254, var(--tw-text-opacity)) !important; + } + + .lg\:hover\:text-blue-200:hover { + --tw-text-opacity: 1 !important; + color: rgba(191, 219, 254, var(--tw-text-opacity)) !important; + } + + .lg\:hover\:text-blue-300:hover { + --tw-text-opacity: 1 !important; + color: rgba(147, 197, 253, var(--tw-text-opacity)) !important; + } + + .lg\:hover\:text-blue-400:hover { + --tw-text-opacity: 1 !important; + color: rgba(96, 165, 250, var(--tw-text-opacity)) !important; + } + + .lg\:hover\:text-blue-500:hover { + --tw-text-opacity: 1 !important; + color: rgba(59, 130, 246, var(--tw-text-opacity)) !important; + } + + .lg\:hover\:text-blue-600:hover { + --tw-text-opacity: 1 !important; + color: rgba(37, 99, 235, var(--tw-text-opacity)) !important; + } + + .lg\:hover\:text-blue-700:hover { + --tw-text-opacity: 1 !important; + color: rgba(29, 78, 216, var(--tw-text-opacity)) !important; + } + + .lg\:hover\:text-blue-800:hover { + --tw-text-opacity: 1 !important; + color: rgba(30, 64, 175, var(--tw-text-opacity)) !important; + } + + .lg\:hover\:text-blue-900:hover { + --tw-text-opacity: 1 !important; + color: rgba(30, 58, 138, var(--tw-text-opacity)) !important; + } + + .lg\:hover\:text-indigo-50:hover { + --tw-text-opacity: 1 !important; + color: rgba(238, 242, 255, var(--tw-text-opacity)) !important; + } + + .lg\:hover\:text-indigo-100:hover { + --tw-text-opacity: 1 !important; + color: rgba(224, 231, 255, var(--tw-text-opacity)) !important; + } + + .lg\:hover\:text-indigo-200:hover { + --tw-text-opacity: 1 !important; + color: rgba(199, 210, 254, var(--tw-text-opacity)) !important; + } + + .lg\:hover\:text-indigo-300:hover { + --tw-text-opacity: 1 !important; + color: rgba(165, 180, 252, var(--tw-text-opacity)) !important; + } + + .lg\:hover\:text-indigo-400:hover { + --tw-text-opacity: 1 !important; + color: rgba(129, 140, 248, var(--tw-text-opacity)) !important; + } + + .lg\:hover\:text-indigo-500:hover { + --tw-text-opacity: 1 !important; + color: rgba(99, 102, 241, var(--tw-text-opacity)) !important; + } + + .lg\:hover\:text-indigo-600:hover { + --tw-text-opacity: 1 !important; + color: rgba(79, 70, 229, var(--tw-text-opacity)) !important; + } + + .lg\:hover\:text-indigo-700:hover { + --tw-text-opacity: 1 !important; + color: rgba(67, 56, 202, var(--tw-text-opacity)) !important; + } + + .lg\:hover\:text-indigo-800:hover { + --tw-text-opacity: 1 !important; + color: rgba(55, 48, 163, var(--tw-text-opacity)) !important; + } + + .lg\:hover\:text-indigo-900:hover { + --tw-text-opacity: 1 !important; + color: rgba(49, 46, 129, var(--tw-text-opacity)) !important; + } + + .lg\:hover\:text-purple-50:hover { + --tw-text-opacity: 1 !important; + color: rgba(245, 243, 255, var(--tw-text-opacity)) !important; + } + + .lg\:hover\:text-purple-100:hover { + --tw-text-opacity: 1 !important; + color: rgba(237, 233, 254, var(--tw-text-opacity)) !important; + } + + .lg\:hover\:text-purple-200:hover { + --tw-text-opacity: 1 !important; + color: rgba(221, 214, 254, var(--tw-text-opacity)) !important; + } + + .lg\:hover\:text-purple-300:hover { + --tw-text-opacity: 1 !important; + color: rgba(196, 181, 253, var(--tw-text-opacity)) !important; + } + + .lg\:hover\:text-purple-400:hover { + --tw-text-opacity: 1 !important; + color: rgba(167, 139, 250, var(--tw-text-opacity)) !important; + } + + .lg\:hover\:text-purple-500:hover { + --tw-text-opacity: 1 !important; + color: rgba(139, 92, 246, var(--tw-text-opacity)) !important; + } + + .lg\:hover\:text-purple-600:hover { + --tw-text-opacity: 1 !important; + color: rgba(124, 58, 237, var(--tw-text-opacity)) !important; + } + + .lg\:hover\:text-purple-700:hover { + --tw-text-opacity: 1 !important; + color: rgba(109, 40, 217, var(--tw-text-opacity)) !important; + } + + .lg\:hover\:text-purple-800:hover { + --tw-text-opacity: 1 !important; + color: rgba(91, 33, 182, var(--tw-text-opacity)) !important; + } + + .lg\:hover\:text-purple-900:hover { + --tw-text-opacity: 1 !important; + color: rgba(76, 29, 149, var(--tw-text-opacity)) !important; + } + + .lg\:hover\:text-pink-50:hover { + --tw-text-opacity: 1 !important; + color: rgba(253, 242, 248, var(--tw-text-opacity)) !important; + } + + .lg\:hover\:text-pink-100:hover { + --tw-text-opacity: 1 !important; + color: rgba(252, 231, 243, var(--tw-text-opacity)) !important; + } + + .lg\:hover\:text-pink-200:hover { + --tw-text-opacity: 1 !important; + color: rgba(251, 207, 232, var(--tw-text-opacity)) !important; + } + + .lg\:hover\:text-pink-300:hover { + --tw-text-opacity: 1 !important; + color: rgba(249, 168, 212, var(--tw-text-opacity)) !important; + } + + .lg\:hover\:text-pink-400:hover { + --tw-text-opacity: 1 !important; + color: rgba(244, 114, 182, var(--tw-text-opacity)) !important; + } + + .lg\:hover\:text-pink-500:hover { + --tw-text-opacity: 1 !important; + color: rgba(236, 72, 153, var(--tw-text-opacity)) !important; + } + + .lg\:hover\:text-pink-600:hover { + --tw-text-opacity: 1 !important; + color: rgba(219, 39, 119, var(--tw-text-opacity)) !important; + } + + .lg\:hover\:text-pink-700:hover { + --tw-text-opacity: 1 !important; + color: rgba(190, 24, 93, var(--tw-text-opacity)) !important; + } + + .lg\:hover\:text-pink-800:hover { + --tw-text-opacity: 1 !important; + color: rgba(157, 23, 77, var(--tw-text-opacity)) !important; + } + + .lg\:hover\:text-pink-900:hover { + --tw-text-opacity: 1 !important; + color: rgba(131, 24, 67, var(--tw-text-opacity)) !important; + } + + .lg\:hover\:text-primary:hover { + --tw-text-opacity: 1 !important; + color: rgba(0, 49, 151, var(--tw-text-opacity)) !important; + } + + .lg\:focus\:text-transparent:focus { + color: transparent !important; + } + + .lg\:focus\:text-current:focus { + color: currentColor !important; + } + + .lg\:focus\:text-black:focus { + --tw-text-opacity: 1 !important; + color: rgba(0, 0, 0, var(--tw-text-opacity)) !important; + } + + .lg\:focus\:text-white:focus { + --tw-text-opacity: 1 !important; + color: rgba(255, 255, 255, var(--tw-text-opacity)) !important; + } + + .lg\:focus\:text-gray-50:focus { + --tw-text-opacity: 1 !important; + color: rgba(249, 250, 251, var(--tw-text-opacity)) !important; + } + + .lg\:focus\:text-gray-100:focus { + --tw-text-opacity: 1 !important; + color: rgba(243, 244, 246, var(--tw-text-opacity)) !important; + } + + .lg\:focus\:text-gray-200:focus { + --tw-text-opacity: 1 !important; + color: rgba(229, 231, 235, var(--tw-text-opacity)) !important; + } + + .lg\:focus\:text-gray-300:focus { + --tw-text-opacity: 1 !important; + color: rgba(209, 213, 219, var(--tw-text-opacity)) !important; + } + + .lg\:focus\:text-gray-400:focus { + --tw-text-opacity: 1 !important; + color: rgba(156, 163, 175, var(--tw-text-opacity)) !important; + } + + .lg\:focus\:text-gray-500:focus { + --tw-text-opacity: 1 !important; + color: rgba(107, 114, 128, var(--tw-text-opacity)) !important; + } + + .lg\:focus\:text-gray-600:focus { + --tw-text-opacity: 1 !important; + color: rgba(75, 85, 99, var(--tw-text-opacity)) !important; + } + + .lg\:focus\:text-gray-700:focus { + --tw-text-opacity: 1 !important; + color: rgba(55, 65, 81, var(--tw-text-opacity)) !important; + } + + .lg\:focus\:text-gray-800:focus { + --tw-text-opacity: 1 !important; + color: rgba(31, 41, 55, var(--tw-text-opacity)) !important; + } + + .lg\:focus\:text-gray-900:focus { + --tw-text-opacity: 1 !important; + color: rgba(17, 24, 39, var(--tw-text-opacity)) !important; + } + + .lg\:focus\:text-red-50:focus { + --tw-text-opacity: 1 !important; + color: rgba(254, 242, 242, var(--tw-text-opacity)) !important; + } + + .lg\:focus\:text-red-100:focus { + --tw-text-opacity: 1 !important; + color: rgba(254, 226, 226, var(--tw-text-opacity)) !important; + } + + .lg\:focus\:text-red-200:focus { + --tw-text-opacity: 1 !important; + color: rgba(254, 202, 202, var(--tw-text-opacity)) !important; + } + + .lg\:focus\:text-red-300:focus { + --tw-text-opacity: 1 !important; + color: rgba(252, 165, 165, var(--tw-text-opacity)) !important; + } + + .lg\:focus\:text-red-400:focus { + --tw-text-opacity: 1 !important; + color: rgba(248, 113, 113, var(--tw-text-opacity)) !important; + } + + .lg\:focus\:text-red-500:focus { + --tw-text-opacity: 1 !important; + color: rgba(239, 68, 68, var(--tw-text-opacity)) !important; + } + + .lg\:focus\:text-red-600:focus { + --tw-text-opacity: 1 !important; + color: rgba(220, 38, 38, var(--tw-text-opacity)) !important; + } + + .lg\:focus\:text-red-700:focus { + --tw-text-opacity: 1 !important; + color: rgba(185, 28, 28, var(--tw-text-opacity)) !important; + } + + .lg\:focus\:text-red-800:focus { + --tw-text-opacity: 1 !important; + color: rgba(153, 27, 27, var(--tw-text-opacity)) !important; + } + + .lg\:focus\:text-red-900:focus { + --tw-text-opacity: 1 !important; + color: rgba(127, 29, 29, var(--tw-text-opacity)) !important; + } + + .lg\:focus\:text-yellow-50:focus { + --tw-text-opacity: 1 !important; + color: rgba(255, 251, 235, var(--tw-text-opacity)) !important; + } + + .lg\:focus\:text-yellow-100:focus { + --tw-text-opacity: 1 !important; + color: rgba(254, 243, 199, var(--tw-text-opacity)) !important; + } + + .lg\:focus\:text-yellow-200:focus { + --tw-text-opacity: 1 !important; + color: rgba(253, 230, 138, var(--tw-text-opacity)) !important; + } + + .lg\:focus\:text-yellow-300:focus { + --tw-text-opacity: 1 !important; + color: rgba(252, 211, 77, var(--tw-text-opacity)) !important; + } + + .lg\:focus\:text-yellow-400:focus { + --tw-text-opacity: 1 !important; + color: rgba(251, 191, 36, var(--tw-text-opacity)) !important; + } + + .lg\:focus\:text-yellow-500:focus { + --tw-text-opacity: 1 !important; + color: rgba(245, 158, 11, var(--tw-text-opacity)) !important; + } + + .lg\:focus\:text-yellow-600:focus { + --tw-text-opacity: 1 !important; + color: rgba(217, 119, 6, var(--tw-text-opacity)) !important; + } + + .lg\:focus\:text-yellow-700:focus { + --tw-text-opacity: 1 !important; + color: rgba(180, 83, 9, var(--tw-text-opacity)) !important; + } + + .lg\:focus\:text-yellow-800:focus { + --tw-text-opacity: 1 !important; + color: rgba(146, 64, 14, var(--tw-text-opacity)) !important; + } + + .lg\:focus\:text-yellow-900:focus { + --tw-text-opacity: 1 !important; + color: rgba(120, 53, 15, var(--tw-text-opacity)) !important; + } + + .lg\:focus\:text-green-50:focus { + --tw-text-opacity: 1 !important; + color: rgba(236, 253, 245, var(--tw-text-opacity)) !important; + } + + .lg\:focus\:text-green-100:focus { + --tw-text-opacity: 1 !important; + color: rgba(209, 250, 229, var(--tw-text-opacity)) !important; + } + + .lg\:focus\:text-green-200:focus { + --tw-text-opacity: 1 !important; + color: rgba(167, 243, 208, var(--tw-text-opacity)) !important; + } + + .lg\:focus\:text-green-300:focus { + --tw-text-opacity: 1 !important; + color: rgba(110, 231, 183, var(--tw-text-opacity)) !important; + } + + .lg\:focus\:text-green-400:focus { + --tw-text-opacity: 1 !important; + color: rgba(52, 211, 153, var(--tw-text-opacity)) !important; + } + + .lg\:focus\:text-green-500:focus { + --tw-text-opacity: 1 !important; + color: rgba(16, 185, 129, var(--tw-text-opacity)) !important; + } + + .lg\:focus\:text-green-600:focus { + --tw-text-opacity: 1 !important; + color: rgba(5, 150, 105, var(--tw-text-opacity)) !important; + } + + .lg\:focus\:text-green-700:focus { + --tw-text-opacity: 1 !important; + color: rgba(4, 120, 87, var(--tw-text-opacity)) !important; + } + + .lg\:focus\:text-green-800:focus { + --tw-text-opacity: 1 !important; + color: rgba(6, 95, 70, var(--tw-text-opacity)) !important; + } + + .lg\:focus\:text-green-900:focus { + --tw-text-opacity: 1 !important; + color: rgba(6, 78, 59, var(--tw-text-opacity)) !important; + } + + .lg\:focus\:text-blue-50:focus { + --tw-text-opacity: 1 !important; + color: rgba(239, 246, 255, var(--tw-text-opacity)) !important; + } + + .lg\:focus\:text-blue-100:focus { + --tw-text-opacity: 1 !important; + color: rgba(219, 234, 254, var(--tw-text-opacity)) !important; + } + + .lg\:focus\:text-blue-200:focus { + --tw-text-opacity: 1 !important; + color: rgba(191, 219, 254, var(--tw-text-opacity)) !important; + } + + .lg\:focus\:text-blue-300:focus { + --tw-text-opacity: 1 !important; + color: rgba(147, 197, 253, var(--tw-text-opacity)) !important; + } + + .lg\:focus\:text-blue-400:focus { + --tw-text-opacity: 1 !important; + color: rgba(96, 165, 250, var(--tw-text-opacity)) !important; + } + + .lg\:focus\:text-blue-500:focus { + --tw-text-opacity: 1 !important; + color: rgba(59, 130, 246, var(--tw-text-opacity)) !important; + } + + .lg\:focus\:text-blue-600:focus { + --tw-text-opacity: 1 !important; + color: rgba(37, 99, 235, var(--tw-text-opacity)) !important; + } + + .lg\:focus\:text-blue-700:focus { + --tw-text-opacity: 1 !important; + color: rgba(29, 78, 216, var(--tw-text-opacity)) !important; + } + + .lg\:focus\:text-blue-800:focus { + --tw-text-opacity: 1 !important; + color: rgba(30, 64, 175, var(--tw-text-opacity)) !important; + } + + .lg\:focus\:text-blue-900:focus { + --tw-text-opacity: 1 !important; + color: rgba(30, 58, 138, var(--tw-text-opacity)) !important; + } + + .lg\:focus\:text-indigo-50:focus { + --tw-text-opacity: 1 !important; + color: rgba(238, 242, 255, var(--tw-text-opacity)) !important; + } + + .lg\:focus\:text-indigo-100:focus { + --tw-text-opacity: 1 !important; + color: rgba(224, 231, 255, var(--tw-text-opacity)) !important; + } + + .lg\:focus\:text-indigo-200:focus { + --tw-text-opacity: 1 !important; + color: rgba(199, 210, 254, var(--tw-text-opacity)) !important; + } + + .lg\:focus\:text-indigo-300:focus { + --tw-text-opacity: 1 !important; + color: rgba(165, 180, 252, var(--tw-text-opacity)) !important; + } + + .lg\:focus\:text-indigo-400:focus { + --tw-text-opacity: 1 !important; + color: rgba(129, 140, 248, var(--tw-text-opacity)) !important; + } + + .lg\:focus\:text-indigo-500:focus { + --tw-text-opacity: 1 !important; + color: rgba(99, 102, 241, var(--tw-text-opacity)) !important; + } + + .lg\:focus\:text-indigo-600:focus { + --tw-text-opacity: 1 !important; + color: rgba(79, 70, 229, var(--tw-text-opacity)) !important; + } + + .lg\:focus\:text-indigo-700:focus { + --tw-text-opacity: 1 !important; + color: rgba(67, 56, 202, var(--tw-text-opacity)) !important; + } + + .lg\:focus\:text-indigo-800:focus { + --tw-text-opacity: 1 !important; + color: rgba(55, 48, 163, var(--tw-text-opacity)) !important; + } + + .lg\:focus\:text-indigo-900:focus { + --tw-text-opacity: 1 !important; + color: rgba(49, 46, 129, var(--tw-text-opacity)) !important; + } + + .lg\:focus\:text-purple-50:focus { + --tw-text-opacity: 1 !important; + color: rgba(245, 243, 255, var(--tw-text-opacity)) !important; + } + + .lg\:focus\:text-purple-100:focus { + --tw-text-opacity: 1 !important; + color: rgba(237, 233, 254, var(--tw-text-opacity)) !important; + } + + .lg\:focus\:text-purple-200:focus { + --tw-text-opacity: 1 !important; + color: rgba(221, 214, 254, var(--tw-text-opacity)) !important; + } + + .lg\:focus\:text-purple-300:focus { + --tw-text-opacity: 1 !important; + color: rgba(196, 181, 253, var(--tw-text-opacity)) !important; + } + + .lg\:focus\:text-purple-400:focus { + --tw-text-opacity: 1 !important; + color: rgba(167, 139, 250, var(--tw-text-opacity)) !important; + } + + .lg\:focus\:text-purple-500:focus { + --tw-text-opacity: 1 !important; + color: rgba(139, 92, 246, var(--tw-text-opacity)) !important; + } + + .lg\:focus\:text-purple-600:focus { + --tw-text-opacity: 1 !important; + color: rgba(124, 58, 237, var(--tw-text-opacity)) !important; + } + + .lg\:focus\:text-purple-700:focus { + --tw-text-opacity: 1 !important; + color: rgba(109, 40, 217, var(--tw-text-opacity)) !important; + } + + .lg\:focus\:text-purple-800:focus { + --tw-text-opacity: 1 !important; + color: rgba(91, 33, 182, var(--tw-text-opacity)) !important; + } + + .lg\:focus\:text-purple-900:focus { + --tw-text-opacity: 1 !important; + color: rgba(76, 29, 149, var(--tw-text-opacity)) !important; + } + + .lg\:focus\:text-pink-50:focus { + --tw-text-opacity: 1 !important; + color: rgba(253, 242, 248, var(--tw-text-opacity)) !important; + } + + .lg\:focus\:text-pink-100:focus { + --tw-text-opacity: 1 !important; + color: rgba(252, 231, 243, var(--tw-text-opacity)) !important; + } + + .lg\:focus\:text-pink-200:focus { + --tw-text-opacity: 1 !important; + color: rgba(251, 207, 232, var(--tw-text-opacity)) !important; + } + + .lg\:focus\:text-pink-300:focus { + --tw-text-opacity: 1 !important; + color: rgba(249, 168, 212, var(--tw-text-opacity)) !important; + } + + .lg\:focus\:text-pink-400:focus { + --tw-text-opacity: 1 !important; + color: rgba(244, 114, 182, var(--tw-text-opacity)) !important; + } + + .lg\:focus\:text-pink-500:focus { + --tw-text-opacity: 1 !important; + color: rgba(236, 72, 153, var(--tw-text-opacity)) !important; + } + + .lg\:focus\:text-pink-600:focus { + --tw-text-opacity: 1 !important; + color: rgba(219, 39, 119, var(--tw-text-opacity)) !important; + } + + .lg\:focus\:text-pink-700:focus { + --tw-text-opacity: 1 !important; + color: rgba(190, 24, 93, var(--tw-text-opacity)) !important; + } + + .lg\:focus\:text-pink-800:focus { + --tw-text-opacity: 1 !important; + color: rgba(157, 23, 77, var(--tw-text-opacity)) !important; + } + + .lg\:focus\:text-pink-900:focus { + --tw-text-opacity: 1 !important; + color: rgba(131, 24, 67, var(--tw-text-opacity)) !important; + } + + .lg\:focus\:text-primary:focus { + --tw-text-opacity: 1 !important; + color: rgba(0, 49, 151, var(--tw-text-opacity)) !important; + } + + .lg\:text-opacity-0 { + --tw-text-opacity: 0 !important; + } + + .lg\:text-opacity-5 { + --tw-text-opacity: 0.05 !important; + } + + .lg\:text-opacity-10 { + --tw-text-opacity: 0.1 !important; + } + + .lg\:text-opacity-20 { + --tw-text-opacity: 0.2 !important; + } + + .lg\:text-opacity-25 { + --tw-text-opacity: 0.25 !important; + } + + .lg\:text-opacity-30 { + --tw-text-opacity: 0.3 !important; + } + + .lg\:text-opacity-40 { + --tw-text-opacity: 0.4 !important; + } + + .lg\:text-opacity-50 { + --tw-text-opacity: 0.5 !important; + } + + .lg\:text-opacity-60 { + --tw-text-opacity: 0.6 !important; + } + + .lg\:text-opacity-70 { + --tw-text-opacity: 0.7 !important; + } + + .lg\:text-opacity-75 { + --tw-text-opacity: 0.75 !important; + } + + .lg\:text-opacity-80 { + --tw-text-opacity: 0.8 !important; + } + + .lg\:text-opacity-90 { + --tw-text-opacity: 0.9 !important; + } + + .lg\:text-opacity-95 { + --tw-text-opacity: 0.95 !important; + } + + .lg\:text-opacity-100 { + --tw-text-opacity: 1 !important; + } + + .group:hover .lg\:group-hover\:text-opacity-0 { + --tw-text-opacity: 0 !important; + } + + .group:hover .lg\:group-hover\:text-opacity-5 { + --tw-text-opacity: 0.05 !important; + } + + .group:hover .lg\:group-hover\:text-opacity-10 { + --tw-text-opacity: 0.1 !important; + } + + .group:hover .lg\:group-hover\:text-opacity-20 { + --tw-text-opacity: 0.2 !important; + } + + .group:hover .lg\:group-hover\:text-opacity-25 { + --tw-text-opacity: 0.25 !important; + } + + .group:hover .lg\:group-hover\:text-opacity-30 { + --tw-text-opacity: 0.3 !important; + } + + .group:hover .lg\:group-hover\:text-opacity-40 { + --tw-text-opacity: 0.4 !important; + } + + .group:hover .lg\:group-hover\:text-opacity-50 { + --tw-text-opacity: 0.5 !important; + } + + .group:hover .lg\:group-hover\:text-opacity-60 { + --tw-text-opacity: 0.6 !important; + } + + .group:hover .lg\:group-hover\:text-opacity-70 { + --tw-text-opacity: 0.7 !important; + } + + .group:hover .lg\:group-hover\:text-opacity-75 { + --tw-text-opacity: 0.75 !important; + } + + .group:hover .lg\:group-hover\:text-opacity-80 { + --tw-text-opacity: 0.8 !important; + } + + .group:hover .lg\:group-hover\:text-opacity-90 { + --tw-text-opacity: 0.9 !important; + } + + .group:hover .lg\:group-hover\:text-opacity-95 { + --tw-text-opacity: 0.95 !important; + } + + .group:hover .lg\:group-hover\:text-opacity-100 { + --tw-text-opacity: 1 !important; + } + + .lg\:focus-within\:text-opacity-0:focus-within { + --tw-text-opacity: 0 !important; + } + + .lg\:focus-within\:text-opacity-5:focus-within { + --tw-text-opacity: 0.05 !important; + } + + .lg\:focus-within\:text-opacity-10:focus-within { + --tw-text-opacity: 0.1 !important; + } + + .lg\:focus-within\:text-opacity-20:focus-within { + --tw-text-opacity: 0.2 !important; + } + + .lg\:focus-within\:text-opacity-25:focus-within { + --tw-text-opacity: 0.25 !important; + } + + .lg\:focus-within\:text-opacity-30:focus-within { + --tw-text-opacity: 0.3 !important; + } + + .lg\:focus-within\:text-opacity-40:focus-within { + --tw-text-opacity: 0.4 !important; + } + + .lg\:focus-within\:text-opacity-50:focus-within { + --tw-text-opacity: 0.5 !important; + } + + .lg\:focus-within\:text-opacity-60:focus-within { + --tw-text-opacity: 0.6 !important; + } + + .lg\:focus-within\:text-opacity-70:focus-within { + --tw-text-opacity: 0.7 !important; + } + + .lg\:focus-within\:text-opacity-75:focus-within { + --tw-text-opacity: 0.75 !important; + } + + .lg\:focus-within\:text-opacity-80:focus-within { + --tw-text-opacity: 0.8 !important; + } + + .lg\:focus-within\:text-opacity-90:focus-within { + --tw-text-opacity: 0.9 !important; + } + + .lg\:focus-within\:text-opacity-95:focus-within { + --tw-text-opacity: 0.95 !important; + } + + .lg\:focus-within\:text-opacity-100:focus-within { + --tw-text-opacity: 1 !important; + } + + .lg\:hover\:text-opacity-0:hover { + --tw-text-opacity: 0 !important; + } + + .lg\:hover\:text-opacity-5:hover { + --tw-text-opacity: 0.05 !important; + } + + .lg\:hover\:text-opacity-10:hover { + --tw-text-opacity: 0.1 !important; + } + + .lg\:hover\:text-opacity-20:hover { + --tw-text-opacity: 0.2 !important; + } + + .lg\:hover\:text-opacity-25:hover { + --tw-text-opacity: 0.25 !important; + } + + .lg\:hover\:text-opacity-30:hover { + --tw-text-opacity: 0.3 !important; + } + + .lg\:hover\:text-opacity-40:hover { + --tw-text-opacity: 0.4 !important; + } + + .lg\:hover\:text-opacity-50:hover { + --tw-text-opacity: 0.5 !important; + } + + .lg\:hover\:text-opacity-60:hover { + --tw-text-opacity: 0.6 !important; + } + + .lg\:hover\:text-opacity-70:hover { + --tw-text-opacity: 0.7 !important; + } + + .lg\:hover\:text-opacity-75:hover { + --tw-text-opacity: 0.75 !important; + } + + .lg\:hover\:text-opacity-80:hover { + --tw-text-opacity: 0.8 !important; + } + + .lg\:hover\:text-opacity-90:hover { + --tw-text-opacity: 0.9 !important; + } + + .lg\:hover\:text-opacity-95:hover { + --tw-text-opacity: 0.95 !important; + } + + .lg\:hover\:text-opacity-100:hover { + --tw-text-opacity: 1 !important; + } + + .lg\:focus\:text-opacity-0:focus { + --tw-text-opacity: 0 !important; + } + + .lg\:focus\:text-opacity-5:focus { + --tw-text-opacity: 0.05 !important; + } + + .lg\:focus\:text-opacity-10:focus { + --tw-text-opacity: 0.1 !important; + } + + .lg\:focus\:text-opacity-20:focus { + --tw-text-opacity: 0.2 !important; + } + + .lg\:focus\:text-opacity-25:focus { + --tw-text-opacity: 0.25 !important; + } + + .lg\:focus\:text-opacity-30:focus { + --tw-text-opacity: 0.3 !important; + } + + .lg\:focus\:text-opacity-40:focus { + --tw-text-opacity: 0.4 !important; + } + + .lg\:focus\:text-opacity-50:focus { + --tw-text-opacity: 0.5 !important; + } + + .lg\:focus\:text-opacity-60:focus { + --tw-text-opacity: 0.6 !important; + } + + .lg\:focus\:text-opacity-70:focus { + --tw-text-opacity: 0.7 !important; + } + + .lg\:focus\:text-opacity-75:focus { + --tw-text-opacity: 0.75 !important; + } + + .lg\:focus\:text-opacity-80:focus { + --tw-text-opacity: 0.8 !important; + } + + .lg\:focus\:text-opacity-90:focus { + --tw-text-opacity: 0.9 !important; + } + + .lg\:focus\:text-opacity-95:focus { + --tw-text-opacity: 0.95 !important; + } + + .lg\:focus\:text-opacity-100:focus { + --tw-text-opacity: 1 !important; + } + + .lg\:truncate { + overflow: hidden !important; + text-overflow: ellipsis !important; + white-space: nowrap !important; + } + + .lg\:overflow-ellipsis { + text-overflow: ellipsis !important; + } + + .lg\:overflow-clip { + text-overflow: clip !important; + } + + .lg\:italic { + font-style: italic !important; + } + + .lg\:not-italic { + font-style: normal !important; + } + + .lg\:uppercase { + text-transform: uppercase !important; + } + + .lg\:lowercase { + text-transform: lowercase !important; + } + + .lg\:capitalize { + text-transform: capitalize !important; + } + + .lg\:normal-case { + text-transform: none !important; + } + + .lg\:underline { + text-decoration: underline !important; + } + + .lg\:line-through { + text-decoration: line-through !important; + } + + .lg\:no-underline { + text-decoration: none !important; + } + + .group:hover .lg\:group-hover\:underline { + text-decoration: underline !important; + } + + .group:hover .lg\:group-hover\:line-through { + text-decoration: line-through !important; + } + + .group:hover .lg\:group-hover\:no-underline { + text-decoration: none !important; + } + + .lg\:focus-within\:underline:focus-within { + text-decoration: underline !important; + } + + .lg\:focus-within\:line-through:focus-within { + text-decoration: line-through !important; + } + + .lg\:focus-within\:no-underline:focus-within { + text-decoration: none !important; + } + + .lg\:hover\:underline:hover { + text-decoration: underline !important; + } + + .lg\:hover\:line-through:hover { + text-decoration: line-through !important; + } + + .lg\:hover\:no-underline:hover { + text-decoration: none !important; + } + + .lg\:focus\:underline:focus { + text-decoration: underline !important; + } + + .lg\:focus\:line-through:focus { + text-decoration: line-through !important; + } + + .lg\:focus\:no-underline:focus { + text-decoration: none !important; + } + + .lg\:antialiased { + -webkit-font-smoothing: antialiased !important; + -moz-osx-font-smoothing: grayscale !important; + } + + .lg\:subpixel-antialiased { + -webkit-font-smoothing: auto !important; + -moz-osx-font-smoothing: auto !important; + } + + .lg\:ordinal, .lg\:slashed-zero, .lg\:lining-nums, .lg\:oldstyle-nums, .lg\:proportional-nums, .lg\:tabular-nums, .lg\:diagonal-fractions, .lg\:stacked-fractions { + --tw-ordinal: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-slashed-zero: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-numeric-figure: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-numeric-spacing: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-numeric-fraction: var(--tw-empty,/*!*/ /*!*/) !important; + font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction) !important; + } + + .lg\:normal-nums { + font-variant-numeric: normal !important; + } + + .lg\:ordinal { + --tw-ordinal: ordinal !important; + } + + .lg\:slashed-zero { + --tw-slashed-zero: slashed-zero !important; + } + + .lg\:lining-nums { + --tw-numeric-figure: lining-nums !important; + } + + .lg\:oldstyle-nums { + --tw-numeric-figure: oldstyle-nums !important; + } + + .lg\:proportional-nums { + --tw-numeric-spacing: proportional-nums !important; + } + + .lg\:tabular-nums { + --tw-numeric-spacing: tabular-nums !important; + } + + .lg\:diagonal-fractions { + --tw-numeric-fraction: diagonal-fractions !important; + } + + .lg\:stacked-fractions { + --tw-numeric-fraction: stacked-fractions !important; + } + + .lg\:tracking-tighter { + letter-spacing: -0.05em !important; + } + + .lg\:tracking-tight { + letter-spacing: -0.025em !important; + } + + .lg\:tracking-normal { + letter-spacing: 0em !important; + } + + .lg\:tracking-wide { + letter-spacing: 0.025em !important; + } + + .lg\:tracking-wider { + letter-spacing: 0.05em !important; + } + + .lg\:tracking-widest { + letter-spacing: 0.1em !important; + } + + .lg\:select-none { + -webkit-user-select: none !important; + -moz-user-select: none !important; + -ms-user-select: none !important; + user-select: none !important; + } + + .lg\:select-text { + -webkit-user-select: text !important; + -moz-user-select: text !important; + -ms-user-select: text !important; + user-select: text !important; + } + + .lg\:select-all { + -webkit-user-select: all !important; + -moz-user-select: all !important; + user-select: all !important; + } + + .lg\:select-auto { + -webkit-user-select: auto !important; + -moz-user-select: auto !important; + -ms-user-select: auto !important; + user-select: auto !important; + } + + .lg\:align-baseline { + vertical-align: baseline !important; + } + + .lg\:align-top { + vertical-align: top !important; + } + + .lg\:align-middle { + vertical-align: middle !important; + } + + .lg\:align-bottom { + vertical-align: bottom !important; + } + + .lg\:align-text-top { + vertical-align: text-top !important; + } + + .lg\:align-text-bottom { + vertical-align: text-bottom !important; + } + + .lg\:visible { + visibility: visible !important; + } + + .lg\:invisible { + visibility: hidden !important; + } + + .lg\:whitespace-normal { + white-space: normal !important; + } + + .lg\:whitespace-nowrap { + white-space: nowrap !important; + } + + .lg\:whitespace-pre { + white-space: pre !important; + } + + .lg\:whitespace-pre-line { + white-space: pre-line !important; + } + + .lg\:whitespace-pre-wrap { + white-space: pre-wrap !important; + } + + .lg\:break-normal { + overflow-wrap: normal !important; + word-break: normal !important; + } + + .lg\:break-words { + overflow-wrap: break-word !important; + } + + .lg\:break-all { + word-break: break-all !important; + } + + .lg\:w-0 { + width: 0px !important; + } + + .lg\:w-1 { + width: 0.25rem !important; + } + + .lg\:w-2 { + width: 0.5rem !important; + } + + .lg\:w-3 { + width: 0.75rem !important; + } + + .lg\:w-4 { + width: 1rem !important; + } + + .lg\:w-5 { + width: 1.25rem !important; + } + + .lg\:w-6 { + width: 1.5rem !important; + } + + .lg\:w-7 { + width: 1.75rem !important; + } + + .lg\:w-8 { + width: 2rem !important; + } + + .lg\:w-9 { + width: 2.25rem !important; + } + + .lg\:w-10 { + width: 2.5rem !important; + } + + .lg\:w-11 { + width: 2.75rem !important; + } + + .lg\:w-12 { + width: 3rem !important; + } + + .lg\:w-14 { + width: 3.5rem !important; + } + + .lg\:w-16 { + width: 4rem !important; + } + + .lg\:w-20 { + width: 5rem !important; + } + + .lg\:w-24 { + width: 6rem !important; + } + + .lg\:w-28 { + width: 7rem !important; + } + + .lg\:w-32 { + width: 8rem !important; + } + + .lg\:w-36 { + width: 9rem !important; + } + + .lg\:w-40 { + width: 10rem !important; + } + + .lg\:w-44 { + width: 11rem !important; + } + + .lg\:w-48 { + width: 12rem !important; + } + + .lg\:w-52 { + width: 13rem !important; + } + + .lg\:w-56 { + width: 14rem !important; + } + + .lg\:w-60 { + width: 15rem !important; + } + + .lg\:w-64 { + width: 16rem !important; + } + + .lg\:w-72 { + width: 18rem !important; + } + + .lg\:w-80 { + width: 20rem !important; + } + + .lg\:w-96 { + width: 24rem !important; + } + + .lg\:w-auto { + width: auto !important; + } + + .lg\:w-px { + width: 1px !important; + } + + .lg\:w-0\.5 { + width: 0.125rem !important; + } + + .lg\:w-1\.5 { + width: 0.375rem !important; + } + + .lg\:w-2\.5 { + width: 0.625rem !important; + } + + .lg\:w-3\.5 { + width: 0.875rem !important; + } + + .lg\:w-1\/2 { + width: 50% !important; + } + + .lg\:w-1\/3 { + width: 33.333333% !important; + } + + .lg\:w-2\/3 { + width: 66.666667% !important; + } + + .lg\:w-1\/4 { + width: 25% !important; + } + + .lg\:w-2\/4 { + width: 50% !important; + } + + .lg\:w-3\/4 { + width: 75% !important; + } + + .lg\:w-1\/5 { + width: 20% !important; + } + + .lg\:w-2\/5 { + width: 40% !important; + } + + .lg\:w-3\/5 { + width: 60% !important; + } + + .lg\:w-4\/5 { + width: 80% !important; + } + + .lg\:w-1\/6 { + width: 16.666667% !important; + } + + .lg\:w-2\/6 { + width: 33.333333% !important; + } + + .lg\:w-3\/6 { + width: 50% !important; + } + + .lg\:w-4\/6 { + width: 66.666667% !important; + } + + .lg\:w-5\/6 { + width: 83.333333% !important; + } + + .lg\:w-1\/12 { + width: 8.333333% !important; + } + + .lg\:w-2\/12 { + width: 16.666667% !important; + } + + .lg\:w-3\/12 { + width: 25% !important; + } + + .lg\:w-4\/12 { + width: 33.333333% !important; + } + + .lg\:w-5\/12 { + width: 41.666667% !important; + } + + .lg\:w-6\/12 { + width: 50% !important; + } + + .lg\:w-7\/12 { + width: 58.333333% !important; + } + + .lg\:w-8\/12 { + width: 66.666667% !important; + } + + .lg\:w-9\/12 { + width: 75% !important; + } + + .lg\:w-10\/12 { + width: 83.333333% !important; + } + + .lg\:w-11\/12 { + width: 91.666667% !important; + } + + .lg\:w-full { + width: 100% !important; + } + + .lg\:w-screen { + width: 100vw !important; + } + + .lg\:w-min { + width: -webkit-min-content !important; + width: -moz-min-content !important; + width: min-content !important; + } + + .lg\:w-max { + width: -webkit-max-content !important; + width: -moz-max-content !important; + width: max-content !important; + } + + .lg\:z-0 { + z-index: 0 !important; + } + + .lg\:z-10 { + z-index: 10 !important; + } + + .lg\:z-20 { + z-index: 20 !important; + } + + .lg\:z-30 { + z-index: 30 !important; + } + + .lg\:z-40 { + z-index: 40 !important; + } + + .lg\:z-50 { + z-index: 50 !important; + } + + .lg\:z-auto { + z-index: auto !important; + } + + .lg\:focus-within\:z-0:focus-within { + z-index: 0 !important; + } + + .lg\:focus-within\:z-10:focus-within { + z-index: 10 !important; + } + + .lg\:focus-within\:z-20:focus-within { + z-index: 20 !important; + } + + .lg\:focus-within\:z-30:focus-within { + z-index: 30 !important; + } + + .lg\:focus-within\:z-40:focus-within { + z-index: 40 !important; + } + + .lg\:focus-within\:z-50:focus-within { + z-index: 50 !important; + } + + .lg\:focus-within\:z-auto:focus-within { + z-index: auto !important; + } + + .lg\:focus\:z-0:focus { + z-index: 0 !important; + } + + .lg\:focus\:z-10:focus { + z-index: 10 !important; + } + + .lg\:focus\:z-20:focus { + z-index: 20 !important; + } + + .lg\:focus\:z-30:focus { + z-index: 30 !important; + } + + .lg\:focus\:z-40:focus { + z-index: 40 !important; + } + + .lg\:focus\:z-50:focus { + z-index: 50 !important; + } + + .lg\:focus\:z-auto:focus { + z-index: auto !important; + } + + .lg\:isolate { + isolation: isolate !important; + } + + .lg\:isolation-auto { + isolation: auto !important; + } + + .lg\:gap-0 { + gap: 0px !important; + } + + .lg\:gap-1 { + gap: 0.25rem !important; + } + + .lg\:gap-2 { + gap: 0.5rem !important; + } + + .lg\:gap-3 { + gap: 0.75rem !important; + } + + .lg\:gap-4 { + gap: 1rem !important; + } + + .lg\:gap-5 { + gap: 1.25rem !important; + } + + .lg\:gap-6 { + gap: 1.5rem !important; + } + + .lg\:gap-7 { + gap: 1.75rem !important; + } + + .lg\:gap-8 { + gap: 2rem !important; + } + + .lg\:gap-9 { + gap: 2.25rem !important; + } + + .lg\:gap-10 { + gap: 2.5rem !important; + } + + .lg\:gap-11 { + gap: 2.75rem !important; + } + + .lg\:gap-12 { + gap: 3rem !important; + } + + .lg\:gap-14 { + gap: 3.5rem !important; + } + + .lg\:gap-16 { + gap: 4rem !important; + } + + .lg\:gap-20 { + gap: 5rem !important; + } + + .lg\:gap-24 { + gap: 6rem !important; + } + + .lg\:gap-28 { + gap: 7rem !important; + } + + .lg\:gap-32 { + gap: 8rem !important; + } + + .lg\:gap-36 { + gap: 9rem !important; + } + + .lg\:gap-40 { + gap: 10rem !important; + } + + .lg\:gap-44 { + gap: 11rem !important; + } + + .lg\:gap-48 { + gap: 12rem !important; + } + + .lg\:gap-52 { + gap: 13rem !important; + } + + .lg\:gap-56 { + gap: 14rem !important; + } + + .lg\:gap-60 { + gap: 15rem !important; + } + + .lg\:gap-64 { + gap: 16rem !important; + } + + .lg\:gap-72 { + gap: 18rem !important; + } + + .lg\:gap-80 { + gap: 20rem !important; + } + + .lg\:gap-96 { + gap: 24rem !important; + } + + .lg\:gap-px { + gap: 1px !important; + } + + .lg\:gap-0\.5 { + gap: 0.125rem !important; + } + + .lg\:gap-1\.5 { + gap: 0.375rem !important; + } + + .lg\:gap-2\.5 { + gap: 0.625rem !important; + } + + .lg\:gap-3\.5 { + gap: 0.875rem !important; + } + + .lg\:gap-x-0 { + -moz-column-gap: 0px !important; + column-gap: 0px !important; + } + + .lg\:gap-x-1 { + -moz-column-gap: 0.25rem !important; + column-gap: 0.25rem !important; + } + + .lg\:gap-x-2 { + -moz-column-gap: 0.5rem !important; + column-gap: 0.5rem !important; + } + + .lg\:gap-x-3 { + -moz-column-gap: 0.75rem !important; + column-gap: 0.75rem !important; + } + + .lg\:gap-x-4 { + -moz-column-gap: 1rem !important; + column-gap: 1rem !important; + } + + .lg\:gap-x-5 { + -moz-column-gap: 1.25rem !important; + column-gap: 1.25rem !important; + } + + .lg\:gap-x-6 { + -moz-column-gap: 1.5rem !important; + column-gap: 1.5rem !important; + } + + .lg\:gap-x-7 { + -moz-column-gap: 1.75rem !important; + column-gap: 1.75rem !important; + } + + .lg\:gap-x-8 { + -moz-column-gap: 2rem !important; + column-gap: 2rem !important; + } + + .lg\:gap-x-9 { + -moz-column-gap: 2.25rem !important; + column-gap: 2.25rem !important; + } + + .lg\:gap-x-10 { + -moz-column-gap: 2.5rem !important; + column-gap: 2.5rem !important; + } + + .lg\:gap-x-11 { + -moz-column-gap: 2.75rem !important; + column-gap: 2.75rem !important; + } + + .lg\:gap-x-12 { + -moz-column-gap: 3rem !important; + column-gap: 3rem !important; + } + + .lg\:gap-x-14 { + -moz-column-gap: 3.5rem !important; + column-gap: 3.5rem !important; + } + + .lg\:gap-x-16 { + -moz-column-gap: 4rem !important; + column-gap: 4rem !important; + } + + .lg\:gap-x-20 { + -moz-column-gap: 5rem !important; + column-gap: 5rem !important; + } + + .lg\:gap-x-24 { + -moz-column-gap: 6rem !important; + column-gap: 6rem !important; + } + + .lg\:gap-x-28 { + -moz-column-gap: 7rem !important; + column-gap: 7rem !important; + } + + .lg\:gap-x-32 { + -moz-column-gap: 8rem !important; + column-gap: 8rem !important; + } + + .lg\:gap-x-36 { + -moz-column-gap: 9rem !important; + column-gap: 9rem !important; + } + + .lg\:gap-x-40 { + -moz-column-gap: 10rem !important; + column-gap: 10rem !important; + } + + .lg\:gap-x-44 { + -moz-column-gap: 11rem !important; + column-gap: 11rem !important; + } + + .lg\:gap-x-48 { + -moz-column-gap: 12rem !important; + column-gap: 12rem !important; + } + + .lg\:gap-x-52 { + -moz-column-gap: 13rem !important; + column-gap: 13rem !important; + } + + .lg\:gap-x-56 { + -moz-column-gap: 14rem !important; + column-gap: 14rem !important; + } + + .lg\:gap-x-60 { + -moz-column-gap: 15rem !important; + column-gap: 15rem !important; + } + + .lg\:gap-x-64 { + -moz-column-gap: 16rem !important; + column-gap: 16rem !important; + } + + .lg\:gap-x-72 { + -moz-column-gap: 18rem !important; + column-gap: 18rem !important; + } + + .lg\:gap-x-80 { + -moz-column-gap: 20rem !important; + column-gap: 20rem !important; + } + + .lg\:gap-x-96 { + -moz-column-gap: 24rem !important; + column-gap: 24rem !important; + } + + .lg\:gap-x-px { + -moz-column-gap: 1px !important; + column-gap: 1px !important; + } + + .lg\:gap-x-0\.5 { + -moz-column-gap: 0.125rem !important; + column-gap: 0.125rem !important; + } + + .lg\:gap-x-1\.5 { + -moz-column-gap: 0.375rem !important; + column-gap: 0.375rem !important; + } + + .lg\:gap-x-2\.5 { + -moz-column-gap: 0.625rem !important; + column-gap: 0.625rem !important; + } + + .lg\:gap-x-3\.5 { + -moz-column-gap: 0.875rem !important; + column-gap: 0.875rem !important; + } + + .lg\:gap-y-0 { + row-gap: 0px !important; + } + + .lg\:gap-y-1 { + row-gap: 0.25rem !important; + } + + .lg\:gap-y-2 { + row-gap: 0.5rem !important; + } + + .lg\:gap-y-3 { + row-gap: 0.75rem !important; + } + + .lg\:gap-y-4 { + row-gap: 1rem !important; + } + + .lg\:gap-y-5 { + row-gap: 1.25rem !important; + } + + .lg\:gap-y-6 { + row-gap: 1.5rem !important; + } + + .lg\:gap-y-7 { + row-gap: 1.75rem !important; + } + + .lg\:gap-y-8 { + row-gap: 2rem !important; + } + + .lg\:gap-y-9 { + row-gap: 2.25rem !important; + } + + .lg\:gap-y-10 { + row-gap: 2.5rem !important; + } + + .lg\:gap-y-11 { + row-gap: 2.75rem !important; + } + + .lg\:gap-y-12 { + row-gap: 3rem !important; + } + + .lg\:gap-y-14 { + row-gap: 3.5rem !important; + } + + .lg\:gap-y-16 { + row-gap: 4rem !important; + } + + .lg\:gap-y-20 { + row-gap: 5rem !important; + } + + .lg\:gap-y-24 { + row-gap: 6rem !important; + } + + .lg\:gap-y-28 { + row-gap: 7rem !important; + } + + .lg\:gap-y-32 { + row-gap: 8rem !important; + } + + .lg\:gap-y-36 { + row-gap: 9rem !important; + } + + .lg\:gap-y-40 { + row-gap: 10rem !important; + } + + .lg\:gap-y-44 { + row-gap: 11rem !important; + } + + .lg\:gap-y-48 { + row-gap: 12rem !important; + } + + .lg\:gap-y-52 { + row-gap: 13rem !important; + } + + .lg\:gap-y-56 { + row-gap: 14rem !important; + } + + .lg\:gap-y-60 { + row-gap: 15rem !important; + } + + .lg\:gap-y-64 { + row-gap: 16rem !important; + } + + .lg\:gap-y-72 { + row-gap: 18rem !important; + } + + .lg\:gap-y-80 { + row-gap: 20rem !important; + } + + .lg\:gap-y-96 { + row-gap: 24rem !important; + } + + .lg\:gap-y-px { + row-gap: 1px !important; + } + + .lg\:gap-y-0\.5 { + row-gap: 0.125rem !important; + } + + .lg\:gap-y-1\.5 { + row-gap: 0.375rem !important; + } + + .lg\:gap-y-2\.5 { + row-gap: 0.625rem !important; + } + + .lg\:gap-y-3\.5 { + row-gap: 0.875rem !important; + } + + .lg\:grid-flow-row { + grid-auto-flow: row !important; + } + + .lg\:grid-flow-col { + grid-auto-flow: column !important; + } + + .lg\:grid-flow-row-dense { + grid-auto-flow: row dense !important; + } + + .lg\:grid-flow-col-dense { + grid-auto-flow: column dense !important; + } + + .lg\:grid-cols-1 { + grid-template-columns: repeat(1, minmax(0, 1fr)) !important; + } + + .lg\:grid-cols-2 { + grid-template-columns: repeat(2, minmax(0, 1fr)) !important; + } + + .lg\:grid-cols-3 { + grid-template-columns: repeat(3, minmax(0, 1fr)) !important; + } + + .lg\:grid-cols-4 { + grid-template-columns: repeat(4, minmax(0, 1fr)) !important; + } + + .lg\:grid-cols-5 { + grid-template-columns: repeat(5, minmax(0, 1fr)) !important; + } + + .lg\:grid-cols-6 { + grid-template-columns: repeat(6, minmax(0, 1fr)) !important; + } + + .lg\:grid-cols-7 { + grid-template-columns: repeat(7, minmax(0, 1fr)) !important; + } + + .lg\:grid-cols-8 { + grid-template-columns: repeat(8, minmax(0, 1fr)) !important; + } + + .lg\:grid-cols-9 { + grid-template-columns: repeat(9, minmax(0, 1fr)) !important; + } + + .lg\:grid-cols-10 { + grid-template-columns: repeat(10, minmax(0, 1fr)) !important; + } + + .lg\:grid-cols-11 { + grid-template-columns: repeat(11, minmax(0, 1fr)) !important; + } + + .lg\:grid-cols-12 { + grid-template-columns: repeat(12, minmax(0, 1fr)) !important; + } + + .lg\:grid-cols-none { + grid-template-columns: none !important; + } + + .lg\:auto-cols-auto { + grid-auto-columns: auto !important; + } + + .lg\:auto-cols-min { + grid-auto-columns: -webkit-min-content !important; + grid-auto-columns: min-content !important; + } + + .lg\:auto-cols-max { + grid-auto-columns: -webkit-max-content !important; + grid-auto-columns: max-content !important; + } + + .lg\:auto-cols-fr { + grid-auto-columns: minmax(0, 1fr) !important; + } + + .lg\:col-auto { + grid-column: auto !important; + } + + .lg\:col-span-1 { + grid-column: span 1 / span 1 !important; + } + + .lg\:col-span-2 { + grid-column: span 2 / span 2 !important; + } + + .lg\:col-span-3 { + grid-column: span 3 / span 3 !important; + } + + .lg\:col-span-4 { + grid-column: span 4 / span 4 !important; + } + + .lg\:col-span-5 { + grid-column: span 5 / span 5 !important; + } + + .lg\:col-span-6 { + grid-column: span 6 / span 6 !important; + } + + .lg\:col-span-7 { + grid-column: span 7 / span 7 !important; + } + + .lg\:col-span-8 { + grid-column: span 8 / span 8 !important; + } + + .lg\:col-span-9 { + grid-column: span 9 / span 9 !important; + } + + .lg\:col-span-10 { + grid-column: span 10 / span 10 !important; + } + + .lg\:col-span-11 { + grid-column: span 11 / span 11 !important; + } + + .lg\:col-span-12 { + grid-column: span 12 / span 12 !important; + } + + .lg\:col-span-full { + grid-column: 1 / -1 !important; + } + + .lg\:col-start-1 { + grid-column-start: 1 !important; + } + + .lg\:col-start-2 { + grid-column-start: 2 !important; + } + + .lg\:col-start-3 { + grid-column-start: 3 !important; + } + + .lg\:col-start-4 { + grid-column-start: 4 !important; + } + + .lg\:col-start-5 { + grid-column-start: 5 !important; + } + + .lg\:col-start-6 { + grid-column-start: 6 !important; + } + + .lg\:col-start-7 { + grid-column-start: 7 !important; + } + + .lg\:col-start-8 { + grid-column-start: 8 !important; + } + + .lg\:col-start-9 { + grid-column-start: 9 !important; + } + + .lg\:col-start-10 { + grid-column-start: 10 !important; + } + + .lg\:col-start-11 { + grid-column-start: 11 !important; + } + + .lg\:col-start-12 { + grid-column-start: 12 !important; + } + + .lg\:col-start-13 { + grid-column-start: 13 !important; + } + + .lg\:col-start-auto { + grid-column-start: auto !important; + } + + .lg\:col-end-1 { + grid-column-end: 1 !important; + } + + .lg\:col-end-2 { + grid-column-end: 2 !important; + } + + .lg\:col-end-3 { + grid-column-end: 3 !important; + } + + .lg\:col-end-4 { + grid-column-end: 4 !important; + } + + .lg\:col-end-5 { + grid-column-end: 5 !important; + } + + .lg\:col-end-6 { + grid-column-end: 6 !important; + } + + .lg\:col-end-7 { + grid-column-end: 7 !important; + } + + .lg\:col-end-8 { + grid-column-end: 8 !important; + } + + .lg\:col-end-9 { + grid-column-end: 9 !important; + } + + .lg\:col-end-10 { + grid-column-end: 10 !important; + } + + .lg\:col-end-11 { + grid-column-end: 11 !important; + } + + .lg\:col-end-12 { + grid-column-end: 12 !important; + } + + .lg\:col-end-13 { + grid-column-end: 13 !important; + } + + .lg\:col-end-auto { + grid-column-end: auto !important; + } + + .lg\:grid-rows-1 { + grid-template-rows: repeat(1, minmax(0, 1fr)) !important; + } + + .lg\:grid-rows-2 { + grid-template-rows: repeat(2, minmax(0, 1fr)) !important; + } + + .lg\:grid-rows-3 { + grid-template-rows: repeat(3, minmax(0, 1fr)) !important; + } + + .lg\:grid-rows-4 { + grid-template-rows: repeat(4, minmax(0, 1fr)) !important; + } + + .lg\:grid-rows-5 { + grid-template-rows: repeat(5, minmax(0, 1fr)) !important; + } + + .lg\:grid-rows-6 { + grid-template-rows: repeat(6, minmax(0, 1fr)) !important; + } + + .lg\:grid-rows-none { + grid-template-rows: none !important; + } + + .lg\:auto-rows-auto { + grid-auto-rows: auto !important; + } + + .lg\:auto-rows-min { + grid-auto-rows: -webkit-min-content !important; + grid-auto-rows: min-content !important; + } + + .lg\:auto-rows-max { + grid-auto-rows: -webkit-max-content !important; + grid-auto-rows: max-content !important; + } + + .lg\:auto-rows-fr { + grid-auto-rows: minmax(0, 1fr) !important; + } + + .lg\:row-auto { + grid-row: auto !important; + } + + .lg\:row-span-1 { + grid-row: span 1 / span 1 !important; + } + + .lg\:row-span-2 { + grid-row: span 2 / span 2 !important; + } + + .lg\:row-span-3 { + grid-row: span 3 / span 3 !important; + } + + .lg\:row-span-4 { + grid-row: span 4 / span 4 !important; + } + + .lg\:row-span-5 { + grid-row: span 5 / span 5 !important; + } + + .lg\:row-span-6 { + grid-row: span 6 / span 6 !important; + } + + .lg\:row-span-full { + grid-row: 1 / -1 !important; + } + + .lg\:row-start-1 { + grid-row-start: 1 !important; + } + + .lg\:row-start-2 { + grid-row-start: 2 !important; + } + + .lg\:row-start-3 { + grid-row-start: 3 !important; + } + + .lg\:row-start-4 { + grid-row-start: 4 !important; + } + + .lg\:row-start-5 { + grid-row-start: 5 !important; + } + + .lg\:row-start-6 { + grid-row-start: 6 !important; + } + + .lg\:row-start-7 { + grid-row-start: 7 !important; + } + + .lg\:row-start-auto { + grid-row-start: auto !important; + } + + .lg\:row-end-1 { + grid-row-end: 1 !important; + } + + .lg\:row-end-2 { + grid-row-end: 2 !important; + } + + .lg\:row-end-3 { + grid-row-end: 3 !important; + } + + .lg\:row-end-4 { + grid-row-end: 4 !important; + } + + .lg\:row-end-5 { + grid-row-end: 5 !important; + } + + .lg\:row-end-6 { + grid-row-end: 6 !important; + } + + .lg\:row-end-7 { + grid-row-end: 7 !important; + } + + .lg\:row-end-auto { + grid-row-end: auto !important; + } + + .lg\:transform { + --tw-translate-x: 0 !important; + --tw-translate-y: 0 !important; + --tw-rotate: 0 !important; + --tw-skew-x: 0 !important; + --tw-skew-y: 0 !important; + --tw-scale-x: 1 !important; + --tw-scale-y: 1 !important; + 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)) !important; + } + + .lg\:transform-gpu { + --tw-translate-x: 0 !important; + --tw-translate-y: 0 !important; + --tw-rotate: 0 !important; + --tw-skew-x: 0 !important; + --tw-skew-y: 0 !important; + --tw-scale-x: 1 !important; + --tw-scale-y: 1 !important; + transform: translate3d(var(--tw-translate-x), var(--tw-translate-y), 0) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)) !important; + } + + .lg\:transform-none { + transform: none !important; + } + + .lg\:origin-center { + transform-origin: center !important; + } + + .lg\:origin-top { + transform-origin: top !important; + } + + .lg\:origin-top-right { + transform-origin: top right !important; + } + + .lg\:origin-right { + transform-origin: right !important; + } + + .lg\:origin-bottom-right { + transform-origin: bottom right !important; + } + + .lg\:origin-bottom { + transform-origin: bottom !important; + } + + .lg\:origin-bottom-left { + transform-origin: bottom left !important; + } + + .lg\:origin-left { + transform-origin: left !important; + } + + .lg\:origin-top-left { + transform-origin: top left !important; + } + + .lg\:scale-0 { + --tw-scale-x: 0 !important; + --tw-scale-y: 0 !important; + } + + .lg\:scale-50 { + --tw-scale-x: .5 !important; + --tw-scale-y: .5 !important; + } + + .lg\:scale-75 { + --tw-scale-x: .75 !important; + --tw-scale-y: .75 !important; + } + + .lg\:scale-90 { + --tw-scale-x: .9 !important; + --tw-scale-y: .9 !important; + } + + .lg\:scale-95 { + --tw-scale-x: .95 !important; + --tw-scale-y: .95 !important; + } + + .lg\:scale-100 { + --tw-scale-x: 1 !important; + --tw-scale-y: 1 !important; + } + + .lg\:scale-105 { + --tw-scale-x: 1.05 !important; + --tw-scale-y: 1.05 !important; + } + + .lg\:scale-110 { + --tw-scale-x: 1.1 !important; + --tw-scale-y: 1.1 !important; + } + + .lg\:scale-125 { + --tw-scale-x: 1.25 !important; + --tw-scale-y: 1.25 !important; + } + + .lg\:scale-150 { + --tw-scale-x: 1.5 !important; + --tw-scale-y: 1.5 !important; + } + + .lg\:scale-x-0 { + --tw-scale-x: 0 !important; + } + + .lg\:scale-x-50 { + --tw-scale-x: .5 !important; + } + + .lg\:scale-x-75 { + --tw-scale-x: .75 !important; + } + + .lg\:scale-x-90 { + --tw-scale-x: .9 !important; + } + + .lg\:scale-x-95 { + --tw-scale-x: .95 !important; + } + + .lg\:scale-x-100 { + --tw-scale-x: 1 !important; + } + + .lg\:scale-x-105 { + --tw-scale-x: 1.05 !important; + } + + .lg\:scale-x-110 { + --tw-scale-x: 1.1 !important; + } + + .lg\:scale-x-125 { + --tw-scale-x: 1.25 !important; + } + + .lg\:scale-x-150 { + --tw-scale-x: 1.5 !important; + } + + .lg\:scale-y-0 { + --tw-scale-y: 0 !important; + } + + .lg\:scale-y-50 { + --tw-scale-y: .5 !important; + } + + .lg\:scale-y-75 { + --tw-scale-y: .75 !important; + } + + .lg\:scale-y-90 { + --tw-scale-y: .9 !important; + } + + .lg\:scale-y-95 { + --tw-scale-y: .95 !important; + } + + .lg\:scale-y-100 { + --tw-scale-y: 1 !important; + } + + .lg\:scale-y-105 { + --tw-scale-y: 1.05 !important; + } + + .lg\:scale-y-110 { + --tw-scale-y: 1.1 !important; + } + + .lg\:scale-y-125 { + --tw-scale-y: 1.25 !important; + } + + .lg\:scale-y-150 { + --tw-scale-y: 1.5 !important; + } + + .lg\:hover\:scale-0:hover { + --tw-scale-x: 0 !important; + --tw-scale-y: 0 !important; + } + + .lg\:hover\:scale-50:hover { + --tw-scale-x: .5 !important; + --tw-scale-y: .5 !important; + } + + .lg\:hover\:scale-75:hover { + --tw-scale-x: .75 !important; + --tw-scale-y: .75 !important; + } + + .lg\:hover\:scale-90:hover { + --tw-scale-x: .9 !important; + --tw-scale-y: .9 !important; + } + + .lg\:hover\:scale-95:hover { + --tw-scale-x: .95 !important; + --tw-scale-y: .95 !important; + } + + .lg\:hover\:scale-100:hover { + --tw-scale-x: 1 !important; + --tw-scale-y: 1 !important; + } + + .lg\:hover\:scale-105:hover { + --tw-scale-x: 1.05 !important; + --tw-scale-y: 1.05 !important; + } + + .lg\:hover\:scale-110:hover { + --tw-scale-x: 1.1 !important; + --tw-scale-y: 1.1 !important; + } + + .lg\:hover\:scale-125:hover { + --tw-scale-x: 1.25 !important; + --tw-scale-y: 1.25 !important; + } + + .lg\:hover\:scale-150:hover { + --tw-scale-x: 1.5 !important; + --tw-scale-y: 1.5 !important; + } + + .lg\:hover\:scale-x-0:hover { + --tw-scale-x: 0 !important; + } + + .lg\:hover\:scale-x-50:hover { + --tw-scale-x: .5 !important; + } + + .lg\:hover\:scale-x-75:hover { + --tw-scale-x: .75 !important; + } + + .lg\:hover\:scale-x-90:hover { + --tw-scale-x: .9 !important; + } + + .lg\:hover\:scale-x-95:hover { + --tw-scale-x: .95 !important; + } + + .lg\:hover\:scale-x-100:hover { + --tw-scale-x: 1 !important; + } + + .lg\:hover\:scale-x-105:hover { + --tw-scale-x: 1.05 !important; + } + + .lg\:hover\:scale-x-110:hover { + --tw-scale-x: 1.1 !important; + } + + .lg\:hover\:scale-x-125:hover { + --tw-scale-x: 1.25 !important; + } + + .lg\:hover\:scale-x-150:hover { + --tw-scale-x: 1.5 !important; + } + + .lg\:hover\:scale-y-0:hover { + --tw-scale-y: 0 !important; + } + + .lg\:hover\:scale-y-50:hover { + --tw-scale-y: .5 !important; + } + + .lg\:hover\:scale-y-75:hover { + --tw-scale-y: .75 !important; + } + + .lg\:hover\:scale-y-90:hover { + --tw-scale-y: .9 !important; + } + + .lg\:hover\:scale-y-95:hover { + --tw-scale-y: .95 !important; + } + + .lg\:hover\:scale-y-100:hover { + --tw-scale-y: 1 !important; + } + + .lg\:hover\:scale-y-105:hover { + --tw-scale-y: 1.05 !important; + } + + .lg\:hover\:scale-y-110:hover { + --tw-scale-y: 1.1 !important; + } + + .lg\:hover\:scale-y-125:hover { + --tw-scale-y: 1.25 !important; + } + + .lg\:hover\:scale-y-150:hover { + --tw-scale-y: 1.5 !important; + } + + .lg\:focus\:scale-0:focus { + --tw-scale-x: 0 !important; + --tw-scale-y: 0 !important; + } + + .lg\:focus\:scale-50:focus { + --tw-scale-x: .5 !important; + --tw-scale-y: .5 !important; + } + + .lg\:focus\:scale-75:focus { + --tw-scale-x: .75 !important; + --tw-scale-y: .75 !important; + } + + .lg\:focus\:scale-90:focus { + --tw-scale-x: .9 !important; + --tw-scale-y: .9 !important; + } + + .lg\:focus\:scale-95:focus { + --tw-scale-x: .95 !important; + --tw-scale-y: .95 !important; + } + + .lg\:focus\:scale-100:focus { + --tw-scale-x: 1 !important; + --tw-scale-y: 1 !important; + } + + .lg\:focus\:scale-105:focus { + --tw-scale-x: 1.05 !important; + --tw-scale-y: 1.05 !important; + } + + .lg\:focus\:scale-110:focus { + --tw-scale-x: 1.1 !important; + --tw-scale-y: 1.1 !important; + } + + .lg\:focus\:scale-125:focus { + --tw-scale-x: 1.25 !important; + --tw-scale-y: 1.25 !important; + } + + .lg\:focus\:scale-150:focus { + --tw-scale-x: 1.5 !important; + --tw-scale-y: 1.5 !important; + } + + .lg\:focus\:scale-x-0:focus { + --tw-scale-x: 0 !important; + } + + .lg\:focus\:scale-x-50:focus { + --tw-scale-x: .5 !important; + } + + .lg\:focus\:scale-x-75:focus { + --tw-scale-x: .75 !important; + } + + .lg\:focus\:scale-x-90:focus { + --tw-scale-x: .9 !important; + } + + .lg\:focus\:scale-x-95:focus { + --tw-scale-x: .95 !important; + } + + .lg\:focus\:scale-x-100:focus { + --tw-scale-x: 1 !important; + } + + .lg\:focus\:scale-x-105:focus { + --tw-scale-x: 1.05 !important; + } + + .lg\:focus\:scale-x-110:focus { + --tw-scale-x: 1.1 !important; + } + + .lg\:focus\:scale-x-125:focus { + --tw-scale-x: 1.25 !important; + } + + .lg\:focus\:scale-x-150:focus { + --tw-scale-x: 1.5 !important; + } + + .lg\:focus\:scale-y-0:focus { + --tw-scale-y: 0 !important; + } + + .lg\:focus\:scale-y-50:focus { + --tw-scale-y: .5 !important; + } + + .lg\:focus\:scale-y-75:focus { + --tw-scale-y: .75 !important; + } + + .lg\:focus\:scale-y-90:focus { + --tw-scale-y: .9 !important; + } + + .lg\:focus\:scale-y-95:focus { + --tw-scale-y: .95 !important; + } + + .lg\:focus\:scale-y-100:focus { + --tw-scale-y: 1 !important; + } + + .lg\:focus\:scale-y-105:focus { + --tw-scale-y: 1.05 !important; + } + + .lg\:focus\:scale-y-110:focus { + --tw-scale-y: 1.1 !important; + } + + .lg\:focus\:scale-y-125:focus { + --tw-scale-y: 1.25 !important; + } + + .lg\:focus\:scale-y-150:focus { + --tw-scale-y: 1.5 !important; + } + + .lg\:rotate-0 { + --tw-rotate: 0deg !important; + } + + .lg\:rotate-1 { + --tw-rotate: 1deg !important; + } + + .lg\:rotate-2 { + --tw-rotate: 2deg !important; + } + + .lg\:rotate-3 { + --tw-rotate: 3deg !important; + } + + .lg\:rotate-6 { + --tw-rotate: 6deg !important; + } + + .lg\:rotate-12 { + --tw-rotate: 12deg !important; + } + + .lg\:rotate-45 { + --tw-rotate: 45deg !important; + } + + .lg\:rotate-90 { + --tw-rotate: 90deg !important; + } + + .lg\:rotate-180 { + --tw-rotate: 180deg !important; + } + + .lg\:-rotate-180 { + --tw-rotate: -180deg !important; + } + + .lg\:-rotate-90 { + --tw-rotate: -90deg !important; + } + + .lg\:-rotate-45 { + --tw-rotate: -45deg !important; + } + + .lg\:-rotate-12 { + --tw-rotate: -12deg !important; + } + + .lg\:-rotate-6 { + --tw-rotate: -6deg !important; + } + + .lg\:-rotate-3 { + --tw-rotate: -3deg !important; + } + + .lg\:-rotate-2 { + --tw-rotate: -2deg !important; + } + + .lg\:-rotate-1 { + --tw-rotate: -1deg !important; + } + + .lg\:hover\:rotate-0:hover { + --tw-rotate: 0deg !important; + } + + .lg\:hover\:rotate-1:hover { + --tw-rotate: 1deg !important; + } + + .lg\:hover\:rotate-2:hover { + --tw-rotate: 2deg !important; + } + + .lg\:hover\:rotate-3:hover { + --tw-rotate: 3deg !important; + } + + .lg\:hover\:rotate-6:hover { + --tw-rotate: 6deg !important; + } + + .lg\:hover\:rotate-12:hover { + --tw-rotate: 12deg !important; + } + + .lg\:hover\:rotate-45:hover { + --tw-rotate: 45deg !important; + } + + .lg\:hover\:rotate-90:hover { + --tw-rotate: 90deg !important; + } + + .lg\:hover\:rotate-180:hover { + --tw-rotate: 180deg !important; + } + + .lg\:hover\:-rotate-180:hover { + --tw-rotate: -180deg !important; + } + + .lg\:hover\:-rotate-90:hover { + --tw-rotate: -90deg !important; + } + + .lg\:hover\:-rotate-45:hover { + --tw-rotate: -45deg !important; + } + + .lg\:hover\:-rotate-12:hover { + --tw-rotate: -12deg !important; + } + + .lg\:hover\:-rotate-6:hover { + --tw-rotate: -6deg !important; + } + + .lg\:hover\:-rotate-3:hover { + --tw-rotate: -3deg !important; + } + + .lg\:hover\:-rotate-2:hover { + --tw-rotate: -2deg !important; + } + + .lg\:hover\:-rotate-1:hover { + --tw-rotate: -1deg !important; + } + + .lg\:focus\:rotate-0:focus { + --tw-rotate: 0deg !important; + } + + .lg\:focus\:rotate-1:focus { + --tw-rotate: 1deg !important; + } + + .lg\:focus\:rotate-2:focus { + --tw-rotate: 2deg !important; + } + + .lg\:focus\:rotate-3:focus { + --tw-rotate: 3deg !important; + } + + .lg\:focus\:rotate-6:focus { + --tw-rotate: 6deg !important; + } + + .lg\:focus\:rotate-12:focus { + --tw-rotate: 12deg !important; + } + + .lg\:focus\:rotate-45:focus { + --tw-rotate: 45deg !important; + } + + .lg\:focus\:rotate-90:focus { + --tw-rotate: 90deg !important; + } + + .lg\:focus\:rotate-180:focus { + --tw-rotate: 180deg !important; + } + + .lg\:focus\:-rotate-180:focus { + --tw-rotate: -180deg !important; + } + + .lg\:focus\:-rotate-90:focus { + --tw-rotate: -90deg !important; + } + + .lg\:focus\:-rotate-45:focus { + --tw-rotate: -45deg !important; + } + + .lg\:focus\:-rotate-12:focus { + --tw-rotate: -12deg !important; + } + + .lg\:focus\:-rotate-6:focus { + --tw-rotate: -6deg !important; + } + + .lg\:focus\:-rotate-3:focus { + --tw-rotate: -3deg !important; + } + + .lg\:focus\:-rotate-2:focus { + --tw-rotate: -2deg !important; + } + + .lg\:focus\:-rotate-1:focus { + --tw-rotate: -1deg !important; + } + + .lg\:translate-x-0 { + --tw-translate-x: 0px !important; + } + + .lg\:translate-x-1 { + --tw-translate-x: 0.25rem !important; + } + + .lg\:translate-x-2 { + --tw-translate-x: 0.5rem !important; + } + + .lg\:translate-x-3 { + --tw-translate-x: 0.75rem !important; + } + + .lg\:translate-x-4 { + --tw-translate-x: 1rem !important; + } + + .lg\:translate-x-5 { + --tw-translate-x: 1.25rem !important; + } + + .lg\:translate-x-6 { + --tw-translate-x: 1.5rem !important; + } + + .lg\:translate-x-7 { + --tw-translate-x: 1.75rem !important; + } + + .lg\:translate-x-8 { + --tw-translate-x: 2rem !important; + } + + .lg\:translate-x-9 { + --tw-translate-x: 2.25rem !important; + } + + .lg\:translate-x-10 { + --tw-translate-x: 2.5rem !important; + } + + .lg\:translate-x-11 { + --tw-translate-x: 2.75rem !important; + } + + .lg\:translate-x-12 { + --tw-translate-x: 3rem !important; + } + + .lg\:translate-x-14 { + --tw-translate-x: 3.5rem !important; + } + + .lg\:translate-x-16 { + --tw-translate-x: 4rem !important; + } + + .lg\:translate-x-20 { + --tw-translate-x: 5rem !important; + } + + .lg\:translate-x-24 { + --tw-translate-x: 6rem !important; + } + + .lg\:translate-x-28 { + --tw-translate-x: 7rem !important; + } + + .lg\:translate-x-32 { + --tw-translate-x: 8rem !important; + } + + .lg\:translate-x-36 { + --tw-translate-x: 9rem !important; + } + + .lg\:translate-x-40 { + --tw-translate-x: 10rem !important; + } + + .lg\:translate-x-44 { + --tw-translate-x: 11rem !important; + } + + .lg\:translate-x-48 { + --tw-translate-x: 12rem !important; + } + + .lg\:translate-x-52 { + --tw-translate-x: 13rem !important; + } + + .lg\:translate-x-56 { + --tw-translate-x: 14rem !important; + } + + .lg\:translate-x-60 { + --tw-translate-x: 15rem !important; + } + + .lg\:translate-x-64 { + --tw-translate-x: 16rem !important; + } + + .lg\:translate-x-72 { + --tw-translate-x: 18rem !important; + } + + .lg\:translate-x-80 { + --tw-translate-x: 20rem !important; + } + + .lg\:translate-x-96 { + --tw-translate-x: 24rem !important; + } + + .lg\:translate-x-px { + --tw-translate-x: 1px !important; + } + + .lg\:translate-x-0\.5 { + --tw-translate-x: 0.125rem !important; + } + + .lg\:translate-x-1\.5 { + --tw-translate-x: 0.375rem !important; + } + + .lg\:translate-x-2\.5 { + --tw-translate-x: 0.625rem !important; + } + + .lg\:translate-x-3\.5 { + --tw-translate-x: 0.875rem !important; + } + + .lg\:-translate-x-0 { + --tw-translate-x: 0px !important; + } + + .lg\:-translate-x-1 { + --tw-translate-x: -0.25rem !important; + } + + .lg\:-translate-x-2 { + --tw-translate-x: -0.5rem !important; + } + + .lg\:-translate-x-3 { + --tw-translate-x: -0.75rem !important; + } + + .lg\:-translate-x-4 { + --tw-translate-x: -1rem !important; + } + + .lg\:-translate-x-5 { + --tw-translate-x: -1.25rem !important; + } + + .lg\:-translate-x-6 { + --tw-translate-x: -1.5rem !important; + } + + .lg\:-translate-x-7 { + --tw-translate-x: -1.75rem !important; + } + + .lg\:-translate-x-8 { + --tw-translate-x: -2rem !important; + } + + .lg\:-translate-x-9 { + --tw-translate-x: -2.25rem !important; + } + + .lg\:-translate-x-10 { + --tw-translate-x: -2.5rem !important; + } + + .lg\:-translate-x-11 { + --tw-translate-x: -2.75rem !important; + } + + .lg\:-translate-x-12 { + --tw-translate-x: -3rem !important; + } + + .lg\:-translate-x-14 { + --tw-translate-x: -3.5rem !important; + } + + .lg\:-translate-x-16 { + --tw-translate-x: -4rem !important; + } + + .lg\:-translate-x-20 { + --tw-translate-x: -5rem !important; + } + + .lg\:-translate-x-24 { + --tw-translate-x: -6rem !important; + } + + .lg\:-translate-x-28 { + --tw-translate-x: -7rem !important; + } + + .lg\:-translate-x-32 { + --tw-translate-x: -8rem !important; + } + + .lg\:-translate-x-36 { + --tw-translate-x: -9rem !important; + } + + .lg\:-translate-x-40 { + --tw-translate-x: -10rem !important; + } + + .lg\:-translate-x-44 { + --tw-translate-x: -11rem !important; + } + + .lg\:-translate-x-48 { + --tw-translate-x: -12rem !important; + } + + .lg\:-translate-x-52 { + --tw-translate-x: -13rem !important; + } + + .lg\:-translate-x-56 { + --tw-translate-x: -14rem !important; + } + + .lg\:-translate-x-60 { + --tw-translate-x: -15rem !important; + } + + .lg\:-translate-x-64 { + --tw-translate-x: -16rem !important; + } + + .lg\:-translate-x-72 { + --tw-translate-x: -18rem !important; + } + + .lg\:-translate-x-80 { + --tw-translate-x: -20rem !important; + } + + .lg\:-translate-x-96 { + --tw-translate-x: -24rem !important; + } + + .lg\:-translate-x-px { + --tw-translate-x: -1px !important; + } + + .lg\:-translate-x-0\.5 { + --tw-translate-x: -0.125rem !important; + } + + .lg\:-translate-x-1\.5 { + --tw-translate-x: -0.375rem !important; + } + + .lg\:-translate-x-2\.5 { + --tw-translate-x: -0.625rem !important; + } + + .lg\:-translate-x-3\.5 { + --tw-translate-x: -0.875rem !important; + } + + .lg\:translate-x-1\/2 { + --tw-translate-x: 50% !important; + } + + .lg\:translate-x-1\/3 { + --tw-translate-x: 33.333333% !important; + } + + .lg\:translate-x-2\/3 { + --tw-translate-x: 66.666667% !important; + } + + .lg\:translate-x-1\/4 { + --tw-translate-x: 25% !important; + } + + .lg\:translate-x-2\/4 { + --tw-translate-x: 50% !important; + } + + .lg\:translate-x-3\/4 { + --tw-translate-x: 75% !important; + } + + .lg\:translate-x-full { + --tw-translate-x: 100% !important; + } + + .lg\:-translate-x-1\/2 { + --tw-translate-x: -50% !important; + } + + .lg\:-translate-x-1\/3 { + --tw-translate-x: -33.333333% !important; + } + + .lg\:-translate-x-2\/3 { + --tw-translate-x: -66.666667% !important; + } + + .lg\:-translate-x-1\/4 { + --tw-translate-x: -25% !important; + } + + .lg\:-translate-x-2\/4 { + --tw-translate-x: -50% !important; + } + + .lg\:-translate-x-3\/4 { + --tw-translate-x: -75% !important; + } + + .lg\:-translate-x-full { + --tw-translate-x: -100% !important; + } + + .lg\:translate-y-0 { + --tw-translate-y: 0px !important; + } + + .lg\:translate-y-1 { + --tw-translate-y: 0.25rem !important; + } + + .lg\:translate-y-2 { + --tw-translate-y: 0.5rem !important; + } + + .lg\:translate-y-3 { + --tw-translate-y: 0.75rem !important; + } + + .lg\:translate-y-4 { + --tw-translate-y: 1rem !important; + } + + .lg\:translate-y-5 { + --tw-translate-y: 1.25rem !important; + } + + .lg\:translate-y-6 { + --tw-translate-y: 1.5rem !important; + } + + .lg\:translate-y-7 { + --tw-translate-y: 1.75rem !important; + } + + .lg\:translate-y-8 { + --tw-translate-y: 2rem !important; + } + + .lg\:translate-y-9 { + --tw-translate-y: 2.25rem !important; + } + + .lg\:translate-y-10 { + --tw-translate-y: 2.5rem !important; + } + + .lg\:translate-y-11 { + --tw-translate-y: 2.75rem !important; + } + + .lg\:translate-y-12 { + --tw-translate-y: 3rem !important; + } + + .lg\:translate-y-14 { + --tw-translate-y: 3.5rem !important; + } + + .lg\:translate-y-16 { + --tw-translate-y: 4rem !important; + } + + .lg\:translate-y-20 { + --tw-translate-y: 5rem !important; + } + + .lg\:translate-y-24 { + --tw-translate-y: 6rem !important; + } + + .lg\:translate-y-28 { + --tw-translate-y: 7rem !important; + } + + .lg\:translate-y-32 { + --tw-translate-y: 8rem !important; + } + + .lg\:translate-y-36 { + --tw-translate-y: 9rem !important; + } + + .lg\:translate-y-40 { + --tw-translate-y: 10rem !important; + } + + .lg\:translate-y-44 { + --tw-translate-y: 11rem !important; + } + + .lg\:translate-y-48 { + --tw-translate-y: 12rem !important; + } + + .lg\:translate-y-52 { + --tw-translate-y: 13rem !important; + } + + .lg\:translate-y-56 { + --tw-translate-y: 14rem !important; + } + + .lg\:translate-y-60 { + --tw-translate-y: 15rem !important; + } + + .lg\:translate-y-64 { + --tw-translate-y: 16rem !important; + } + + .lg\:translate-y-72 { + --tw-translate-y: 18rem !important; + } + + .lg\:translate-y-80 { + --tw-translate-y: 20rem !important; + } + + .lg\:translate-y-96 { + --tw-translate-y: 24rem !important; + } + + .lg\:translate-y-px { + --tw-translate-y: 1px !important; + } + + .lg\:translate-y-0\.5 { + --tw-translate-y: 0.125rem !important; + } + + .lg\:translate-y-1\.5 { + --tw-translate-y: 0.375rem !important; + } + + .lg\:translate-y-2\.5 { + --tw-translate-y: 0.625rem !important; + } + + .lg\:translate-y-3\.5 { + --tw-translate-y: 0.875rem !important; + } + + .lg\:-translate-y-0 { + --tw-translate-y: 0px !important; + } + + .lg\:-translate-y-1 { + --tw-translate-y: -0.25rem !important; + } + + .lg\:-translate-y-2 { + --tw-translate-y: -0.5rem !important; + } + + .lg\:-translate-y-3 { + --tw-translate-y: -0.75rem !important; + } + + .lg\:-translate-y-4 { + --tw-translate-y: -1rem !important; + } + + .lg\:-translate-y-5 { + --tw-translate-y: -1.25rem !important; + } + + .lg\:-translate-y-6 { + --tw-translate-y: -1.5rem !important; + } + + .lg\:-translate-y-7 { + --tw-translate-y: -1.75rem !important; + } + + .lg\:-translate-y-8 { + --tw-translate-y: -2rem !important; + } + + .lg\:-translate-y-9 { + --tw-translate-y: -2.25rem !important; + } + + .lg\:-translate-y-10 { + --tw-translate-y: -2.5rem !important; + } + + .lg\:-translate-y-11 { + --tw-translate-y: -2.75rem !important; + } + + .lg\:-translate-y-12 { + --tw-translate-y: -3rem !important; + } + + .lg\:-translate-y-14 { + --tw-translate-y: -3.5rem !important; + } + + .lg\:-translate-y-16 { + --tw-translate-y: -4rem !important; + } + + .lg\:-translate-y-20 { + --tw-translate-y: -5rem !important; + } + + .lg\:-translate-y-24 { + --tw-translate-y: -6rem !important; + } + + .lg\:-translate-y-28 { + --tw-translate-y: -7rem !important; + } + + .lg\:-translate-y-32 { + --tw-translate-y: -8rem !important; + } + + .lg\:-translate-y-36 { + --tw-translate-y: -9rem !important; + } + + .lg\:-translate-y-40 { + --tw-translate-y: -10rem !important; + } + + .lg\:-translate-y-44 { + --tw-translate-y: -11rem !important; + } + + .lg\:-translate-y-48 { + --tw-translate-y: -12rem !important; + } + + .lg\:-translate-y-52 { + --tw-translate-y: -13rem !important; + } + + .lg\:-translate-y-56 { + --tw-translate-y: -14rem !important; + } + + .lg\:-translate-y-60 { + --tw-translate-y: -15rem !important; + } + + .lg\:-translate-y-64 { + --tw-translate-y: -16rem !important; + } + + .lg\:-translate-y-72 { + --tw-translate-y: -18rem !important; + } + + .lg\:-translate-y-80 { + --tw-translate-y: -20rem !important; + } + + .lg\:-translate-y-96 { + --tw-translate-y: -24rem !important; + } + + .lg\:-translate-y-px { + --tw-translate-y: -1px !important; + } + + .lg\:-translate-y-0\.5 { + --tw-translate-y: -0.125rem !important; + } + + .lg\:-translate-y-1\.5 { + --tw-translate-y: -0.375rem !important; + } + + .lg\:-translate-y-2\.5 { + --tw-translate-y: -0.625rem !important; + } + + .lg\:-translate-y-3\.5 { + --tw-translate-y: -0.875rem !important; + } + + .lg\:translate-y-1\/2 { + --tw-translate-y: 50% !important; + } + + .lg\:translate-y-1\/3 { + --tw-translate-y: 33.333333% !important; + } + + .lg\:translate-y-2\/3 { + --tw-translate-y: 66.666667% !important; + } + + .lg\:translate-y-1\/4 { + --tw-translate-y: 25% !important; + } + + .lg\:translate-y-2\/4 { + --tw-translate-y: 50% !important; + } + + .lg\:translate-y-3\/4 { + --tw-translate-y: 75% !important; + } + + .lg\:translate-y-full { + --tw-translate-y: 100% !important; + } + + .lg\:-translate-y-1\/2 { + --tw-translate-y: -50% !important; + } + + .lg\:-translate-y-1\/3 { + --tw-translate-y: -33.333333% !important; + } + + .lg\:-translate-y-2\/3 { + --tw-translate-y: -66.666667% !important; + } + + .lg\:-translate-y-1\/4 { + --tw-translate-y: -25% !important; + } + + .lg\:-translate-y-2\/4 { + --tw-translate-y: -50% !important; + } + + .lg\:-translate-y-3\/4 { + --tw-translate-y: -75% !important; + } + + .lg\:-translate-y-full { + --tw-translate-y: -100% !important; + } + + .lg\:hover\:translate-x-0:hover { + --tw-translate-x: 0px !important; + } + + .lg\:hover\:translate-x-1:hover { + --tw-translate-x: 0.25rem !important; + } + + .lg\:hover\:translate-x-2:hover { + --tw-translate-x: 0.5rem !important; + } + + .lg\:hover\:translate-x-3:hover { + --tw-translate-x: 0.75rem !important; + } + + .lg\:hover\:translate-x-4:hover { + --tw-translate-x: 1rem !important; + } + + .lg\:hover\:translate-x-5:hover { + --tw-translate-x: 1.25rem !important; + } + + .lg\:hover\:translate-x-6:hover { + --tw-translate-x: 1.5rem !important; + } + + .lg\:hover\:translate-x-7:hover { + --tw-translate-x: 1.75rem !important; + } + + .lg\:hover\:translate-x-8:hover { + --tw-translate-x: 2rem !important; + } + + .lg\:hover\:translate-x-9:hover { + --tw-translate-x: 2.25rem !important; + } + + .lg\:hover\:translate-x-10:hover { + --tw-translate-x: 2.5rem !important; + } + + .lg\:hover\:translate-x-11:hover { + --tw-translate-x: 2.75rem !important; + } + + .lg\:hover\:translate-x-12:hover { + --tw-translate-x: 3rem !important; + } + + .lg\:hover\:translate-x-14:hover { + --tw-translate-x: 3.5rem !important; + } + + .lg\:hover\:translate-x-16:hover { + --tw-translate-x: 4rem !important; + } + + .lg\:hover\:translate-x-20:hover { + --tw-translate-x: 5rem !important; + } + + .lg\:hover\:translate-x-24:hover { + --tw-translate-x: 6rem !important; + } + + .lg\:hover\:translate-x-28:hover { + --tw-translate-x: 7rem !important; + } + + .lg\:hover\:translate-x-32:hover { + --tw-translate-x: 8rem !important; + } + + .lg\:hover\:translate-x-36:hover { + --tw-translate-x: 9rem !important; + } + + .lg\:hover\:translate-x-40:hover { + --tw-translate-x: 10rem !important; + } + + .lg\:hover\:translate-x-44:hover { + --tw-translate-x: 11rem !important; + } + + .lg\:hover\:translate-x-48:hover { + --tw-translate-x: 12rem !important; + } + + .lg\:hover\:translate-x-52:hover { + --tw-translate-x: 13rem !important; + } + + .lg\:hover\:translate-x-56:hover { + --tw-translate-x: 14rem !important; + } + + .lg\:hover\:translate-x-60:hover { + --tw-translate-x: 15rem !important; + } + + .lg\:hover\:translate-x-64:hover { + --tw-translate-x: 16rem !important; + } + + .lg\:hover\:translate-x-72:hover { + --tw-translate-x: 18rem !important; + } + + .lg\:hover\:translate-x-80:hover { + --tw-translate-x: 20rem !important; + } + + .lg\:hover\:translate-x-96:hover { + --tw-translate-x: 24rem !important; + } + + .lg\:hover\:translate-x-px:hover { + --tw-translate-x: 1px !important; + } + + .lg\:hover\:translate-x-0\.5:hover { + --tw-translate-x: 0.125rem !important; + } + + .lg\:hover\:translate-x-1\.5:hover { + --tw-translate-x: 0.375rem !important; + } + + .lg\:hover\:translate-x-2\.5:hover { + --tw-translate-x: 0.625rem !important; + } + + .lg\:hover\:translate-x-3\.5:hover { + --tw-translate-x: 0.875rem !important; + } + + .lg\:hover\:-translate-x-0:hover { + --tw-translate-x: 0px !important; + } + + .lg\:hover\:-translate-x-1:hover { + --tw-translate-x: -0.25rem !important; + } + + .lg\:hover\:-translate-x-2:hover { + --tw-translate-x: -0.5rem !important; + } + + .lg\:hover\:-translate-x-3:hover { + --tw-translate-x: -0.75rem !important; + } + + .lg\:hover\:-translate-x-4:hover { + --tw-translate-x: -1rem !important; + } + + .lg\:hover\:-translate-x-5:hover { + --tw-translate-x: -1.25rem !important; + } + + .lg\:hover\:-translate-x-6:hover { + --tw-translate-x: -1.5rem !important; + } + + .lg\:hover\:-translate-x-7:hover { + --tw-translate-x: -1.75rem !important; + } + + .lg\:hover\:-translate-x-8:hover { + --tw-translate-x: -2rem !important; + } + + .lg\:hover\:-translate-x-9:hover { + --tw-translate-x: -2.25rem !important; + } + + .lg\:hover\:-translate-x-10:hover { + --tw-translate-x: -2.5rem !important; + } + + .lg\:hover\:-translate-x-11:hover { + --tw-translate-x: -2.75rem !important; + } + + .lg\:hover\:-translate-x-12:hover { + --tw-translate-x: -3rem !important; + } + + .lg\:hover\:-translate-x-14:hover { + --tw-translate-x: -3.5rem !important; + } + + .lg\:hover\:-translate-x-16:hover { + --tw-translate-x: -4rem !important; + } + + .lg\:hover\:-translate-x-20:hover { + --tw-translate-x: -5rem !important; + } + + .lg\:hover\:-translate-x-24:hover { + --tw-translate-x: -6rem !important; + } + + .lg\:hover\:-translate-x-28:hover { + --tw-translate-x: -7rem !important; + } + + .lg\:hover\:-translate-x-32:hover { + --tw-translate-x: -8rem !important; + } + + .lg\:hover\:-translate-x-36:hover { + --tw-translate-x: -9rem !important; + } + + .lg\:hover\:-translate-x-40:hover { + --tw-translate-x: -10rem !important; + } + + .lg\:hover\:-translate-x-44:hover { + --tw-translate-x: -11rem !important; + } + + .lg\:hover\:-translate-x-48:hover { + --tw-translate-x: -12rem !important; + } + + .lg\:hover\:-translate-x-52:hover { + --tw-translate-x: -13rem !important; + } + + .lg\:hover\:-translate-x-56:hover { + --tw-translate-x: -14rem !important; + } + + .lg\:hover\:-translate-x-60:hover { + --tw-translate-x: -15rem !important; + } + + .lg\:hover\:-translate-x-64:hover { + --tw-translate-x: -16rem !important; + } + + .lg\:hover\:-translate-x-72:hover { + --tw-translate-x: -18rem !important; + } + + .lg\:hover\:-translate-x-80:hover { + --tw-translate-x: -20rem !important; + } + + .lg\:hover\:-translate-x-96:hover { + --tw-translate-x: -24rem !important; + } + + .lg\:hover\:-translate-x-px:hover { + --tw-translate-x: -1px !important; + } + + .lg\:hover\:-translate-x-0\.5:hover { + --tw-translate-x: -0.125rem !important; + } + + .lg\:hover\:-translate-x-1\.5:hover { + --tw-translate-x: -0.375rem !important; + } + + .lg\:hover\:-translate-x-2\.5:hover { + --tw-translate-x: -0.625rem !important; + } + + .lg\:hover\:-translate-x-3\.5:hover { + --tw-translate-x: -0.875rem !important; + } + + .lg\:hover\:translate-x-1\/2:hover { + --tw-translate-x: 50% !important; + } + + .lg\:hover\:translate-x-1\/3:hover { + --tw-translate-x: 33.333333% !important; + } + + .lg\:hover\:translate-x-2\/3:hover { + --tw-translate-x: 66.666667% !important; + } + + .lg\:hover\:translate-x-1\/4:hover { + --tw-translate-x: 25% !important; + } + + .lg\:hover\:translate-x-2\/4:hover { + --tw-translate-x: 50% !important; + } + + .lg\:hover\:translate-x-3\/4:hover { + --tw-translate-x: 75% !important; + } + + .lg\:hover\:translate-x-full:hover { + --tw-translate-x: 100% !important; + } + + .lg\:hover\:-translate-x-1\/2:hover { + --tw-translate-x: -50% !important; + } + + .lg\:hover\:-translate-x-1\/3:hover { + --tw-translate-x: -33.333333% !important; + } + + .lg\:hover\:-translate-x-2\/3:hover { + --tw-translate-x: -66.666667% !important; + } + + .lg\:hover\:-translate-x-1\/4:hover { + --tw-translate-x: -25% !important; + } + + .lg\:hover\:-translate-x-2\/4:hover { + --tw-translate-x: -50% !important; + } + + .lg\:hover\:-translate-x-3\/4:hover { + --tw-translate-x: -75% !important; + } + + .lg\:hover\:-translate-x-full:hover { + --tw-translate-x: -100% !important; + } + + .lg\:hover\:translate-y-0:hover { + --tw-translate-y: 0px !important; + } + + .lg\:hover\:translate-y-1:hover { + --tw-translate-y: 0.25rem !important; + } + + .lg\:hover\:translate-y-2:hover { + --tw-translate-y: 0.5rem !important; + } + + .lg\:hover\:translate-y-3:hover { + --tw-translate-y: 0.75rem !important; + } + + .lg\:hover\:translate-y-4:hover { + --tw-translate-y: 1rem !important; + } + + .lg\:hover\:translate-y-5:hover { + --tw-translate-y: 1.25rem !important; + } + + .lg\:hover\:translate-y-6:hover { + --tw-translate-y: 1.5rem !important; + } + + .lg\:hover\:translate-y-7:hover { + --tw-translate-y: 1.75rem !important; + } + + .lg\:hover\:translate-y-8:hover { + --tw-translate-y: 2rem !important; + } + + .lg\:hover\:translate-y-9:hover { + --tw-translate-y: 2.25rem !important; + } + + .lg\:hover\:translate-y-10:hover { + --tw-translate-y: 2.5rem !important; + } + + .lg\:hover\:translate-y-11:hover { + --tw-translate-y: 2.75rem !important; + } + + .lg\:hover\:translate-y-12:hover { + --tw-translate-y: 3rem !important; + } + + .lg\:hover\:translate-y-14:hover { + --tw-translate-y: 3.5rem !important; + } + + .lg\:hover\:translate-y-16:hover { + --tw-translate-y: 4rem !important; + } + + .lg\:hover\:translate-y-20:hover { + --tw-translate-y: 5rem !important; + } + + .lg\:hover\:translate-y-24:hover { + --tw-translate-y: 6rem !important; + } + + .lg\:hover\:translate-y-28:hover { + --tw-translate-y: 7rem !important; + } + + .lg\:hover\:translate-y-32:hover { + --tw-translate-y: 8rem !important; + } + + .lg\:hover\:translate-y-36:hover { + --tw-translate-y: 9rem !important; + } + + .lg\:hover\:translate-y-40:hover { + --tw-translate-y: 10rem !important; + } + + .lg\:hover\:translate-y-44:hover { + --tw-translate-y: 11rem !important; + } + + .lg\:hover\:translate-y-48:hover { + --tw-translate-y: 12rem !important; + } + + .lg\:hover\:translate-y-52:hover { + --tw-translate-y: 13rem !important; + } + + .lg\:hover\:translate-y-56:hover { + --tw-translate-y: 14rem !important; + } + + .lg\:hover\:translate-y-60:hover { + --tw-translate-y: 15rem !important; + } + + .lg\:hover\:translate-y-64:hover { + --tw-translate-y: 16rem !important; + } + + .lg\:hover\:translate-y-72:hover { + --tw-translate-y: 18rem !important; + } + + .lg\:hover\:translate-y-80:hover { + --tw-translate-y: 20rem !important; + } + + .lg\:hover\:translate-y-96:hover { + --tw-translate-y: 24rem !important; + } + + .lg\:hover\:translate-y-px:hover { + --tw-translate-y: 1px !important; + } + + .lg\:hover\:translate-y-0\.5:hover { + --tw-translate-y: 0.125rem !important; + } + + .lg\:hover\:translate-y-1\.5:hover { + --tw-translate-y: 0.375rem !important; + } + + .lg\:hover\:translate-y-2\.5:hover { + --tw-translate-y: 0.625rem !important; + } + + .lg\:hover\:translate-y-3\.5:hover { + --tw-translate-y: 0.875rem !important; + } + + .lg\:hover\:-translate-y-0:hover { + --tw-translate-y: 0px !important; + } + + .lg\:hover\:-translate-y-1:hover { + --tw-translate-y: -0.25rem !important; + } + + .lg\:hover\:-translate-y-2:hover { + --tw-translate-y: -0.5rem !important; + } + + .lg\:hover\:-translate-y-3:hover { + --tw-translate-y: -0.75rem !important; + } + + .lg\:hover\:-translate-y-4:hover { + --tw-translate-y: -1rem !important; + } + + .lg\:hover\:-translate-y-5:hover { + --tw-translate-y: -1.25rem !important; + } + + .lg\:hover\:-translate-y-6:hover { + --tw-translate-y: -1.5rem !important; + } + + .lg\:hover\:-translate-y-7:hover { + --tw-translate-y: -1.75rem !important; + } + + .lg\:hover\:-translate-y-8:hover { + --tw-translate-y: -2rem !important; + } + + .lg\:hover\:-translate-y-9:hover { + --tw-translate-y: -2.25rem !important; + } + + .lg\:hover\:-translate-y-10:hover { + --tw-translate-y: -2.5rem !important; + } + + .lg\:hover\:-translate-y-11:hover { + --tw-translate-y: -2.75rem !important; + } + + .lg\:hover\:-translate-y-12:hover { + --tw-translate-y: -3rem !important; + } + + .lg\:hover\:-translate-y-14:hover { + --tw-translate-y: -3.5rem !important; + } + + .lg\:hover\:-translate-y-16:hover { + --tw-translate-y: -4rem !important; + } + + .lg\:hover\:-translate-y-20:hover { + --tw-translate-y: -5rem !important; + } + + .lg\:hover\:-translate-y-24:hover { + --tw-translate-y: -6rem !important; + } + + .lg\:hover\:-translate-y-28:hover { + --tw-translate-y: -7rem !important; + } + + .lg\:hover\:-translate-y-32:hover { + --tw-translate-y: -8rem !important; + } + + .lg\:hover\:-translate-y-36:hover { + --tw-translate-y: -9rem !important; + } + + .lg\:hover\:-translate-y-40:hover { + --tw-translate-y: -10rem !important; + } + + .lg\:hover\:-translate-y-44:hover { + --tw-translate-y: -11rem !important; + } + + .lg\:hover\:-translate-y-48:hover { + --tw-translate-y: -12rem !important; + } + + .lg\:hover\:-translate-y-52:hover { + --tw-translate-y: -13rem !important; + } + + .lg\:hover\:-translate-y-56:hover { + --tw-translate-y: -14rem !important; + } + + .lg\:hover\:-translate-y-60:hover { + --tw-translate-y: -15rem !important; + } + + .lg\:hover\:-translate-y-64:hover { + --tw-translate-y: -16rem !important; + } + + .lg\:hover\:-translate-y-72:hover { + --tw-translate-y: -18rem !important; + } + + .lg\:hover\:-translate-y-80:hover { + --tw-translate-y: -20rem !important; + } + + .lg\:hover\:-translate-y-96:hover { + --tw-translate-y: -24rem !important; + } + + .lg\:hover\:-translate-y-px:hover { + --tw-translate-y: -1px !important; + } + + .lg\:hover\:-translate-y-0\.5:hover { + --tw-translate-y: -0.125rem !important; + } + + .lg\:hover\:-translate-y-1\.5:hover { + --tw-translate-y: -0.375rem !important; + } + + .lg\:hover\:-translate-y-2\.5:hover { + --tw-translate-y: -0.625rem !important; + } + + .lg\:hover\:-translate-y-3\.5:hover { + --tw-translate-y: -0.875rem !important; + } + + .lg\:hover\:translate-y-1\/2:hover { + --tw-translate-y: 50% !important; + } + + .lg\:hover\:translate-y-1\/3:hover { + --tw-translate-y: 33.333333% !important; + } + + .lg\:hover\:translate-y-2\/3:hover { + --tw-translate-y: 66.666667% !important; + } + + .lg\:hover\:translate-y-1\/4:hover { + --tw-translate-y: 25% !important; + } + + .lg\:hover\:translate-y-2\/4:hover { + --tw-translate-y: 50% !important; + } + + .lg\:hover\:translate-y-3\/4:hover { + --tw-translate-y: 75% !important; + } + + .lg\:hover\:translate-y-full:hover { + --tw-translate-y: 100% !important; + } + + .lg\:hover\:-translate-y-1\/2:hover { + --tw-translate-y: -50% !important; + } + + .lg\:hover\:-translate-y-1\/3:hover { + --tw-translate-y: -33.333333% !important; + } + + .lg\:hover\:-translate-y-2\/3:hover { + --tw-translate-y: -66.666667% !important; + } + + .lg\:hover\:-translate-y-1\/4:hover { + --tw-translate-y: -25% !important; + } + + .lg\:hover\:-translate-y-2\/4:hover { + --tw-translate-y: -50% !important; + } + + .lg\:hover\:-translate-y-3\/4:hover { + --tw-translate-y: -75% !important; + } + + .lg\:hover\:-translate-y-full:hover { + --tw-translate-y: -100% !important; + } + + .lg\:focus\:translate-x-0:focus { + --tw-translate-x: 0px !important; + } + + .lg\:focus\:translate-x-1:focus { + --tw-translate-x: 0.25rem !important; + } + + .lg\:focus\:translate-x-2:focus { + --tw-translate-x: 0.5rem !important; + } + + .lg\:focus\:translate-x-3:focus { + --tw-translate-x: 0.75rem !important; + } + + .lg\:focus\:translate-x-4:focus { + --tw-translate-x: 1rem !important; + } + + .lg\:focus\:translate-x-5:focus { + --tw-translate-x: 1.25rem !important; + } + + .lg\:focus\:translate-x-6:focus { + --tw-translate-x: 1.5rem !important; + } + + .lg\:focus\:translate-x-7:focus { + --tw-translate-x: 1.75rem !important; + } + + .lg\:focus\:translate-x-8:focus { + --tw-translate-x: 2rem !important; + } + + .lg\:focus\:translate-x-9:focus { + --tw-translate-x: 2.25rem !important; + } + + .lg\:focus\:translate-x-10:focus { + --tw-translate-x: 2.5rem !important; + } + + .lg\:focus\:translate-x-11:focus { + --tw-translate-x: 2.75rem !important; + } + + .lg\:focus\:translate-x-12:focus { + --tw-translate-x: 3rem !important; + } + + .lg\:focus\:translate-x-14:focus { + --tw-translate-x: 3.5rem !important; + } + + .lg\:focus\:translate-x-16:focus { + --tw-translate-x: 4rem !important; + } + + .lg\:focus\:translate-x-20:focus { + --tw-translate-x: 5rem !important; + } + + .lg\:focus\:translate-x-24:focus { + --tw-translate-x: 6rem !important; + } + + .lg\:focus\:translate-x-28:focus { + --tw-translate-x: 7rem !important; + } + + .lg\:focus\:translate-x-32:focus { + --tw-translate-x: 8rem !important; + } + + .lg\:focus\:translate-x-36:focus { + --tw-translate-x: 9rem !important; + } + + .lg\:focus\:translate-x-40:focus { + --tw-translate-x: 10rem !important; + } + + .lg\:focus\:translate-x-44:focus { + --tw-translate-x: 11rem !important; + } + + .lg\:focus\:translate-x-48:focus { + --tw-translate-x: 12rem !important; + } + + .lg\:focus\:translate-x-52:focus { + --tw-translate-x: 13rem !important; + } + + .lg\:focus\:translate-x-56:focus { + --tw-translate-x: 14rem !important; + } + + .lg\:focus\:translate-x-60:focus { + --tw-translate-x: 15rem !important; + } + + .lg\:focus\:translate-x-64:focus { + --tw-translate-x: 16rem !important; + } + + .lg\:focus\:translate-x-72:focus { + --tw-translate-x: 18rem !important; + } + + .lg\:focus\:translate-x-80:focus { + --tw-translate-x: 20rem !important; + } + + .lg\:focus\:translate-x-96:focus { + --tw-translate-x: 24rem !important; + } + + .lg\:focus\:translate-x-px:focus { + --tw-translate-x: 1px !important; + } + + .lg\:focus\:translate-x-0\.5:focus { + --tw-translate-x: 0.125rem !important; + } + + .lg\:focus\:translate-x-1\.5:focus { + --tw-translate-x: 0.375rem !important; + } + + .lg\:focus\:translate-x-2\.5:focus { + --tw-translate-x: 0.625rem !important; + } + + .lg\:focus\:translate-x-3\.5:focus { + --tw-translate-x: 0.875rem !important; + } + + .lg\:focus\:-translate-x-0:focus { + --tw-translate-x: 0px !important; + } + + .lg\:focus\:-translate-x-1:focus { + --tw-translate-x: -0.25rem !important; + } + + .lg\:focus\:-translate-x-2:focus { + --tw-translate-x: -0.5rem !important; + } + + .lg\:focus\:-translate-x-3:focus { + --tw-translate-x: -0.75rem !important; + } + + .lg\:focus\:-translate-x-4:focus { + --tw-translate-x: -1rem !important; + } + + .lg\:focus\:-translate-x-5:focus { + --tw-translate-x: -1.25rem !important; + } + + .lg\:focus\:-translate-x-6:focus { + --tw-translate-x: -1.5rem !important; + } + + .lg\:focus\:-translate-x-7:focus { + --tw-translate-x: -1.75rem !important; + } + + .lg\:focus\:-translate-x-8:focus { + --tw-translate-x: -2rem !important; + } + + .lg\:focus\:-translate-x-9:focus { + --tw-translate-x: -2.25rem !important; + } + + .lg\:focus\:-translate-x-10:focus { + --tw-translate-x: -2.5rem !important; + } + + .lg\:focus\:-translate-x-11:focus { + --tw-translate-x: -2.75rem !important; + } + + .lg\:focus\:-translate-x-12:focus { + --tw-translate-x: -3rem !important; + } + + .lg\:focus\:-translate-x-14:focus { + --tw-translate-x: -3.5rem !important; + } + + .lg\:focus\:-translate-x-16:focus { + --tw-translate-x: -4rem !important; + } + + .lg\:focus\:-translate-x-20:focus { + --tw-translate-x: -5rem !important; + } + + .lg\:focus\:-translate-x-24:focus { + --tw-translate-x: -6rem !important; + } + + .lg\:focus\:-translate-x-28:focus { + --tw-translate-x: -7rem !important; + } + + .lg\:focus\:-translate-x-32:focus { + --tw-translate-x: -8rem !important; + } + + .lg\:focus\:-translate-x-36:focus { + --tw-translate-x: -9rem !important; + } + + .lg\:focus\:-translate-x-40:focus { + --tw-translate-x: -10rem !important; + } + + .lg\:focus\:-translate-x-44:focus { + --tw-translate-x: -11rem !important; + } + + .lg\:focus\:-translate-x-48:focus { + --tw-translate-x: -12rem !important; + } + + .lg\:focus\:-translate-x-52:focus { + --tw-translate-x: -13rem !important; + } + + .lg\:focus\:-translate-x-56:focus { + --tw-translate-x: -14rem !important; + } + + .lg\:focus\:-translate-x-60:focus { + --tw-translate-x: -15rem !important; + } + + .lg\:focus\:-translate-x-64:focus { + --tw-translate-x: -16rem !important; + } + + .lg\:focus\:-translate-x-72:focus { + --tw-translate-x: -18rem !important; + } + + .lg\:focus\:-translate-x-80:focus { + --tw-translate-x: -20rem !important; + } + + .lg\:focus\:-translate-x-96:focus { + --tw-translate-x: -24rem !important; + } + + .lg\:focus\:-translate-x-px:focus { + --tw-translate-x: -1px !important; + } + + .lg\:focus\:-translate-x-0\.5:focus { + --tw-translate-x: -0.125rem !important; + } + + .lg\:focus\:-translate-x-1\.5:focus { + --tw-translate-x: -0.375rem !important; + } + + .lg\:focus\:-translate-x-2\.5:focus { + --tw-translate-x: -0.625rem !important; + } + + .lg\:focus\:-translate-x-3\.5:focus { + --tw-translate-x: -0.875rem !important; + } + + .lg\:focus\:translate-x-1\/2:focus { + --tw-translate-x: 50% !important; + } + + .lg\:focus\:translate-x-1\/3:focus { + --tw-translate-x: 33.333333% !important; + } + + .lg\:focus\:translate-x-2\/3:focus { + --tw-translate-x: 66.666667% !important; + } + + .lg\:focus\:translate-x-1\/4:focus { + --tw-translate-x: 25% !important; + } + + .lg\:focus\:translate-x-2\/4:focus { + --tw-translate-x: 50% !important; + } + + .lg\:focus\:translate-x-3\/4:focus { + --tw-translate-x: 75% !important; + } + + .lg\:focus\:translate-x-full:focus { + --tw-translate-x: 100% !important; + } + + .lg\:focus\:-translate-x-1\/2:focus { + --tw-translate-x: -50% !important; + } + + .lg\:focus\:-translate-x-1\/3:focus { + --tw-translate-x: -33.333333% !important; + } + + .lg\:focus\:-translate-x-2\/3:focus { + --tw-translate-x: -66.666667% !important; + } + + .lg\:focus\:-translate-x-1\/4:focus { + --tw-translate-x: -25% !important; + } + + .lg\:focus\:-translate-x-2\/4:focus { + --tw-translate-x: -50% !important; + } + + .lg\:focus\:-translate-x-3\/4:focus { + --tw-translate-x: -75% !important; + } + + .lg\:focus\:-translate-x-full:focus { + --tw-translate-x: -100% !important; + } + + .lg\:focus\:translate-y-0:focus { + --tw-translate-y: 0px !important; + } + + .lg\:focus\:translate-y-1:focus { + --tw-translate-y: 0.25rem !important; + } + + .lg\:focus\:translate-y-2:focus { + --tw-translate-y: 0.5rem !important; + } + + .lg\:focus\:translate-y-3:focus { + --tw-translate-y: 0.75rem !important; + } + + .lg\:focus\:translate-y-4:focus { + --tw-translate-y: 1rem !important; + } + + .lg\:focus\:translate-y-5:focus { + --tw-translate-y: 1.25rem !important; + } + + .lg\:focus\:translate-y-6:focus { + --tw-translate-y: 1.5rem !important; + } + + .lg\:focus\:translate-y-7:focus { + --tw-translate-y: 1.75rem !important; + } + + .lg\:focus\:translate-y-8:focus { + --tw-translate-y: 2rem !important; + } + + .lg\:focus\:translate-y-9:focus { + --tw-translate-y: 2.25rem !important; + } + + .lg\:focus\:translate-y-10:focus { + --tw-translate-y: 2.5rem !important; + } + + .lg\:focus\:translate-y-11:focus { + --tw-translate-y: 2.75rem !important; + } + + .lg\:focus\:translate-y-12:focus { + --tw-translate-y: 3rem !important; + } + + .lg\:focus\:translate-y-14:focus { + --tw-translate-y: 3.5rem !important; + } + + .lg\:focus\:translate-y-16:focus { + --tw-translate-y: 4rem !important; + } + + .lg\:focus\:translate-y-20:focus { + --tw-translate-y: 5rem !important; + } + + .lg\:focus\:translate-y-24:focus { + --tw-translate-y: 6rem !important; + } + + .lg\:focus\:translate-y-28:focus { + --tw-translate-y: 7rem !important; + } + + .lg\:focus\:translate-y-32:focus { + --tw-translate-y: 8rem !important; + } + + .lg\:focus\:translate-y-36:focus { + --tw-translate-y: 9rem !important; + } + + .lg\:focus\:translate-y-40:focus { + --tw-translate-y: 10rem !important; + } + + .lg\:focus\:translate-y-44:focus { + --tw-translate-y: 11rem !important; + } + + .lg\:focus\:translate-y-48:focus { + --tw-translate-y: 12rem !important; + } + + .lg\:focus\:translate-y-52:focus { + --tw-translate-y: 13rem !important; + } + + .lg\:focus\:translate-y-56:focus { + --tw-translate-y: 14rem !important; + } + + .lg\:focus\:translate-y-60:focus { + --tw-translate-y: 15rem !important; + } + + .lg\:focus\:translate-y-64:focus { + --tw-translate-y: 16rem !important; + } + + .lg\:focus\:translate-y-72:focus { + --tw-translate-y: 18rem !important; + } + + .lg\:focus\:translate-y-80:focus { + --tw-translate-y: 20rem !important; + } + + .lg\:focus\:translate-y-96:focus { + --tw-translate-y: 24rem !important; + } + + .lg\:focus\:translate-y-px:focus { + --tw-translate-y: 1px !important; + } + + .lg\:focus\:translate-y-0\.5:focus { + --tw-translate-y: 0.125rem !important; + } + + .lg\:focus\:translate-y-1\.5:focus { + --tw-translate-y: 0.375rem !important; + } + + .lg\:focus\:translate-y-2\.5:focus { + --tw-translate-y: 0.625rem !important; + } + + .lg\:focus\:translate-y-3\.5:focus { + --tw-translate-y: 0.875rem !important; + } + + .lg\:focus\:-translate-y-0:focus { + --tw-translate-y: 0px !important; + } + + .lg\:focus\:-translate-y-1:focus { + --tw-translate-y: -0.25rem !important; + } + + .lg\:focus\:-translate-y-2:focus { + --tw-translate-y: -0.5rem !important; + } + + .lg\:focus\:-translate-y-3:focus { + --tw-translate-y: -0.75rem !important; + } + + .lg\:focus\:-translate-y-4:focus { + --tw-translate-y: -1rem !important; + } + + .lg\:focus\:-translate-y-5:focus { + --tw-translate-y: -1.25rem !important; + } + + .lg\:focus\:-translate-y-6:focus { + --tw-translate-y: -1.5rem !important; + } + + .lg\:focus\:-translate-y-7:focus { + --tw-translate-y: -1.75rem !important; + } + + .lg\:focus\:-translate-y-8:focus { + --tw-translate-y: -2rem !important; + } + + .lg\:focus\:-translate-y-9:focus { + --tw-translate-y: -2.25rem !important; + } + + .lg\:focus\:-translate-y-10:focus { + --tw-translate-y: -2.5rem !important; + } + + .lg\:focus\:-translate-y-11:focus { + --tw-translate-y: -2.75rem !important; + } + + .lg\:focus\:-translate-y-12:focus { + --tw-translate-y: -3rem !important; + } + + .lg\:focus\:-translate-y-14:focus { + --tw-translate-y: -3.5rem !important; + } + + .lg\:focus\:-translate-y-16:focus { + --tw-translate-y: -4rem !important; + } + + .lg\:focus\:-translate-y-20:focus { + --tw-translate-y: -5rem !important; + } + + .lg\:focus\:-translate-y-24:focus { + --tw-translate-y: -6rem !important; + } + + .lg\:focus\:-translate-y-28:focus { + --tw-translate-y: -7rem !important; + } + + .lg\:focus\:-translate-y-32:focus { + --tw-translate-y: -8rem !important; + } + + .lg\:focus\:-translate-y-36:focus { + --tw-translate-y: -9rem !important; + } + + .lg\:focus\:-translate-y-40:focus { + --tw-translate-y: -10rem !important; + } + + .lg\:focus\:-translate-y-44:focus { + --tw-translate-y: -11rem !important; + } + + .lg\:focus\:-translate-y-48:focus { + --tw-translate-y: -12rem !important; + } + + .lg\:focus\:-translate-y-52:focus { + --tw-translate-y: -13rem !important; + } + + .lg\:focus\:-translate-y-56:focus { + --tw-translate-y: -14rem !important; + } + + .lg\:focus\:-translate-y-60:focus { + --tw-translate-y: -15rem !important; + } + + .lg\:focus\:-translate-y-64:focus { + --tw-translate-y: -16rem !important; + } + + .lg\:focus\:-translate-y-72:focus { + --tw-translate-y: -18rem !important; + } + + .lg\:focus\:-translate-y-80:focus { + --tw-translate-y: -20rem !important; + } + + .lg\:focus\:-translate-y-96:focus { + --tw-translate-y: -24rem !important; + } + + .lg\:focus\:-translate-y-px:focus { + --tw-translate-y: -1px !important; + } + + .lg\:focus\:-translate-y-0\.5:focus { + --tw-translate-y: -0.125rem !important; + } + + .lg\:focus\:-translate-y-1\.5:focus { + --tw-translate-y: -0.375rem !important; + } + + .lg\:focus\:-translate-y-2\.5:focus { + --tw-translate-y: -0.625rem !important; + } + + .lg\:focus\:-translate-y-3\.5:focus { + --tw-translate-y: -0.875rem !important; + } + + .lg\:focus\:translate-y-1\/2:focus { + --tw-translate-y: 50% !important; + } + + .lg\:focus\:translate-y-1\/3:focus { + --tw-translate-y: 33.333333% !important; + } + + .lg\:focus\:translate-y-2\/3:focus { + --tw-translate-y: 66.666667% !important; + } + + .lg\:focus\:translate-y-1\/4:focus { + --tw-translate-y: 25% !important; + } + + .lg\:focus\:translate-y-2\/4:focus { + --tw-translate-y: 50% !important; + } + + .lg\:focus\:translate-y-3\/4:focus { + --tw-translate-y: 75% !important; + } + + .lg\:focus\:translate-y-full:focus { + --tw-translate-y: 100% !important; + } + + .lg\:focus\:-translate-y-1\/2:focus { + --tw-translate-y: -50% !important; + } + + .lg\:focus\:-translate-y-1\/3:focus { + --tw-translate-y: -33.333333% !important; + } + + .lg\:focus\:-translate-y-2\/3:focus { + --tw-translate-y: -66.666667% !important; + } + + .lg\:focus\:-translate-y-1\/4:focus { + --tw-translate-y: -25% !important; + } + + .lg\:focus\:-translate-y-2\/4:focus { + --tw-translate-y: -50% !important; + } + + .lg\:focus\:-translate-y-3\/4:focus { + --tw-translate-y: -75% !important; + } + + .lg\:focus\:-translate-y-full:focus { + --tw-translate-y: -100% !important; + } + + .lg\:skew-x-0 { + --tw-skew-x: 0deg !important; + } + + .lg\:skew-x-1 { + --tw-skew-x: 1deg !important; + } + + .lg\:skew-x-2 { + --tw-skew-x: 2deg !important; + } + + .lg\:skew-x-3 { + --tw-skew-x: 3deg !important; + } + + .lg\:skew-x-6 { + --tw-skew-x: 6deg !important; + } + + .lg\:skew-x-12 { + --tw-skew-x: 12deg !important; + } + + .lg\:-skew-x-12 { + --tw-skew-x: -12deg !important; + } + + .lg\:-skew-x-6 { + --tw-skew-x: -6deg !important; + } + + .lg\:-skew-x-3 { + --tw-skew-x: -3deg !important; + } + + .lg\:-skew-x-2 { + --tw-skew-x: -2deg !important; + } + + .lg\:-skew-x-1 { + --tw-skew-x: -1deg !important; + } + + .lg\:skew-y-0 { + --tw-skew-y: 0deg !important; + } + + .lg\:skew-y-1 { + --tw-skew-y: 1deg !important; + } + + .lg\:skew-y-2 { + --tw-skew-y: 2deg !important; + } + + .lg\:skew-y-3 { + --tw-skew-y: 3deg !important; + } + + .lg\:skew-y-6 { + --tw-skew-y: 6deg !important; + } + + .lg\:skew-y-12 { + --tw-skew-y: 12deg !important; + } + + .lg\:-skew-y-12 { + --tw-skew-y: -12deg !important; + } + + .lg\:-skew-y-6 { + --tw-skew-y: -6deg !important; + } + + .lg\:-skew-y-3 { + --tw-skew-y: -3deg !important; + } + + .lg\:-skew-y-2 { + --tw-skew-y: -2deg !important; + } + + .lg\:-skew-y-1 { + --tw-skew-y: -1deg !important; + } + + .lg\:hover\:skew-x-0:hover { + --tw-skew-x: 0deg !important; + } + + .lg\:hover\:skew-x-1:hover { + --tw-skew-x: 1deg !important; + } + + .lg\:hover\:skew-x-2:hover { + --tw-skew-x: 2deg !important; + } + + .lg\:hover\:skew-x-3:hover { + --tw-skew-x: 3deg !important; + } + + .lg\:hover\:skew-x-6:hover { + --tw-skew-x: 6deg !important; + } + + .lg\:hover\:skew-x-12:hover { + --tw-skew-x: 12deg !important; + } + + .lg\:hover\:-skew-x-12:hover { + --tw-skew-x: -12deg !important; + } + + .lg\:hover\:-skew-x-6:hover { + --tw-skew-x: -6deg !important; + } + + .lg\:hover\:-skew-x-3:hover { + --tw-skew-x: -3deg !important; + } + + .lg\:hover\:-skew-x-2:hover { + --tw-skew-x: -2deg !important; + } + + .lg\:hover\:-skew-x-1:hover { + --tw-skew-x: -1deg !important; + } + + .lg\:hover\:skew-y-0:hover { + --tw-skew-y: 0deg !important; + } + + .lg\:hover\:skew-y-1:hover { + --tw-skew-y: 1deg !important; + } + + .lg\:hover\:skew-y-2:hover { + --tw-skew-y: 2deg !important; + } + + .lg\:hover\:skew-y-3:hover { + --tw-skew-y: 3deg !important; + } + + .lg\:hover\:skew-y-6:hover { + --tw-skew-y: 6deg !important; + } + + .lg\:hover\:skew-y-12:hover { + --tw-skew-y: 12deg !important; + } + + .lg\:hover\:-skew-y-12:hover { + --tw-skew-y: -12deg !important; + } + + .lg\:hover\:-skew-y-6:hover { + --tw-skew-y: -6deg !important; + } + + .lg\:hover\:-skew-y-3:hover { + --tw-skew-y: -3deg !important; + } + + .lg\:hover\:-skew-y-2:hover { + --tw-skew-y: -2deg !important; + } + + .lg\:hover\:-skew-y-1:hover { + --tw-skew-y: -1deg !important; + } + + .lg\:focus\:skew-x-0:focus { + --tw-skew-x: 0deg !important; + } + + .lg\:focus\:skew-x-1:focus { + --tw-skew-x: 1deg !important; + } + + .lg\:focus\:skew-x-2:focus { + --tw-skew-x: 2deg !important; + } + + .lg\:focus\:skew-x-3:focus { + --tw-skew-x: 3deg !important; + } + + .lg\:focus\:skew-x-6:focus { + --tw-skew-x: 6deg !important; + } + + .lg\:focus\:skew-x-12:focus { + --tw-skew-x: 12deg !important; + } + + .lg\:focus\:-skew-x-12:focus { + --tw-skew-x: -12deg !important; + } + + .lg\:focus\:-skew-x-6:focus { + --tw-skew-x: -6deg !important; + } + + .lg\:focus\:-skew-x-3:focus { + --tw-skew-x: -3deg !important; + } + + .lg\:focus\:-skew-x-2:focus { + --tw-skew-x: -2deg !important; + } + + .lg\:focus\:-skew-x-1:focus { + --tw-skew-x: -1deg !important; + } + + .lg\:focus\:skew-y-0:focus { + --tw-skew-y: 0deg !important; + } + + .lg\:focus\:skew-y-1:focus { + --tw-skew-y: 1deg !important; + } + + .lg\:focus\:skew-y-2:focus { + --tw-skew-y: 2deg !important; + } + + .lg\:focus\:skew-y-3:focus { + --tw-skew-y: 3deg !important; + } + + .lg\:focus\:skew-y-6:focus { + --tw-skew-y: 6deg !important; + } + + .lg\:focus\:skew-y-12:focus { + --tw-skew-y: 12deg !important; + } + + .lg\:focus\:-skew-y-12:focus { + --tw-skew-y: -12deg !important; + } + + .lg\:focus\:-skew-y-6:focus { + --tw-skew-y: -6deg !important; + } + + .lg\:focus\:-skew-y-3:focus { + --tw-skew-y: -3deg !important; + } + + .lg\:focus\:-skew-y-2:focus { + --tw-skew-y: -2deg !important; + } + + .lg\:focus\:-skew-y-1:focus { + --tw-skew-y: -1deg !important; + } + + .lg\:transition-none { + transition-property: none !important; + } + + .lg\:transition-all { + transition-property: all !important; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important; + transition-duration: 150ms !important; + } + + .lg\:transition { + transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter !important; + transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter !important; + transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter !important; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important; + transition-duration: 150ms !important; + } + + .lg\:transition-colors { + transition-property: background-color, border-color, color, fill, stroke !important; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important; + transition-duration: 150ms !important; + } + + .lg\:transition-opacity { + transition-property: opacity !important; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important; + transition-duration: 150ms !important; + } + + .lg\:transition-shadow { + transition-property: box-shadow !important; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important; + transition-duration: 150ms !important; + } + + .lg\:transition-transform { + transition-property: transform !important; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important; + transition-duration: 150ms !important; + } + + .lg\:ease-linear { + transition-timing-function: linear !important; + } + + .lg\:ease-in { + transition-timing-function: cubic-bezier(0.4, 0, 1, 1) !important; + } + + .lg\:ease-out { + transition-timing-function: cubic-bezier(0, 0, 0.2, 1) !important; + } + + .lg\:ease-in-out { + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important; + } + + .lg\:duration-75 { + transition-duration: 75ms !important; + } + + .lg\:duration-100 { + transition-duration: 100ms !important; + } + + .lg\:duration-150 { + transition-duration: 150ms !important; + } + + .lg\:duration-200 { + transition-duration: 200ms !important; + } + + .lg\:duration-300 { + transition-duration: 300ms !important; + } + + .lg\:duration-500 { + transition-duration: 500ms !important; + } + + .lg\:duration-700 { + transition-duration: 700ms !important; + } + + .lg\:duration-1000 { + transition-duration: 1000ms !important; + } + + .lg\:delay-75 { + transition-delay: 75ms !important; + } + + .lg\:delay-100 { + transition-delay: 100ms !important; + } + + .lg\:delay-150 { + transition-delay: 150ms !important; + } + + .lg\:delay-200 { + transition-delay: 200ms !important; + } + + .lg\:delay-300 { + transition-delay: 300ms !important; + } + + .lg\:delay-500 { + transition-delay: 500ms !important; + } + + .lg\:delay-700 { + transition-delay: 700ms !important; + } + + .lg\:delay-1000 { + transition-delay: 1000ms !important; + } + + .lg\:animate-none { + -webkit-animation: none !important; + animation: none !important; + } + + .lg\:animate-spin { + -webkit-animation: spin 1s linear infinite !important; + animation: spin 1s linear infinite !important; + } + + .lg\:animate-ping { + -webkit-animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite !important; + animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite !important; + } + + .lg\:animate-pulse { + -webkit-animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite !important; + animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite !important; + } + + .lg\:animate-bounce { + -webkit-animation: bounce 1s infinite !important; + animation: bounce 1s infinite !important; + } + + .lg\:mix-blend-normal { + mix-blend-mode: normal !important; + } + + .lg\:mix-blend-multiply { + mix-blend-mode: multiply !important; + } + + .lg\:mix-blend-screen { + mix-blend-mode: screen !important; + } + + .lg\:mix-blend-overlay { + mix-blend-mode: overlay !important; + } + + .lg\:mix-blend-darken { + mix-blend-mode: darken !important; + } + + .lg\:mix-blend-lighten { + mix-blend-mode: lighten !important; + } + + .lg\:mix-blend-color-dodge { + mix-blend-mode: color-dodge !important; + } + + .lg\:mix-blend-color-burn { + mix-blend-mode: color-burn !important; + } + + .lg\:mix-blend-hard-light { + mix-blend-mode: hard-light !important; + } + + .lg\:mix-blend-soft-light { + mix-blend-mode: soft-light !important; + } + + .lg\:mix-blend-difference { + mix-blend-mode: difference !important; + } + + .lg\:mix-blend-exclusion { + mix-blend-mode: exclusion !important; + } + + .lg\:mix-blend-hue { + mix-blend-mode: hue !important; + } + + .lg\:mix-blend-saturation { + mix-blend-mode: saturation !important; + } + + .lg\:mix-blend-color { + mix-blend-mode: color !important; + } + + .lg\:mix-blend-luminosity { + mix-blend-mode: luminosity !important; + } + + .lg\:bg-blend-normal { + background-blend-mode: normal !important; + } + + .lg\:bg-blend-multiply { + background-blend-mode: multiply !important; + } + + .lg\:bg-blend-screen { + background-blend-mode: screen !important; + } + + .lg\:bg-blend-overlay { + background-blend-mode: overlay !important; + } + + .lg\:bg-blend-darken { + background-blend-mode: darken !important; + } + + .lg\:bg-blend-lighten { + background-blend-mode: lighten !important; + } + + .lg\:bg-blend-color-dodge { + background-blend-mode: color-dodge !important; + } + + .lg\:bg-blend-color-burn { + background-blend-mode: color-burn !important; + } + + .lg\:bg-blend-hard-light { + background-blend-mode: hard-light !important; + } + + .lg\:bg-blend-soft-light { + background-blend-mode: soft-light !important; + } + + .lg\:bg-blend-difference { + background-blend-mode: difference !important; + } + + .lg\:bg-blend-exclusion { + background-blend-mode: exclusion !important; + } + + .lg\:bg-blend-hue { + background-blend-mode: hue !important; + } + + .lg\:bg-blend-saturation { + background-blend-mode: saturation !important; + } + + .lg\:bg-blend-color { + background-blend-mode: color !important; + } + + .lg\:bg-blend-luminosity { + background-blend-mode: luminosity !important; + } + + .lg\:filter { + --tw-blur: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-brightness: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-contrast: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-grayscale: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-hue-rotate: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-invert: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-saturate: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-sepia: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-drop-shadow: var(--tw-empty,/*!*/ /*!*/) !important; + 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) !important; + } + + .lg\:filter-none { + filter: none !important; + } + + .lg\:blur-0 { + --tw-blur: blur(0) !important; + } + + .lg\:blur-sm { + --tw-blur: blur(4px) !important; + } + + .lg\:blur { + --tw-blur: blur(8px) !important; + } + + .lg\:blur-md { + --tw-blur: blur(12px) !important; + } + + .lg\:blur-lg { + --tw-blur: blur(16px) !important; + } + + .lg\:blur-xl { + --tw-blur: blur(24px) !important; + } + + .lg\:blur-2xl { + --tw-blur: blur(40px) !important; + } + + .lg\:blur-3xl { + --tw-blur: blur(64px) !important; + } + + .lg\:brightness-0 { + --tw-brightness: brightness(0) !important; + } + + .lg\:brightness-50 { + --tw-brightness: brightness(.5) !important; + } + + .lg\:brightness-75 { + --tw-brightness: brightness(.75) !important; + } + + .lg\:brightness-90 { + --tw-brightness: brightness(.9) !important; + } + + .lg\:brightness-95 { + --tw-brightness: brightness(.95) !important; + } + + .lg\:brightness-100 { + --tw-brightness: brightness(1) !important; + } + + .lg\:brightness-105 { + --tw-brightness: brightness(1.05) !important; + } + + .lg\:brightness-110 { + --tw-brightness: brightness(1.1) !important; + } + + .lg\:brightness-125 { + --tw-brightness: brightness(1.25) !important; + } + + .lg\:brightness-150 { + --tw-brightness: brightness(1.5) !important; + } + + .lg\:brightness-200 { + --tw-brightness: brightness(2) !important; + } + + .lg\:contrast-0 { + --tw-contrast: contrast(0) !important; + } + + .lg\:contrast-50 { + --tw-contrast: contrast(.5) !important; + } + + .lg\:contrast-75 { + --tw-contrast: contrast(.75) !important; + } + + .lg\:contrast-100 { + --tw-contrast: contrast(1) !important; + } + + .lg\:contrast-125 { + --tw-contrast: contrast(1.25) !important; + } + + .lg\:contrast-150 { + --tw-contrast: contrast(1.5) !important; + } + + .lg\:contrast-200 { + --tw-contrast: contrast(2) !important; + } + + .lg\:drop-shadow-sm { + --tw-drop-shadow: drop-shadow(0 1px 1px rgba(0,0,0,0.05)) !important; + } + + .lg\:drop-shadow { + --tw-drop-shadow: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1)) drop-shadow(0 1px 1px rgba(0, 0, 0, 0.06)) !important; + } + + .lg\:drop-shadow-md { + --tw-drop-shadow: drop-shadow(0 4px 3px rgba(0, 0, 0, 0.07)) drop-shadow(0 2px 2px rgba(0, 0, 0, 0.06)) !important; + } + + .lg\:drop-shadow-lg { + --tw-drop-shadow: drop-shadow(0 10px 8px rgba(0, 0, 0, 0.04)) drop-shadow(0 4px 3px rgba(0, 0, 0, 0.1)) !important; + } + + .lg\:drop-shadow-xl { + --tw-drop-shadow: drop-shadow(0 20px 13px rgba(0, 0, 0, 0.03)) drop-shadow(0 8px 5px rgba(0, 0, 0, 0.08)) !important; + } + + .lg\:drop-shadow-2xl { + --tw-drop-shadow: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.15)) !important; + } + + .lg\:drop-shadow-none { + --tw-drop-shadow: drop-shadow(0 0 #0000) !important; + } + + .lg\:grayscale-0 { + --tw-grayscale: grayscale(0) !important; + } + + .lg\:grayscale { + --tw-grayscale: grayscale(100%) !important; + } + + .lg\:hue-rotate-0 { + --tw-hue-rotate: hue-rotate(0deg) !important; + } + + .lg\:hue-rotate-15 { + --tw-hue-rotate: hue-rotate(15deg) !important; + } + + .lg\:hue-rotate-30 { + --tw-hue-rotate: hue-rotate(30deg) !important; + } + + .lg\:hue-rotate-60 { + --tw-hue-rotate: hue-rotate(60deg) !important; + } + + .lg\:hue-rotate-90 { + --tw-hue-rotate: hue-rotate(90deg) !important; + } + + .lg\:hue-rotate-180 { + --tw-hue-rotate: hue-rotate(180deg) !important; + } + + .lg\:-hue-rotate-180 { + --tw-hue-rotate: hue-rotate(-180deg) !important; + } + + .lg\:-hue-rotate-90 { + --tw-hue-rotate: hue-rotate(-90deg) !important; + } + + .lg\:-hue-rotate-60 { + --tw-hue-rotate: hue-rotate(-60deg) !important; + } + + .lg\:-hue-rotate-30 { + --tw-hue-rotate: hue-rotate(-30deg) !important; + } + + .lg\:-hue-rotate-15 { + --tw-hue-rotate: hue-rotate(-15deg) !important; + } + + .lg\:invert-0 { + --tw-invert: invert(0) !important; + } + + .lg\:invert { + --tw-invert: invert(100%) !important; + } + + .lg\:saturate-0 { + --tw-saturate: saturate(0) !important; + } + + .lg\:saturate-50 { + --tw-saturate: saturate(.5) !important; + } + + .lg\:saturate-100 { + --tw-saturate: saturate(1) !important; + } + + .lg\:saturate-150 { + --tw-saturate: saturate(1.5) !important; + } + + .lg\:saturate-200 { + --tw-saturate: saturate(2) !important; + } + + .lg\:sepia-0 { + --tw-sepia: sepia(0) !important; + } + + .lg\:sepia { + --tw-sepia: sepia(100%) !important; + } + + .lg\:backdrop-filter { + --tw-backdrop-blur: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-backdrop-brightness: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-backdrop-contrast: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-backdrop-grayscale: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-backdrop-hue-rotate: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-backdrop-invert: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-backdrop-opacity: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-backdrop-saturate: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-backdrop-sepia: var(--tw-empty,/*!*/ /*!*/) !important; + -webkit-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) !important; + 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) !important; + } + + .lg\:backdrop-filter-none { + -webkit-backdrop-filter: none !important; + backdrop-filter: none !important; + } + + .lg\:backdrop-brightness-0 { + --tw-backdrop-brightness: brightness(0) !important; + } + + .lg\:backdrop-brightness-50 { + --tw-backdrop-brightness: brightness(.5) !important; + } + + .lg\:backdrop-brightness-75 { + --tw-backdrop-brightness: brightness(.75) !important; + } + + .lg\:backdrop-brightness-90 { + --tw-backdrop-brightness: brightness(.9) !important; + } + + .lg\:backdrop-brightness-95 { + --tw-backdrop-brightness: brightness(.95) !important; + } + + .lg\:backdrop-brightness-100 { + --tw-backdrop-brightness: brightness(1) !important; + } + + .lg\:backdrop-brightness-105 { + --tw-backdrop-brightness: brightness(1.05) !important; + } + + .lg\:backdrop-brightness-110 { + --tw-backdrop-brightness: brightness(1.1) !important; + } + + .lg\:backdrop-brightness-125 { + --tw-backdrop-brightness: brightness(1.25) !important; + } + + .lg\:backdrop-brightness-150 { + --tw-backdrop-brightness: brightness(1.5) !important; + } + + .lg\:backdrop-brightness-200 { + --tw-backdrop-brightness: brightness(2) !important; + } + + .lg\:backdrop-contrast-0 { + --tw-backdrop-contrast: contrast(0) !important; + } + + .lg\:backdrop-contrast-50 { + --tw-backdrop-contrast: contrast(.5) !important; + } + + .lg\:backdrop-contrast-75 { + --tw-backdrop-contrast: contrast(.75) !important; + } + + .lg\:backdrop-contrast-100 { + --tw-backdrop-contrast: contrast(1) !important; + } + + .lg\:backdrop-contrast-125 { + --tw-backdrop-contrast: contrast(1.25) !important; + } + + .lg\:backdrop-contrast-150 { + --tw-backdrop-contrast: contrast(1.5) !important; + } + + .lg\:backdrop-contrast-200 { + --tw-backdrop-contrast: contrast(2) !important; + } + + .lg\:backdrop-grayscale-0 { + --tw-backdrop-grayscale: grayscale(0) !important; + } + + .lg\:backdrop-grayscale { + --tw-backdrop-grayscale: grayscale(100%) !important; + } + + .lg\:backdrop-hue-rotate-0 { + --tw-backdrop-hue-rotate: hue-rotate(0deg) !important; + } + + .lg\:backdrop-hue-rotate-15 { + --tw-backdrop-hue-rotate: hue-rotate(15deg) !important; + } + + .lg\:backdrop-hue-rotate-30 { + --tw-backdrop-hue-rotate: hue-rotate(30deg) !important; + } + + .lg\:backdrop-hue-rotate-60 { + --tw-backdrop-hue-rotate: hue-rotate(60deg) !important; + } + + .lg\:backdrop-hue-rotate-90 { + --tw-backdrop-hue-rotate: hue-rotate(90deg) !important; + } + + .lg\:backdrop-hue-rotate-180 { + --tw-backdrop-hue-rotate: hue-rotate(180deg) !important; + } + + .lg\:-backdrop-hue-rotate-180 { + --tw-backdrop-hue-rotate: hue-rotate(-180deg) !important; + } + + .lg\:-backdrop-hue-rotate-90 { + --tw-backdrop-hue-rotate: hue-rotate(-90deg) !important; + } + + .lg\:-backdrop-hue-rotate-60 { + --tw-backdrop-hue-rotate: hue-rotate(-60deg) !important; + } + + .lg\:-backdrop-hue-rotate-30 { + --tw-backdrop-hue-rotate: hue-rotate(-30deg) !important; + } + + .lg\:-backdrop-hue-rotate-15 { + --tw-backdrop-hue-rotate: hue-rotate(-15deg) !important; + } + + .lg\:backdrop-invert-0 { + --tw-backdrop-invert: invert(0) !important; + } + + .lg\:backdrop-invert { + --tw-backdrop-invert: invert(100%) !important; + } + + .lg\:backdrop-saturate-0 { + --tw-backdrop-saturate: saturate(0) !important; + } + + .lg\:backdrop-saturate-50 { + --tw-backdrop-saturate: saturate(.5) !important; + } + + .lg\:backdrop-saturate-100 { + --tw-backdrop-saturate: saturate(1) !important; + } + + .lg\:backdrop-saturate-150 { + --tw-backdrop-saturate: saturate(1.5) !important; + } + + .lg\:backdrop-saturate-200 { + --tw-backdrop-saturate: saturate(2) !important; + } + + .lg\:backdrop-sepia-0 { + --tw-backdrop-sepia: sepia(0) !important; + } + + .lg\:backdrop-sepia { + --tw-backdrop-sepia: sepia(100%) !important; + } +} + +@media (min-width: 1280px) { + .xl\:container { + width: 100%; + } + + @media (min-width: 640px) { + .xl\:container { + max-width: 640px; + } + } + + @media (min-width: 768px) { + .xl\:container { + max-width: 768px; + } + } + + @media (min-width: 1024px) { + .xl\:container { + max-width: 1024px; + } + } + + @media (min-width: 1280px) { + .xl\:container { + max-width: 1280px; + } + } + + @media (min-width: 1536px) { + .xl\:container { + max-width: 1536px; + } + } + + .xl\:space-y-0 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(0px * var(--tw-space-y-reverse)) !important; + } + + .xl\:space-x-0 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(0px * var(--tw-space-x-reverse)) !important; + margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .xl\:space-y-1 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(0.25rem * var(--tw-space-y-reverse)) !important; + } + + .xl\:space-x-1 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(0.25rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(0.25rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .xl\:space-y-2 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(0.5rem * var(--tw-space-y-reverse)) !important; + } + + .xl\:space-x-2 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(0.5rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .xl\:space-y-3 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(0.75rem * var(--tw-space-y-reverse)) !important; + } + + .xl\:space-x-3 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(0.75rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(0.75rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .xl\:space-y-4 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(1rem * var(--tw-space-y-reverse)) !important; + } + + .xl\:space-x-4 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(1rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .xl\:space-y-5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(1.25rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(1.25rem * var(--tw-space-y-reverse)) !important; + } + + .xl\:space-x-5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(1.25rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(1.25rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .xl\:space-y-6 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(1.5rem * var(--tw-space-y-reverse)) !important; + } + + .xl\:space-x-6 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(1.5rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(1.5rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .xl\:space-y-7 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(1.75rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(1.75rem * var(--tw-space-y-reverse)) !important; + } + + .xl\:space-x-7 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(1.75rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(1.75rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .xl\:space-y-8 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(2rem * var(--tw-space-y-reverse)) !important; + } + + .xl\:space-x-8 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(2rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(2rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .xl\:space-y-9 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(2.25rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(2.25rem * var(--tw-space-y-reverse)) !important; + } + + .xl\:space-x-9 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(2.25rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(2.25rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .xl\:space-y-10 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(2.5rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(2.5rem * var(--tw-space-y-reverse)) !important; + } + + .xl\:space-x-10 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(2.5rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(2.5rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .xl\:space-y-11 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(2.75rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(2.75rem * var(--tw-space-y-reverse)) !important; + } + + .xl\:space-x-11 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(2.75rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(2.75rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .xl\:space-y-12 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(3rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(3rem * var(--tw-space-y-reverse)) !important; + } + + .xl\:space-x-12 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(3rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(3rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .xl\:space-y-14 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(3.5rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(3.5rem * var(--tw-space-y-reverse)) !important; + } + + .xl\:space-x-14 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(3.5rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(3.5rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .xl\:space-y-16 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(4rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(4rem * var(--tw-space-y-reverse)) !important; + } + + .xl\:space-x-16 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(4rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(4rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .xl\:space-y-20 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(5rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(5rem * var(--tw-space-y-reverse)) !important; + } + + .xl\:space-x-20 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(5rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(5rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .xl\:space-y-24 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(6rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(6rem * var(--tw-space-y-reverse)) !important; + } + + .xl\:space-x-24 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(6rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(6rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .xl\:space-y-28 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(7rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(7rem * var(--tw-space-y-reverse)) !important; + } + + .xl\:space-x-28 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(7rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(7rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .xl\:space-y-32 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(8rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(8rem * var(--tw-space-y-reverse)) !important; + } + + .xl\:space-x-32 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(8rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(8rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .xl\:space-y-36 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(9rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(9rem * var(--tw-space-y-reverse)) !important; + } + + .xl\:space-x-36 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(9rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(9rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .xl\:space-y-40 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(10rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(10rem * var(--tw-space-y-reverse)) !important; + } + + .xl\:space-x-40 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(10rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(10rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .xl\:space-y-44 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(11rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(11rem * var(--tw-space-y-reverse)) !important; + } + + .xl\:space-x-44 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(11rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(11rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .xl\:space-y-48 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(12rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(12rem * var(--tw-space-y-reverse)) !important; + } + + .xl\:space-x-48 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(12rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(12rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .xl\:space-y-52 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(13rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(13rem * var(--tw-space-y-reverse)) !important; + } + + .xl\:space-x-52 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(13rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(13rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .xl\:space-y-56 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(14rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(14rem * var(--tw-space-y-reverse)) !important; + } + + .xl\:space-x-56 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(14rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(14rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .xl\:space-y-60 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(15rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(15rem * var(--tw-space-y-reverse)) !important; + } + + .xl\:space-x-60 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(15rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(15rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .xl\:space-y-64 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(16rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(16rem * var(--tw-space-y-reverse)) !important; + } + + .xl\:space-x-64 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(16rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(16rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .xl\:space-y-72 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(18rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(18rem * var(--tw-space-y-reverse)) !important; + } + + .xl\:space-x-72 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(18rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(18rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .xl\:space-y-80 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(20rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(20rem * var(--tw-space-y-reverse)) !important; + } + + .xl\:space-x-80 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(20rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(20rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .xl\:space-y-96 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(24rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(24rem * var(--tw-space-y-reverse)) !important; + } + + .xl\:space-x-96 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(24rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(24rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .xl\:space-y-px > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(1px * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(1px * var(--tw-space-y-reverse)) !important; + } + + .xl\:space-x-px > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(1px * var(--tw-space-x-reverse)) !important; + margin-left: calc(1px * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .xl\:space-y-0\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(0.125rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(0.125rem * var(--tw-space-y-reverse)) !important; + } + + .xl\:space-x-0\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(0.125rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(0.125rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .xl\:space-y-1\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(0.375rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(0.375rem * var(--tw-space-y-reverse)) !important; + } + + .xl\:space-x-1\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(0.375rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(0.375rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .xl\:space-y-2\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(0.625rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(0.625rem * var(--tw-space-y-reverse)) !important; + } + + .xl\:space-x-2\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(0.625rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(0.625rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .xl\:space-y-3\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(0.875rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(0.875rem * var(--tw-space-y-reverse)) !important; + } + + .xl\:space-x-3\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(0.875rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(0.875rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .xl\:-space-y-0 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(0px * var(--tw-space-y-reverse)) !important; + } + + .xl\:-space-x-0 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(0px * var(--tw-space-x-reverse)) !important; + margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .xl\:-space-y-1 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-0.25rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-0.25rem * var(--tw-space-y-reverse)) !important; + } + + .xl\:-space-x-1 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-0.25rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-0.25rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .xl\:-space-y-2 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-0.5rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-0.5rem * var(--tw-space-y-reverse)) !important; + } + + .xl\:-space-x-2 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-0.5rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-0.5rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .xl\:-space-y-3 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-0.75rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-0.75rem * var(--tw-space-y-reverse)) !important; + } + + .xl\:-space-x-3 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-0.75rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-0.75rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .xl\:-space-y-4 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-1rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-1rem * var(--tw-space-y-reverse)) !important; + } + + .xl\:-space-x-4 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-1rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-1rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .xl\:-space-y-5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-1.25rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-1.25rem * var(--tw-space-y-reverse)) !important; + } + + .xl\:-space-x-5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-1.25rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-1.25rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .xl\:-space-y-6 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-1.5rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-1.5rem * var(--tw-space-y-reverse)) !important; + } + + .xl\:-space-x-6 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-1.5rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-1.5rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .xl\:-space-y-7 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-1.75rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-1.75rem * var(--tw-space-y-reverse)) !important; + } + + .xl\:-space-x-7 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-1.75rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-1.75rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .xl\:-space-y-8 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-2rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-2rem * var(--tw-space-y-reverse)) !important; + } + + .xl\:-space-x-8 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-2rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-2rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .xl\:-space-y-9 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-2.25rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-2.25rem * var(--tw-space-y-reverse)) !important; + } + + .xl\:-space-x-9 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-2.25rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-2.25rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .xl\:-space-y-10 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-2.5rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-2.5rem * var(--tw-space-y-reverse)) !important; + } + + .xl\:-space-x-10 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-2.5rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-2.5rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .xl\:-space-y-11 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-2.75rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-2.75rem * var(--tw-space-y-reverse)) !important; + } + + .xl\:-space-x-11 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-2.75rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-2.75rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .xl\:-space-y-12 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-3rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-3rem * var(--tw-space-y-reverse)) !important; + } + + .xl\:-space-x-12 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-3rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-3rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .xl\:-space-y-14 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-3.5rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-3.5rem * var(--tw-space-y-reverse)) !important; + } + + .xl\:-space-x-14 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-3.5rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-3.5rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .xl\:-space-y-16 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-4rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-4rem * var(--tw-space-y-reverse)) !important; + } + + .xl\:-space-x-16 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-4rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-4rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .xl\:-space-y-20 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-5rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-5rem * var(--tw-space-y-reverse)) !important; + } + + .xl\:-space-x-20 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-5rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-5rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .xl\:-space-y-24 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-6rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-6rem * var(--tw-space-y-reverse)) !important; + } + + .xl\:-space-x-24 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-6rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-6rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .xl\:-space-y-28 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-7rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-7rem * var(--tw-space-y-reverse)) !important; + } + + .xl\:-space-x-28 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-7rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-7rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .xl\:-space-y-32 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-8rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-8rem * var(--tw-space-y-reverse)) !important; + } + + .xl\:-space-x-32 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-8rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-8rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .xl\:-space-y-36 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-9rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-9rem * var(--tw-space-y-reverse)) !important; + } + + .xl\:-space-x-36 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-9rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-9rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .xl\:-space-y-40 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-10rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-10rem * var(--tw-space-y-reverse)) !important; + } + + .xl\:-space-x-40 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-10rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-10rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .xl\:-space-y-44 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-11rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-11rem * var(--tw-space-y-reverse)) !important; + } + + .xl\:-space-x-44 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-11rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-11rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .xl\:-space-y-48 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-12rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-12rem * var(--tw-space-y-reverse)) !important; + } + + .xl\:-space-x-48 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-12rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-12rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .xl\:-space-y-52 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-13rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-13rem * var(--tw-space-y-reverse)) !important; + } + + .xl\:-space-x-52 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-13rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-13rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .xl\:-space-y-56 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-14rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-14rem * var(--tw-space-y-reverse)) !important; + } + + .xl\:-space-x-56 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-14rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-14rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .xl\:-space-y-60 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-15rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-15rem * var(--tw-space-y-reverse)) !important; + } + + .xl\:-space-x-60 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-15rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-15rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .xl\:-space-y-64 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-16rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-16rem * var(--tw-space-y-reverse)) !important; + } + + .xl\:-space-x-64 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-16rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-16rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .xl\:-space-y-72 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-18rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-18rem * var(--tw-space-y-reverse)) !important; + } + + .xl\:-space-x-72 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-18rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-18rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .xl\:-space-y-80 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-20rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-20rem * var(--tw-space-y-reverse)) !important; + } + + .xl\:-space-x-80 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-20rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-20rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .xl\:-space-y-96 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-24rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-24rem * var(--tw-space-y-reverse)) !important; + } + + .xl\:-space-x-96 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-24rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-24rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .xl\:-space-y-px > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-1px * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-1px * var(--tw-space-y-reverse)) !important; + } + + .xl\:-space-x-px > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-1px * var(--tw-space-x-reverse)) !important; + margin-left: calc(-1px * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .xl\:-space-y-0\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-0.125rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-0.125rem * var(--tw-space-y-reverse)) !important; + } + + .xl\:-space-x-0\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-0.125rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-0.125rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .xl\:-space-y-1\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-0.375rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-0.375rem * var(--tw-space-y-reverse)) !important; + } + + .xl\:-space-x-1\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-0.375rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-0.375rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .xl\:-space-y-2\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-0.625rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-0.625rem * var(--tw-space-y-reverse)) !important; + } + + .xl\:-space-x-2\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-0.625rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-0.625rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .xl\:-space-y-3\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-0.875rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-0.875rem * var(--tw-space-y-reverse)) !important; + } + + .xl\:-space-x-3\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-0.875rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-0.875rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .xl\:space-y-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 1 !important; + } + + .xl\:space-x-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 1 !important; + } + + .xl\:divide-y-0 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0 !important; + border-top-width: calc(0px * calc(1 - var(--tw-divide-y-reverse))) !important; + border-bottom-width: calc(0px * var(--tw-divide-y-reverse)) !important; + } + + .xl\:divide-x-0 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-x-reverse: 0 !important; + border-right-width: calc(0px * var(--tw-divide-x-reverse)) !important; + border-left-width: calc(0px * calc(1 - var(--tw-divide-x-reverse))) !important; + } + + .xl\:divide-y-2 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0 !important; + border-top-width: calc(2px * calc(1 - var(--tw-divide-y-reverse))) !important; + border-bottom-width: calc(2px * var(--tw-divide-y-reverse)) !important; + } + + .xl\:divide-x-2 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-x-reverse: 0 !important; + border-right-width: calc(2px * var(--tw-divide-x-reverse)) !important; + border-left-width: calc(2px * calc(1 - var(--tw-divide-x-reverse))) !important; + } + + .xl\:divide-y-4 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0 !important; + border-top-width: calc(4px * calc(1 - var(--tw-divide-y-reverse))) !important; + border-bottom-width: calc(4px * var(--tw-divide-y-reverse)) !important; + } + + .xl\:divide-x-4 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-x-reverse: 0 !important; + border-right-width: calc(4px * var(--tw-divide-x-reverse)) !important; + border-left-width: calc(4px * calc(1 - var(--tw-divide-x-reverse))) !important; + } + + .xl\:divide-y-8 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0 !important; + border-top-width: calc(8px * calc(1 - var(--tw-divide-y-reverse))) !important; + border-bottom-width: calc(8px * var(--tw-divide-y-reverse)) !important; + } + + .xl\:divide-x-8 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-x-reverse: 0 !important; + border-right-width: calc(8px * var(--tw-divide-x-reverse)) !important; + border-left-width: calc(8px * calc(1 - var(--tw-divide-x-reverse))) !important; + } + + .xl\:divide-y > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0 !important; + border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse))) !important; + border-bottom-width: calc(1px * var(--tw-divide-y-reverse)) !important; + } + + .xl\:divide-x > :not([hidden]) ~ :not([hidden]) { + --tw-divide-x-reverse: 0 !important; + border-right-width: calc(1px * var(--tw-divide-x-reverse)) !important; + border-left-width: calc(1px * calc(1 - var(--tw-divide-x-reverse))) !important; + } + + .xl\:divide-y-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 1 !important; + } + + .xl\:divide-x-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-divide-x-reverse: 1 !important; + } + + .xl\:divide-transparent > :not([hidden]) ~ :not([hidden]) { + border-color: transparent !important; + } + + .xl\:divide-current > :not([hidden]) ~ :not([hidden]) { + border-color: currentColor !important; + } + + .xl\:divide-black > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(0, 0, 0, var(--tw-divide-opacity)) !important; + } + + .xl\:divide-white > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(255, 255, 255, var(--tw-divide-opacity)) !important; + } + + .xl\:divide-gray-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(249, 250, 251, var(--tw-divide-opacity)) !important; + } + + .xl\:divide-gray-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(243, 244, 246, var(--tw-divide-opacity)) !important; + } + + .xl\:divide-gray-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(229, 231, 235, var(--tw-divide-opacity)) !important; + } + + .xl\:divide-gray-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(209, 213, 219, var(--tw-divide-opacity)) !important; + } + + .xl\:divide-gray-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(156, 163, 175, var(--tw-divide-opacity)) !important; + } + + .xl\:divide-gray-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(107, 114, 128, var(--tw-divide-opacity)) !important; + } + + .xl\:divide-gray-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(75, 85, 99, var(--tw-divide-opacity)) !important; + } + + .xl\:divide-gray-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(55, 65, 81, var(--tw-divide-opacity)) !important; + } + + .xl\:divide-gray-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(31, 41, 55, var(--tw-divide-opacity)) !important; + } + + .xl\:divide-gray-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(17, 24, 39, var(--tw-divide-opacity)) !important; + } + + .xl\:divide-red-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(254, 242, 242, var(--tw-divide-opacity)) !important; + } + + .xl\:divide-red-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(254, 226, 226, var(--tw-divide-opacity)) !important; + } + + .xl\:divide-red-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(254, 202, 202, var(--tw-divide-opacity)) !important; + } + + .xl\:divide-red-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(252, 165, 165, var(--tw-divide-opacity)) !important; + } + + .xl\:divide-red-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(248, 113, 113, var(--tw-divide-opacity)) !important; + } + + .xl\:divide-red-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(239, 68, 68, var(--tw-divide-opacity)) !important; + } + + .xl\:divide-red-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(220, 38, 38, var(--tw-divide-opacity)) !important; + } + + .xl\:divide-red-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(185, 28, 28, var(--tw-divide-opacity)) !important; + } + + .xl\:divide-red-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(153, 27, 27, var(--tw-divide-opacity)) !important; + } + + .xl\:divide-red-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(127, 29, 29, var(--tw-divide-opacity)) !important; + } + + .xl\:divide-yellow-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(255, 251, 235, var(--tw-divide-opacity)) !important; + } + + .xl\:divide-yellow-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(254, 243, 199, var(--tw-divide-opacity)) !important; + } + + .xl\:divide-yellow-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(253, 230, 138, var(--tw-divide-opacity)) !important; + } + + .xl\:divide-yellow-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(252, 211, 77, var(--tw-divide-opacity)) !important; + } + + .xl\:divide-yellow-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(251, 191, 36, var(--tw-divide-opacity)) !important; + } + + .xl\:divide-yellow-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(245, 158, 11, var(--tw-divide-opacity)) !important; + } + + .xl\:divide-yellow-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(217, 119, 6, var(--tw-divide-opacity)) !important; + } + + .xl\:divide-yellow-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(180, 83, 9, var(--tw-divide-opacity)) !important; + } + + .xl\:divide-yellow-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(146, 64, 14, var(--tw-divide-opacity)) !important; + } + + .xl\:divide-yellow-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(120, 53, 15, var(--tw-divide-opacity)) !important; + } + + .xl\:divide-green-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(236, 253, 245, var(--tw-divide-opacity)) !important; + } + + .xl\:divide-green-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(209, 250, 229, var(--tw-divide-opacity)) !important; + } + + .xl\:divide-green-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(167, 243, 208, var(--tw-divide-opacity)) !important; + } + + .xl\:divide-green-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(110, 231, 183, var(--tw-divide-opacity)) !important; + } + + .xl\:divide-green-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(52, 211, 153, var(--tw-divide-opacity)) !important; + } + + .xl\:divide-green-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(16, 185, 129, var(--tw-divide-opacity)) !important; + } + + .xl\:divide-green-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(5, 150, 105, var(--tw-divide-opacity)) !important; + } + + .xl\:divide-green-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(4, 120, 87, var(--tw-divide-opacity)) !important; + } + + .xl\:divide-green-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(6, 95, 70, var(--tw-divide-opacity)) !important; + } + + .xl\:divide-green-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(6, 78, 59, var(--tw-divide-opacity)) !important; + } + + .xl\:divide-blue-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(239, 246, 255, var(--tw-divide-opacity)) !important; + } + + .xl\:divide-blue-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(219, 234, 254, var(--tw-divide-opacity)) !important; + } + + .xl\:divide-blue-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(191, 219, 254, var(--tw-divide-opacity)) !important; + } + + .xl\:divide-blue-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(147, 197, 253, var(--tw-divide-opacity)) !important; + } + + .xl\:divide-blue-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(96, 165, 250, var(--tw-divide-opacity)) !important; + } + + .xl\:divide-blue-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(59, 130, 246, var(--tw-divide-opacity)) !important; + } + + .xl\:divide-blue-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(37, 99, 235, var(--tw-divide-opacity)) !important; + } + + .xl\:divide-blue-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(29, 78, 216, var(--tw-divide-opacity)) !important; + } + + .xl\:divide-blue-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(30, 64, 175, var(--tw-divide-opacity)) !important; + } + + .xl\:divide-blue-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(30, 58, 138, var(--tw-divide-opacity)) !important; + } + + .xl\:divide-indigo-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(238, 242, 255, var(--tw-divide-opacity)) !important; + } + + .xl\:divide-indigo-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(224, 231, 255, var(--tw-divide-opacity)) !important; + } + + .xl\:divide-indigo-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(199, 210, 254, var(--tw-divide-opacity)) !important; + } + + .xl\:divide-indigo-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(165, 180, 252, var(--tw-divide-opacity)) !important; + } + + .xl\:divide-indigo-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(129, 140, 248, var(--tw-divide-opacity)) !important; + } + + .xl\:divide-indigo-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(99, 102, 241, var(--tw-divide-opacity)) !important; + } + + .xl\:divide-indigo-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(79, 70, 229, var(--tw-divide-opacity)) !important; + } + + .xl\:divide-indigo-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(67, 56, 202, var(--tw-divide-opacity)) !important; + } + + .xl\:divide-indigo-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(55, 48, 163, var(--tw-divide-opacity)) !important; + } + + .xl\:divide-indigo-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(49, 46, 129, var(--tw-divide-opacity)) !important; + } + + .xl\:divide-purple-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(245, 243, 255, var(--tw-divide-opacity)) !important; + } + + .xl\:divide-purple-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(237, 233, 254, var(--tw-divide-opacity)) !important; + } + + .xl\:divide-purple-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(221, 214, 254, var(--tw-divide-opacity)) !important; + } + + .xl\:divide-purple-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(196, 181, 253, var(--tw-divide-opacity)) !important; + } + + .xl\:divide-purple-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(167, 139, 250, var(--tw-divide-opacity)) !important; + } + + .xl\:divide-purple-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(139, 92, 246, var(--tw-divide-opacity)) !important; + } + + .xl\:divide-purple-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(124, 58, 237, var(--tw-divide-opacity)) !important; + } + + .xl\:divide-purple-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(109, 40, 217, var(--tw-divide-opacity)) !important; + } + + .xl\:divide-purple-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(91, 33, 182, var(--tw-divide-opacity)) !important; + } + + .xl\:divide-purple-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(76, 29, 149, var(--tw-divide-opacity)) !important; + } + + .xl\:divide-pink-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(253, 242, 248, var(--tw-divide-opacity)) !important; + } + + .xl\:divide-pink-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(252, 231, 243, var(--tw-divide-opacity)) !important; + } + + .xl\:divide-pink-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(251, 207, 232, var(--tw-divide-opacity)) !important; + } + + .xl\:divide-pink-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(249, 168, 212, var(--tw-divide-opacity)) !important; + } + + .xl\:divide-pink-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(244, 114, 182, var(--tw-divide-opacity)) !important; + } + + .xl\:divide-pink-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(236, 72, 153, var(--tw-divide-opacity)) !important; + } + + .xl\:divide-pink-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(219, 39, 119, var(--tw-divide-opacity)) !important; + } + + .xl\:divide-pink-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(190, 24, 93, var(--tw-divide-opacity)) !important; + } + + .xl\:divide-pink-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(157, 23, 77, var(--tw-divide-opacity)) !important; + } + + .xl\:divide-pink-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(131, 24, 67, var(--tw-divide-opacity)) !important; + } + + .xl\:divide-primary > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(0, 49, 151, var(--tw-divide-opacity)) !important; + } + + .xl\:divide-solid > :not([hidden]) ~ :not([hidden]) { + border-style: solid !important; + } + + .xl\:divide-dashed > :not([hidden]) ~ :not([hidden]) { + border-style: dashed !important; + } + + .xl\:divide-dotted > :not([hidden]) ~ :not([hidden]) { + border-style: dotted !important; + } + + .xl\:divide-double > :not([hidden]) ~ :not([hidden]) { + border-style: double !important; + } + + .xl\:divide-none > :not([hidden]) ~ :not([hidden]) { + border-style: none !important; + } + + .xl\:divide-opacity-0 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0 !important; + } + + .xl\:divide-opacity-5 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.05 !important; + } + + .xl\:divide-opacity-10 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.1 !important; + } + + .xl\:divide-opacity-20 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.2 !important; + } + + .xl\:divide-opacity-25 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.25 !important; + } + + .xl\:divide-opacity-30 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.3 !important; + } + + .xl\:divide-opacity-40 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.4 !important; + } + + .xl\:divide-opacity-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.5 !important; + } + + .xl\:divide-opacity-60 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.6 !important; + } + + .xl\:divide-opacity-70 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.7 !important; + } + + .xl\:divide-opacity-75 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.75 !important; + } + + .xl\:divide-opacity-80 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.8 !important; + } + + .xl\:divide-opacity-90 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.9 !important; + } + + .xl\:divide-opacity-95 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.95 !important; + } + + .xl\:divide-opacity-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + } + + .xl\:sr-only { + position: absolute !important; + width: 1px !important; + height: 1px !important; + padding: 0 !important; + margin: -1px !important; + overflow: hidden !important; + clip: rect(0, 0, 0, 0) !important; + white-space: nowrap !important; + border-width: 0 !important; + } + + .xl\:not-sr-only { + position: static !important; + width: auto !important; + height: auto !important; + padding: 0 !important; + margin: 0 !important; + overflow: visible !important; + clip: auto !important; + white-space: normal !important; + } + + .xl\:focus-within\:sr-only:focus-within { + position: absolute !important; + width: 1px !important; + height: 1px !important; + padding: 0 !important; + margin: -1px !important; + overflow: hidden !important; + clip: rect(0, 0, 0, 0) !important; + white-space: nowrap !important; + border-width: 0 !important; + } + + .xl\:focus-within\:not-sr-only:focus-within { + position: static !important; + width: auto !important; + height: auto !important; + padding: 0 !important; + margin: 0 !important; + overflow: visible !important; + clip: auto !important; + white-space: normal !important; + } + + .xl\:focus\:sr-only:focus { + position: absolute !important; + width: 1px !important; + height: 1px !important; + padding: 0 !important; + margin: -1px !important; + overflow: hidden !important; + clip: rect(0, 0, 0, 0) !important; + white-space: nowrap !important; + border-width: 0 !important; + } + + .xl\:focus\:not-sr-only:focus { + position: static !important; + width: auto !important; + height: auto !important; + padding: 0 !important; + margin: 0 !important; + overflow: visible !important; + clip: auto !important; + white-space: normal !important; + } + + .xl\:appearance-none { + -webkit-appearance: none !important; + -moz-appearance: none !important; + appearance: none !important; + } + + .xl\:bg-fixed { + background-attachment: fixed !important; + } + + .xl\:bg-local { + background-attachment: local !important; + } + + .xl\:bg-scroll { + background-attachment: scroll !important; + } + + .xl\:bg-clip-border { + background-clip: border-box !important; + } + + .xl\:bg-clip-padding { + background-clip: padding-box !important; + } + + .xl\:bg-clip-content { + background-clip: content-box !important; + } + + .xl\:bg-clip-text { + -webkit-background-clip: text !important; + background-clip: text !important; + } + + .xl\:bg-transparent { + background-color: transparent !important; + } + + .xl\:bg-current { + background-color: currentColor !important; + } + + .xl\:bg-black { + --tw-bg-opacity: 1 !important; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important; + } + + .xl\:bg-white { + --tw-bg-opacity: 1 !important; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important; + } + + .xl\:bg-gray-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)) !important; + } + + .xl\:bg-gray-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)) !important; + } + + .xl\:bg-gray-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)) !important; + } + + .xl\:bg-gray-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)) !important; + } + + .xl\:bg-gray-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)) !important; + } + + .xl\:bg-gray-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)) !important; + } + + .xl\:bg-gray-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)) !important; + } + + .xl\:bg-gray-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)) !important; + } + + .xl\:bg-gray-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)) !important; + } + + .xl\:bg-gray-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)) !important; + } + + .xl\:bg-red-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 242, 242, var(--tw-bg-opacity)) !important; + } + + .xl\:bg-red-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 226, 226, var(--tw-bg-opacity)) !important; + } + + .xl\:bg-red-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 202, 202, var(--tw-bg-opacity)) !important; + } + + .xl\:bg-red-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 165, 165, var(--tw-bg-opacity)) !important; + } + + .xl\:bg-red-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(248, 113, 113, var(--tw-bg-opacity)) !important; + } + + .xl\:bg-red-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(239, 68, 68, var(--tw-bg-opacity)) !important; + } + + .xl\:bg-red-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(220, 38, 38, var(--tw-bg-opacity)) !important; + } + + .xl\:bg-red-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(185, 28, 28, var(--tw-bg-opacity)) !important; + } + + .xl\:bg-red-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(153, 27, 27, var(--tw-bg-opacity)) !important; + } + + .xl\:bg-red-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(127, 29, 29, var(--tw-bg-opacity)) !important; + } + + .xl\:bg-yellow-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(255, 251, 235, var(--tw-bg-opacity)) !important; + } + + .xl\:bg-yellow-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 243, 199, var(--tw-bg-opacity)) !important; + } + + .xl\:bg-yellow-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(253, 230, 138, var(--tw-bg-opacity)) !important; + } + + .xl\:bg-yellow-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 211, 77, var(--tw-bg-opacity)) !important; + } + + .xl\:bg-yellow-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(251, 191, 36, var(--tw-bg-opacity)) !important; + } + + .xl\:bg-yellow-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)) !important; + } + + .xl\:bg-yellow-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(217, 119, 6, var(--tw-bg-opacity)) !important; + } + + .xl\:bg-yellow-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(180, 83, 9, var(--tw-bg-opacity)) !important; + } + + .xl\:bg-yellow-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(146, 64, 14, var(--tw-bg-opacity)) !important; + } + + .xl\:bg-yellow-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(120, 53, 15, var(--tw-bg-opacity)) !important; + } + + .xl\:bg-green-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(236, 253, 245, var(--tw-bg-opacity)) !important; + } + + .xl\:bg-green-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(209, 250, 229, var(--tw-bg-opacity)) !important; + } + + .xl\:bg-green-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(167, 243, 208, var(--tw-bg-opacity)) !important; + } + + .xl\:bg-green-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(110, 231, 183, var(--tw-bg-opacity)) !important; + } + + .xl\:bg-green-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(52, 211, 153, var(--tw-bg-opacity)) !important; + } + + .xl\:bg-green-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(16, 185, 129, var(--tw-bg-opacity)) !important; + } + + .xl\:bg-green-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(5, 150, 105, var(--tw-bg-opacity)) !important; + } + + .xl\:bg-green-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(4, 120, 87, var(--tw-bg-opacity)) !important; + } + + .xl\:bg-green-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(6, 95, 70, var(--tw-bg-opacity)) !important; + } + + .xl\:bg-green-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(6, 78, 59, var(--tw-bg-opacity)) !important; + } + + .xl\:bg-blue-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(239, 246, 255, var(--tw-bg-opacity)) !important; + } + + .xl\:bg-blue-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(219, 234, 254, var(--tw-bg-opacity)) !important; + } + + .xl\:bg-blue-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(191, 219, 254, var(--tw-bg-opacity)) !important; + } + + .xl\:bg-blue-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(147, 197, 253, var(--tw-bg-opacity)) !important; + } + + .xl\:bg-blue-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(96, 165, 250, var(--tw-bg-opacity)) !important; + } + + .xl\:bg-blue-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)) !important; + } + + .xl\:bg-blue-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(37, 99, 235, var(--tw-bg-opacity)) !important; + } + + .xl\:bg-blue-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(29, 78, 216, var(--tw-bg-opacity)) !important; + } + + .xl\:bg-blue-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(30, 64, 175, var(--tw-bg-opacity)) !important; + } + + .xl\:bg-blue-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(30, 58, 138, var(--tw-bg-opacity)) !important; + } + + .xl\:bg-indigo-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(238, 242, 255, var(--tw-bg-opacity)) !important; + } + + .xl\:bg-indigo-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(224, 231, 255, var(--tw-bg-opacity)) !important; + } + + .xl\:bg-indigo-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(199, 210, 254, var(--tw-bg-opacity)) !important; + } + + .xl\:bg-indigo-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(165, 180, 252, var(--tw-bg-opacity)) !important; + } + + .xl\:bg-indigo-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(129, 140, 248, var(--tw-bg-opacity)) !important; + } + + .xl\:bg-indigo-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(99, 102, 241, var(--tw-bg-opacity)) !important; + } + + .xl\:bg-indigo-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(79, 70, 229, var(--tw-bg-opacity)) !important; + } + + .xl\:bg-indigo-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(67, 56, 202, var(--tw-bg-opacity)) !important; + } + + .xl\:bg-indigo-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(55, 48, 163, var(--tw-bg-opacity)) !important; + } + + .xl\:bg-indigo-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(49, 46, 129, var(--tw-bg-opacity)) !important; + } + + .xl\:bg-purple-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(245, 243, 255, var(--tw-bg-opacity)) !important; + } + + .xl\:bg-purple-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(237, 233, 254, var(--tw-bg-opacity)) !important; + } + + .xl\:bg-purple-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(221, 214, 254, var(--tw-bg-opacity)) !important; + } + + .xl\:bg-purple-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(196, 181, 253, var(--tw-bg-opacity)) !important; + } + + .xl\:bg-purple-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(167, 139, 250, var(--tw-bg-opacity)) !important; + } + + .xl\:bg-purple-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(139, 92, 246, var(--tw-bg-opacity)) !important; + } + + .xl\:bg-purple-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(124, 58, 237, var(--tw-bg-opacity)) !important; + } + + .xl\:bg-purple-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(109, 40, 217, var(--tw-bg-opacity)) !important; + } + + .xl\:bg-purple-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(91, 33, 182, var(--tw-bg-opacity)) !important; + } + + .xl\:bg-purple-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(76, 29, 149, var(--tw-bg-opacity)) !important; + } + + .xl\:bg-pink-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(253, 242, 248, var(--tw-bg-opacity)) !important; + } + + .xl\:bg-pink-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 231, 243, var(--tw-bg-opacity)) !important; + } + + .xl\:bg-pink-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(251, 207, 232, var(--tw-bg-opacity)) !important; + } + + .xl\:bg-pink-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(249, 168, 212, var(--tw-bg-opacity)) !important; + } + + .xl\:bg-pink-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(244, 114, 182, var(--tw-bg-opacity)) !important; + } + + .xl\:bg-pink-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(236, 72, 153, var(--tw-bg-opacity)) !important; + } + + .xl\:bg-pink-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(219, 39, 119, var(--tw-bg-opacity)) !important; + } + + .xl\:bg-pink-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(190, 24, 93, var(--tw-bg-opacity)) !important; + } + + .xl\:bg-pink-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(157, 23, 77, var(--tw-bg-opacity)) !important; + } + + .xl\:bg-pink-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(131, 24, 67, var(--tw-bg-opacity)) !important; + } + + .xl\:bg-primary { + --tw-bg-opacity: 1 !important; + background-color: rgba(0, 49, 151, var(--tw-bg-opacity)) !important; + } + + .group:hover .xl\:group-hover\:bg-transparent { + background-color: transparent !important; + } + + .group:hover .xl\:group-hover\:bg-current { + background-color: currentColor !important; + } + + .group:hover .xl\:group-hover\:bg-black { + --tw-bg-opacity: 1 !important; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important; + } + + .group:hover .xl\:group-hover\:bg-white { + --tw-bg-opacity: 1 !important; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important; + } + + .group:hover .xl\:group-hover\:bg-gray-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)) !important; + } + + .group:hover .xl\:group-hover\:bg-gray-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)) !important; + } + + .group:hover .xl\:group-hover\:bg-gray-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)) !important; + } + + .group:hover .xl\:group-hover\:bg-gray-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)) !important; + } + + .group:hover .xl\:group-hover\:bg-gray-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)) !important; + } + + .group:hover .xl\:group-hover\:bg-gray-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)) !important; + } + + .group:hover .xl\:group-hover\:bg-gray-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)) !important; + } + + .group:hover .xl\:group-hover\:bg-gray-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)) !important; + } + + .group:hover .xl\:group-hover\:bg-gray-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)) !important; + } + + .group:hover .xl\:group-hover\:bg-gray-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)) !important; + } + + .group:hover .xl\:group-hover\:bg-red-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 242, 242, var(--tw-bg-opacity)) !important; + } + + .group:hover .xl\:group-hover\:bg-red-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 226, 226, var(--tw-bg-opacity)) !important; + } + + .group:hover .xl\:group-hover\:bg-red-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 202, 202, var(--tw-bg-opacity)) !important; + } + + .group:hover .xl\:group-hover\:bg-red-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 165, 165, var(--tw-bg-opacity)) !important; + } + + .group:hover .xl\:group-hover\:bg-red-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(248, 113, 113, var(--tw-bg-opacity)) !important; + } + + .group:hover .xl\:group-hover\:bg-red-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(239, 68, 68, var(--tw-bg-opacity)) !important; + } + + .group:hover .xl\:group-hover\:bg-red-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(220, 38, 38, var(--tw-bg-opacity)) !important; + } + + .group:hover .xl\:group-hover\:bg-red-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(185, 28, 28, var(--tw-bg-opacity)) !important; + } + + .group:hover .xl\:group-hover\:bg-red-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(153, 27, 27, var(--tw-bg-opacity)) !important; + } + + .group:hover .xl\:group-hover\:bg-red-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(127, 29, 29, var(--tw-bg-opacity)) !important; + } + + .group:hover .xl\:group-hover\:bg-yellow-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(255, 251, 235, var(--tw-bg-opacity)) !important; + } + + .group:hover .xl\:group-hover\:bg-yellow-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 243, 199, var(--tw-bg-opacity)) !important; + } + + .group:hover .xl\:group-hover\:bg-yellow-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(253, 230, 138, var(--tw-bg-opacity)) !important; + } + + .group:hover .xl\:group-hover\:bg-yellow-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 211, 77, var(--tw-bg-opacity)) !important; + } + + .group:hover .xl\:group-hover\:bg-yellow-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(251, 191, 36, var(--tw-bg-opacity)) !important; + } + + .group:hover .xl\:group-hover\:bg-yellow-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)) !important; + } + + .group:hover .xl\:group-hover\:bg-yellow-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(217, 119, 6, var(--tw-bg-opacity)) !important; + } + + .group:hover .xl\:group-hover\:bg-yellow-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(180, 83, 9, var(--tw-bg-opacity)) !important; + } + + .group:hover .xl\:group-hover\:bg-yellow-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(146, 64, 14, var(--tw-bg-opacity)) !important; + } + + .group:hover .xl\:group-hover\:bg-yellow-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(120, 53, 15, var(--tw-bg-opacity)) !important; + } + + .group:hover .xl\:group-hover\:bg-green-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(236, 253, 245, var(--tw-bg-opacity)) !important; + } + + .group:hover .xl\:group-hover\:bg-green-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(209, 250, 229, var(--tw-bg-opacity)) !important; + } + + .group:hover .xl\:group-hover\:bg-green-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(167, 243, 208, var(--tw-bg-opacity)) !important; + } + + .group:hover .xl\:group-hover\:bg-green-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(110, 231, 183, var(--tw-bg-opacity)) !important; + } + + .group:hover .xl\:group-hover\:bg-green-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(52, 211, 153, var(--tw-bg-opacity)) !important; + } + + .group:hover .xl\:group-hover\:bg-green-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(16, 185, 129, var(--tw-bg-opacity)) !important; + } + + .group:hover .xl\:group-hover\:bg-green-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(5, 150, 105, var(--tw-bg-opacity)) !important; + } + + .group:hover .xl\:group-hover\:bg-green-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(4, 120, 87, var(--tw-bg-opacity)) !important; + } + + .group:hover .xl\:group-hover\:bg-green-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(6, 95, 70, var(--tw-bg-opacity)) !important; + } + + .group:hover .xl\:group-hover\:bg-green-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(6, 78, 59, var(--tw-bg-opacity)) !important; + } + + .group:hover .xl\:group-hover\:bg-blue-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(239, 246, 255, var(--tw-bg-opacity)) !important; + } + + .group:hover .xl\:group-hover\:bg-blue-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(219, 234, 254, var(--tw-bg-opacity)) !important; + } + + .group:hover .xl\:group-hover\:bg-blue-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(191, 219, 254, var(--tw-bg-opacity)) !important; + } + + .group:hover .xl\:group-hover\:bg-blue-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(147, 197, 253, var(--tw-bg-opacity)) !important; + } + + .group:hover .xl\:group-hover\:bg-blue-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(96, 165, 250, var(--tw-bg-opacity)) !important; + } + + .group:hover .xl\:group-hover\:bg-blue-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)) !important; + } + + .group:hover .xl\:group-hover\:bg-blue-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(37, 99, 235, var(--tw-bg-opacity)) !important; + } + + .group:hover .xl\:group-hover\:bg-blue-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(29, 78, 216, var(--tw-bg-opacity)) !important; + } + + .group:hover .xl\:group-hover\:bg-blue-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(30, 64, 175, var(--tw-bg-opacity)) !important; + } + + .group:hover .xl\:group-hover\:bg-blue-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(30, 58, 138, var(--tw-bg-opacity)) !important; + } + + .group:hover .xl\:group-hover\:bg-indigo-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(238, 242, 255, var(--tw-bg-opacity)) !important; + } + + .group:hover .xl\:group-hover\:bg-indigo-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(224, 231, 255, var(--tw-bg-opacity)) !important; + } + + .group:hover .xl\:group-hover\:bg-indigo-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(199, 210, 254, var(--tw-bg-opacity)) !important; + } + + .group:hover .xl\:group-hover\:bg-indigo-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(165, 180, 252, var(--tw-bg-opacity)) !important; + } + + .group:hover .xl\:group-hover\:bg-indigo-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(129, 140, 248, var(--tw-bg-opacity)) !important; + } + + .group:hover .xl\:group-hover\:bg-indigo-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(99, 102, 241, var(--tw-bg-opacity)) !important; + } + + .group:hover .xl\:group-hover\:bg-indigo-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(79, 70, 229, var(--tw-bg-opacity)) !important; + } + + .group:hover .xl\:group-hover\:bg-indigo-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(67, 56, 202, var(--tw-bg-opacity)) !important; + } + + .group:hover .xl\:group-hover\:bg-indigo-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(55, 48, 163, var(--tw-bg-opacity)) !important; + } + + .group:hover .xl\:group-hover\:bg-indigo-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(49, 46, 129, var(--tw-bg-opacity)) !important; + } + + .group:hover .xl\:group-hover\:bg-purple-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(245, 243, 255, var(--tw-bg-opacity)) !important; + } + + .group:hover .xl\:group-hover\:bg-purple-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(237, 233, 254, var(--tw-bg-opacity)) !important; + } + + .group:hover .xl\:group-hover\:bg-purple-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(221, 214, 254, var(--tw-bg-opacity)) !important; + } + + .group:hover .xl\:group-hover\:bg-purple-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(196, 181, 253, var(--tw-bg-opacity)) !important; + } + + .group:hover .xl\:group-hover\:bg-purple-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(167, 139, 250, var(--tw-bg-opacity)) !important; + } + + .group:hover .xl\:group-hover\:bg-purple-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(139, 92, 246, var(--tw-bg-opacity)) !important; + } + + .group:hover .xl\:group-hover\:bg-purple-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(124, 58, 237, var(--tw-bg-opacity)) !important; + } + + .group:hover .xl\:group-hover\:bg-purple-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(109, 40, 217, var(--tw-bg-opacity)) !important; + } + + .group:hover .xl\:group-hover\:bg-purple-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(91, 33, 182, var(--tw-bg-opacity)) !important; + } + + .group:hover .xl\:group-hover\:bg-purple-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(76, 29, 149, var(--tw-bg-opacity)) !important; + } + + .group:hover .xl\:group-hover\:bg-pink-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(253, 242, 248, var(--tw-bg-opacity)) !important; + } + + .group:hover .xl\:group-hover\:bg-pink-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 231, 243, var(--tw-bg-opacity)) !important; + } + + .group:hover .xl\:group-hover\:bg-pink-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(251, 207, 232, var(--tw-bg-opacity)) !important; + } + + .group:hover .xl\:group-hover\:bg-pink-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(249, 168, 212, var(--tw-bg-opacity)) !important; + } + + .group:hover .xl\:group-hover\:bg-pink-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(244, 114, 182, var(--tw-bg-opacity)) !important; + } + + .group:hover .xl\:group-hover\:bg-pink-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(236, 72, 153, var(--tw-bg-opacity)) !important; + } + + .group:hover .xl\:group-hover\:bg-pink-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(219, 39, 119, var(--tw-bg-opacity)) !important; + } + + .group:hover .xl\:group-hover\:bg-pink-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(190, 24, 93, var(--tw-bg-opacity)) !important; + } + + .group:hover .xl\:group-hover\:bg-pink-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(157, 23, 77, var(--tw-bg-opacity)) !important; + } + + .group:hover .xl\:group-hover\:bg-pink-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(131, 24, 67, var(--tw-bg-opacity)) !important; + } + + .group:hover .xl\:group-hover\:bg-primary { + --tw-bg-opacity: 1 !important; + background-color: rgba(0, 49, 151, var(--tw-bg-opacity)) !important; + } + + .xl\:focus-within\:bg-transparent:focus-within { + background-color: transparent !important; + } + + .xl\:focus-within\:bg-current:focus-within { + background-color: currentColor !important; + } + + .xl\:focus-within\:bg-black:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important; + } + + .xl\:focus-within\:bg-white:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important; + } + + .xl\:focus-within\:bg-gray-50:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)) !important; + } + + .xl\:focus-within\:bg-gray-100:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)) !important; + } + + .xl\:focus-within\:bg-gray-200:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)) !important; + } + + .xl\:focus-within\:bg-gray-300:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)) !important; + } + + .xl\:focus-within\:bg-gray-400:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)) !important; + } + + .xl\:focus-within\:bg-gray-500:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)) !important; + } + + .xl\:focus-within\:bg-gray-600:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)) !important; + } + + .xl\:focus-within\:bg-gray-700:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)) !important; + } + + .xl\:focus-within\:bg-gray-800:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)) !important; + } + + .xl\:focus-within\:bg-gray-900:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)) !important; + } + + .xl\:focus-within\:bg-red-50:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 242, 242, var(--tw-bg-opacity)) !important; + } + + .xl\:focus-within\:bg-red-100:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 226, 226, var(--tw-bg-opacity)) !important; + } + + .xl\:focus-within\:bg-red-200:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 202, 202, var(--tw-bg-opacity)) !important; + } + + .xl\:focus-within\:bg-red-300:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 165, 165, var(--tw-bg-opacity)) !important; + } + + .xl\:focus-within\:bg-red-400:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(248, 113, 113, var(--tw-bg-opacity)) !important; + } + + .xl\:focus-within\:bg-red-500:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(239, 68, 68, var(--tw-bg-opacity)) !important; + } + + .xl\:focus-within\:bg-red-600:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(220, 38, 38, var(--tw-bg-opacity)) !important; + } + + .xl\:focus-within\:bg-red-700:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(185, 28, 28, var(--tw-bg-opacity)) !important; + } + + .xl\:focus-within\:bg-red-800:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(153, 27, 27, var(--tw-bg-opacity)) !important; + } + + .xl\:focus-within\:bg-red-900:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(127, 29, 29, var(--tw-bg-opacity)) !important; + } + + .xl\:focus-within\:bg-yellow-50:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(255, 251, 235, var(--tw-bg-opacity)) !important; + } + + .xl\:focus-within\:bg-yellow-100:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 243, 199, var(--tw-bg-opacity)) !important; + } + + .xl\:focus-within\:bg-yellow-200:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(253, 230, 138, var(--tw-bg-opacity)) !important; + } + + .xl\:focus-within\:bg-yellow-300:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 211, 77, var(--tw-bg-opacity)) !important; + } + + .xl\:focus-within\:bg-yellow-400:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(251, 191, 36, var(--tw-bg-opacity)) !important; + } + + .xl\:focus-within\:bg-yellow-500:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)) !important; + } + + .xl\:focus-within\:bg-yellow-600:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(217, 119, 6, var(--tw-bg-opacity)) !important; + } + + .xl\:focus-within\:bg-yellow-700:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(180, 83, 9, var(--tw-bg-opacity)) !important; + } + + .xl\:focus-within\:bg-yellow-800:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(146, 64, 14, var(--tw-bg-opacity)) !important; + } + + .xl\:focus-within\:bg-yellow-900:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(120, 53, 15, var(--tw-bg-opacity)) !important; + } + + .xl\:focus-within\:bg-green-50:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(236, 253, 245, var(--tw-bg-opacity)) !important; + } + + .xl\:focus-within\:bg-green-100:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(209, 250, 229, var(--tw-bg-opacity)) !important; + } + + .xl\:focus-within\:bg-green-200:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(167, 243, 208, var(--tw-bg-opacity)) !important; + } + + .xl\:focus-within\:bg-green-300:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(110, 231, 183, var(--tw-bg-opacity)) !important; + } + + .xl\:focus-within\:bg-green-400:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(52, 211, 153, var(--tw-bg-opacity)) !important; + } + + .xl\:focus-within\:bg-green-500:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(16, 185, 129, var(--tw-bg-opacity)) !important; + } + + .xl\:focus-within\:bg-green-600:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(5, 150, 105, var(--tw-bg-opacity)) !important; + } + + .xl\:focus-within\:bg-green-700:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(4, 120, 87, var(--tw-bg-opacity)) !important; + } + + .xl\:focus-within\:bg-green-800:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(6, 95, 70, var(--tw-bg-opacity)) !important; + } + + .xl\:focus-within\:bg-green-900:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(6, 78, 59, var(--tw-bg-opacity)) !important; + } + + .xl\:focus-within\:bg-blue-50:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(239, 246, 255, var(--tw-bg-opacity)) !important; + } + + .xl\:focus-within\:bg-blue-100:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(219, 234, 254, var(--tw-bg-opacity)) !important; + } + + .xl\:focus-within\:bg-blue-200:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(191, 219, 254, var(--tw-bg-opacity)) !important; + } + + .xl\:focus-within\:bg-blue-300:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(147, 197, 253, var(--tw-bg-opacity)) !important; + } + + .xl\:focus-within\:bg-blue-400:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(96, 165, 250, var(--tw-bg-opacity)) !important; + } + + .xl\:focus-within\:bg-blue-500:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)) !important; + } + + .xl\:focus-within\:bg-blue-600:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(37, 99, 235, var(--tw-bg-opacity)) !important; + } + + .xl\:focus-within\:bg-blue-700:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(29, 78, 216, var(--tw-bg-opacity)) !important; + } + + .xl\:focus-within\:bg-blue-800:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(30, 64, 175, var(--tw-bg-opacity)) !important; + } + + .xl\:focus-within\:bg-blue-900:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(30, 58, 138, var(--tw-bg-opacity)) !important; + } + + .xl\:focus-within\:bg-indigo-50:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(238, 242, 255, var(--tw-bg-opacity)) !important; + } + + .xl\:focus-within\:bg-indigo-100:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(224, 231, 255, var(--tw-bg-opacity)) !important; + } + + .xl\:focus-within\:bg-indigo-200:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(199, 210, 254, var(--tw-bg-opacity)) !important; + } + + .xl\:focus-within\:bg-indigo-300:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(165, 180, 252, var(--tw-bg-opacity)) !important; + } + + .xl\:focus-within\:bg-indigo-400:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(129, 140, 248, var(--tw-bg-opacity)) !important; + } + + .xl\:focus-within\:bg-indigo-500:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(99, 102, 241, var(--tw-bg-opacity)) !important; + } + + .xl\:focus-within\:bg-indigo-600:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(79, 70, 229, var(--tw-bg-opacity)) !important; + } + + .xl\:focus-within\:bg-indigo-700:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(67, 56, 202, var(--tw-bg-opacity)) !important; + } + + .xl\:focus-within\:bg-indigo-800:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(55, 48, 163, var(--tw-bg-opacity)) !important; + } + + .xl\:focus-within\:bg-indigo-900:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(49, 46, 129, var(--tw-bg-opacity)) !important; + } + + .xl\:focus-within\:bg-purple-50:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(245, 243, 255, var(--tw-bg-opacity)) !important; + } + + .xl\:focus-within\:bg-purple-100:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(237, 233, 254, var(--tw-bg-opacity)) !important; + } + + .xl\:focus-within\:bg-purple-200:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(221, 214, 254, var(--tw-bg-opacity)) !important; + } + + .xl\:focus-within\:bg-purple-300:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(196, 181, 253, var(--tw-bg-opacity)) !important; + } + + .xl\:focus-within\:bg-purple-400:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(167, 139, 250, var(--tw-bg-opacity)) !important; + } + + .xl\:focus-within\:bg-purple-500:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(139, 92, 246, var(--tw-bg-opacity)) !important; + } + + .xl\:focus-within\:bg-purple-600:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(124, 58, 237, var(--tw-bg-opacity)) !important; + } + + .xl\:focus-within\:bg-purple-700:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(109, 40, 217, var(--tw-bg-opacity)) !important; + } + + .xl\:focus-within\:bg-purple-800:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(91, 33, 182, var(--tw-bg-opacity)) !important; + } + + .xl\:focus-within\:bg-purple-900:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(76, 29, 149, var(--tw-bg-opacity)) !important; + } + + .xl\:focus-within\:bg-pink-50:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(253, 242, 248, var(--tw-bg-opacity)) !important; + } + + .xl\:focus-within\:bg-pink-100:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 231, 243, var(--tw-bg-opacity)) !important; + } + + .xl\:focus-within\:bg-pink-200:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(251, 207, 232, var(--tw-bg-opacity)) !important; + } + + .xl\:focus-within\:bg-pink-300:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(249, 168, 212, var(--tw-bg-opacity)) !important; + } + + .xl\:focus-within\:bg-pink-400:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(244, 114, 182, var(--tw-bg-opacity)) !important; + } + + .xl\:focus-within\:bg-pink-500:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(236, 72, 153, var(--tw-bg-opacity)) !important; + } + + .xl\:focus-within\:bg-pink-600:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(219, 39, 119, var(--tw-bg-opacity)) !important; + } + + .xl\:focus-within\:bg-pink-700:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(190, 24, 93, var(--tw-bg-opacity)) !important; + } + + .xl\:focus-within\:bg-pink-800:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(157, 23, 77, var(--tw-bg-opacity)) !important; + } + + .xl\:focus-within\:bg-pink-900:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(131, 24, 67, var(--tw-bg-opacity)) !important; + } + + .xl\:focus-within\:bg-primary:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(0, 49, 151, var(--tw-bg-opacity)) !important; + } + + .xl\:hover\:bg-transparent:hover { + background-color: transparent !important; + } + + .xl\:hover\:bg-current:hover { + background-color: currentColor !important; + } + + .xl\:hover\:bg-black:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important; + } + + .xl\:hover\:bg-white:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important; + } + + .xl\:hover\:bg-gray-50:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)) !important; + } + + .xl\:hover\:bg-gray-100:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)) !important; + } + + .xl\:hover\:bg-gray-200:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)) !important; + } + + .xl\:hover\:bg-gray-300:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)) !important; + } + + .xl\:hover\:bg-gray-400:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)) !important; + } + + .xl\:hover\:bg-gray-500:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)) !important; + } + + .xl\:hover\:bg-gray-600:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)) !important; + } + + .xl\:hover\:bg-gray-700:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)) !important; + } + + .xl\:hover\:bg-gray-800:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)) !important; + } + + .xl\:hover\:bg-gray-900:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)) !important; + } + + .xl\:hover\:bg-red-50:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 242, 242, var(--tw-bg-opacity)) !important; + } + + .xl\:hover\:bg-red-100:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 226, 226, var(--tw-bg-opacity)) !important; + } + + .xl\:hover\:bg-red-200:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 202, 202, var(--tw-bg-opacity)) !important; + } + + .xl\:hover\:bg-red-300:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 165, 165, var(--tw-bg-opacity)) !important; + } + + .xl\:hover\:bg-red-400:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(248, 113, 113, var(--tw-bg-opacity)) !important; + } + + .xl\:hover\:bg-red-500:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(239, 68, 68, var(--tw-bg-opacity)) !important; + } + + .xl\:hover\:bg-red-600:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(220, 38, 38, var(--tw-bg-opacity)) !important; + } + + .xl\:hover\:bg-red-700:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(185, 28, 28, var(--tw-bg-opacity)) !important; + } + + .xl\:hover\:bg-red-800:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(153, 27, 27, var(--tw-bg-opacity)) !important; + } + + .xl\:hover\:bg-red-900:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(127, 29, 29, var(--tw-bg-opacity)) !important; + } + + .xl\:hover\:bg-yellow-50:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(255, 251, 235, var(--tw-bg-opacity)) !important; + } + + .xl\:hover\:bg-yellow-100:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 243, 199, var(--tw-bg-opacity)) !important; + } + + .xl\:hover\:bg-yellow-200:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(253, 230, 138, var(--tw-bg-opacity)) !important; + } + + .xl\:hover\:bg-yellow-300:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 211, 77, var(--tw-bg-opacity)) !important; + } + + .xl\:hover\:bg-yellow-400:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(251, 191, 36, var(--tw-bg-opacity)) !important; + } + + .xl\:hover\:bg-yellow-500:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)) !important; + } + + .xl\:hover\:bg-yellow-600:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(217, 119, 6, var(--tw-bg-opacity)) !important; + } + + .xl\:hover\:bg-yellow-700:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(180, 83, 9, var(--tw-bg-opacity)) !important; + } + + .xl\:hover\:bg-yellow-800:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(146, 64, 14, var(--tw-bg-opacity)) !important; + } + + .xl\:hover\:bg-yellow-900:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(120, 53, 15, var(--tw-bg-opacity)) !important; + } + + .xl\:hover\:bg-green-50:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(236, 253, 245, var(--tw-bg-opacity)) !important; + } + + .xl\:hover\:bg-green-100:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(209, 250, 229, var(--tw-bg-opacity)) !important; + } + + .xl\:hover\:bg-green-200:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(167, 243, 208, var(--tw-bg-opacity)) !important; + } + + .xl\:hover\:bg-green-300:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(110, 231, 183, var(--tw-bg-opacity)) !important; + } + + .xl\:hover\:bg-green-400:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(52, 211, 153, var(--tw-bg-opacity)) !important; + } + + .xl\:hover\:bg-green-500:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(16, 185, 129, var(--tw-bg-opacity)) !important; + } + + .xl\:hover\:bg-green-600:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(5, 150, 105, var(--tw-bg-opacity)) !important; + } + + .xl\:hover\:bg-green-700:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(4, 120, 87, var(--tw-bg-opacity)) !important; + } + + .xl\:hover\:bg-green-800:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(6, 95, 70, var(--tw-bg-opacity)) !important; + } + + .xl\:hover\:bg-green-900:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(6, 78, 59, var(--tw-bg-opacity)) !important; + } + + .xl\:hover\:bg-blue-50:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(239, 246, 255, var(--tw-bg-opacity)) !important; + } + + .xl\:hover\:bg-blue-100:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(219, 234, 254, var(--tw-bg-opacity)) !important; + } + + .xl\:hover\:bg-blue-200:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(191, 219, 254, var(--tw-bg-opacity)) !important; + } + + .xl\:hover\:bg-blue-300:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(147, 197, 253, var(--tw-bg-opacity)) !important; + } + + .xl\:hover\:bg-blue-400:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(96, 165, 250, var(--tw-bg-opacity)) !important; + } + + .xl\:hover\:bg-blue-500:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)) !important; + } + + .xl\:hover\:bg-blue-600:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(37, 99, 235, var(--tw-bg-opacity)) !important; + } + + .xl\:hover\:bg-blue-700:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(29, 78, 216, var(--tw-bg-opacity)) !important; + } + + .xl\:hover\:bg-blue-800:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(30, 64, 175, var(--tw-bg-opacity)) !important; + } + + .xl\:hover\:bg-blue-900:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(30, 58, 138, var(--tw-bg-opacity)) !important; + } + + .xl\:hover\:bg-indigo-50:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(238, 242, 255, var(--tw-bg-opacity)) !important; + } + + .xl\:hover\:bg-indigo-100:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(224, 231, 255, var(--tw-bg-opacity)) !important; + } + + .xl\:hover\:bg-indigo-200:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(199, 210, 254, var(--tw-bg-opacity)) !important; + } + + .xl\:hover\:bg-indigo-300:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(165, 180, 252, var(--tw-bg-opacity)) !important; + } + + .xl\:hover\:bg-indigo-400:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(129, 140, 248, var(--tw-bg-opacity)) !important; + } + + .xl\:hover\:bg-indigo-500:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(99, 102, 241, var(--tw-bg-opacity)) !important; + } + + .xl\:hover\:bg-indigo-600:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(79, 70, 229, var(--tw-bg-opacity)) !important; + } + + .xl\:hover\:bg-indigo-700:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(67, 56, 202, var(--tw-bg-opacity)) !important; + } + + .xl\:hover\:bg-indigo-800:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(55, 48, 163, var(--tw-bg-opacity)) !important; + } + + .xl\:hover\:bg-indigo-900:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(49, 46, 129, var(--tw-bg-opacity)) !important; + } + + .xl\:hover\:bg-purple-50:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(245, 243, 255, var(--tw-bg-opacity)) !important; + } + + .xl\:hover\:bg-purple-100:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(237, 233, 254, var(--tw-bg-opacity)) !important; + } + + .xl\:hover\:bg-purple-200:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(221, 214, 254, var(--tw-bg-opacity)) !important; + } + + .xl\:hover\:bg-purple-300:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(196, 181, 253, var(--tw-bg-opacity)) !important; + } + + .xl\:hover\:bg-purple-400:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(167, 139, 250, var(--tw-bg-opacity)) !important; + } + + .xl\:hover\:bg-purple-500:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(139, 92, 246, var(--tw-bg-opacity)) !important; + } + + .xl\:hover\:bg-purple-600:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(124, 58, 237, var(--tw-bg-opacity)) !important; + } + + .xl\:hover\:bg-purple-700:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(109, 40, 217, var(--tw-bg-opacity)) !important; + } + + .xl\:hover\:bg-purple-800:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(91, 33, 182, var(--tw-bg-opacity)) !important; + } + + .xl\:hover\:bg-purple-900:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(76, 29, 149, var(--tw-bg-opacity)) !important; + } + + .xl\:hover\:bg-pink-50:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(253, 242, 248, var(--tw-bg-opacity)) !important; + } + + .xl\:hover\:bg-pink-100:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 231, 243, var(--tw-bg-opacity)) !important; + } + + .xl\:hover\:bg-pink-200:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(251, 207, 232, var(--tw-bg-opacity)) !important; + } + + .xl\:hover\:bg-pink-300:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(249, 168, 212, var(--tw-bg-opacity)) !important; + } + + .xl\:hover\:bg-pink-400:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(244, 114, 182, var(--tw-bg-opacity)) !important; + } + + .xl\:hover\:bg-pink-500:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(236, 72, 153, var(--tw-bg-opacity)) !important; + } + + .xl\:hover\:bg-pink-600:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(219, 39, 119, var(--tw-bg-opacity)) !important; + } + + .xl\:hover\:bg-pink-700:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(190, 24, 93, var(--tw-bg-opacity)) !important; + } + + .xl\:hover\:bg-pink-800:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(157, 23, 77, var(--tw-bg-opacity)) !important; + } + + .xl\:hover\:bg-pink-900:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(131, 24, 67, var(--tw-bg-opacity)) !important; + } + + .xl\:hover\:bg-primary:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(0, 49, 151, var(--tw-bg-opacity)) !important; + } + + .xl\:focus\:bg-transparent:focus { + background-color: transparent !important; + } + + .xl\:focus\:bg-current:focus { + background-color: currentColor !important; + } + + .xl\:focus\:bg-black:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important; + } + + .xl\:focus\:bg-white:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important; + } + + .xl\:focus\:bg-gray-50:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)) !important; + } + + .xl\:focus\:bg-gray-100:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)) !important; + } + + .xl\:focus\:bg-gray-200:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)) !important; + } + + .xl\:focus\:bg-gray-300:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)) !important; + } + + .xl\:focus\:bg-gray-400:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)) !important; + } + + .xl\:focus\:bg-gray-500:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)) !important; + } + + .xl\:focus\:bg-gray-600:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)) !important; + } + + .xl\:focus\:bg-gray-700:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)) !important; + } + + .xl\:focus\:bg-gray-800:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)) !important; + } + + .xl\:focus\:bg-gray-900:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)) !important; + } + + .xl\:focus\:bg-red-50:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 242, 242, var(--tw-bg-opacity)) !important; + } + + .xl\:focus\:bg-red-100:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 226, 226, var(--tw-bg-opacity)) !important; + } + + .xl\:focus\:bg-red-200:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 202, 202, var(--tw-bg-opacity)) !important; + } + + .xl\:focus\:bg-red-300:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 165, 165, var(--tw-bg-opacity)) !important; + } + + .xl\:focus\:bg-red-400:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(248, 113, 113, var(--tw-bg-opacity)) !important; + } + + .xl\:focus\:bg-red-500:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(239, 68, 68, var(--tw-bg-opacity)) !important; + } + + .xl\:focus\:bg-red-600:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(220, 38, 38, var(--tw-bg-opacity)) !important; + } + + .xl\:focus\:bg-red-700:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(185, 28, 28, var(--tw-bg-opacity)) !important; + } + + .xl\:focus\:bg-red-800:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(153, 27, 27, var(--tw-bg-opacity)) !important; + } + + .xl\:focus\:bg-red-900:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(127, 29, 29, var(--tw-bg-opacity)) !important; + } + + .xl\:focus\:bg-yellow-50:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(255, 251, 235, var(--tw-bg-opacity)) !important; + } + + .xl\:focus\:bg-yellow-100:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 243, 199, var(--tw-bg-opacity)) !important; + } + + .xl\:focus\:bg-yellow-200:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(253, 230, 138, var(--tw-bg-opacity)) !important; + } + + .xl\:focus\:bg-yellow-300:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 211, 77, var(--tw-bg-opacity)) !important; + } + + .xl\:focus\:bg-yellow-400:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(251, 191, 36, var(--tw-bg-opacity)) !important; + } + + .xl\:focus\:bg-yellow-500:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)) !important; + } + + .xl\:focus\:bg-yellow-600:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(217, 119, 6, var(--tw-bg-opacity)) !important; + } + + .xl\:focus\:bg-yellow-700:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(180, 83, 9, var(--tw-bg-opacity)) !important; + } + + .xl\:focus\:bg-yellow-800:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(146, 64, 14, var(--tw-bg-opacity)) !important; + } + + .xl\:focus\:bg-yellow-900:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(120, 53, 15, var(--tw-bg-opacity)) !important; + } + + .xl\:focus\:bg-green-50:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(236, 253, 245, var(--tw-bg-opacity)) !important; + } + + .xl\:focus\:bg-green-100:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(209, 250, 229, var(--tw-bg-opacity)) !important; + } + + .xl\:focus\:bg-green-200:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(167, 243, 208, var(--tw-bg-opacity)) !important; + } + + .xl\:focus\:bg-green-300:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(110, 231, 183, var(--tw-bg-opacity)) !important; + } + + .xl\:focus\:bg-green-400:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(52, 211, 153, var(--tw-bg-opacity)) !important; + } + + .xl\:focus\:bg-green-500:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(16, 185, 129, var(--tw-bg-opacity)) !important; + } + + .xl\:focus\:bg-green-600:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(5, 150, 105, var(--tw-bg-opacity)) !important; + } + + .xl\:focus\:bg-green-700:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(4, 120, 87, var(--tw-bg-opacity)) !important; + } + + .xl\:focus\:bg-green-800:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(6, 95, 70, var(--tw-bg-opacity)) !important; + } + + .xl\:focus\:bg-green-900:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(6, 78, 59, var(--tw-bg-opacity)) !important; + } + + .xl\:focus\:bg-blue-50:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(239, 246, 255, var(--tw-bg-opacity)) !important; + } + + .xl\:focus\:bg-blue-100:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(219, 234, 254, var(--tw-bg-opacity)) !important; + } + + .xl\:focus\:bg-blue-200:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(191, 219, 254, var(--tw-bg-opacity)) !important; + } + + .xl\:focus\:bg-blue-300:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(147, 197, 253, var(--tw-bg-opacity)) !important; + } + + .xl\:focus\:bg-blue-400:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(96, 165, 250, var(--tw-bg-opacity)) !important; + } + + .xl\:focus\:bg-blue-500:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)) !important; + } + + .xl\:focus\:bg-blue-600:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(37, 99, 235, var(--tw-bg-opacity)) !important; + } + + .xl\:focus\:bg-blue-700:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(29, 78, 216, var(--tw-bg-opacity)) !important; + } + + .xl\:focus\:bg-blue-800:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(30, 64, 175, var(--tw-bg-opacity)) !important; + } + + .xl\:focus\:bg-blue-900:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(30, 58, 138, var(--tw-bg-opacity)) !important; + } + + .xl\:focus\:bg-indigo-50:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(238, 242, 255, var(--tw-bg-opacity)) !important; + } + + .xl\:focus\:bg-indigo-100:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(224, 231, 255, var(--tw-bg-opacity)) !important; + } + + .xl\:focus\:bg-indigo-200:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(199, 210, 254, var(--tw-bg-opacity)) !important; + } + + .xl\:focus\:bg-indigo-300:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(165, 180, 252, var(--tw-bg-opacity)) !important; + } + + .xl\:focus\:bg-indigo-400:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(129, 140, 248, var(--tw-bg-opacity)) !important; + } + + .xl\:focus\:bg-indigo-500:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(99, 102, 241, var(--tw-bg-opacity)) !important; + } + + .xl\:focus\:bg-indigo-600:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(79, 70, 229, var(--tw-bg-opacity)) !important; + } + + .xl\:focus\:bg-indigo-700:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(67, 56, 202, var(--tw-bg-opacity)) !important; + } + + .xl\:focus\:bg-indigo-800:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(55, 48, 163, var(--tw-bg-opacity)) !important; + } + + .xl\:focus\:bg-indigo-900:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(49, 46, 129, var(--tw-bg-opacity)) !important; + } + + .xl\:focus\:bg-purple-50:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(245, 243, 255, var(--tw-bg-opacity)) !important; + } + + .xl\:focus\:bg-purple-100:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(237, 233, 254, var(--tw-bg-opacity)) !important; + } + + .xl\:focus\:bg-purple-200:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(221, 214, 254, var(--tw-bg-opacity)) !important; + } + + .xl\:focus\:bg-purple-300:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(196, 181, 253, var(--tw-bg-opacity)) !important; + } + + .xl\:focus\:bg-purple-400:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(167, 139, 250, var(--tw-bg-opacity)) !important; + } + + .xl\:focus\:bg-purple-500:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(139, 92, 246, var(--tw-bg-opacity)) !important; + } + + .xl\:focus\:bg-purple-600:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(124, 58, 237, var(--tw-bg-opacity)) !important; + } + + .xl\:focus\:bg-purple-700:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(109, 40, 217, var(--tw-bg-opacity)) !important; + } + + .xl\:focus\:bg-purple-800:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(91, 33, 182, var(--tw-bg-opacity)) !important; + } + + .xl\:focus\:bg-purple-900:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(76, 29, 149, var(--tw-bg-opacity)) !important; + } + + .xl\:focus\:bg-pink-50:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(253, 242, 248, var(--tw-bg-opacity)) !important; + } + + .xl\:focus\:bg-pink-100:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 231, 243, var(--tw-bg-opacity)) !important; + } + + .xl\:focus\:bg-pink-200:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(251, 207, 232, var(--tw-bg-opacity)) !important; + } + + .xl\:focus\:bg-pink-300:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(249, 168, 212, var(--tw-bg-opacity)) !important; + } + + .xl\:focus\:bg-pink-400:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(244, 114, 182, var(--tw-bg-opacity)) !important; + } + + .xl\:focus\:bg-pink-500:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(236, 72, 153, var(--tw-bg-opacity)) !important; + } + + .xl\:focus\:bg-pink-600:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(219, 39, 119, var(--tw-bg-opacity)) !important; + } + + .xl\:focus\:bg-pink-700:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(190, 24, 93, var(--tw-bg-opacity)) !important; + } + + .xl\:focus\:bg-pink-800:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(157, 23, 77, var(--tw-bg-opacity)) !important; + } + + .xl\:focus\:bg-pink-900:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(131, 24, 67, var(--tw-bg-opacity)) !important; + } + + .xl\:focus\:bg-primary:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(0, 49, 151, var(--tw-bg-opacity)) !important; + } + + .xl\:bg-none { + background-image: none !important; + } + + .xl\:bg-gradient-to-t { + background-image: linear-gradient(to top, var(--tw-gradient-stops)) !important; + } + + .xl\:bg-gradient-to-tr { + background-image: linear-gradient(to top right, var(--tw-gradient-stops)) !important; + } + + .xl\:bg-gradient-to-r { + background-image: linear-gradient(to right, var(--tw-gradient-stops)) !important; + } + + .xl\:bg-gradient-to-br { + background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)) !important; + } + + .xl\:bg-gradient-to-b { + background-image: linear-gradient(to bottom, var(--tw-gradient-stops)) !important; + } + + .xl\:bg-gradient-to-bl { + background-image: linear-gradient(to bottom left, var(--tw-gradient-stops)) !important; + } + + .xl\:bg-gradient-to-l { + background-image: linear-gradient(to left, var(--tw-gradient-stops)) !important; + } + + .xl\:bg-gradient-to-tl { + background-image: linear-gradient(to top left, var(--tw-gradient-stops)) !important; + } + + .xl\:from-transparent { + --tw-gradient-from: transparent !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; + } + + .xl\:from-current { + --tw-gradient-from: currentColor !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; + } + + .xl\:from-black { + --tw-gradient-from: #000 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; + } + + .xl\:from-white { + --tw-gradient-from: #fff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; + } + + .xl\:from-gray-50 { + --tw-gradient-from: #f9fafb !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)) !important; + } + + .xl\:from-gray-100 { + --tw-gradient-from: #f3f4f6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)) !important; + } + + .xl\:from-gray-200 { + --tw-gradient-from: #e5e7eb !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)) !important; + } + + .xl\:from-gray-300 { + --tw-gradient-from: #d1d5db !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)) !important; + } + + .xl\:from-gray-400 { + --tw-gradient-from: #9ca3af !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)) !important; + } + + .xl\:from-gray-500 { + --tw-gradient-from: #6b7280 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)) !important; + } + + .xl\:from-gray-600 { + --tw-gradient-from: #4b5563 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)) !important; + } + + .xl\:from-gray-700 { + --tw-gradient-from: #374151 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)) !important; + } + + .xl\:from-gray-800 { + --tw-gradient-from: #1f2937 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)) !important; + } + + .xl\:from-gray-900 { + --tw-gradient-from: #111827 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)) !important; + } + + .xl\:from-red-50 { + --tw-gradient-from: #fef2f2 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)) !important; + } + + .xl\:from-red-100 { + --tw-gradient-from: #fee2e2 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)) !important; + } + + .xl\:from-red-200 { + --tw-gradient-from: #fecaca !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)) !important; + } + + .xl\:from-red-300 { + --tw-gradient-from: #fca5a5 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)) !important; + } + + .xl\:from-red-400 { + --tw-gradient-from: #f87171 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)) !important; + } + + .xl\:from-red-500 { + --tw-gradient-from: #ef4444 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)) !important; + } + + .xl\:from-red-600 { + --tw-gradient-from: #dc2626 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)) !important; + } + + .xl\:from-red-700 { + --tw-gradient-from: #b91c1c !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)) !important; + } + + .xl\:from-red-800 { + --tw-gradient-from: #991b1b !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)) !important; + } + + .xl\:from-red-900 { + --tw-gradient-from: #7f1d1d !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important; + } + + .xl\:from-yellow-50 { + --tw-gradient-from: #fffbeb !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)) !important; + } + + .xl\:from-yellow-100 { + --tw-gradient-from: #fef3c7 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)) !important; + } + + .xl\:from-yellow-200 { + --tw-gradient-from: #fde68a !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)) !important; + } + + .xl\:from-yellow-300 { + --tw-gradient-from: #fcd34d !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)) !important; + } + + .xl\:from-yellow-400 { + --tw-gradient-from: #fbbf24 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)) !important; + } + + .xl\:from-yellow-500 { + --tw-gradient-from: #f59e0b !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)) !important; + } + + .xl\:from-yellow-600 { + --tw-gradient-from: #d97706 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)) !important; + } + + .xl\:from-yellow-700 { + --tw-gradient-from: #b45309 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)) !important; + } + + .xl\:from-yellow-800 { + --tw-gradient-from: #92400e !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)) !important; + } + + .xl\:from-yellow-900 { + --tw-gradient-from: #78350f !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)) !important; + } + + .xl\:from-green-50 { + --tw-gradient-from: #ecfdf5 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)) !important; + } + + .xl\:from-green-100 { + --tw-gradient-from: #d1fae5 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)) !important; + } + + .xl\:from-green-200 { + --tw-gradient-from: #a7f3d0 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)) !important; + } + + .xl\:from-green-300 { + --tw-gradient-from: #6ee7b7 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)) !important; + } + + .xl\:from-green-400 { + --tw-gradient-from: #34d399 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)) !important; + } + + .xl\:from-green-500 { + --tw-gradient-from: #10b981 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)) !important; + } + + .xl\:from-green-600 { + --tw-gradient-from: #059669 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)) !important; + } + + .xl\:from-green-700 { + --tw-gradient-from: #047857 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)) !important; + } + + .xl\:from-green-800 { + --tw-gradient-from: #065f46 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)) !important; + } + + .xl\:from-green-900 { + --tw-gradient-from: #064e3b !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)) !important; + } + + .xl\:from-blue-50 { + --tw-gradient-from: #eff6ff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)) !important; + } + + .xl\:from-blue-100 { + --tw-gradient-from: #dbeafe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)) !important; + } + + .xl\:from-blue-200 { + --tw-gradient-from: #bfdbfe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)) !important; + } + + .xl\:from-blue-300 { + --tw-gradient-from: #93c5fd !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)) !important; + } + + .xl\:from-blue-400 { + --tw-gradient-from: #60a5fa !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)) !important; + } + + .xl\:from-blue-500 { + --tw-gradient-from: #3b82f6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)) !important; + } + + .xl\:from-blue-600 { + --tw-gradient-from: #2563eb !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)) !important; + } + + .xl\:from-blue-700 { + --tw-gradient-from: #1d4ed8 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)) !important; + } + + .xl\:from-blue-800 { + --tw-gradient-from: #1e40af !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)) !important; + } + + .xl\:from-blue-900 { + --tw-gradient-from: #1e3a8a !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)) !important; + } + + .xl\:from-indigo-50 { + --tw-gradient-from: #eef2ff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)) !important; + } + + .xl\:from-indigo-100 { + --tw-gradient-from: #e0e7ff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)) !important; + } + + .xl\:from-indigo-200 { + --tw-gradient-from: #c7d2fe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)) !important; + } + + .xl\:from-indigo-300 { + --tw-gradient-from: #a5b4fc !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)) !important; + } + + .xl\:from-indigo-400 { + --tw-gradient-from: #818cf8 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)) !important; + } + + .xl\:from-indigo-500 { + --tw-gradient-from: #6366f1 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)) !important; + } + + .xl\:from-indigo-600 { + --tw-gradient-from: #4f46e5 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)) !important; + } + + .xl\:from-indigo-700 { + --tw-gradient-from: #4338ca !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)) !important; + } + + .xl\:from-indigo-800 { + --tw-gradient-from: #3730a3 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)) !important; + } + + .xl\:from-indigo-900 { + --tw-gradient-from: #312e81 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)) !important; + } + + .xl\:from-purple-50 { + --tw-gradient-from: #f5f3ff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)) !important; + } + + .xl\:from-purple-100 { + --tw-gradient-from: #ede9fe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)) !important; + } + + .xl\:from-purple-200 { + --tw-gradient-from: #ddd6fe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)) !important; + } + + .xl\:from-purple-300 { + --tw-gradient-from: #c4b5fd !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)) !important; + } + + .xl\:from-purple-400 { + --tw-gradient-from: #a78bfa !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)) !important; + } + + .xl\:from-purple-500 { + --tw-gradient-from: #8b5cf6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)) !important; + } + + .xl\:from-purple-600 { + --tw-gradient-from: #7c3aed !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)) !important; + } + + .xl\:from-purple-700 { + --tw-gradient-from: #6d28d9 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)) !important; + } + + .xl\:from-purple-800 { + --tw-gradient-from: #5b21b6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)) !important; + } + + .xl\:from-purple-900 { + --tw-gradient-from: #4c1d95 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)) !important; + } + + .xl\:from-pink-50 { + --tw-gradient-from: #fdf2f8 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)) !important; + } + + .xl\:from-pink-100 { + --tw-gradient-from: #fce7f3 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)) !important; + } + + .xl\:from-pink-200 { + --tw-gradient-from: #fbcfe8 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)) !important; + } + + .xl\:from-pink-300 { + --tw-gradient-from: #f9a8d4 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)) !important; + } + + .xl\:from-pink-400 { + --tw-gradient-from: #f472b6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)) !important; + } + + .xl\:from-pink-500 { + --tw-gradient-from: #ec4899 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)) !important; + } + + .xl\:from-pink-600 { + --tw-gradient-from: #db2777 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)) !important; + } + + .xl\:from-pink-700 { + --tw-gradient-from: #be185d !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)) !important; + } + + .xl\:from-pink-800 { + --tw-gradient-from: #9d174d !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)) !important; + } + + .xl\:from-pink-900 { + --tw-gradient-from: #831843 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)) !important; + } + + .xl\:from-primary { + --tw-gradient-from: #003197 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 49, 151, 0)) !important; + } + + .xl\:via-transparent { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; + } + + .xl\:via-current { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; + } + + .xl\:via-black { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; + } + + .xl\:via-white { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; + } + + .xl\:via-gray-50 { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)) !important; + } + + .xl\:via-gray-100 { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)) !important; + } + + .xl\:via-gray-200 { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)) !important; + } + + .xl\:via-gray-300 { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)) !important; + } + + .xl\:via-gray-400 { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)) !important; + } + + .xl\:via-gray-500 { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)) !important; + } + + .xl\:via-gray-600 { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)) !important; + } + + .xl\:via-gray-700 { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)) !important; + } + + .xl\:via-gray-800 { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)) !important; + } + + .xl\:via-gray-900 { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)) !important; + } + + .xl\:via-red-50 { + --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)) !important; + } + + .xl\:via-red-100 { + --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)) !important; + } + + .xl\:via-red-200 { + --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)) !important; + } + + .xl\:via-red-300 { + --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)) !important; + } + + .xl\:via-red-400 { + --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)) !important; + } + + .xl\:via-red-500 { + --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)) !important; + } + + .xl\:via-red-600 { + --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)) !important; + } + + .xl\:via-red-700 { + --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)) !important; + } + + .xl\:via-red-800 { + --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)) !important; + } + + .xl\:via-red-900 { + --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important; + } + + .xl\:via-yellow-50 { + --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)) !important; + } + + .xl\:via-yellow-100 { + --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)) !important; + } + + .xl\:via-yellow-200 { + --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)) !important; + } + + .xl\:via-yellow-300 { + --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)) !important; + } + + .xl\:via-yellow-400 { + --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)) !important; + } + + .xl\:via-yellow-500 { + --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)) !important; + } + + .xl\:via-yellow-600 { + --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)) !important; + } + + .xl\:via-yellow-700 { + --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)) !important; + } + + .xl\:via-yellow-800 { + --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)) !important; + } + + .xl\:via-yellow-900 { + --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)) !important; + } + + .xl\:via-green-50 { + --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)) !important; + } + + .xl\:via-green-100 { + --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)) !important; + } + + .xl\:via-green-200 { + --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)) !important; + } + + .xl\:via-green-300 { + --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)) !important; + } + + .xl\:via-green-400 { + --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)) !important; + } + + .xl\:via-green-500 { + --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)) !important; + } + + .xl\:via-green-600 { + --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)) !important; + } + + .xl\:via-green-700 { + --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)) !important; + } + + .xl\:via-green-800 { + --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)) !important; + } + + .xl\:via-green-900 { + --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)) !important; + } + + .xl\:via-blue-50 { + --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)) !important; + } + + .xl\:via-blue-100 { + --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)) !important; + } + + .xl\:via-blue-200 { + --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)) !important; + } + + .xl\:via-blue-300 { + --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)) !important; + } + + .xl\:via-blue-400 { + --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)) !important; + } + + .xl\:via-blue-500 { + --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)) !important; + } + + .xl\:via-blue-600 { + --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)) !important; + } + + .xl\:via-blue-700 { + --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)) !important; + } + + .xl\:via-blue-800 { + --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)) !important; + } + + .xl\:via-blue-900 { + --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)) !important; + } + + .xl\:via-indigo-50 { + --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)) !important; + } + + .xl\:via-indigo-100 { + --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)) !important; + } + + .xl\:via-indigo-200 { + --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)) !important; + } + + .xl\:via-indigo-300 { + --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)) !important; + } + + .xl\:via-indigo-400 { + --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)) !important; + } + + .xl\:via-indigo-500 { + --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)) !important; + } + + .xl\:via-indigo-600 { + --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)) !important; + } + + .xl\:via-indigo-700 { + --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)) !important; + } + + .xl\:via-indigo-800 { + --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)) !important; + } + + .xl\:via-indigo-900 { + --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)) !important; + } + + .xl\:via-purple-50 { + --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)) !important; + } + + .xl\:via-purple-100 { + --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)) !important; + } + + .xl\:via-purple-200 { + --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)) !important; + } + + .xl\:via-purple-300 { + --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)) !important; + } + + .xl\:via-purple-400 { + --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)) !important; + } + + .xl\:via-purple-500 { + --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)) !important; + } + + .xl\:via-purple-600 { + --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)) !important; + } + + .xl\:via-purple-700 { + --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)) !important; + } + + .xl\:via-purple-800 { + --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)) !important; + } + + .xl\:via-purple-900 { + --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)) !important; + } + + .xl\:via-pink-50 { + --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)) !important; + } + + .xl\:via-pink-100 { + --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)) !important; + } + + .xl\:via-pink-200 { + --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)) !important; + } + + .xl\:via-pink-300 { + --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)) !important; + } + + .xl\:via-pink-400 { + --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)) !important; + } + + .xl\:via-pink-500 { + --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)) !important; + } + + .xl\:via-pink-600 { + --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)) !important; + } + + .xl\:via-pink-700 { + --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)) !important; + } + + .xl\:via-pink-800 { + --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)) !important; + } + + .xl\:via-pink-900 { + --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)) !important; + } + + .xl\:via-primary { + --tw-gradient-stops: var(--tw-gradient-from), #003197, var(--tw-gradient-to, rgba(0, 49, 151, 0)) !important; + } + + .xl\:to-transparent { + --tw-gradient-to: transparent !important; + } + + .xl\:to-current { + --tw-gradient-to: currentColor !important; + } + + .xl\:to-black { + --tw-gradient-to: #000 !important; + } + + .xl\:to-white { + --tw-gradient-to: #fff !important; + } + + .xl\:to-gray-50 { + --tw-gradient-to: #f9fafb !important; + } + + .xl\:to-gray-100 { + --tw-gradient-to: #f3f4f6 !important; + } + + .xl\:to-gray-200 { + --tw-gradient-to: #e5e7eb !important; + } + + .xl\:to-gray-300 { + --tw-gradient-to: #d1d5db !important; + } + + .xl\:to-gray-400 { + --tw-gradient-to: #9ca3af !important; + } + + .xl\:to-gray-500 { + --tw-gradient-to: #6b7280 !important; + } + + .xl\:to-gray-600 { + --tw-gradient-to: #4b5563 !important; + } + + .xl\:to-gray-700 { + --tw-gradient-to: #374151 !important; + } + + .xl\:to-gray-800 { + --tw-gradient-to: #1f2937 !important; + } + + .xl\:to-gray-900 { + --tw-gradient-to: #111827 !important; + } + + .xl\:to-red-50 { + --tw-gradient-to: #fef2f2 !important; + } + + .xl\:to-red-100 { + --tw-gradient-to: #fee2e2 !important; + } + + .xl\:to-red-200 { + --tw-gradient-to: #fecaca !important; + } + + .xl\:to-red-300 { + --tw-gradient-to: #fca5a5 !important; + } + + .xl\:to-red-400 { + --tw-gradient-to: #f87171 !important; + } + + .xl\:to-red-500 { + --tw-gradient-to: #ef4444 !important; + } + + .xl\:to-red-600 { + --tw-gradient-to: #dc2626 !important; + } + + .xl\:to-red-700 { + --tw-gradient-to: #b91c1c !important; + } + + .xl\:to-red-800 { + --tw-gradient-to: #991b1b !important; + } + + .xl\:to-red-900 { + --tw-gradient-to: #7f1d1d !important; + } + + .xl\:to-yellow-50 { + --tw-gradient-to: #fffbeb !important; + } + + .xl\:to-yellow-100 { + --tw-gradient-to: #fef3c7 !important; + } + + .xl\:to-yellow-200 { + --tw-gradient-to: #fde68a !important; + } + + .xl\:to-yellow-300 { + --tw-gradient-to: #fcd34d !important; + } + + .xl\:to-yellow-400 { + --tw-gradient-to: #fbbf24 !important; + } + + .xl\:to-yellow-500 { + --tw-gradient-to: #f59e0b !important; + } + + .xl\:to-yellow-600 { + --tw-gradient-to: #d97706 !important; + } + + .xl\:to-yellow-700 { + --tw-gradient-to: #b45309 !important; + } + + .xl\:to-yellow-800 { + --tw-gradient-to: #92400e !important; + } + + .xl\:to-yellow-900 { + --tw-gradient-to: #78350f !important; + } + + .xl\:to-green-50 { + --tw-gradient-to: #ecfdf5 !important; + } + + .xl\:to-green-100 { + --tw-gradient-to: #d1fae5 !important; + } + + .xl\:to-green-200 { + --tw-gradient-to: #a7f3d0 !important; + } + + .xl\:to-green-300 { + --tw-gradient-to: #6ee7b7 !important; + } + + .xl\:to-green-400 { + --tw-gradient-to: #34d399 !important; + } + + .xl\:to-green-500 { + --tw-gradient-to: #10b981 !important; + } + + .xl\:to-green-600 { + --tw-gradient-to: #059669 !important; + } + + .xl\:to-green-700 { + --tw-gradient-to: #047857 !important; + } + + .xl\:to-green-800 { + --tw-gradient-to: #065f46 !important; + } + + .xl\:to-green-900 { + --tw-gradient-to: #064e3b !important; + } + + .xl\:to-blue-50 { + --tw-gradient-to: #eff6ff !important; + } + + .xl\:to-blue-100 { + --tw-gradient-to: #dbeafe !important; + } + + .xl\:to-blue-200 { + --tw-gradient-to: #bfdbfe !important; + } + + .xl\:to-blue-300 { + --tw-gradient-to: #93c5fd !important; + } + + .xl\:to-blue-400 { + --tw-gradient-to: #60a5fa !important; + } + + .xl\:to-blue-500 { + --tw-gradient-to: #3b82f6 !important; + } + + .xl\:to-blue-600 { + --tw-gradient-to: #2563eb !important; + } + + .xl\:to-blue-700 { + --tw-gradient-to: #1d4ed8 !important; + } + + .xl\:to-blue-800 { + --tw-gradient-to: #1e40af !important; + } + + .xl\:to-blue-900 { + --tw-gradient-to: #1e3a8a !important; + } + + .xl\:to-indigo-50 { + --tw-gradient-to: #eef2ff !important; + } + + .xl\:to-indigo-100 { + --tw-gradient-to: #e0e7ff !important; + } + + .xl\:to-indigo-200 { + --tw-gradient-to: #c7d2fe !important; + } + + .xl\:to-indigo-300 { + --tw-gradient-to: #a5b4fc !important; + } + + .xl\:to-indigo-400 { + --tw-gradient-to: #818cf8 !important; + } + + .xl\:to-indigo-500 { + --tw-gradient-to: #6366f1 !important; + } + + .xl\:to-indigo-600 { + --tw-gradient-to: #4f46e5 !important; + } + + .xl\:to-indigo-700 { + --tw-gradient-to: #4338ca !important; + } + + .xl\:to-indigo-800 { + --tw-gradient-to: #3730a3 !important; + } + + .xl\:to-indigo-900 { + --tw-gradient-to: #312e81 !important; + } + + .xl\:to-purple-50 { + --tw-gradient-to: #f5f3ff !important; + } + + .xl\:to-purple-100 { + --tw-gradient-to: #ede9fe !important; + } + + .xl\:to-purple-200 { + --tw-gradient-to: #ddd6fe !important; + } + + .xl\:to-purple-300 { + --tw-gradient-to: #c4b5fd !important; + } + + .xl\:to-purple-400 { + --tw-gradient-to: #a78bfa !important; + } + + .xl\:to-purple-500 { + --tw-gradient-to: #8b5cf6 !important; + } + + .xl\:to-purple-600 { + --tw-gradient-to: #7c3aed !important; + } + + .xl\:to-purple-700 { + --tw-gradient-to: #6d28d9 !important; + } + + .xl\:to-purple-800 { + --tw-gradient-to: #5b21b6 !important; + } + + .xl\:to-purple-900 { + --tw-gradient-to: #4c1d95 !important; + } + + .xl\:to-pink-50 { + --tw-gradient-to: #fdf2f8 !important; + } + + .xl\:to-pink-100 { + --tw-gradient-to: #fce7f3 !important; + } + + .xl\:to-pink-200 { + --tw-gradient-to: #fbcfe8 !important; + } + + .xl\:to-pink-300 { + --tw-gradient-to: #f9a8d4 !important; + } + + .xl\:to-pink-400 { + --tw-gradient-to: #f472b6 !important; + } + + .xl\:to-pink-500 { + --tw-gradient-to: #ec4899 !important; + } + + .xl\:to-pink-600 { + --tw-gradient-to: #db2777 !important; + } + + .xl\:to-pink-700 { + --tw-gradient-to: #be185d !important; + } + + .xl\:to-pink-800 { + --tw-gradient-to: #9d174d !important; + } + + .xl\:to-pink-900 { + --tw-gradient-to: #831843 !important; + } + + .xl\:to-primary { + --tw-gradient-to: #003197 !important; + } + + .xl\:hover\:from-transparent:hover { + --tw-gradient-from: transparent !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; + } + + .xl\:hover\:from-current:hover { + --tw-gradient-from: currentColor !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; + } + + .xl\:hover\:from-black:hover { + --tw-gradient-from: #000 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; + } + + .xl\:hover\:from-white:hover { + --tw-gradient-from: #fff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; + } + + .xl\:hover\:from-gray-50:hover { + --tw-gradient-from: #f9fafb !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)) !important; + } + + .xl\:hover\:from-gray-100:hover { + --tw-gradient-from: #f3f4f6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)) !important; + } + + .xl\:hover\:from-gray-200:hover { + --tw-gradient-from: #e5e7eb !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)) !important; + } + + .xl\:hover\:from-gray-300:hover { + --tw-gradient-from: #d1d5db !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)) !important; + } + + .xl\:hover\:from-gray-400:hover { + --tw-gradient-from: #9ca3af !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)) !important; + } + + .xl\:hover\:from-gray-500:hover { + --tw-gradient-from: #6b7280 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)) !important; + } + + .xl\:hover\:from-gray-600:hover { + --tw-gradient-from: #4b5563 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)) !important; + } + + .xl\:hover\:from-gray-700:hover { + --tw-gradient-from: #374151 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)) !important; + } + + .xl\:hover\:from-gray-800:hover { + --tw-gradient-from: #1f2937 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)) !important; + } + + .xl\:hover\:from-gray-900:hover { + --tw-gradient-from: #111827 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)) !important; + } + + .xl\:hover\:from-red-50:hover { + --tw-gradient-from: #fef2f2 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)) !important; + } + + .xl\:hover\:from-red-100:hover { + --tw-gradient-from: #fee2e2 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)) !important; + } + + .xl\:hover\:from-red-200:hover { + --tw-gradient-from: #fecaca !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)) !important; + } + + .xl\:hover\:from-red-300:hover { + --tw-gradient-from: #fca5a5 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)) !important; + } + + .xl\:hover\:from-red-400:hover { + --tw-gradient-from: #f87171 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)) !important; + } + + .xl\:hover\:from-red-500:hover { + --tw-gradient-from: #ef4444 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)) !important; + } + + .xl\:hover\:from-red-600:hover { + --tw-gradient-from: #dc2626 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)) !important; + } + + .xl\:hover\:from-red-700:hover { + --tw-gradient-from: #b91c1c !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)) !important; + } + + .xl\:hover\:from-red-800:hover { + --tw-gradient-from: #991b1b !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)) !important; + } + + .xl\:hover\:from-red-900:hover { + --tw-gradient-from: #7f1d1d !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important; + } + + .xl\:hover\:from-yellow-50:hover { + --tw-gradient-from: #fffbeb !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)) !important; + } + + .xl\:hover\:from-yellow-100:hover { + --tw-gradient-from: #fef3c7 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)) !important; + } + + .xl\:hover\:from-yellow-200:hover { + --tw-gradient-from: #fde68a !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)) !important; + } + + .xl\:hover\:from-yellow-300:hover { + --tw-gradient-from: #fcd34d !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)) !important; + } + + .xl\:hover\:from-yellow-400:hover { + --tw-gradient-from: #fbbf24 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)) !important; + } + + .xl\:hover\:from-yellow-500:hover { + --tw-gradient-from: #f59e0b !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)) !important; + } + + .xl\:hover\:from-yellow-600:hover { + --tw-gradient-from: #d97706 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)) !important; + } + + .xl\:hover\:from-yellow-700:hover { + --tw-gradient-from: #b45309 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)) !important; + } + + .xl\:hover\:from-yellow-800:hover { + --tw-gradient-from: #92400e !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)) !important; + } + + .xl\:hover\:from-yellow-900:hover { + --tw-gradient-from: #78350f !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)) !important; + } + + .xl\:hover\:from-green-50:hover { + --tw-gradient-from: #ecfdf5 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)) !important; + } + + .xl\:hover\:from-green-100:hover { + --tw-gradient-from: #d1fae5 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)) !important; + } + + .xl\:hover\:from-green-200:hover { + --tw-gradient-from: #a7f3d0 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)) !important; + } + + .xl\:hover\:from-green-300:hover { + --tw-gradient-from: #6ee7b7 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)) !important; + } + + .xl\:hover\:from-green-400:hover { + --tw-gradient-from: #34d399 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)) !important; + } + + .xl\:hover\:from-green-500:hover { + --tw-gradient-from: #10b981 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)) !important; + } + + .xl\:hover\:from-green-600:hover { + --tw-gradient-from: #059669 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)) !important; + } + + .xl\:hover\:from-green-700:hover { + --tw-gradient-from: #047857 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)) !important; + } + + .xl\:hover\:from-green-800:hover { + --tw-gradient-from: #065f46 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)) !important; + } + + .xl\:hover\:from-green-900:hover { + --tw-gradient-from: #064e3b !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)) !important; + } + + .xl\:hover\:from-blue-50:hover { + --tw-gradient-from: #eff6ff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)) !important; + } + + .xl\:hover\:from-blue-100:hover { + --tw-gradient-from: #dbeafe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)) !important; + } + + .xl\:hover\:from-blue-200:hover { + --tw-gradient-from: #bfdbfe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)) !important; + } + + .xl\:hover\:from-blue-300:hover { + --tw-gradient-from: #93c5fd !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)) !important; + } + + .xl\:hover\:from-blue-400:hover { + --tw-gradient-from: #60a5fa !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)) !important; + } + + .xl\:hover\:from-blue-500:hover { + --tw-gradient-from: #3b82f6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)) !important; + } + + .xl\:hover\:from-blue-600:hover { + --tw-gradient-from: #2563eb !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)) !important; + } + + .xl\:hover\:from-blue-700:hover { + --tw-gradient-from: #1d4ed8 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)) !important; + } + + .xl\:hover\:from-blue-800:hover { + --tw-gradient-from: #1e40af !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)) !important; + } + + .xl\:hover\:from-blue-900:hover { + --tw-gradient-from: #1e3a8a !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)) !important; + } + + .xl\:hover\:from-indigo-50:hover { + --tw-gradient-from: #eef2ff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)) !important; + } + + .xl\:hover\:from-indigo-100:hover { + --tw-gradient-from: #e0e7ff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)) !important; + } + + .xl\:hover\:from-indigo-200:hover { + --tw-gradient-from: #c7d2fe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)) !important; + } + + .xl\:hover\:from-indigo-300:hover { + --tw-gradient-from: #a5b4fc !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)) !important; + } + + .xl\:hover\:from-indigo-400:hover { + --tw-gradient-from: #818cf8 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)) !important; + } + + .xl\:hover\:from-indigo-500:hover { + --tw-gradient-from: #6366f1 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)) !important; + } + + .xl\:hover\:from-indigo-600:hover { + --tw-gradient-from: #4f46e5 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)) !important; + } + + .xl\:hover\:from-indigo-700:hover { + --tw-gradient-from: #4338ca !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)) !important; + } + + .xl\:hover\:from-indigo-800:hover { + --tw-gradient-from: #3730a3 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)) !important; + } + + .xl\:hover\:from-indigo-900:hover { + --tw-gradient-from: #312e81 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)) !important; + } + + .xl\:hover\:from-purple-50:hover { + --tw-gradient-from: #f5f3ff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)) !important; + } + + .xl\:hover\:from-purple-100:hover { + --tw-gradient-from: #ede9fe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)) !important; + } + + .xl\:hover\:from-purple-200:hover { + --tw-gradient-from: #ddd6fe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)) !important; + } + + .xl\:hover\:from-purple-300:hover { + --tw-gradient-from: #c4b5fd !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)) !important; + } + + .xl\:hover\:from-purple-400:hover { + --tw-gradient-from: #a78bfa !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)) !important; + } + + .xl\:hover\:from-purple-500:hover { + --tw-gradient-from: #8b5cf6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)) !important; + } + + .xl\:hover\:from-purple-600:hover { + --tw-gradient-from: #7c3aed !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)) !important; + } + + .xl\:hover\:from-purple-700:hover { + --tw-gradient-from: #6d28d9 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)) !important; + } + + .xl\:hover\:from-purple-800:hover { + --tw-gradient-from: #5b21b6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)) !important; + } + + .xl\:hover\:from-purple-900:hover { + --tw-gradient-from: #4c1d95 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)) !important; + } + + .xl\:hover\:from-pink-50:hover { + --tw-gradient-from: #fdf2f8 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)) !important; + } + + .xl\:hover\:from-pink-100:hover { + --tw-gradient-from: #fce7f3 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)) !important; + } + + .xl\:hover\:from-pink-200:hover { + --tw-gradient-from: #fbcfe8 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)) !important; + } + + .xl\:hover\:from-pink-300:hover { + --tw-gradient-from: #f9a8d4 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)) !important; + } + + .xl\:hover\:from-pink-400:hover { + --tw-gradient-from: #f472b6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)) !important; + } + + .xl\:hover\:from-pink-500:hover { + --tw-gradient-from: #ec4899 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)) !important; + } + + .xl\:hover\:from-pink-600:hover { + --tw-gradient-from: #db2777 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)) !important; + } + + .xl\:hover\:from-pink-700:hover { + --tw-gradient-from: #be185d !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)) !important; + } + + .xl\:hover\:from-pink-800:hover { + --tw-gradient-from: #9d174d !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)) !important; + } + + .xl\:hover\:from-pink-900:hover { + --tw-gradient-from: #831843 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)) !important; + } + + .xl\:hover\:from-primary:hover { + --tw-gradient-from: #003197 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 49, 151, 0)) !important; + } + + .xl\:hover\:via-transparent:hover { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; + } + + .xl\:hover\:via-current:hover { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; + } + + .xl\:hover\:via-black:hover { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; + } + + .xl\:hover\:via-white:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; + } + + .xl\:hover\:via-gray-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)) !important; + } + + .xl\:hover\:via-gray-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)) !important; + } + + .xl\:hover\:via-gray-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)) !important; + } + + .xl\:hover\:via-gray-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)) !important; + } + + .xl\:hover\:via-gray-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)) !important; + } + + .xl\:hover\:via-gray-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)) !important; + } + + .xl\:hover\:via-gray-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)) !important; + } + + .xl\:hover\:via-gray-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)) !important; + } + + .xl\:hover\:via-gray-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)) !important; + } + + .xl\:hover\:via-gray-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)) !important; + } + + .xl\:hover\:via-red-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)) !important; + } + + .xl\:hover\:via-red-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)) !important; + } + + .xl\:hover\:via-red-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)) !important; + } + + .xl\:hover\:via-red-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)) !important; + } + + .xl\:hover\:via-red-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)) !important; + } + + .xl\:hover\:via-red-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)) !important; + } + + .xl\:hover\:via-red-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)) !important; + } + + .xl\:hover\:via-red-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)) !important; + } + + .xl\:hover\:via-red-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)) !important; + } + + .xl\:hover\:via-red-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important; + } + + .xl\:hover\:via-yellow-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)) !important; + } + + .xl\:hover\:via-yellow-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)) !important; + } + + .xl\:hover\:via-yellow-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)) !important; + } + + .xl\:hover\:via-yellow-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)) !important; + } + + .xl\:hover\:via-yellow-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)) !important; + } + + .xl\:hover\:via-yellow-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)) !important; + } + + .xl\:hover\:via-yellow-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)) !important; + } + + .xl\:hover\:via-yellow-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)) !important; + } + + .xl\:hover\:via-yellow-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)) !important; + } + + .xl\:hover\:via-yellow-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)) !important; + } + + .xl\:hover\:via-green-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)) !important; + } + + .xl\:hover\:via-green-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)) !important; + } + + .xl\:hover\:via-green-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)) !important; + } + + .xl\:hover\:via-green-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)) !important; + } + + .xl\:hover\:via-green-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)) !important; + } + + .xl\:hover\:via-green-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)) !important; + } + + .xl\:hover\:via-green-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)) !important; + } + + .xl\:hover\:via-green-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)) !important; + } + + .xl\:hover\:via-green-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)) !important; + } + + .xl\:hover\:via-green-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)) !important; + } + + .xl\:hover\:via-blue-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)) !important; + } + + .xl\:hover\:via-blue-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)) !important; + } + + .xl\:hover\:via-blue-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)) !important; + } + + .xl\:hover\:via-blue-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)) !important; + } + + .xl\:hover\:via-blue-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)) !important; + } + + .xl\:hover\:via-blue-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)) !important; + } + + .xl\:hover\:via-blue-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)) !important; + } + + .xl\:hover\:via-blue-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)) !important; + } + + .xl\:hover\:via-blue-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)) !important; + } + + .xl\:hover\:via-blue-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)) !important; + } + + .xl\:hover\:via-indigo-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)) !important; + } + + .xl\:hover\:via-indigo-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)) !important; + } + + .xl\:hover\:via-indigo-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)) !important; + } + + .xl\:hover\:via-indigo-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)) !important; + } + + .xl\:hover\:via-indigo-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)) !important; + } + + .xl\:hover\:via-indigo-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)) !important; + } + + .xl\:hover\:via-indigo-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)) !important; + } + + .xl\:hover\:via-indigo-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)) !important; + } + + .xl\:hover\:via-indigo-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)) !important; + } + + .xl\:hover\:via-indigo-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)) !important; + } + + .xl\:hover\:via-purple-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)) !important; + } + + .xl\:hover\:via-purple-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)) !important; + } + + .xl\:hover\:via-purple-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)) !important; + } + + .xl\:hover\:via-purple-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)) !important; + } + + .xl\:hover\:via-purple-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)) !important; + } + + .xl\:hover\:via-purple-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)) !important; + } + + .xl\:hover\:via-purple-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)) !important; + } + + .xl\:hover\:via-purple-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)) !important; + } + + .xl\:hover\:via-purple-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)) !important; + } + + .xl\:hover\:via-purple-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)) !important; + } + + .xl\:hover\:via-pink-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)) !important; + } + + .xl\:hover\:via-pink-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)) !important; + } + + .xl\:hover\:via-pink-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)) !important; + } + + .xl\:hover\:via-pink-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)) !important; + } + + .xl\:hover\:via-pink-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)) !important; + } + + .xl\:hover\:via-pink-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)) !important; + } + + .xl\:hover\:via-pink-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)) !important; + } + + .xl\:hover\:via-pink-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)) !important; + } + + .xl\:hover\:via-pink-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)) !important; + } + + .xl\:hover\:via-pink-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)) !important; + } + + .xl\:hover\:via-primary:hover { + --tw-gradient-stops: var(--tw-gradient-from), #003197, var(--tw-gradient-to, rgba(0, 49, 151, 0)) !important; + } + + .xl\:hover\:to-transparent:hover { + --tw-gradient-to: transparent !important; + } + + .xl\:hover\:to-current:hover { + --tw-gradient-to: currentColor !important; + } + + .xl\:hover\:to-black:hover { + --tw-gradient-to: #000 !important; + } + + .xl\:hover\:to-white:hover { + --tw-gradient-to: #fff !important; + } + + .xl\:hover\:to-gray-50:hover { + --tw-gradient-to: #f9fafb !important; + } + + .xl\:hover\:to-gray-100:hover { + --tw-gradient-to: #f3f4f6 !important; + } + + .xl\:hover\:to-gray-200:hover { + --tw-gradient-to: #e5e7eb !important; + } + + .xl\:hover\:to-gray-300:hover { + --tw-gradient-to: #d1d5db !important; + } + + .xl\:hover\:to-gray-400:hover { + --tw-gradient-to: #9ca3af !important; + } + + .xl\:hover\:to-gray-500:hover { + --tw-gradient-to: #6b7280 !important; + } + + .xl\:hover\:to-gray-600:hover { + --tw-gradient-to: #4b5563 !important; + } + + .xl\:hover\:to-gray-700:hover { + --tw-gradient-to: #374151 !important; + } + + .xl\:hover\:to-gray-800:hover { + --tw-gradient-to: #1f2937 !important; + } + + .xl\:hover\:to-gray-900:hover { + --tw-gradient-to: #111827 !important; + } + + .xl\:hover\:to-red-50:hover { + --tw-gradient-to: #fef2f2 !important; + } + + .xl\:hover\:to-red-100:hover { + --tw-gradient-to: #fee2e2 !important; + } + + .xl\:hover\:to-red-200:hover { + --tw-gradient-to: #fecaca !important; + } + + .xl\:hover\:to-red-300:hover { + --tw-gradient-to: #fca5a5 !important; + } + + .xl\:hover\:to-red-400:hover { + --tw-gradient-to: #f87171 !important; + } + + .xl\:hover\:to-red-500:hover { + --tw-gradient-to: #ef4444 !important; + } + + .xl\:hover\:to-red-600:hover { + --tw-gradient-to: #dc2626 !important; + } + + .xl\:hover\:to-red-700:hover { + --tw-gradient-to: #b91c1c !important; + } + + .xl\:hover\:to-red-800:hover { + --tw-gradient-to: #991b1b !important; + } + + .xl\:hover\:to-red-900:hover { + --tw-gradient-to: #7f1d1d !important; + } + + .xl\:hover\:to-yellow-50:hover { + --tw-gradient-to: #fffbeb !important; + } + + .xl\:hover\:to-yellow-100:hover { + --tw-gradient-to: #fef3c7 !important; + } + + .xl\:hover\:to-yellow-200:hover { + --tw-gradient-to: #fde68a !important; + } + + .xl\:hover\:to-yellow-300:hover { + --tw-gradient-to: #fcd34d !important; + } + + .xl\:hover\:to-yellow-400:hover { + --tw-gradient-to: #fbbf24 !important; + } + + .xl\:hover\:to-yellow-500:hover { + --tw-gradient-to: #f59e0b !important; + } + + .xl\:hover\:to-yellow-600:hover { + --tw-gradient-to: #d97706 !important; + } + + .xl\:hover\:to-yellow-700:hover { + --tw-gradient-to: #b45309 !important; + } + + .xl\:hover\:to-yellow-800:hover { + --tw-gradient-to: #92400e !important; + } + + .xl\:hover\:to-yellow-900:hover { + --tw-gradient-to: #78350f !important; + } + + .xl\:hover\:to-green-50:hover { + --tw-gradient-to: #ecfdf5 !important; + } + + .xl\:hover\:to-green-100:hover { + --tw-gradient-to: #d1fae5 !important; + } + + .xl\:hover\:to-green-200:hover { + --tw-gradient-to: #a7f3d0 !important; + } + + .xl\:hover\:to-green-300:hover { + --tw-gradient-to: #6ee7b7 !important; + } + + .xl\:hover\:to-green-400:hover { + --tw-gradient-to: #34d399 !important; + } + + .xl\:hover\:to-green-500:hover { + --tw-gradient-to: #10b981 !important; + } + + .xl\:hover\:to-green-600:hover { + --tw-gradient-to: #059669 !important; + } + + .xl\:hover\:to-green-700:hover { + --tw-gradient-to: #047857 !important; + } + + .xl\:hover\:to-green-800:hover { + --tw-gradient-to: #065f46 !important; + } + + .xl\:hover\:to-green-900:hover { + --tw-gradient-to: #064e3b !important; + } + + .xl\:hover\:to-blue-50:hover { + --tw-gradient-to: #eff6ff !important; + } + + .xl\:hover\:to-blue-100:hover { + --tw-gradient-to: #dbeafe !important; + } + + .xl\:hover\:to-blue-200:hover { + --tw-gradient-to: #bfdbfe !important; + } + + .xl\:hover\:to-blue-300:hover { + --tw-gradient-to: #93c5fd !important; + } + + .xl\:hover\:to-blue-400:hover { + --tw-gradient-to: #60a5fa !important; + } + + .xl\:hover\:to-blue-500:hover { + --tw-gradient-to: #3b82f6 !important; + } + + .xl\:hover\:to-blue-600:hover { + --tw-gradient-to: #2563eb !important; + } + + .xl\:hover\:to-blue-700:hover { + --tw-gradient-to: #1d4ed8 !important; + } + + .xl\:hover\:to-blue-800:hover { + --tw-gradient-to: #1e40af !important; + } + + .xl\:hover\:to-blue-900:hover { + --tw-gradient-to: #1e3a8a !important; + } + + .xl\:hover\:to-indigo-50:hover { + --tw-gradient-to: #eef2ff !important; + } + + .xl\:hover\:to-indigo-100:hover { + --tw-gradient-to: #e0e7ff !important; + } + + .xl\:hover\:to-indigo-200:hover { + --tw-gradient-to: #c7d2fe !important; + } + + .xl\:hover\:to-indigo-300:hover { + --tw-gradient-to: #a5b4fc !important; + } + + .xl\:hover\:to-indigo-400:hover { + --tw-gradient-to: #818cf8 !important; + } + + .xl\:hover\:to-indigo-500:hover { + --tw-gradient-to: #6366f1 !important; + } + + .xl\:hover\:to-indigo-600:hover { + --tw-gradient-to: #4f46e5 !important; + } + + .xl\:hover\:to-indigo-700:hover { + --tw-gradient-to: #4338ca !important; + } + + .xl\:hover\:to-indigo-800:hover { + --tw-gradient-to: #3730a3 !important; + } + + .xl\:hover\:to-indigo-900:hover { + --tw-gradient-to: #312e81 !important; + } + + .xl\:hover\:to-purple-50:hover { + --tw-gradient-to: #f5f3ff !important; + } + + .xl\:hover\:to-purple-100:hover { + --tw-gradient-to: #ede9fe !important; + } + + .xl\:hover\:to-purple-200:hover { + --tw-gradient-to: #ddd6fe !important; + } + + .xl\:hover\:to-purple-300:hover { + --tw-gradient-to: #c4b5fd !important; + } + + .xl\:hover\:to-purple-400:hover { + --tw-gradient-to: #a78bfa !important; + } + + .xl\:hover\:to-purple-500:hover { + --tw-gradient-to: #8b5cf6 !important; + } + + .xl\:hover\:to-purple-600:hover { + --tw-gradient-to: #7c3aed !important; + } + + .xl\:hover\:to-purple-700:hover { + --tw-gradient-to: #6d28d9 !important; + } + + .xl\:hover\:to-purple-800:hover { + --tw-gradient-to: #5b21b6 !important; + } + + .xl\:hover\:to-purple-900:hover { + --tw-gradient-to: #4c1d95 !important; + } + + .xl\:hover\:to-pink-50:hover { + --tw-gradient-to: #fdf2f8 !important; + } + + .xl\:hover\:to-pink-100:hover { + --tw-gradient-to: #fce7f3 !important; + } + + .xl\:hover\:to-pink-200:hover { + --tw-gradient-to: #fbcfe8 !important; + } + + .xl\:hover\:to-pink-300:hover { + --tw-gradient-to: #f9a8d4 !important; + } + + .xl\:hover\:to-pink-400:hover { + --tw-gradient-to: #f472b6 !important; + } + + .xl\:hover\:to-pink-500:hover { + --tw-gradient-to: #ec4899 !important; + } + + .xl\:hover\:to-pink-600:hover { + --tw-gradient-to: #db2777 !important; + } + + .xl\:hover\:to-pink-700:hover { + --tw-gradient-to: #be185d !important; + } + + .xl\:hover\:to-pink-800:hover { + --tw-gradient-to: #9d174d !important; + } + + .xl\:hover\:to-pink-900:hover { + --tw-gradient-to: #831843 !important; + } + + .xl\:hover\:to-primary:hover { + --tw-gradient-to: #003197 !important; + } + + .xl\:focus\:from-transparent:focus { + --tw-gradient-from: transparent !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; + } + + .xl\:focus\:from-current:focus { + --tw-gradient-from: currentColor !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; + } + + .xl\:focus\:from-black:focus { + --tw-gradient-from: #000 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; + } + + .xl\:focus\:from-white:focus { + --tw-gradient-from: #fff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; + } + + .xl\:focus\:from-gray-50:focus { + --tw-gradient-from: #f9fafb !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)) !important; + } + + .xl\:focus\:from-gray-100:focus { + --tw-gradient-from: #f3f4f6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)) !important; + } + + .xl\:focus\:from-gray-200:focus { + --tw-gradient-from: #e5e7eb !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)) !important; + } + + .xl\:focus\:from-gray-300:focus { + --tw-gradient-from: #d1d5db !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)) !important; + } + + .xl\:focus\:from-gray-400:focus { + --tw-gradient-from: #9ca3af !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)) !important; + } + + .xl\:focus\:from-gray-500:focus { + --tw-gradient-from: #6b7280 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)) !important; + } + + .xl\:focus\:from-gray-600:focus { + --tw-gradient-from: #4b5563 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)) !important; + } + + .xl\:focus\:from-gray-700:focus { + --tw-gradient-from: #374151 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)) !important; + } + + .xl\:focus\:from-gray-800:focus { + --tw-gradient-from: #1f2937 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)) !important; + } + + .xl\:focus\:from-gray-900:focus { + --tw-gradient-from: #111827 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)) !important; + } + + .xl\:focus\:from-red-50:focus { + --tw-gradient-from: #fef2f2 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)) !important; + } + + .xl\:focus\:from-red-100:focus { + --tw-gradient-from: #fee2e2 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)) !important; + } + + .xl\:focus\:from-red-200:focus { + --tw-gradient-from: #fecaca !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)) !important; + } + + .xl\:focus\:from-red-300:focus { + --tw-gradient-from: #fca5a5 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)) !important; + } + + .xl\:focus\:from-red-400:focus { + --tw-gradient-from: #f87171 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)) !important; + } + + .xl\:focus\:from-red-500:focus { + --tw-gradient-from: #ef4444 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)) !important; + } + + .xl\:focus\:from-red-600:focus { + --tw-gradient-from: #dc2626 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)) !important; + } + + .xl\:focus\:from-red-700:focus { + --tw-gradient-from: #b91c1c !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)) !important; + } + + .xl\:focus\:from-red-800:focus { + --tw-gradient-from: #991b1b !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)) !important; + } + + .xl\:focus\:from-red-900:focus { + --tw-gradient-from: #7f1d1d !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important; + } + + .xl\:focus\:from-yellow-50:focus { + --tw-gradient-from: #fffbeb !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)) !important; + } + + .xl\:focus\:from-yellow-100:focus { + --tw-gradient-from: #fef3c7 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)) !important; + } + + .xl\:focus\:from-yellow-200:focus { + --tw-gradient-from: #fde68a !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)) !important; + } + + .xl\:focus\:from-yellow-300:focus { + --tw-gradient-from: #fcd34d !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)) !important; + } + + .xl\:focus\:from-yellow-400:focus { + --tw-gradient-from: #fbbf24 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)) !important; + } + + .xl\:focus\:from-yellow-500:focus { + --tw-gradient-from: #f59e0b !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)) !important; + } + + .xl\:focus\:from-yellow-600:focus { + --tw-gradient-from: #d97706 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)) !important; + } + + .xl\:focus\:from-yellow-700:focus { + --tw-gradient-from: #b45309 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)) !important; + } + + .xl\:focus\:from-yellow-800:focus { + --tw-gradient-from: #92400e !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)) !important; + } + + .xl\:focus\:from-yellow-900:focus { + --tw-gradient-from: #78350f !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)) !important; + } + + .xl\:focus\:from-green-50:focus { + --tw-gradient-from: #ecfdf5 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)) !important; + } + + .xl\:focus\:from-green-100:focus { + --tw-gradient-from: #d1fae5 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)) !important; + } + + .xl\:focus\:from-green-200:focus { + --tw-gradient-from: #a7f3d0 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)) !important; + } + + .xl\:focus\:from-green-300:focus { + --tw-gradient-from: #6ee7b7 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)) !important; + } + + .xl\:focus\:from-green-400:focus { + --tw-gradient-from: #34d399 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)) !important; + } + + .xl\:focus\:from-green-500:focus { + --tw-gradient-from: #10b981 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)) !important; + } + + .xl\:focus\:from-green-600:focus { + --tw-gradient-from: #059669 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)) !important; + } + + .xl\:focus\:from-green-700:focus { + --tw-gradient-from: #047857 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)) !important; + } + + .xl\:focus\:from-green-800:focus { + --tw-gradient-from: #065f46 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)) !important; + } + + .xl\:focus\:from-green-900:focus { + --tw-gradient-from: #064e3b !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)) !important; + } + + .xl\:focus\:from-blue-50:focus { + --tw-gradient-from: #eff6ff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)) !important; + } + + .xl\:focus\:from-blue-100:focus { + --tw-gradient-from: #dbeafe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)) !important; + } + + .xl\:focus\:from-blue-200:focus { + --tw-gradient-from: #bfdbfe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)) !important; + } + + .xl\:focus\:from-blue-300:focus { + --tw-gradient-from: #93c5fd !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)) !important; + } + + .xl\:focus\:from-blue-400:focus { + --tw-gradient-from: #60a5fa !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)) !important; + } + + .xl\:focus\:from-blue-500:focus { + --tw-gradient-from: #3b82f6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)) !important; + } + + .xl\:focus\:from-blue-600:focus { + --tw-gradient-from: #2563eb !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)) !important; + } + + .xl\:focus\:from-blue-700:focus { + --tw-gradient-from: #1d4ed8 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)) !important; + } + + .xl\:focus\:from-blue-800:focus { + --tw-gradient-from: #1e40af !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)) !important; + } + + .xl\:focus\:from-blue-900:focus { + --tw-gradient-from: #1e3a8a !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)) !important; + } + + .xl\:focus\:from-indigo-50:focus { + --tw-gradient-from: #eef2ff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)) !important; + } + + .xl\:focus\:from-indigo-100:focus { + --tw-gradient-from: #e0e7ff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)) !important; + } + + .xl\:focus\:from-indigo-200:focus { + --tw-gradient-from: #c7d2fe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)) !important; + } + + .xl\:focus\:from-indigo-300:focus { + --tw-gradient-from: #a5b4fc !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)) !important; + } + + .xl\:focus\:from-indigo-400:focus { + --tw-gradient-from: #818cf8 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)) !important; + } + + .xl\:focus\:from-indigo-500:focus { + --tw-gradient-from: #6366f1 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)) !important; + } + + .xl\:focus\:from-indigo-600:focus { + --tw-gradient-from: #4f46e5 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)) !important; + } + + .xl\:focus\:from-indigo-700:focus { + --tw-gradient-from: #4338ca !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)) !important; + } + + .xl\:focus\:from-indigo-800:focus { + --tw-gradient-from: #3730a3 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)) !important; + } + + .xl\:focus\:from-indigo-900:focus { + --tw-gradient-from: #312e81 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)) !important; + } + + .xl\:focus\:from-purple-50:focus { + --tw-gradient-from: #f5f3ff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)) !important; + } + + .xl\:focus\:from-purple-100:focus { + --tw-gradient-from: #ede9fe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)) !important; + } + + .xl\:focus\:from-purple-200:focus { + --tw-gradient-from: #ddd6fe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)) !important; + } + + .xl\:focus\:from-purple-300:focus { + --tw-gradient-from: #c4b5fd !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)) !important; + } + + .xl\:focus\:from-purple-400:focus { + --tw-gradient-from: #a78bfa !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)) !important; + } + + .xl\:focus\:from-purple-500:focus { + --tw-gradient-from: #8b5cf6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)) !important; + } + + .xl\:focus\:from-purple-600:focus { + --tw-gradient-from: #7c3aed !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)) !important; + } + + .xl\:focus\:from-purple-700:focus { + --tw-gradient-from: #6d28d9 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)) !important; + } + + .xl\:focus\:from-purple-800:focus { + --tw-gradient-from: #5b21b6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)) !important; + } + + .xl\:focus\:from-purple-900:focus { + --tw-gradient-from: #4c1d95 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)) !important; + } + + .xl\:focus\:from-pink-50:focus { + --tw-gradient-from: #fdf2f8 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)) !important; + } + + .xl\:focus\:from-pink-100:focus { + --tw-gradient-from: #fce7f3 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)) !important; + } + + .xl\:focus\:from-pink-200:focus { + --tw-gradient-from: #fbcfe8 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)) !important; + } + + .xl\:focus\:from-pink-300:focus { + --tw-gradient-from: #f9a8d4 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)) !important; + } + + .xl\:focus\:from-pink-400:focus { + --tw-gradient-from: #f472b6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)) !important; + } + + .xl\:focus\:from-pink-500:focus { + --tw-gradient-from: #ec4899 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)) !important; + } + + .xl\:focus\:from-pink-600:focus { + --tw-gradient-from: #db2777 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)) !important; + } + + .xl\:focus\:from-pink-700:focus { + --tw-gradient-from: #be185d !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)) !important; + } + + .xl\:focus\:from-pink-800:focus { + --tw-gradient-from: #9d174d !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)) !important; + } + + .xl\:focus\:from-pink-900:focus { + --tw-gradient-from: #831843 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)) !important; + } + + .xl\:focus\:from-primary:focus { + --tw-gradient-from: #003197 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 49, 151, 0)) !important; + } + + .xl\:focus\:via-transparent:focus { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; + } + + .xl\:focus\:via-current:focus { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; + } + + .xl\:focus\:via-black:focus { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; + } + + .xl\:focus\:via-white:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; + } + + .xl\:focus\:via-gray-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)) !important; + } + + .xl\:focus\:via-gray-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)) !important; + } + + .xl\:focus\:via-gray-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)) !important; + } + + .xl\:focus\:via-gray-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)) !important; + } + + .xl\:focus\:via-gray-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)) !important; + } + + .xl\:focus\:via-gray-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)) !important; + } + + .xl\:focus\:via-gray-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)) !important; + } + + .xl\:focus\:via-gray-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)) !important; + } + + .xl\:focus\:via-gray-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)) !important; + } + + .xl\:focus\:via-gray-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)) !important; + } + + .xl\:focus\:via-red-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)) !important; + } + + .xl\:focus\:via-red-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)) !important; + } + + .xl\:focus\:via-red-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)) !important; + } + + .xl\:focus\:via-red-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)) !important; + } + + .xl\:focus\:via-red-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)) !important; + } + + .xl\:focus\:via-red-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)) !important; + } + + .xl\:focus\:via-red-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)) !important; + } + + .xl\:focus\:via-red-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)) !important; + } + + .xl\:focus\:via-red-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)) !important; + } + + .xl\:focus\:via-red-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important; + } + + .xl\:focus\:via-yellow-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)) !important; + } + + .xl\:focus\:via-yellow-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)) !important; + } + + .xl\:focus\:via-yellow-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)) !important; + } + + .xl\:focus\:via-yellow-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)) !important; + } + + .xl\:focus\:via-yellow-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)) !important; + } + + .xl\:focus\:via-yellow-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)) !important; + } + + .xl\:focus\:via-yellow-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)) !important; + } + + .xl\:focus\:via-yellow-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)) !important; + } + + .xl\:focus\:via-yellow-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)) !important; + } + + .xl\:focus\:via-yellow-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)) !important; + } + + .xl\:focus\:via-green-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)) !important; + } + + .xl\:focus\:via-green-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)) !important; + } + + .xl\:focus\:via-green-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)) !important; + } + + .xl\:focus\:via-green-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)) !important; + } + + .xl\:focus\:via-green-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)) !important; + } + + .xl\:focus\:via-green-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)) !important; + } + + .xl\:focus\:via-green-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)) !important; + } + + .xl\:focus\:via-green-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)) !important; + } + + .xl\:focus\:via-green-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)) !important; + } + + .xl\:focus\:via-green-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)) !important; + } + + .xl\:focus\:via-blue-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)) !important; + } + + .xl\:focus\:via-blue-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)) !important; + } + + .xl\:focus\:via-blue-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)) !important; + } + + .xl\:focus\:via-blue-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)) !important; + } + + .xl\:focus\:via-blue-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)) !important; + } + + .xl\:focus\:via-blue-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)) !important; + } + + .xl\:focus\:via-blue-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)) !important; + } + + .xl\:focus\:via-blue-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)) !important; + } + + .xl\:focus\:via-blue-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)) !important; + } + + .xl\:focus\:via-blue-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)) !important; + } + + .xl\:focus\:via-indigo-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)) !important; + } + + .xl\:focus\:via-indigo-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)) !important; + } + + .xl\:focus\:via-indigo-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)) !important; + } + + .xl\:focus\:via-indigo-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)) !important; + } + + .xl\:focus\:via-indigo-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)) !important; + } + + .xl\:focus\:via-indigo-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)) !important; + } + + .xl\:focus\:via-indigo-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)) !important; + } + + .xl\:focus\:via-indigo-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)) !important; + } + + .xl\:focus\:via-indigo-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)) !important; + } + + .xl\:focus\:via-indigo-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)) !important; + } + + .xl\:focus\:via-purple-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)) !important; + } + + .xl\:focus\:via-purple-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)) !important; + } + + .xl\:focus\:via-purple-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)) !important; + } + + .xl\:focus\:via-purple-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)) !important; + } + + .xl\:focus\:via-purple-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)) !important; + } + + .xl\:focus\:via-purple-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)) !important; + } + + .xl\:focus\:via-purple-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)) !important; + } + + .xl\:focus\:via-purple-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)) !important; + } + + .xl\:focus\:via-purple-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)) !important; + } + + .xl\:focus\:via-purple-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)) !important; + } + + .xl\:focus\:via-pink-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)) !important; + } + + .xl\:focus\:via-pink-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)) !important; + } + + .xl\:focus\:via-pink-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)) !important; + } + + .xl\:focus\:via-pink-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)) !important; + } + + .xl\:focus\:via-pink-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)) !important; + } + + .xl\:focus\:via-pink-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)) !important; + } + + .xl\:focus\:via-pink-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)) !important; + } + + .xl\:focus\:via-pink-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)) !important; + } + + .xl\:focus\:via-pink-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)) !important; + } + + .xl\:focus\:via-pink-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)) !important; + } + + .xl\:focus\:via-primary:focus { + --tw-gradient-stops: var(--tw-gradient-from), #003197, var(--tw-gradient-to, rgba(0, 49, 151, 0)) !important; + } + + .xl\:focus\:to-transparent:focus { + --tw-gradient-to: transparent !important; + } + + .xl\:focus\:to-current:focus { + --tw-gradient-to: currentColor !important; + } + + .xl\:focus\:to-black:focus { + --tw-gradient-to: #000 !important; + } + + .xl\:focus\:to-white:focus { + --tw-gradient-to: #fff !important; + } + + .xl\:focus\:to-gray-50:focus { + --tw-gradient-to: #f9fafb !important; + } + + .xl\:focus\:to-gray-100:focus { + --tw-gradient-to: #f3f4f6 !important; + } + + .xl\:focus\:to-gray-200:focus { + --tw-gradient-to: #e5e7eb !important; + } + + .xl\:focus\:to-gray-300:focus { + --tw-gradient-to: #d1d5db !important; + } + + .xl\:focus\:to-gray-400:focus { + --tw-gradient-to: #9ca3af !important; + } + + .xl\:focus\:to-gray-500:focus { + --tw-gradient-to: #6b7280 !important; + } + + .xl\:focus\:to-gray-600:focus { + --tw-gradient-to: #4b5563 !important; + } + + .xl\:focus\:to-gray-700:focus { + --tw-gradient-to: #374151 !important; + } + + .xl\:focus\:to-gray-800:focus { + --tw-gradient-to: #1f2937 !important; + } + + .xl\:focus\:to-gray-900:focus { + --tw-gradient-to: #111827 !important; + } + + .xl\:focus\:to-red-50:focus { + --tw-gradient-to: #fef2f2 !important; + } + + .xl\:focus\:to-red-100:focus { + --tw-gradient-to: #fee2e2 !important; + } + + .xl\:focus\:to-red-200:focus { + --tw-gradient-to: #fecaca !important; + } + + .xl\:focus\:to-red-300:focus { + --tw-gradient-to: #fca5a5 !important; + } + + .xl\:focus\:to-red-400:focus { + --tw-gradient-to: #f87171 !important; + } + + .xl\:focus\:to-red-500:focus { + --tw-gradient-to: #ef4444 !important; + } + + .xl\:focus\:to-red-600:focus { + --tw-gradient-to: #dc2626 !important; + } + + .xl\:focus\:to-red-700:focus { + --tw-gradient-to: #b91c1c !important; + } + + .xl\:focus\:to-red-800:focus { + --tw-gradient-to: #991b1b !important; + } + + .xl\:focus\:to-red-900:focus { + --tw-gradient-to: #7f1d1d !important; + } + + .xl\:focus\:to-yellow-50:focus { + --tw-gradient-to: #fffbeb !important; + } + + .xl\:focus\:to-yellow-100:focus { + --tw-gradient-to: #fef3c7 !important; + } + + .xl\:focus\:to-yellow-200:focus { + --tw-gradient-to: #fde68a !important; + } + + .xl\:focus\:to-yellow-300:focus { + --tw-gradient-to: #fcd34d !important; + } + + .xl\:focus\:to-yellow-400:focus { + --tw-gradient-to: #fbbf24 !important; + } + + .xl\:focus\:to-yellow-500:focus { + --tw-gradient-to: #f59e0b !important; + } + + .xl\:focus\:to-yellow-600:focus { + --tw-gradient-to: #d97706 !important; + } + + .xl\:focus\:to-yellow-700:focus { + --tw-gradient-to: #b45309 !important; + } + + .xl\:focus\:to-yellow-800:focus { + --tw-gradient-to: #92400e !important; + } + + .xl\:focus\:to-yellow-900:focus { + --tw-gradient-to: #78350f !important; + } + + .xl\:focus\:to-green-50:focus { + --tw-gradient-to: #ecfdf5 !important; + } + + .xl\:focus\:to-green-100:focus { + --tw-gradient-to: #d1fae5 !important; + } + + .xl\:focus\:to-green-200:focus { + --tw-gradient-to: #a7f3d0 !important; + } + + .xl\:focus\:to-green-300:focus { + --tw-gradient-to: #6ee7b7 !important; + } + + .xl\:focus\:to-green-400:focus { + --tw-gradient-to: #34d399 !important; + } + + .xl\:focus\:to-green-500:focus { + --tw-gradient-to: #10b981 !important; + } + + .xl\:focus\:to-green-600:focus { + --tw-gradient-to: #059669 !important; + } + + .xl\:focus\:to-green-700:focus { + --tw-gradient-to: #047857 !important; + } + + .xl\:focus\:to-green-800:focus { + --tw-gradient-to: #065f46 !important; + } + + .xl\:focus\:to-green-900:focus { + --tw-gradient-to: #064e3b !important; + } + + .xl\:focus\:to-blue-50:focus { + --tw-gradient-to: #eff6ff !important; + } + + .xl\:focus\:to-blue-100:focus { + --tw-gradient-to: #dbeafe !important; + } + + .xl\:focus\:to-blue-200:focus { + --tw-gradient-to: #bfdbfe !important; + } + + .xl\:focus\:to-blue-300:focus { + --tw-gradient-to: #93c5fd !important; + } + + .xl\:focus\:to-blue-400:focus { + --tw-gradient-to: #60a5fa !important; + } + + .xl\:focus\:to-blue-500:focus { + --tw-gradient-to: #3b82f6 !important; + } + + .xl\:focus\:to-blue-600:focus { + --tw-gradient-to: #2563eb !important; + } + + .xl\:focus\:to-blue-700:focus { + --tw-gradient-to: #1d4ed8 !important; + } + + .xl\:focus\:to-blue-800:focus { + --tw-gradient-to: #1e40af !important; + } + + .xl\:focus\:to-blue-900:focus { + --tw-gradient-to: #1e3a8a !important; + } + + .xl\:focus\:to-indigo-50:focus { + --tw-gradient-to: #eef2ff !important; + } + + .xl\:focus\:to-indigo-100:focus { + --tw-gradient-to: #e0e7ff !important; + } + + .xl\:focus\:to-indigo-200:focus { + --tw-gradient-to: #c7d2fe !important; + } + + .xl\:focus\:to-indigo-300:focus { + --tw-gradient-to: #a5b4fc !important; + } + + .xl\:focus\:to-indigo-400:focus { + --tw-gradient-to: #818cf8 !important; + } + + .xl\:focus\:to-indigo-500:focus { + --tw-gradient-to: #6366f1 !important; + } + + .xl\:focus\:to-indigo-600:focus { + --tw-gradient-to: #4f46e5 !important; + } + + .xl\:focus\:to-indigo-700:focus { + --tw-gradient-to: #4338ca !important; + } + + .xl\:focus\:to-indigo-800:focus { + --tw-gradient-to: #3730a3 !important; + } + + .xl\:focus\:to-indigo-900:focus { + --tw-gradient-to: #312e81 !important; + } + + .xl\:focus\:to-purple-50:focus { + --tw-gradient-to: #f5f3ff !important; + } + + .xl\:focus\:to-purple-100:focus { + --tw-gradient-to: #ede9fe !important; + } + + .xl\:focus\:to-purple-200:focus { + --tw-gradient-to: #ddd6fe !important; + } + + .xl\:focus\:to-purple-300:focus { + --tw-gradient-to: #c4b5fd !important; + } + + .xl\:focus\:to-purple-400:focus { + --tw-gradient-to: #a78bfa !important; + } + + .xl\:focus\:to-purple-500:focus { + --tw-gradient-to: #8b5cf6 !important; + } + + .xl\:focus\:to-purple-600:focus { + --tw-gradient-to: #7c3aed !important; + } + + .xl\:focus\:to-purple-700:focus { + --tw-gradient-to: #6d28d9 !important; + } + + .xl\:focus\:to-purple-800:focus { + --tw-gradient-to: #5b21b6 !important; + } + + .xl\:focus\:to-purple-900:focus { + --tw-gradient-to: #4c1d95 !important; + } + + .xl\:focus\:to-pink-50:focus { + --tw-gradient-to: #fdf2f8 !important; + } + + .xl\:focus\:to-pink-100:focus { + --tw-gradient-to: #fce7f3 !important; + } + + .xl\:focus\:to-pink-200:focus { + --tw-gradient-to: #fbcfe8 !important; + } + + .xl\:focus\:to-pink-300:focus { + --tw-gradient-to: #f9a8d4 !important; + } + + .xl\:focus\:to-pink-400:focus { + --tw-gradient-to: #f472b6 !important; + } + + .xl\:focus\:to-pink-500:focus { + --tw-gradient-to: #ec4899 !important; + } + + .xl\:focus\:to-pink-600:focus { + --tw-gradient-to: #db2777 !important; + } + + .xl\:focus\:to-pink-700:focus { + --tw-gradient-to: #be185d !important; + } + + .xl\:focus\:to-pink-800:focus { + --tw-gradient-to: #9d174d !important; + } + + .xl\:focus\:to-pink-900:focus { + --tw-gradient-to: #831843 !important; + } + + .xl\:focus\:to-primary:focus { + --tw-gradient-to: #003197 !important; + } + + .xl\:bg-opacity-0 { + --tw-bg-opacity: 0 !important; + } + + .xl\:bg-opacity-5 { + --tw-bg-opacity: 0.05 !important; + } + + .xl\:bg-opacity-10 { + --tw-bg-opacity: 0.1 !important; + } + + .xl\:bg-opacity-20 { + --tw-bg-opacity: 0.2 !important; + } + + .xl\:bg-opacity-25 { + --tw-bg-opacity: 0.25 !important; + } + + .xl\:bg-opacity-30 { + --tw-bg-opacity: 0.3 !important; + } + + .xl\:bg-opacity-40 { + --tw-bg-opacity: 0.4 !important; + } + + .xl\:bg-opacity-50 { + --tw-bg-opacity: 0.5 !important; + } + + .xl\:bg-opacity-60 { + --tw-bg-opacity: 0.6 !important; + } + + .xl\:bg-opacity-70 { + --tw-bg-opacity: 0.7 !important; + } + + .xl\:bg-opacity-75 { + --tw-bg-opacity: 0.75 !important; + } + + .xl\:bg-opacity-80 { + --tw-bg-opacity: 0.8 !important; + } + + .xl\:bg-opacity-90 { + --tw-bg-opacity: 0.9 !important; + } + + .xl\:bg-opacity-95 { + --tw-bg-opacity: 0.95 !important; + } + + .xl\:bg-opacity-100 { + --tw-bg-opacity: 1 !important; + } + + .group:hover .xl\:group-hover\:bg-opacity-0 { + --tw-bg-opacity: 0 !important; + } + + .group:hover .xl\:group-hover\:bg-opacity-5 { + --tw-bg-opacity: 0.05 !important; + } + + .group:hover .xl\:group-hover\:bg-opacity-10 { + --tw-bg-opacity: 0.1 !important; + } + + .group:hover .xl\:group-hover\:bg-opacity-20 { + --tw-bg-opacity: 0.2 !important; + } + + .group:hover .xl\:group-hover\:bg-opacity-25 { + --tw-bg-opacity: 0.25 !important; + } + + .group:hover .xl\:group-hover\:bg-opacity-30 { + --tw-bg-opacity: 0.3 !important; + } + + .group:hover .xl\:group-hover\:bg-opacity-40 { + --tw-bg-opacity: 0.4 !important; + } + + .group:hover .xl\:group-hover\:bg-opacity-50 { + --tw-bg-opacity: 0.5 !important; + } + + .group:hover .xl\:group-hover\:bg-opacity-60 { + --tw-bg-opacity: 0.6 !important; + } + + .group:hover .xl\:group-hover\:bg-opacity-70 { + --tw-bg-opacity: 0.7 !important; + } + + .group:hover .xl\:group-hover\:bg-opacity-75 { + --tw-bg-opacity: 0.75 !important; + } + + .group:hover .xl\:group-hover\:bg-opacity-80 { + --tw-bg-opacity: 0.8 !important; + } + + .group:hover .xl\:group-hover\:bg-opacity-90 { + --tw-bg-opacity: 0.9 !important; + } + + .group:hover .xl\:group-hover\:bg-opacity-95 { + --tw-bg-opacity: 0.95 !important; + } + + .group:hover .xl\:group-hover\:bg-opacity-100 { + --tw-bg-opacity: 1 !important; + } + + .xl\:focus-within\:bg-opacity-0:focus-within { + --tw-bg-opacity: 0 !important; + } + + .xl\:focus-within\:bg-opacity-5:focus-within { + --tw-bg-opacity: 0.05 !important; + } + + .xl\:focus-within\:bg-opacity-10:focus-within { + --tw-bg-opacity: 0.1 !important; + } + + .xl\:focus-within\:bg-opacity-20:focus-within { + --tw-bg-opacity: 0.2 !important; + } + + .xl\:focus-within\:bg-opacity-25:focus-within { + --tw-bg-opacity: 0.25 !important; + } + + .xl\:focus-within\:bg-opacity-30:focus-within { + --tw-bg-opacity: 0.3 !important; + } + + .xl\:focus-within\:bg-opacity-40:focus-within { + --tw-bg-opacity: 0.4 !important; + } + + .xl\:focus-within\:bg-opacity-50:focus-within { + --tw-bg-opacity: 0.5 !important; + } + + .xl\:focus-within\:bg-opacity-60:focus-within { + --tw-bg-opacity: 0.6 !important; + } + + .xl\:focus-within\:bg-opacity-70:focus-within { + --tw-bg-opacity: 0.7 !important; + } + + .xl\:focus-within\:bg-opacity-75:focus-within { + --tw-bg-opacity: 0.75 !important; + } + + .xl\:focus-within\:bg-opacity-80:focus-within { + --tw-bg-opacity: 0.8 !important; + } + + .xl\:focus-within\:bg-opacity-90:focus-within { + --tw-bg-opacity: 0.9 !important; + } + + .xl\:focus-within\:bg-opacity-95:focus-within { + --tw-bg-opacity: 0.95 !important; + } + + .xl\:focus-within\:bg-opacity-100:focus-within { + --tw-bg-opacity: 1 !important; + } + + .xl\:hover\:bg-opacity-0:hover { + --tw-bg-opacity: 0 !important; + } + + .xl\:hover\:bg-opacity-5:hover { + --tw-bg-opacity: 0.05 !important; + } + + .xl\:hover\:bg-opacity-10:hover { + --tw-bg-opacity: 0.1 !important; + } + + .xl\:hover\:bg-opacity-20:hover { + --tw-bg-opacity: 0.2 !important; + } + + .xl\:hover\:bg-opacity-25:hover { + --tw-bg-opacity: 0.25 !important; + } + + .xl\:hover\:bg-opacity-30:hover { + --tw-bg-opacity: 0.3 !important; + } + + .xl\:hover\:bg-opacity-40:hover { + --tw-bg-opacity: 0.4 !important; + } + + .xl\:hover\:bg-opacity-50:hover { + --tw-bg-opacity: 0.5 !important; + } + + .xl\:hover\:bg-opacity-60:hover { + --tw-bg-opacity: 0.6 !important; + } + + .xl\:hover\:bg-opacity-70:hover { + --tw-bg-opacity: 0.7 !important; + } + + .xl\:hover\:bg-opacity-75:hover { + --tw-bg-opacity: 0.75 !important; + } + + .xl\:hover\:bg-opacity-80:hover { + --tw-bg-opacity: 0.8 !important; + } + + .xl\:hover\:bg-opacity-90:hover { + --tw-bg-opacity: 0.9 !important; + } + + .xl\:hover\:bg-opacity-95:hover { + --tw-bg-opacity: 0.95 !important; + } + + .xl\:hover\:bg-opacity-100:hover { + --tw-bg-opacity: 1 !important; + } + + .xl\:focus\:bg-opacity-0:focus { + --tw-bg-opacity: 0 !important; + } + + .xl\:focus\:bg-opacity-5:focus { + --tw-bg-opacity: 0.05 !important; + } + + .xl\:focus\:bg-opacity-10:focus { + --tw-bg-opacity: 0.1 !important; + } + + .xl\:focus\:bg-opacity-20:focus { + --tw-bg-opacity: 0.2 !important; + } + + .xl\:focus\:bg-opacity-25:focus { + --tw-bg-opacity: 0.25 !important; + } + + .xl\:focus\:bg-opacity-30:focus { + --tw-bg-opacity: 0.3 !important; + } + + .xl\:focus\:bg-opacity-40:focus { + --tw-bg-opacity: 0.4 !important; + } + + .xl\:focus\:bg-opacity-50:focus { + --tw-bg-opacity: 0.5 !important; + } + + .xl\:focus\:bg-opacity-60:focus { + --tw-bg-opacity: 0.6 !important; + } + + .xl\:focus\:bg-opacity-70:focus { + --tw-bg-opacity: 0.7 !important; + } + + .xl\:focus\:bg-opacity-75:focus { + --tw-bg-opacity: 0.75 !important; + } + + .xl\:focus\:bg-opacity-80:focus { + --tw-bg-opacity: 0.8 !important; + } + + .xl\:focus\:bg-opacity-90:focus { + --tw-bg-opacity: 0.9 !important; + } + + .xl\:focus\:bg-opacity-95:focus { + --tw-bg-opacity: 0.95 !important; + } + + .xl\:focus\:bg-opacity-100:focus { + --tw-bg-opacity: 1 !important; + } + + .xl\:bg-bottom { + background-position: bottom !important; + } + + .xl\:bg-center { + background-position: center !important; + } + + .xl\:bg-left { + background-position: left !important; + } + + .xl\:bg-left-bottom { + background-position: left bottom !important; + } + + .xl\:bg-left-top { + background-position: left top !important; + } + + .xl\:bg-right { + background-position: right !important; + } + + .xl\:bg-right-bottom { + background-position: right bottom !important; + } + + .xl\:bg-right-top { + background-position: right top !important; + } + + .xl\:bg-top { + background-position: top !important; + } + + .xl\:bg-repeat { + background-repeat: repeat !important; + } + + .xl\:bg-no-repeat { + background-repeat: no-repeat !important; + } + + .xl\:bg-repeat-x { + background-repeat: repeat-x !important; + } + + .xl\:bg-repeat-y { + background-repeat: repeat-y !important; + } + + .xl\:bg-repeat-round { + background-repeat: round !important; + } + + .xl\:bg-repeat-space { + background-repeat: space !important; + } + + .xl\:bg-auto { + background-size: auto !important; + } + + .xl\:bg-cover { + background-size: cover !important; + } + + .xl\:bg-contain { + background-size: contain !important; + } + + .xl\:border-collapse { + border-collapse: collapse !important; + } + + .xl\:border-separate { + border-collapse: separate !important; + } + + .xl\:border-transparent { + border-color: transparent !important; + } + + .xl\:border-current { + border-color: currentColor !important; + } + + .xl\:border-black { + --tw-border-opacity: 1 !important; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important; + } + + .xl\:border-white { + --tw-border-opacity: 1 !important; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important; + } + + .xl\:border-gray-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)) !important; + } + + .xl\:border-gray-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)) !important; + } + + .xl\:border-gray-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)) !important; + } + + .xl\:border-gray-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)) !important; + } + + .xl\:border-gray-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)) !important; + } + + .xl\:border-gray-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)) !important; + } + + .xl\:border-gray-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)) !important; + } + + .xl\:border-gray-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)) !important; + } + + .xl\:border-gray-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)) !important; + } + + .xl\:border-gray-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)) !important; + } + + .xl\:border-red-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 242, 242, var(--tw-border-opacity)) !important; + } + + .xl\:border-red-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 226, 226, var(--tw-border-opacity)) !important; + } + + .xl\:border-red-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 202, 202, var(--tw-border-opacity)) !important; + } + + .xl\:border-red-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 165, 165, var(--tw-border-opacity)) !important; + } + + .xl\:border-red-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(248, 113, 113, var(--tw-border-opacity)) !important; + } + + .xl\:border-red-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(239, 68, 68, var(--tw-border-opacity)) !important; + } + + .xl\:border-red-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(220, 38, 38, var(--tw-border-opacity)) !important; + } + + .xl\:border-red-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(185, 28, 28, var(--tw-border-opacity)) !important; + } + + .xl\:border-red-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(153, 27, 27, var(--tw-border-opacity)) !important; + } + + .xl\:border-red-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(127, 29, 29, var(--tw-border-opacity)) !important; + } + + .xl\:border-yellow-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(255, 251, 235, var(--tw-border-opacity)) !important; + } + + .xl\:border-yellow-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 243, 199, var(--tw-border-opacity)) !important; + } + + .xl\:border-yellow-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(253, 230, 138, var(--tw-border-opacity)) !important; + } + + .xl\:border-yellow-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 211, 77, var(--tw-border-opacity)) !important; + } + + .xl\:border-yellow-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(251, 191, 36, var(--tw-border-opacity)) !important; + } + + .xl\:border-yellow-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)) !important; + } + + .xl\:border-yellow-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(217, 119, 6, var(--tw-border-opacity)) !important; + } + + .xl\:border-yellow-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(180, 83, 9, var(--tw-border-opacity)) !important; + } + + .xl\:border-yellow-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(146, 64, 14, var(--tw-border-opacity)) !important; + } + + .xl\:border-yellow-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(120, 53, 15, var(--tw-border-opacity)) !important; + } + + .xl\:border-green-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(236, 253, 245, var(--tw-border-opacity)) !important; + } + + .xl\:border-green-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(209, 250, 229, var(--tw-border-opacity)) !important; + } + + .xl\:border-green-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(167, 243, 208, var(--tw-border-opacity)) !important; + } + + .xl\:border-green-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(110, 231, 183, var(--tw-border-opacity)) !important; + } + + .xl\:border-green-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(52, 211, 153, var(--tw-border-opacity)) !important; + } + + .xl\:border-green-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(16, 185, 129, var(--tw-border-opacity)) !important; + } + + .xl\:border-green-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(5, 150, 105, var(--tw-border-opacity)) !important; + } + + .xl\:border-green-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(4, 120, 87, var(--tw-border-opacity)) !important; + } + + .xl\:border-green-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(6, 95, 70, var(--tw-border-opacity)) !important; + } + + .xl\:border-green-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(6, 78, 59, var(--tw-border-opacity)) !important; + } + + .xl\:border-blue-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(239, 246, 255, var(--tw-border-opacity)) !important; + } + + .xl\:border-blue-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(219, 234, 254, var(--tw-border-opacity)) !important; + } + + .xl\:border-blue-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(191, 219, 254, var(--tw-border-opacity)) !important; + } + + .xl\:border-blue-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(147, 197, 253, var(--tw-border-opacity)) !important; + } + + .xl\:border-blue-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(96, 165, 250, var(--tw-border-opacity)) !important; + } + + .xl\:border-blue-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)) !important; + } + + .xl\:border-blue-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(37, 99, 235, var(--tw-border-opacity)) !important; + } + + .xl\:border-blue-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(29, 78, 216, var(--tw-border-opacity)) !important; + } + + .xl\:border-blue-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(30, 64, 175, var(--tw-border-opacity)) !important; + } + + .xl\:border-blue-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(30, 58, 138, var(--tw-border-opacity)) !important; + } + + .xl\:border-indigo-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(238, 242, 255, var(--tw-border-opacity)) !important; + } + + .xl\:border-indigo-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(224, 231, 255, var(--tw-border-opacity)) !important; + } + + .xl\:border-indigo-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(199, 210, 254, var(--tw-border-opacity)) !important; + } + + .xl\:border-indigo-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(165, 180, 252, var(--tw-border-opacity)) !important; + } + + .xl\:border-indigo-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(129, 140, 248, var(--tw-border-opacity)) !important; + } + + .xl\:border-indigo-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(99, 102, 241, var(--tw-border-opacity)) !important; + } + + .xl\:border-indigo-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(79, 70, 229, var(--tw-border-opacity)) !important; + } + + .xl\:border-indigo-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(67, 56, 202, var(--tw-border-opacity)) !important; + } + + .xl\:border-indigo-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(55, 48, 163, var(--tw-border-opacity)) !important; + } + + .xl\:border-indigo-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(49, 46, 129, var(--tw-border-opacity)) !important; + } + + .xl\:border-purple-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(245, 243, 255, var(--tw-border-opacity)) !important; + } + + .xl\:border-purple-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(237, 233, 254, var(--tw-border-opacity)) !important; + } + + .xl\:border-purple-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(221, 214, 254, var(--tw-border-opacity)) !important; + } + + .xl\:border-purple-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(196, 181, 253, var(--tw-border-opacity)) !important; + } + + .xl\:border-purple-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(167, 139, 250, var(--tw-border-opacity)) !important; + } + + .xl\:border-purple-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(139, 92, 246, var(--tw-border-opacity)) !important; + } + + .xl\:border-purple-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(124, 58, 237, var(--tw-border-opacity)) !important; + } + + .xl\:border-purple-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(109, 40, 217, var(--tw-border-opacity)) !important; + } + + .xl\:border-purple-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(91, 33, 182, var(--tw-border-opacity)) !important; + } + + .xl\:border-purple-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(76, 29, 149, var(--tw-border-opacity)) !important; + } + + .xl\:border-pink-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(253, 242, 248, var(--tw-border-opacity)) !important; + } + + .xl\:border-pink-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 231, 243, var(--tw-border-opacity)) !important; + } + + .xl\:border-pink-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(251, 207, 232, var(--tw-border-opacity)) !important; + } + + .xl\:border-pink-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(249, 168, 212, var(--tw-border-opacity)) !important; + } + + .xl\:border-pink-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(244, 114, 182, var(--tw-border-opacity)) !important; + } + + .xl\:border-pink-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(236, 72, 153, var(--tw-border-opacity)) !important; + } + + .xl\:border-pink-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(219, 39, 119, var(--tw-border-opacity)) !important; + } + + .xl\:border-pink-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(190, 24, 93, var(--tw-border-opacity)) !important; + } + + .xl\:border-pink-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(157, 23, 77, var(--tw-border-opacity)) !important; + } + + .xl\:border-pink-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(131, 24, 67, var(--tw-border-opacity)) !important; + } + + .xl\:border-primary { + --tw-border-opacity: 1 !important; + border-color: rgba(0, 49, 151, var(--tw-border-opacity)) !important; + } + + .group:hover .xl\:group-hover\:border-transparent { + border-color: transparent !important; + } + + .group:hover .xl\:group-hover\:border-current { + border-color: currentColor !important; + } + + .group:hover .xl\:group-hover\:border-black { + --tw-border-opacity: 1 !important; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important; + } + + .group:hover .xl\:group-hover\:border-white { + --tw-border-opacity: 1 !important; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important; + } + + .group:hover .xl\:group-hover\:border-gray-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)) !important; + } + + .group:hover .xl\:group-hover\:border-gray-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)) !important; + } + + .group:hover .xl\:group-hover\:border-gray-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)) !important; + } + + .group:hover .xl\:group-hover\:border-gray-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)) !important; + } + + .group:hover .xl\:group-hover\:border-gray-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)) !important; + } + + .group:hover .xl\:group-hover\:border-gray-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)) !important; + } + + .group:hover .xl\:group-hover\:border-gray-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)) !important; + } + + .group:hover .xl\:group-hover\:border-gray-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)) !important; + } + + .group:hover .xl\:group-hover\:border-gray-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)) !important; + } + + .group:hover .xl\:group-hover\:border-gray-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)) !important; + } + + .group:hover .xl\:group-hover\:border-red-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 242, 242, var(--tw-border-opacity)) !important; + } + + .group:hover .xl\:group-hover\:border-red-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 226, 226, var(--tw-border-opacity)) !important; + } + + .group:hover .xl\:group-hover\:border-red-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 202, 202, var(--tw-border-opacity)) !important; + } + + .group:hover .xl\:group-hover\:border-red-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 165, 165, var(--tw-border-opacity)) !important; + } + + .group:hover .xl\:group-hover\:border-red-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(248, 113, 113, var(--tw-border-opacity)) !important; + } + + .group:hover .xl\:group-hover\:border-red-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(239, 68, 68, var(--tw-border-opacity)) !important; + } + + .group:hover .xl\:group-hover\:border-red-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(220, 38, 38, var(--tw-border-opacity)) !important; + } + + .group:hover .xl\:group-hover\:border-red-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(185, 28, 28, var(--tw-border-opacity)) !important; + } + + .group:hover .xl\:group-hover\:border-red-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(153, 27, 27, var(--tw-border-opacity)) !important; + } + + .group:hover .xl\:group-hover\:border-red-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(127, 29, 29, var(--tw-border-opacity)) !important; + } + + .group:hover .xl\:group-hover\:border-yellow-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(255, 251, 235, var(--tw-border-opacity)) !important; + } + + .group:hover .xl\:group-hover\:border-yellow-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 243, 199, var(--tw-border-opacity)) !important; + } + + .group:hover .xl\:group-hover\:border-yellow-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(253, 230, 138, var(--tw-border-opacity)) !important; + } + + .group:hover .xl\:group-hover\:border-yellow-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 211, 77, var(--tw-border-opacity)) !important; + } + + .group:hover .xl\:group-hover\:border-yellow-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(251, 191, 36, var(--tw-border-opacity)) !important; + } + + .group:hover .xl\:group-hover\:border-yellow-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)) !important; + } + + .group:hover .xl\:group-hover\:border-yellow-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(217, 119, 6, var(--tw-border-opacity)) !important; + } + + .group:hover .xl\:group-hover\:border-yellow-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(180, 83, 9, var(--tw-border-opacity)) !important; + } + + .group:hover .xl\:group-hover\:border-yellow-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(146, 64, 14, var(--tw-border-opacity)) !important; + } + + .group:hover .xl\:group-hover\:border-yellow-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(120, 53, 15, var(--tw-border-opacity)) !important; + } + + .group:hover .xl\:group-hover\:border-green-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(236, 253, 245, var(--tw-border-opacity)) !important; + } + + .group:hover .xl\:group-hover\:border-green-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(209, 250, 229, var(--tw-border-opacity)) !important; + } + + .group:hover .xl\:group-hover\:border-green-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(167, 243, 208, var(--tw-border-opacity)) !important; + } + + .group:hover .xl\:group-hover\:border-green-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(110, 231, 183, var(--tw-border-opacity)) !important; + } + + .group:hover .xl\:group-hover\:border-green-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(52, 211, 153, var(--tw-border-opacity)) !important; + } + + .group:hover .xl\:group-hover\:border-green-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(16, 185, 129, var(--tw-border-opacity)) !important; + } + + .group:hover .xl\:group-hover\:border-green-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(5, 150, 105, var(--tw-border-opacity)) !important; + } + + .group:hover .xl\:group-hover\:border-green-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(4, 120, 87, var(--tw-border-opacity)) !important; + } + + .group:hover .xl\:group-hover\:border-green-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(6, 95, 70, var(--tw-border-opacity)) !important; + } + + .group:hover .xl\:group-hover\:border-green-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(6, 78, 59, var(--tw-border-opacity)) !important; + } + + .group:hover .xl\:group-hover\:border-blue-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(239, 246, 255, var(--tw-border-opacity)) !important; + } + + .group:hover .xl\:group-hover\:border-blue-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(219, 234, 254, var(--tw-border-opacity)) !important; + } + + .group:hover .xl\:group-hover\:border-blue-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(191, 219, 254, var(--tw-border-opacity)) !important; + } + + .group:hover .xl\:group-hover\:border-blue-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(147, 197, 253, var(--tw-border-opacity)) !important; + } + + .group:hover .xl\:group-hover\:border-blue-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(96, 165, 250, var(--tw-border-opacity)) !important; + } + + .group:hover .xl\:group-hover\:border-blue-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)) !important; + } + + .group:hover .xl\:group-hover\:border-blue-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(37, 99, 235, var(--tw-border-opacity)) !important; + } + + .group:hover .xl\:group-hover\:border-blue-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(29, 78, 216, var(--tw-border-opacity)) !important; + } + + .group:hover .xl\:group-hover\:border-blue-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(30, 64, 175, var(--tw-border-opacity)) !important; + } + + .group:hover .xl\:group-hover\:border-blue-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(30, 58, 138, var(--tw-border-opacity)) !important; + } + + .group:hover .xl\:group-hover\:border-indigo-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(238, 242, 255, var(--tw-border-opacity)) !important; + } + + .group:hover .xl\:group-hover\:border-indigo-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(224, 231, 255, var(--tw-border-opacity)) !important; + } + + .group:hover .xl\:group-hover\:border-indigo-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(199, 210, 254, var(--tw-border-opacity)) !important; + } + + .group:hover .xl\:group-hover\:border-indigo-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(165, 180, 252, var(--tw-border-opacity)) !important; + } + + .group:hover .xl\:group-hover\:border-indigo-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(129, 140, 248, var(--tw-border-opacity)) !important; + } + + .group:hover .xl\:group-hover\:border-indigo-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(99, 102, 241, var(--tw-border-opacity)) !important; + } + + .group:hover .xl\:group-hover\:border-indigo-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(79, 70, 229, var(--tw-border-opacity)) !important; + } + + .group:hover .xl\:group-hover\:border-indigo-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(67, 56, 202, var(--tw-border-opacity)) !important; + } + + .group:hover .xl\:group-hover\:border-indigo-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(55, 48, 163, var(--tw-border-opacity)) !important; + } + + .group:hover .xl\:group-hover\:border-indigo-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(49, 46, 129, var(--tw-border-opacity)) !important; + } + + .group:hover .xl\:group-hover\:border-purple-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(245, 243, 255, var(--tw-border-opacity)) !important; + } + + .group:hover .xl\:group-hover\:border-purple-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(237, 233, 254, var(--tw-border-opacity)) !important; + } + + .group:hover .xl\:group-hover\:border-purple-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(221, 214, 254, var(--tw-border-opacity)) !important; + } + + .group:hover .xl\:group-hover\:border-purple-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(196, 181, 253, var(--tw-border-opacity)) !important; + } + + .group:hover .xl\:group-hover\:border-purple-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(167, 139, 250, var(--tw-border-opacity)) !important; + } + + .group:hover .xl\:group-hover\:border-purple-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(139, 92, 246, var(--tw-border-opacity)) !important; + } + + .group:hover .xl\:group-hover\:border-purple-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(124, 58, 237, var(--tw-border-opacity)) !important; + } + + .group:hover .xl\:group-hover\:border-purple-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(109, 40, 217, var(--tw-border-opacity)) !important; + } + + .group:hover .xl\:group-hover\:border-purple-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(91, 33, 182, var(--tw-border-opacity)) !important; + } + + .group:hover .xl\:group-hover\:border-purple-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(76, 29, 149, var(--tw-border-opacity)) !important; + } + + .group:hover .xl\:group-hover\:border-pink-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(253, 242, 248, var(--tw-border-opacity)) !important; + } + + .group:hover .xl\:group-hover\:border-pink-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 231, 243, var(--tw-border-opacity)) !important; + } + + .group:hover .xl\:group-hover\:border-pink-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(251, 207, 232, var(--tw-border-opacity)) !important; + } + + .group:hover .xl\:group-hover\:border-pink-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(249, 168, 212, var(--tw-border-opacity)) !important; + } + + .group:hover .xl\:group-hover\:border-pink-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(244, 114, 182, var(--tw-border-opacity)) !important; + } + + .group:hover .xl\:group-hover\:border-pink-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(236, 72, 153, var(--tw-border-opacity)) !important; + } + + .group:hover .xl\:group-hover\:border-pink-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(219, 39, 119, var(--tw-border-opacity)) !important; + } + + .group:hover .xl\:group-hover\:border-pink-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(190, 24, 93, var(--tw-border-opacity)) !important; + } + + .group:hover .xl\:group-hover\:border-pink-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(157, 23, 77, var(--tw-border-opacity)) !important; + } + + .group:hover .xl\:group-hover\:border-pink-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(131, 24, 67, var(--tw-border-opacity)) !important; + } + + .group:hover .xl\:group-hover\:border-primary { + --tw-border-opacity: 1 !important; + border-color: rgba(0, 49, 151, var(--tw-border-opacity)) !important; + } + + .xl\:focus-within\:border-transparent:focus-within { + border-color: transparent !important; + } + + .xl\:focus-within\:border-current:focus-within { + border-color: currentColor !important; + } + + .xl\:focus-within\:border-black:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important; + } + + .xl\:focus-within\:border-white:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important; + } + + .xl\:focus-within\:border-gray-50:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)) !important; + } + + .xl\:focus-within\:border-gray-100:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)) !important; + } + + .xl\:focus-within\:border-gray-200:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)) !important; + } + + .xl\:focus-within\:border-gray-300:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)) !important; + } + + .xl\:focus-within\:border-gray-400:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)) !important; + } + + .xl\:focus-within\:border-gray-500:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)) !important; + } + + .xl\:focus-within\:border-gray-600:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)) !important; + } + + .xl\:focus-within\:border-gray-700:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)) !important; + } + + .xl\:focus-within\:border-gray-800:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)) !important; + } + + .xl\:focus-within\:border-gray-900:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)) !important; + } + + .xl\:focus-within\:border-red-50:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 242, 242, var(--tw-border-opacity)) !important; + } + + .xl\:focus-within\:border-red-100:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 226, 226, var(--tw-border-opacity)) !important; + } + + .xl\:focus-within\:border-red-200:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 202, 202, var(--tw-border-opacity)) !important; + } + + .xl\:focus-within\:border-red-300:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 165, 165, var(--tw-border-opacity)) !important; + } + + .xl\:focus-within\:border-red-400:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(248, 113, 113, var(--tw-border-opacity)) !important; + } + + .xl\:focus-within\:border-red-500:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(239, 68, 68, var(--tw-border-opacity)) !important; + } + + .xl\:focus-within\:border-red-600:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(220, 38, 38, var(--tw-border-opacity)) !important; + } + + .xl\:focus-within\:border-red-700:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(185, 28, 28, var(--tw-border-opacity)) !important; + } + + .xl\:focus-within\:border-red-800:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(153, 27, 27, var(--tw-border-opacity)) !important; + } + + .xl\:focus-within\:border-red-900:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(127, 29, 29, var(--tw-border-opacity)) !important; + } + + .xl\:focus-within\:border-yellow-50:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(255, 251, 235, var(--tw-border-opacity)) !important; + } + + .xl\:focus-within\:border-yellow-100:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 243, 199, var(--tw-border-opacity)) !important; + } + + .xl\:focus-within\:border-yellow-200:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(253, 230, 138, var(--tw-border-opacity)) !important; + } + + .xl\:focus-within\:border-yellow-300:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 211, 77, var(--tw-border-opacity)) !important; + } + + .xl\:focus-within\:border-yellow-400:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(251, 191, 36, var(--tw-border-opacity)) !important; + } + + .xl\:focus-within\:border-yellow-500:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)) !important; + } + + .xl\:focus-within\:border-yellow-600:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(217, 119, 6, var(--tw-border-opacity)) !important; + } + + .xl\:focus-within\:border-yellow-700:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(180, 83, 9, var(--tw-border-opacity)) !important; + } + + .xl\:focus-within\:border-yellow-800:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(146, 64, 14, var(--tw-border-opacity)) !important; + } + + .xl\:focus-within\:border-yellow-900:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(120, 53, 15, var(--tw-border-opacity)) !important; + } + + .xl\:focus-within\:border-green-50:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(236, 253, 245, var(--tw-border-opacity)) !important; + } + + .xl\:focus-within\:border-green-100:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(209, 250, 229, var(--tw-border-opacity)) !important; + } + + .xl\:focus-within\:border-green-200:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(167, 243, 208, var(--tw-border-opacity)) !important; + } + + .xl\:focus-within\:border-green-300:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(110, 231, 183, var(--tw-border-opacity)) !important; + } + + .xl\:focus-within\:border-green-400:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(52, 211, 153, var(--tw-border-opacity)) !important; + } + + .xl\:focus-within\:border-green-500:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(16, 185, 129, var(--tw-border-opacity)) !important; + } + + .xl\:focus-within\:border-green-600:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(5, 150, 105, var(--tw-border-opacity)) !important; + } + + .xl\:focus-within\:border-green-700:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(4, 120, 87, var(--tw-border-opacity)) !important; + } + + .xl\:focus-within\:border-green-800:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(6, 95, 70, var(--tw-border-opacity)) !important; + } + + .xl\:focus-within\:border-green-900:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(6, 78, 59, var(--tw-border-opacity)) !important; + } + + .xl\:focus-within\:border-blue-50:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(239, 246, 255, var(--tw-border-opacity)) !important; + } + + .xl\:focus-within\:border-blue-100:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(219, 234, 254, var(--tw-border-opacity)) !important; + } + + .xl\:focus-within\:border-blue-200:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(191, 219, 254, var(--tw-border-opacity)) !important; + } + + .xl\:focus-within\:border-blue-300:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(147, 197, 253, var(--tw-border-opacity)) !important; + } + + .xl\:focus-within\:border-blue-400:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(96, 165, 250, var(--tw-border-opacity)) !important; + } + + .xl\:focus-within\:border-blue-500:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)) !important; + } + + .xl\:focus-within\:border-blue-600:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(37, 99, 235, var(--tw-border-opacity)) !important; + } + + .xl\:focus-within\:border-blue-700:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(29, 78, 216, var(--tw-border-opacity)) !important; + } + + .xl\:focus-within\:border-blue-800:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(30, 64, 175, var(--tw-border-opacity)) !important; + } + + .xl\:focus-within\:border-blue-900:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(30, 58, 138, var(--tw-border-opacity)) !important; + } + + .xl\:focus-within\:border-indigo-50:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(238, 242, 255, var(--tw-border-opacity)) !important; + } + + .xl\:focus-within\:border-indigo-100:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(224, 231, 255, var(--tw-border-opacity)) !important; + } + + .xl\:focus-within\:border-indigo-200:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(199, 210, 254, var(--tw-border-opacity)) !important; + } + + .xl\:focus-within\:border-indigo-300:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(165, 180, 252, var(--tw-border-opacity)) !important; + } + + .xl\:focus-within\:border-indigo-400:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(129, 140, 248, var(--tw-border-opacity)) !important; + } + + .xl\:focus-within\:border-indigo-500:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(99, 102, 241, var(--tw-border-opacity)) !important; + } + + .xl\:focus-within\:border-indigo-600:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(79, 70, 229, var(--tw-border-opacity)) !important; + } + + .xl\:focus-within\:border-indigo-700:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(67, 56, 202, var(--tw-border-opacity)) !important; + } + + .xl\:focus-within\:border-indigo-800:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(55, 48, 163, var(--tw-border-opacity)) !important; + } + + .xl\:focus-within\:border-indigo-900:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(49, 46, 129, var(--tw-border-opacity)) !important; + } + + .xl\:focus-within\:border-purple-50:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(245, 243, 255, var(--tw-border-opacity)) !important; + } + + .xl\:focus-within\:border-purple-100:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(237, 233, 254, var(--tw-border-opacity)) !important; + } + + .xl\:focus-within\:border-purple-200:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(221, 214, 254, var(--tw-border-opacity)) !important; + } + + .xl\:focus-within\:border-purple-300:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(196, 181, 253, var(--tw-border-opacity)) !important; + } + + .xl\:focus-within\:border-purple-400:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(167, 139, 250, var(--tw-border-opacity)) !important; + } + + .xl\:focus-within\:border-purple-500:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(139, 92, 246, var(--tw-border-opacity)) !important; + } + + .xl\:focus-within\:border-purple-600:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(124, 58, 237, var(--tw-border-opacity)) !important; + } + + .xl\:focus-within\:border-purple-700:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(109, 40, 217, var(--tw-border-opacity)) !important; + } + + .xl\:focus-within\:border-purple-800:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(91, 33, 182, var(--tw-border-opacity)) !important; + } + + .xl\:focus-within\:border-purple-900:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(76, 29, 149, var(--tw-border-opacity)) !important; + } + + .xl\:focus-within\:border-pink-50:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(253, 242, 248, var(--tw-border-opacity)) !important; + } + + .xl\:focus-within\:border-pink-100:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 231, 243, var(--tw-border-opacity)) !important; + } + + .xl\:focus-within\:border-pink-200:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(251, 207, 232, var(--tw-border-opacity)) !important; + } + + .xl\:focus-within\:border-pink-300:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(249, 168, 212, var(--tw-border-opacity)) !important; + } + + .xl\:focus-within\:border-pink-400:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(244, 114, 182, var(--tw-border-opacity)) !important; + } + + .xl\:focus-within\:border-pink-500:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(236, 72, 153, var(--tw-border-opacity)) !important; + } + + .xl\:focus-within\:border-pink-600:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(219, 39, 119, var(--tw-border-opacity)) !important; + } + + .xl\:focus-within\:border-pink-700:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(190, 24, 93, var(--tw-border-opacity)) !important; + } + + .xl\:focus-within\:border-pink-800:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(157, 23, 77, var(--tw-border-opacity)) !important; + } + + .xl\:focus-within\:border-pink-900:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(131, 24, 67, var(--tw-border-opacity)) !important; + } + + .xl\:focus-within\:border-primary:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(0, 49, 151, var(--tw-border-opacity)) !important; + } + + .xl\:hover\:border-transparent:hover { + border-color: transparent !important; + } + + .xl\:hover\:border-current:hover { + border-color: currentColor !important; + } + + .xl\:hover\:border-black:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important; + } + + .xl\:hover\:border-white:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important; + } + + .xl\:hover\:border-gray-50:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)) !important; + } + + .xl\:hover\:border-gray-100:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)) !important; + } + + .xl\:hover\:border-gray-200:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)) !important; + } + + .xl\:hover\:border-gray-300:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)) !important; + } + + .xl\:hover\:border-gray-400:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)) !important; + } + + .xl\:hover\:border-gray-500:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)) !important; + } + + .xl\:hover\:border-gray-600:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)) !important; + } + + .xl\:hover\:border-gray-700:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)) !important; + } + + .xl\:hover\:border-gray-800:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)) !important; + } + + .xl\:hover\:border-gray-900:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)) !important; + } + + .xl\:hover\:border-red-50:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 242, 242, var(--tw-border-opacity)) !important; + } + + .xl\:hover\:border-red-100:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 226, 226, var(--tw-border-opacity)) !important; + } + + .xl\:hover\:border-red-200:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 202, 202, var(--tw-border-opacity)) !important; + } + + .xl\:hover\:border-red-300:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 165, 165, var(--tw-border-opacity)) !important; + } + + .xl\:hover\:border-red-400:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(248, 113, 113, var(--tw-border-opacity)) !important; + } + + .xl\:hover\:border-red-500:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(239, 68, 68, var(--tw-border-opacity)) !important; + } + + .xl\:hover\:border-red-600:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(220, 38, 38, var(--tw-border-opacity)) !important; + } + + .xl\:hover\:border-red-700:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(185, 28, 28, var(--tw-border-opacity)) !important; + } + + .xl\:hover\:border-red-800:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(153, 27, 27, var(--tw-border-opacity)) !important; + } + + .xl\:hover\:border-red-900:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(127, 29, 29, var(--tw-border-opacity)) !important; + } + + .xl\:hover\:border-yellow-50:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(255, 251, 235, var(--tw-border-opacity)) !important; + } + + .xl\:hover\:border-yellow-100:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 243, 199, var(--tw-border-opacity)) !important; + } + + .xl\:hover\:border-yellow-200:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(253, 230, 138, var(--tw-border-opacity)) !important; + } + + .xl\:hover\:border-yellow-300:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 211, 77, var(--tw-border-opacity)) !important; + } + + .xl\:hover\:border-yellow-400:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(251, 191, 36, var(--tw-border-opacity)) !important; + } + + .xl\:hover\:border-yellow-500:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)) !important; + } + + .xl\:hover\:border-yellow-600:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(217, 119, 6, var(--tw-border-opacity)) !important; + } + + .xl\:hover\:border-yellow-700:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(180, 83, 9, var(--tw-border-opacity)) !important; + } + + .xl\:hover\:border-yellow-800:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(146, 64, 14, var(--tw-border-opacity)) !important; + } + + .xl\:hover\:border-yellow-900:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(120, 53, 15, var(--tw-border-opacity)) !important; + } + + .xl\:hover\:border-green-50:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(236, 253, 245, var(--tw-border-opacity)) !important; + } + + .xl\:hover\:border-green-100:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(209, 250, 229, var(--tw-border-opacity)) !important; + } + + .xl\:hover\:border-green-200:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(167, 243, 208, var(--tw-border-opacity)) !important; + } + + .xl\:hover\:border-green-300:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(110, 231, 183, var(--tw-border-opacity)) !important; + } + + .xl\:hover\:border-green-400:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(52, 211, 153, var(--tw-border-opacity)) !important; + } + + .xl\:hover\:border-green-500:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(16, 185, 129, var(--tw-border-opacity)) !important; + } + + .xl\:hover\:border-green-600:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(5, 150, 105, var(--tw-border-opacity)) !important; + } + + .xl\:hover\:border-green-700:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(4, 120, 87, var(--tw-border-opacity)) !important; + } + + .xl\:hover\:border-green-800:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(6, 95, 70, var(--tw-border-opacity)) !important; + } + + .xl\:hover\:border-green-900:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(6, 78, 59, var(--tw-border-opacity)) !important; + } + + .xl\:hover\:border-blue-50:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(239, 246, 255, var(--tw-border-opacity)) !important; + } + + .xl\:hover\:border-blue-100:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(219, 234, 254, var(--tw-border-opacity)) !important; + } + + .xl\:hover\:border-blue-200:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(191, 219, 254, var(--tw-border-opacity)) !important; + } + + .xl\:hover\:border-blue-300:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(147, 197, 253, var(--tw-border-opacity)) !important; + } + + .xl\:hover\:border-blue-400:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(96, 165, 250, var(--tw-border-opacity)) !important; + } + + .xl\:hover\:border-blue-500:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)) !important; + } + + .xl\:hover\:border-blue-600:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(37, 99, 235, var(--tw-border-opacity)) !important; + } + + .xl\:hover\:border-blue-700:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(29, 78, 216, var(--tw-border-opacity)) !important; + } + + .xl\:hover\:border-blue-800:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(30, 64, 175, var(--tw-border-opacity)) !important; + } + + .xl\:hover\:border-blue-900:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(30, 58, 138, var(--tw-border-opacity)) !important; + } + + .xl\:hover\:border-indigo-50:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(238, 242, 255, var(--tw-border-opacity)) !important; + } + + .xl\:hover\:border-indigo-100:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(224, 231, 255, var(--tw-border-opacity)) !important; + } + + .xl\:hover\:border-indigo-200:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(199, 210, 254, var(--tw-border-opacity)) !important; + } + + .xl\:hover\:border-indigo-300:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(165, 180, 252, var(--tw-border-opacity)) !important; + } + + .xl\:hover\:border-indigo-400:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(129, 140, 248, var(--tw-border-opacity)) !important; + } + + .xl\:hover\:border-indigo-500:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(99, 102, 241, var(--tw-border-opacity)) !important; + } + + .xl\:hover\:border-indigo-600:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(79, 70, 229, var(--tw-border-opacity)) !important; + } + + .xl\:hover\:border-indigo-700:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(67, 56, 202, var(--tw-border-opacity)) !important; + } + + .xl\:hover\:border-indigo-800:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(55, 48, 163, var(--tw-border-opacity)) !important; + } + + .xl\:hover\:border-indigo-900:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(49, 46, 129, var(--tw-border-opacity)) !important; + } + + .xl\:hover\:border-purple-50:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(245, 243, 255, var(--tw-border-opacity)) !important; + } + + .xl\:hover\:border-purple-100:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(237, 233, 254, var(--tw-border-opacity)) !important; + } + + .xl\:hover\:border-purple-200:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(221, 214, 254, var(--tw-border-opacity)) !important; + } + + .xl\:hover\:border-purple-300:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(196, 181, 253, var(--tw-border-opacity)) !important; + } + + .xl\:hover\:border-purple-400:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(167, 139, 250, var(--tw-border-opacity)) !important; + } + + .xl\:hover\:border-purple-500:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(139, 92, 246, var(--tw-border-opacity)) !important; + } + + .xl\:hover\:border-purple-600:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(124, 58, 237, var(--tw-border-opacity)) !important; + } + + .xl\:hover\:border-purple-700:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(109, 40, 217, var(--tw-border-opacity)) !important; + } + + .xl\:hover\:border-purple-800:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(91, 33, 182, var(--tw-border-opacity)) !important; + } + + .xl\:hover\:border-purple-900:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(76, 29, 149, var(--tw-border-opacity)) !important; + } + + .xl\:hover\:border-pink-50:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(253, 242, 248, var(--tw-border-opacity)) !important; + } + + .xl\:hover\:border-pink-100:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 231, 243, var(--tw-border-opacity)) !important; + } + + .xl\:hover\:border-pink-200:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(251, 207, 232, var(--tw-border-opacity)) !important; + } + + .xl\:hover\:border-pink-300:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(249, 168, 212, var(--tw-border-opacity)) !important; + } + + .xl\:hover\:border-pink-400:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(244, 114, 182, var(--tw-border-opacity)) !important; + } + + .xl\:hover\:border-pink-500:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(236, 72, 153, var(--tw-border-opacity)) !important; + } + + .xl\:hover\:border-pink-600:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(219, 39, 119, var(--tw-border-opacity)) !important; + } + + .xl\:hover\:border-pink-700:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(190, 24, 93, var(--tw-border-opacity)) !important; + } + + .xl\:hover\:border-pink-800:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(157, 23, 77, var(--tw-border-opacity)) !important; + } + + .xl\:hover\:border-pink-900:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(131, 24, 67, var(--tw-border-opacity)) !important; + } + + .xl\:hover\:border-primary:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(0, 49, 151, var(--tw-border-opacity)) !important; + } + + .xl\:focus\:border-transparent:focus { + border-color: transparent !important; + } + + .xl\:focus\:border-current:focus { + border-color: currentColor !important; + } + + .xl\:focus\:border-black:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important; + } + + .xl\:focus\:border-white:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important; + } + + .xl\:focus\:border-gray-50:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)) !important; + } + + .xl\:focus\:border-gray-100:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)) !important; + } + + .xl\:focus\:border-gray-200:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)) !important; + } + + .xl\:focus\:border-gray-300:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)) !important; + } + + .xl\:focus\:border-gray-400:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)) !important; + } + + .xl\:focus\:border-gray-500:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)) !important; + } + + .xl\:focus\:border-gray-600:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)) !important; + } + + .xl\:focus\:border-gray-700:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)) !important; + } + + .xl\:focus\:border-gray-800:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)) !important; + } + + .xl\:focus\:border-gray-900:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)) !important; + } + + .xl\:focus\:border-red-50:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 242, 242, var(--tw-border-opacity)) !important; + } + + .xl\:focus\:border-red-100:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 226, 226, var(--tw-border-opacity)) !important; + } + + .xl\:focus\:border-red-200:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 202, 202, var(--tw-border-opacity)) !important; + } + + .xl\:focus\:border-red-300:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 165, 165, var(--tw-border-opacity)) !important; + } + + .xl\:focus\:border-red-400:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(248, 113, 113, var(--tw-border-opacity)) !important; + } + + .xl\:focus\:border-red-500:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(239, 68, 68, var(--tw-border-opacity)) !important; + } + + .xl\:focus\:border-red-600:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(220, 38, 38, var(--tw-border-opacity)) !important; + } + + .xl\:focus\:border-red-700:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(185, 28, 28, var(--tw-border-opacity)) !important; + } + + .xl\:focus\:border-red-800:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(153, 27, 27, var(--tw-border-opacity)) !important; + } + + .xl\:focus\:border-red-900:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(127, 29, 29, var(--tw-border-opacity)) !important; + } + + .xl\:focus\:border-yellow-50:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(255, 251, 235, var(--tw-border-opacity)) !important; + } + + .xl\:focus\:border-yellow-100:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 243, 199, var(--tw-border-opacity)) !important; + } + + .xl\:focus\:border-yellow-200:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(253, 230, 138, var(--tw-border-opacity)) !important; + } + + .xl\:focus\:border-yellow-300:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 211, 77, var(--tw-border-opacity)) !important; + } + + .xl\:focus\:border-yellow-400:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(251, 191, 36, var(--tw-border-opacity)) !important; + } + + .xl\:focus\:border-yellow-500:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)) !important; + } + + .xl\:focus\:border-yellow-600:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(217, 119, 6, var(--tw-border-opacity)) !important; + } + + .xl\:focus\:border-yellow-700:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(180, 83, 9, var(--tw-border-opacity)) !important; + } + + .xl\:focus\:border-yellow-800:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(146, 64, 14, var(--tw-border-opacity)) !important; + } + + .xl\:focus\:border-yellow-900:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(120, 53, 15, var(--tw-border-opacity)) !important; + } + + .xl\:focus\:border-green-50:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(236, 253, 245, var(--tw-border-opacity)) !important; + } + + .xl\:focus\:border-green-100:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(209, 250, 229, var(--tw-border-opacity)) !important; + } + + .xl\:focus\:border-green-200:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(167, 243, 208, var(--tw-border-opacity)) !important; + } + + .xl\:focus\:border-green-300:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(110, 231, 183, var(--tw-border-opacity)) !important; + } + + .xl\:focus\:border-green-400:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(52, 211, 153, var(--tw-border-opacity)) !important; + } + + .xl\:focus\:border-green-500:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(16, 185, 129, var(--tw-border-opacity)) !important; + } + + .xl\:focus\:border-green-600:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(5, 150, 105, var(--tw-border-opacity)) !important; + } + + .xl\:focus\:border-green-700:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(4, 120, 87, var(--tw-border-opacity)) !important; + } + + .xl\:focus\:border-green-800:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(6, 95, 70, var(--tw-border-opacity)) !important; + } + + .xl\:focus\:border-green-900:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(6, 78, 59, var(--tw-border-opacity)) !important; + } + + .xl\:focus\:border-blue-50:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(239, 246, 255, var(--tw-border-opacity)) !important; + } + + .xl\:focus\:border-blue-100:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(219, 234, 254, var(--tw-border-opacity)) !important; + } + + .xl\:focus\:border-blue-200:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(191, 219, 254, var(--tw-border-opacity)) !important; + } + + .xl\:focus\:border-blue-300:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(147, 197, 253, var(--tw-border-opacity)) !important; + } + + .xl\:focus\:border-blue-400:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(96, 165, 250, var(--tw-border-opacity)) !important; + } + + .xl\:focus\:border-blue-500:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)) !important; + } + + .xl\:focus\:border-blue-600:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(37, 99, 235, var(--tw-border-opacity)) !important; + } + + .xl\:focus\:border-blue-700:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(29, 78, 216, var(--tw-border-opacity)) !important; + } + + .xl\:focus\:border-blue-800:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(30, 64, 175, var(--tw-border-opacity)) !important; + } + + .xl\:focus\:border-blue-900:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(30, 58, 138, var(--tw-border-opacity)) !important; + } + + .xl\:focus\:border-indigo-50:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(238, 242, 255, var(--tw-border-opacity)) !important; + } + + .xl\:focus\:border-indigo-100:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(224, 231, 255, var(--tw-border-opacity)) !important; + } + + .xl\:focus\:border-indigo-200:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(199, 210, 254, var(--tw-border-opacity)) !important; + } + + .xl\:focus\:border-indigo-300:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(165, 180, 252, var(--tw-border-opacity)) !important; + } + + .xl\:focus\:border-indigo-400:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(129, 140, 248, var(--tw-border-opacity)) !important; + } + + .xl\:focus\:border-indigo-500:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(99, 102, 241, var(--tw-border-opacity)) !important; + } + + .xl\:focus\:border-indigo-600:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(79, 70, 229, var(--tw-border-opacity)) !important; + } + + .xl\:focus\:border-indigo-700:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(67, 56, 202, var(--tw-border-opacity)) !important; + } + + .xl\:focus\:border-indigo-800:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(55, 48, 163, var(--tw-border-opacity)) !important; + } + + .xl\:focus\:border-indigo-900:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(49, 46, 129, var(--tw-border-opacity)) !important; + } + + .xl\:focus\:border-purple-50:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(245, 243, 255, var(--tw-border-opacity)) !important; + } + + .xl\:focus\:border-purple-100:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(237, 233, 254, var(--tw-border-opacity)) !important; + } + + .xl\:focus\:border-purple-200:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(221, 214, 254, var(--tw-border-opacity)) !important; + } + + .xl\:focus\:border-purple-300:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(196, 181, 253, var(--tw-border-opacity)) !important; + } + + .xl\:focus\:border-purple-400:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(167, 139, 250, var(--tw-border-opacity)) !important; + } + + .xl\:focus\:border-purple-500:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(139, 92, 246, var(--tw-border-opacity)) !important; + } + + .xl\:focus\:border-purple-600:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(124, 58, 237, var(--tw-border-opacity)) !important; + } + + .xl\:focus\:border-purple-700:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(109, 40, 217, var(--tw-border-opacity)) !important; + } + + .xl\:focus\:border-purple-800:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(91, 33, 182, var(--tw-border-opacity)) !important; + } + + .xl\:focus\:border-purple-900:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(76, 29, 149, var(--tw-border-opacity)) !important; + } + + .xl\:focus\:border-pink-50:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(253, 242, 248, var(--tw-border-opacity)) !important; + } + + .xl\:focus\:border-pink-100:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 231, 243, var(--tw-border-opacity)) !important; + } + + .xl\:focus\:border-pink-200:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(251, 207, 232, var(--tw-border-opacity)) !important; + } + + .xl\:focus\:border-pink-300:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(249, 168, 212, var(--tw-border-opacity)) !important; + } + + .xl\:focus\:border-pink-400:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(244, 114, 182, var(--tw-border-opacity)) !important; + } + + .xl\:focus\:border-pink-500:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(236, 72, 153, var(--tw-border-opacity)) !important; + } + + .xl\:focus\:border-pink-600:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(219, 39, 119, var(--tw-border-opacity)) !important; + } + + .xl\:focus\:border-pink-700:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(190, 24, 93, var(--tw-border-opacity)) !important; + } + + .xl\:focus\:border-pink-800:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(157, 23, 77, var(--tw-border-opacity)) !important; + } + + .xl\:focus\:border-pink-900:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(131, 24, 67, var(--tw-border-opacity)) !important; + } + + .xl\:focus\:border-primary:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(0, 49, 151, var(--tw-border-opacity)) !important; + } + + .xl\:border-opacity-0 { + --tw-border-opacity: 0 !important; + } + + .xl\:border-opacity-5 { + --tw-border-opacity: 0.05 !important; + } + + .xl\:border-opacity-10 { + --tw-border-opacity: 0.1 !important; + } + + .xl\:border-opacity-20 { + --tw-border-opacity: 0.2 !important; + } + + .xl\:border-opacity-25 { + --tw-border-opacity: 0.25 !important; + } + + .xl\:border-opacity-30 { + --tw-border-opacity: 0.3 !important; + } + + .xl\:border-opacity-40 { + --tw-border-opacity: 0.4 !important; + } + + .xl\:border-opacity-50 { + --tw-border-opacity: 0.5 !important; + } + + .xl\:border-opacity-60 { + --tw-border-opacity: 0.6 !important; + } + + .xl\:border-opacity-70 { + --tw-border-opacity: 0.7 !important; + } + + .xl\:border-opacity-75 { + --tw-border-opacity: 0.75 !important; + } + + .xl\:border-opacity-80 { + --tw-border-opacity: 0.8 !important; + } + + .xl\:border-opacity-90 { + --tw-border-opacity: 0.9 !important; + } + + .xl\:border-opacity-95 { + --tw-border-opacity: 0.95 !important; + } + + .xl\:border-opacity-100 { + --tw-border-opacity: 1 !important; + } + + .group:hover .xl\:group-hover\:border-opacity-0 { + --tw-border-opacity: 0 !important; + } + + .group:hover .xl\:group-hover\:border-opacity-5 { + --tw-border-opacity: 0.05 !important; + } + + .group:hover .xl\:group-hover\:border-opacity-10 { + --tw-border-opacity: 0.1 !important; + } + + .group:hover .xl\:group-hover\:border-opacity-20 { + --tw-border-opacity: 0.2 !important; + } + + .group:hover .xl\:group-hover\:border-opacity-25 { + --tw-border-opacity: 0.25 !important; + } + + .group:hover .xl\:group-hover\:border-opacity-30 { + --tw-border-opacity: 0.3 !important; + } + + .group:hover .xl\:group-hover\:border-opacity-40 { + --tw-border-opacity: 0.4 !important; + } + + .group:hover .xl\:group-hover\:border-opacity-50 { + --tw-border-opacity: 0.5 !important; + } + + .group:hover .xl\:group-hover\:border-opacity-60 { + --tw-border-opacity: 0.6 !important; + } + + .group:hover .xl\:group-hover\:border-opacity-70 { + --tw-border-opacity: 0.7 !important; + } + + .group:hover .xl\:group-hover\:border-opacity-75 { + --tw-border-opacity: 0.75 !important; + } + + .group:hover .xl\:group-hover\:border-opacity-80 { + --tw-border-opacity: 0.8 !important; + } + + .group:hover .xl\:group-hover\:border-opacity-90 { + --tw-border-opacity: 0.9 !important; + } + + .group:hover .xl\:group-hover\:border-opacity-95 { + --tw-border-opacity: 0.95 !important; + } + + .group:hover .xl\:group-hover\:border-opacity-100 { + --tw-border-opacity: 1 !important; + } + + .xl\:focus-within\:border-opacity-0:focus-within { + --tw-border-opacity: 0 !important; + } + + .xl\:focus-within\:border-opacity-5:focus-within { + --tw-border-opacity: 0.05 !important; + } + + .xl\:focus-within\:border-opacity-10:focus-within { + --tw-border-opacity: 0.1 !important; + } + + .xl\:focus-within\:border-opacity-20:focus-within { + --tw-border-opacity: 0.2 !important; + } + + .xl\:focus-within\:border-opacity-25:focus-within { + --tw-border-opacity: 0.25 !important; + } + + .xl\:focus-within\:border-opacity-30:focus-within { + --tw-border-opacity: 0.3 !important; + } + + .xl\:focus-within\:border-opacity-40:focus-within { + --tw-border-opacity: 0.4 !important; + } + + .xl\:focus-within\:border-opacity-50:focus-within { + --tw-border-opacity: 0.5 !important; + } + + .xl\:focus-within\:border-opacity-60:focus-within { + --tw-border-opacity: 0.6 !important; + } + + .xl\:focus-within\:border-opacity-70:focus-within { + --tw-border-opacity: 0.7 !important; + } + + .xl\:focus-within\:border-opacity-75:focus-within { + --tw-border-opacity: 0.75 !important; + } + + .xl\:focus-within\:border-opacity-80:focus-within { + --tw-border-opacity: 0.8 !important; + } + + .xl\:focus-within\:border-opacity-90:focus-within { + --tw-border-opacity: 0.9 !important; + } + + .xl\:focus-within\:border-opacity-95:focus-within { + --tw-border-opacity: 0.95 !important; + } + + .xl\:focus-within\:border-opacity-100:focus-within { + --tw-border-opacity: 1 !important; + } + + .xl\:hover\:border-opacity-0:hover { + --tw-border-opacity: 0 !important; + } + + .xl\:hover\:border-opacity-5:hover { + --tw-border-opacity: 0.05 !important; + } + + .xl\:hover\:border-opacity-10:hover { + --tw-border-opacity: 0.1 !important; + } + + .xl\:hover\:border-opacity-20:hover { + --tw-border-opacity: 0.2 !important; + } + + .xl\:hover\:border-opacity-25:hover { + --tw-border-opacity: 0.25 !important; + } + + .xl\:hover\:border-opacity-30:hover { + --tw-border-opacity: 0.3 !important; + } + + .xl\:hover\:border-opacity-40:hover { + --tw-border-opacity: 0.4 !important; + } + + .xl\:hover\:border-opacity-50:hover { + --tw-border-opacity: 0.5 !important; + } + + .xl\:hover\:border-opacity-60:hover { + --tw-border-opacity: 0.6 !important; + } + + .xl\:hover\:border-opacity-70:hover { + --tw-border-opacity: 0.7 !important; + } + + .xl\:hover\:border-opacity-75:hover { + --tw-border-opacity: 0.75 !important; + } + + .xl\:hover\:border-opacity-80:hover { + --tw-border-opacity: 0.8 !important; + } + + .xl\:hover\:border-opacity-90:hover { + --tw-border-opacity: 0.9 !important; + } + + .xl\:hover\:border-opacity-95:hover { + --tw-border-opacity: 0.95 !important; + } + + .xl\:hover\:border-opacity-100:hover { + --tw-border-opacity: 1 !important; + } + + .xl\:focus\:border-opacity-0:focus { + --tw-border-opacity: 0 !important; + } + + .xl\:focus\:border-opacity-5:focus { + --tw-border-opacity: 0.05 !important; + } + + .xl\:focus\:border-opacity-10:focus { + --tw-border-opacity: 0.1 !important; + } + + .xl\:focus\:border-opacity-20:focus { + --tw-border-opacity: 0.2 !important; + } + + .xl\:focus\:border-opacity-25:focus { + --tw-border-opacity: 0.25 !important; + } + + .xl\:focus\:border-opacity-30:focus { + --tw-border-opacity: 0.3 !important; + } + + .xl\:focus\:border-opacity-40:focus { + --tw-border-opacity: 0.4 !important; + } + + .xl\:focus\:border-opacity-50:focus { + --tw-border-opacity: 0.5 !important; + } + + .xl\:focus\:border-opacity-60:focus { + --tw-border-opacity: 0.6 !important; + } + + .xl\:focus\:border-opacity-70:focus { + --tw-border-opacity: 0.7 !important; + } + + .xl\:focus\:border-opacity-75:focus { + --tw-border-opacity: 0.75 !important; + } + + .xl\:focus\:border-opacity-80:focus { + --tw-border-opacity: 0.8 !important; + } + + .xl\:focus\:border-opacity-90:focus { + --tw-border-opacity: 0.9 !important; + } + + .xl\:focus\:border-opacity-95:focus { + --tw-border-opacity: 0.95 !important; + } + + .xl\:focus\:border-opacity-100:focus { + --tw-border-opacity: 1 !important; + } + + .xl\:rounded-none { + border-radius: 0px !important; + } + + .xl\:rounded-sm { + border-radius: 0.125rem !important; + } + + .xl\:rounded { + border-radius: 0.25rem !important; + } + + .xl\:rounded-md { + border-radius: 0.375rem !important; + } + + .xl\:rounded-lg { + border-radius: 0.5rem !important; + } + + .xl\:rounded-xl { + border-radius: 0.75rem !important; + } + + .xl\:rounded-2xl { + border-radius: 1rem !important; + } + + .xl\:rounded-3xl { + border-radius: 1.5rem !important; + } + + .xl\:rounded-full { + border-radius: 9999px !important; + } + + .xl\:rounded-t-none { + border-top-left-radius: 0px !important; + border-top-right-radius: 0px !important; + } + + .xl\:rounded-r-none { + border-top-right-radius: 0px !important; + border-bottom-right-radius: 0px !important; + } + + .xl\:rounded-b-none { + border-bottom-right-radius: 0px !important; + border-bottom-left-radius: 0px !important; + } + + .xl\:rounded-l-none { + border-top-left-radius: 0px !important; + border-bottom-left-radius: 0px !important; + } + + .xl\:rounded-t-sm { + border-top-left-radius: 0.125rem !important; + border-top-right-radius: 0.125rem !important; + } + + .xl\:rounded-r-sm { + border-top-right-radius: 0.125rem !important; + border-bottom-right-radius: 0.125rem !important; + } + + .xl\:rounded-b-sm { + border-bottom-right-radius: 0.125rem !important; + border-bottom-left-radius: 0.125rem !important; + } + + .xl\:rounded-l-sm { + border-top-left-radius: 0.125rem !important; + border-bottom-left-radius: 0.125rem !important; + } + + .xl\:rounded-t { + border-top-left-radius: 0.25rem !important; + border-top-right-radius: 0.25rem !important; + } + + .xl\:rounded-r { + border-top-right-radius: 0.25rem !important; + border-bottom-right-radius: 0.25rem !important; + } + + .xl\:rounded-b { + border-bottom-right-radius: 0.25rem !important; + border-bottom-left-radius: 0.25rem !important; + } + + .xl\:rounded-l { + border-top-left-radius: 0.25rem !important; + border-bottom-left-radius: 0.25rem !important; + } + + .xl\:rounded-t-md { + border-top-left-radius: 0.375rem !important; + border-top-right-radius: 0.375rem !important; + } + + .xl\:rounded-r-md { + border-top-right-radius: 0.375rem !important; + border-bottom-right-radius: 0.375rem !important; + } + + .xl\:rounded-b-md { + border-bottom-right-radius: 0.375rem !important; + border-bottom-left-radius: 0.375rem !important; + } + + .xl\:rounded-l-md { + border-top-left-radius: 0.375rem !important; + border-bottom-left-radius: 0.375rem !important; + } + + .xl\:rounded-t-lg { + border-top-left-radius: 0.5rem !important; + border-top-right-radius: 0.5rem !important; + } + + .xl\:rounded-r-lg { + border-top-right-radius: 0.5rem !important; + border-bottom-right-radius: 0.5rem !important; + } + + .xl\:rounded-b-lg { + border-bottom-right-radius: 0.5rem !important; + border-bottom-left-radius: 0.5rem !important; + } + + .xl\:rounded-l-lg { + border-top-left-radius: 0.5rem !important; + border-bottom-left-radius: 0.5rem !important; + } + + .xl\:rounded-t-xl { + border-top-left-radius: 0.75rem !important; + border-top-right-radius: 0.75rem !important; + } + + .xl\:rounded-r-xl { + border-top-right-radius: 0.75rem !important; + border-bottom-right-radius: 0.75rem !important; + } + + .xl\:rounded-b-xl { + border-bottom-right-radius: 0.75rem !important; + border-bottom-left-radius: 0.75rem !important; + } + + .xl\:rounded-l-xl { + border-top-left-radius: 0.75rem !important; + border-bottom-left-radius: 0.75rem !important; + } + + .xl\:rounded-t-2xl { + border-top-left-radius: 1rem !important; + border-top-right-radius: 1rem !important; + } + + .xl\:rounded-r-2xl { + border-top-right-radius: 1rem !important; + border-bottom-right-radius: 1rem !important; + } + + .xl\:rounded-b-2xl { + border-bottom-right-radius: 1rem !important; + border-bottom-left-radius: 1rem !important; + } + + .xl\:rounded-l-2xl { + border-top-left-radius: 1rem !important; + border-bottom-left-radius: 1rem !important; + } + + .xl\:rounded-t-3xl { + border-top-left-radius: 1.5rem !important; + border-top-right-radius: 1.5rem !important; + } + + .xl\:rounded-r-3xl { + border-top-right-radius: 1.5rem !important; + border-bottom-right-radius: 1.5rem !important; + } + + .xl\:rounded-b-3xl { + border-bottom-right-radius: 1.5rem !important; + border-bottom-left-radius: 1.5rem !important; + } + + .xl\:rounded-l-3xl { + border-top-left-radius: 1.5rem !important; + border-bottom-left-radius: 1.5rem !important; + } + + .xl\:rounded-t-full { + border-top-left-radius: 9999px !important; + border-top-right-radius: 9999px !important; + } + + .xl\:rounded-r-full { + border-top-right-radius: 9999px !important; + border-bottom-right-radius: 9999px !important; + } + + .xl\:rounded-b-full { + border-bottom-right-radius: 9999px !important; + border-bottom-left-radius: 9999px !important; + } + + .xl\:rounded-l-full { + border-top-left-radius: 9999px !important; + border-bottom-left-radius: 9999px !important; + } + + .xl\:rounded-tl-none { + border-top-left-radius: 0px !important; + } + + .xl\:rounded-tr-none { + border-top-right-radius: 0px !important; + } + + .xl\:rounded-br-none { + border-bottom-right-radius: 0px !important; + } + + .xl\:rounded-bl-none { + border-bottom-left-radius: 0px !important; + } + + .xl\:rounded-tl-sm { + border-top-left-radius: 0.125rem !important; + } + + .xl\:rounded-tr-sm { + border-top-right-radius: 0.125rem !important; + } + + .xl\:rounded-br-sm { + border-bottom-right-radius: 0.125rem !important; + } + + .xl\:rounded-bl-sm { + border-bottom-left-radius: 0.125rem !important; + } + + .xl\:rounded-tl { + border-top-left-radius: 0.25rem !important; + } + + .xl\:rounded-tr { + border-top-right-radius: 0.25rem !important; + } + + .xl\:rounded-br { + border-bottom-right-radius: 0.25rem !important; + } + + .xl\:rounded-bl { + border-bottom-left-radius: 0.25rem !important; + } + + .xl\:rounded-tl-md { + border-top-left-radius: 0.375rem !important; + } + + .xl\:rounded-tr-md { + border-top-right-radius: 0.375rem !important; + } + + .xl\:rounded-br-md { + border-bottom-right-radius: 0.375rem !important; + } + + .xl\:rounded-bl-md { + border-bottom-left-radius: 0.375rem !important; + } + + .xl\:rounded-tl-lg { + border-top-left-radius: 0.5rem !important; + } + + .xl\:rounded-tr-lg { + border-top-right-radius: 0.5rem !important; + } + + .xl\:rounded-br-lg { + border-bottom-right-radius: 0.5rem !important; + } + + .xl\:rounded-bl-lg { + border-bottom-left-radius: 0.5rem !important; + } + + .xl\:rounded-tl-xl { + border-top-left-radius: 0.75rem !important; + } + + .xl\:rounded-tr-xl { + border-top-right-radius: 0.75rem !important; + } + + .xl\:rounded-br-xl { + border-bottom-right-radius: 0.75rem !important; + } + + .xl\:rounded-bl-xl { + border-bottom-left-radius: 0.75rem !important; + } + + .xl\:rounded-tl-2xl { + border-top-left-radius: 1rem !important; + } + + .xl\:rounded-tr-2xl { + border-top-right-radius: 1rem !important; + } + + .xl\:rounded-br-2xl { + border-bottom-right-radius: 1rem !important; + } + + .xl\:rounded-bl-2xl { + border-bottom-left-radius: 1rem !important; + } + + .xl\:rounded-tl-3xl { + border-top-left-radius: 1.5rem !important; + } + + .xl\:rounded-tr-3xl { + border-top-right-radius: 1.5rem !important; + } + + .xl\:rounded-br-3xl { + border-bottom-right-radius: 1.5rem !important; + } + + .xl\:rounded-bl-3xl { + border-bottom-left-radius: 1.5rem !important; + } + + .xl\:rounded-tl-full { + border-top-left-radius: 9999px !important; + } + + .xl\:rounded-tr-full { + border-top-right-radius: 9999px !important; + } + + .xl\:rounded-br-full { + border-bottom-right-radius: 9999px !important; + } + + .xl\:rounded-bl-full { + border-bottom-left-radius: 9999px !important; + } + + .xl\:border-solid { + border-style: solid !important; + } + + .xl\:border-dashed { + border-style: dashed !important; + } + + .xl\:border-dotted { + border-style: dotted !important; + } + + .xl\:border-double { + border-style: double !important; + } + + .xl\:border-none { + border-style: none !important; + } + + .xl\:border-0 { + border-width: 0px !important; + } + + .xl\:border-2 { + border-width: 2px !important; + } + + .xl\:border-4 { + border-width: 4px !important; + } + + .xl\:border-8 { + border-width: 8px !important; + } + + .xl\:border { + border-width: 1px !important; + } + + .xl\:border-t-0 { + border-top-width: 0px !important; + } + + .xl\:border-r-0 { + border-right-width: 0px !important; + } + + .xl\:border-b-0 { + border-bottom-width: 0px !important; + } + + .xl\:border-l-0 { + border-left-width: 0px !important; + } + + .xl\:border-t-2 { + border-top-width: 2px !important; + } + + .xl\:border-r-2 { + border-right-width: 2px !important; + } + + .xl\:border-b-2 { + border-bottom-width: 2px !important; + } + + .xl\:border-l-2 { + border-left-width: 2px !important; + } + + .xl\:border-t-4 { + border-top-width: 4px !important; + } + + .xl\:border-r-4 { + border-right-width: 4px !important; + } + + .xl\:border-b-4 { + border-bottom-width: 4px !important; + } + + .xl\:border-l-4 { + border-left-width: 4px !important; + } + + .xl\:border-t-8 { + border-top-width: 8px !important; + } + + .xl\:border-r-8 { + border-right-width: 8px !important; + } + + .xl\:border-b-8 { + border-bottom-width: 8px !important; + } + + .xl\:border-l-8 { + border-left-width: 8px !important; + } + + .xl\:border-t { + border-top-width: 1px !important; + } + + .xl\:border-r { + border-right-width: 1px !important; + } + + .xl\:border-b { + border-bottom-width: 1px !important; + } + + .xl\:border-l { + border-left-width: 1px !important; + } + + .xl\:decoration-slice { + -webkit-box-decoration-break: slice !important; + box-decoration-break: slice !important; + } + + .xl\:decoration-clone { + -webkit-box-decoration-break: clone !important; + box-decoration-break: clone !important; + } + + .xl\:box-border { + box-sizing: border-box !important; + } + + .xl\:box-content { + box-sizing: content-box !important; + } + + .xl\:cursor-auto { + cursor: auto !important; + } + + .xl\:cursor-default { + cursor: default !important; + } + + .xl\:cursor-pointer { + cursor: pointer !important; + } + + .xl\:cursor-wait { + cursor: wait !important; + } + + .xl\:cursor-text { + cursor: text !important; + } + + .xl\:cursor-move { + cursor: move !important; + } + + .xl\:cursor-help { + cursor: help !important; + } + + .xl\:cursor-not-allowed { + cursor: not-allowed !important; + } + + .xl\:block { + display: block !important; + } + + .xl\:inline-block { + display: inline-block !important; + } + + .xl\:inline { + display: inline !important; + } + + .xl\:flex { + display: flex !important; + } + + .xl\:inline-flex { + display: inline-flex !important; + } + + .xl\:table { + display: table !important; + } + + .xl\:inline-table { + display: inline-table !important; + } + + .xl\:table-caption { + display: table-caption !important; + } + + .xl\:table-cell { + display: table-cell !important; + } + + .xl\:table-column { + display: table-column !important; + } + + .xl\:table-column-group { + display: table-column-group !important; + } + + .xl\:table-footer-group { + display: table-footer-group !important; + } + + .xl\:table-header-group { + display: table-header-group !important; + } + + .xl\:table-row-group { + display: table-row-group !important; + } + + .xl\:table-row { + display: table-row !important; + } + + .xl\:flow-root { + display: flow-root !important; + } + + .xl\:grid { + display: grid !important; + } + + .xl\:inline-grid { + display: inline-grid !important; + } + + .xl\:contents { + display: contents !important; + } + + .xl\:list-item { + display: list-item !important; + } + + .xl\:hidden { + display: none !important; + } + + .xl\:flex-row { + flex-direction: row !important; + } + + .xl\:flex-row-reverse { + flex-direction: row-reverse !important; + } + + .xl\:flex-col { + flex-direction: column !important; + } + + .xl\:flex-col-reverse { + flex-direction: column-reverse !important; + } + + .xl\:flex-wrap { + flex-wrap: wrap !important; + } + + .xl\:flex-wrap-reverse { + flex-wrap: wrap-reverse !important; + } + + .xl\:flex-nowrap { + flex-wrap: nowrap !important; + } + + .xl\:place-items-start { + place-items: start !important; + } + + .xl\:place-items-end { + place-items: end !important; + } + + .xl\:place-items-center { + place-items: center !important; + } + + .xl\:place-items-stretch { + place-items: stretch !important; + } + + .xl\:place-content-center { + place-content: center !important; + } + + .xl\:place-content-start { + place-content: start !important; + } + + .xl\:place-content-end { + place-content: end !important; + } + + .xl\:place-content-between { + place-content: space-between !important; + } + + .xl\:place-content-around { + place-content: space-around !important; + } + + .xl\:place-content-evenly { + place-content: space-evenly !important; + } + + .xl\:place-content-stretch { + place-content: stretch !important; + } + + .xl\:place-self-auto { + place-self: auto !important; + } + + .xl\:place-self-start { + place-self: start !important; + } + + .xl\:place-self-end { + place-self: end !important; + } + + .xl\:place-self-center { + place-self: center !important; + } + + .xl\:place-self-stretch { + place-self: stretch !important; + } + + .xl\:items-start { + align-items: flex-start !important; + } + + .xl\:items-end { + align-items: flex-end !important; + } + + .xl\:items-center { + align-items: center !important; + } + + .xl\:items-baseline { + align-items: baseline !important; + } + + .xl\:items-stretch { + align-items: stretch !important; + } + + .xl\:content-center { + align-content: center !important; + } + + .xl\:content-start { + align-content: flex-start !important; + } + + .xl\:content-end { + align-content: flex-end !important; + } + + .xl\:content-between { + align-content: space-between !important; + } + + .xl\:content-around { + align-content: space-around !important; + } + + .xl\:content-evenly { + align-content: space-evenly !important; + } + + .xl\:self-auto { + align-self: auto !important; + } + + .xl\:self-start { + align-self: flex-start !important; + } + + .xl\:self-end { + align-self: flex-end !important; + } + + .xl\:self-center { + align-self: center !important; + } + + .xl\:self-stretch { + align-self: stretch !important; + } + + .xl\:justify-items-start { + justify-items: start !important; + } + + .xl\:justify-items-end { + justify-items: end !important; + } + + .xl\:justify-items-center { + justify-items: center !important; + } + + .xl\:justify-items-stretch { + justify-items: stretch !important; + } + + .xl\:justify-start { + justify-content: flex-start !important; + } + + .xl\:justify-end { + justify-content: flex-end !important; + } + + .xl\:justify-center { + justify-content: center !important; + } + + .xl\:justify-between { + justify-content: space-between !important; + } + + .xl\:justify-around { + justify-content: space-around !important; + } + + .xl\:justify-evenly { + justify-content: space-evenly !important; + } + + .xl\:justify-self-auto { + justify-self: auto !important; + } + + .xl\:justify-self-start { + justify-self: start !important; + } + + .xl\:justify-self-end { + justify-self: end !important; + } + + .xl\:justify-self-center { + justify-self: center !important; + } + + .xl\:justify-self-stretch { + justify-self: stretch !important; + } + + .xl\:flex-1 { + flex: 1 1 0% !important; + } + + .xl\:flex-auto { + flex: 1 1 auto !important; + } + + .xl\:flex-initial { + flex: 0 1 auto !important; + } + + .xl\:flex-none { + flex: none !important; + } + + .xl\:flex-grow-0 { + flex-grow: 0 !important; + } + + .xl\:flex-grow { + flex-grow: 1 !important; + } + + .xl\:flex-shrink-0 { + flex-shrink: 0 !important; + } + + .xl\:flex-shrink { + flex-shrink: 1 !important; + } + + .xl\:order-1 { + order: 1 !important; + } + + .xl\:order-2 { + order: 2 !important; + } + + .xl\:order-3 { + order: 3 !important; + } + + .xl\:order-4 { + order: 4 !important; + } + + .xl\:order-5 { + order: 5 !important; + } + + .xl\:order-6 { + order: 6 !important; + } + + .xl\:order-7 { + order: 7 !important; + } + + .xl\:order-8 { + order: 8 !important; + } + + .xl\:order-9 { + order: 9 !important; + } + + .xl\:order-10 { + order: 10 !important; + } + + .xl\:order-11 { + order: 11 !important; + } + + .xl\:order-12 { + order: 12 !important; + } + + .xl\:order-first { + order: -9999 !important; + } + + .xl\:order-last { + order: 9999 !important; + } + + .xl\:order-none { + order: 0 !important; + } + + .xl\:float-right { + float: right !important; + } + + .xl\:float-left { + float: left !important; + } + + .xl\:float-none { + float: none !important; + } + + .xl\:clear-left { + clear: left !important; + } + + .xl\:clear-right { + clear: right !important; + } + + .xl\:clear-both { + clear: both !important; + } + + .xl\:clear-none { + clear: none !important; + } + + .xl\:font-sans { + font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important; + } + + .xl\:font-serif { + font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif !important; + } + + .xl\:font-mono { + font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important; + } + + .xl\:font-thin { + font-weight: 100 !important; + } + + .xl\:font-extralight { + font-weight: 200 !important; + } + + .xl\:font-light { + font-weight: 300 !important; + } + + .xl\:font-normal { + font-weight: 400 !important; + } + + .xl\:font-medium { + font-weight: 500 !important; + } + + .xl\:font-semibold { + font-weight: 600 !important; + } + + .xl\:font-bold { + font-weight: 700 !important; + } + + .xl\:font-extrabold { + font-weight: 800 !important; + } + + .xl\:font-black { + font-weight: 900 !important; + } + + .xl\:h-0 { + height: 0px !important; + } + + .xl\:h-1 { + height: 0.25rem !important; + } + + .xl\:h-2 { + height: 0.5rem !important; + } + + .xl\:h-3 { + height: 0.75rem !important; + } + + .xl\:h-4 { + height: 1rem !important; + } + + .xl\:h-5 { + height: 1.25rem !important; + } + + .xl\:h-6 { + height: 1.5rem !important; + } + + .xl\:h-7 { + height: 1.75rem !important; + } + + .xl\:h-8 { + height: 2rem !important; + } + + .xl\:h-9 { + height: 2.25rem !important; + } + + .xl\:h-10 { + height: 2.5rem !important; + } + + .xl\:h-11 { + height: 2.75rem !important; + } + + .xl\:h-12 { + height: 3rem !important; + } + + .xl\:h-14 { + height: 3.5rem !important; + } + + .xl\:h-16 { + height: 4rem !important; + } + + .xl\:h-20 { + height: 5rem !important; + } + + .xl\:h-24 { + height: 6rem !important; + } + + .xl\:h-28 { + height: 7rem !important; + } + + .xl\:h-32 { + height: 8rem !important; + } + + .xl\:h-36 { + height: 9rem !important; + } + + .xl\:h-40 { + height: 10rem !important; + } + + .xl\:h-44 { + height: 11rem !important; + } + + .xl\:h-48 { + height: 12rem !important; + } + + .xl\:h-52 { + height: 13rem !important; + } + + .xl\:h-56 { + height: 14rem !important; + } + + .xl\:h-60 { + height: 15rem !important; + } + + .xl\:h-64 { + height: 16rem !important; + } + + .xl\:h-72 { + height: 18rem !important; + } + + .xl\:h-80 { + height: 20rem !important; + } + + .xl\:h-96 { + height: 24rem !important; + } + + .xl\:h-auto { + height: auto !important; + } + + .xl\:h-px { + height: 1px !important; + } + + .xl\:h-0\.5 { + height: 0.125rem !important; + } + + .xl\:h-1\.5 { + height: 0.375rem !important; + } + + .xl\:h-2\.5 { + height: 0.625rem !important; + } + + .xl\:h-3\.5 { + height: 0.875rem !important; + } + + .xl\:h-1\/2 { + height: 50% !important; + } + + .xl\:h-1\/3 { + height: 33.333333% !important; + } + + .xl\:h-2\/3 { + height: 66.666667% !important; + } + + .xl\:h-1\/4 { + height: 25% !important; + } + + .xl\:h-2\/4 { + height: 50% !important; + } + + .xl\:h-3\/4 { + height: 75% !important; + } + + .xl\:h-1\/5 { + height: 20% !important; + } + + .xl\:h-2\/5 { + height: 40% !important; + } + + .xl\:h-3\/5 { + height: 60% !important; + } + + .xl\:h-4\/5 { + height: 80% !important; + } + + .xl\:h-1\/6 { + height: 16.666667% !important; + } + + .xl\:h-2\/6 { + height: 33.333333% !important; + } + + .xl\:h-3\/6 { + height: 50% !important; + } + + .xl\:h-4\/6 { + height: 66.666667% !important; + } + + .xl\:h-5\/6 { + height: 83.333333% !important; + } + + .xl\:h-full { + height: 100% !important; + } + + .xl\:h-screen { + height: 100vh !important; + } + + .xl\:text-xs { + font-size: 0.75rem !important; + line-height: 1rem !important; + } + + .xl\:text-sm { + font-size: 0.875rem !important; + line-height: 1.25rem !important; + } + + .xl\:text-base { + font-size: 1rem !important; + line-height: 1.5rem !important; + } + + .xl\:text-lg { + font-size: 1.125rem !important; + line-height: 1.75rem !important; + } + + .xl\:text-xl { + font-size: 1.25rem !important; + line-height: 1.75rem !important; + } + + .xl\:text-2xl { + font-size: 1.5rem !important; + line-height: 2rem !important; + } + + .xl\:text-3xl { + font-size: 1.875rem !important; + line-height: 2.25rem !important; + } + + .xl\:text-4xl { + font-size: 2.25rem !important; + line-height: 2.5rem !important; + } + + .xl\:text-5xl { + font-size: 3rem !important; + line-height: 1 !important; + } + + .xl\:text-6xl { + font-size: 3.75rem !important; + line-height: 1 !important; + } + + .xl\:text-7xl { + font-size: 4.5rem !important; + line-height: 1 !important; + } + + .xl\:text-8xl { + font-size: 6rem !important; + line-height: 1 !important; + } + + .xl\:text-9xl { + font-size: 8rem !important; + line-height: 1 !important; + } + + .xl\:leading-3 { + line-height: .75rem !important; + } + + .xl\:leading-4 { + line-height: 1rem !important; + } + + .xl\:leading-5 { + line-height: 1.25rem !important; + } + + .xl\:leading-6 { + line-height: 1.5rem !important; + } + + .xl\:leading-7 { + line-height: 1.75rem !important; + } + + .xl\:leading-8 { + line-height: 2rem !important; + } + + .xl\:leading-9 { + line-height: 2.25rem !important; + } + + .xl\:leading-10 { + line-height: 2.5rem !important; + } + + .xl\:leading-none { + line-height: 1 !important; + } + + .xl\:leading-tight { + line-height: 1.25 !important; + } + + .xl\:leading-snug { + line-height: 1.375 !important; + } + + .xl\:leading-normal { + line-height: 1.5 !important; + } + + .xl\:leading-relaxed { + line-height: 1.625 !important; + } + + .xl\:leading-loose { + line-height: 2 !important; + } + + .xl\:list-inside { + list-style-position: inside !important; + } + + .xl\:list-outside { + list-style-position: outside !important; + } + + .xl\:list-none { + list-style-type: none !important; + } + + .xl\:list-disc { + list-style-type: disc !important; + } + + .xl\:list-decimal { + list-style-type: decimal !important; + } + + .xl\:m-0 { + margin: 0px !important; + } + + .xl\:m-1 { + margin: 0.25rem !important; + } + + .xl\:m-2 { + margin: 0.5rem !important; + } + + .xl\:m-3 { + margin: 0.75rem !important; + } + + .xl\:m-4 { + margin: 1rem !important; + } + + .xl\:m-5 { + margin: 1.25rem !important; + } + + .xl\:m-6 { + margin: 1.5rem !important; + } + + .xl\:m-7 { + margin: 1.75rem !important; + } + + .xl\:m-8 { + margin: 2rem !important; + } + + .xl\:m-9 { + margin: 2.25rem !important; + } + + .xl\:m-10 { + margin: 2.5rem !important; + } + + .xl\:m-11 { + margin: 2.75rem !important; + } + + .xl\:m-12 { + margin: 3rem !important; + } + + .xl\:m-14 { + margin: 3.5rem !important; + } + + .xl\:m-16 { + margin: 4rem !important; + } + + .xl\:m-20 { + margin: 5rem !important; + } + + .xl\:m-24 { + margin: 6rem !important; + } + + .xl\:m-28 { + margin: 7rem !important; + } + + .xl\:m-32 { + margin: 8rem !important; + } + + .xl\:m-36 { + margin: 9rem !important; + } + + .xl\:m-40 { + margin: 10rem !important; + } + + .xl\:m-44 { + margin: 11rem !important; + } + + .xl\:m-48 { + margin: 12rem !important; + } + + .xl\:m-52 { + margin: 13rem !important; + } + + .xl\:m-56 { + margin: 14rem !important; + } + + .xl\:m-60 { + margin: 15rem !important; + } + + .xl\:m-64 { + margin: 16rem !important; + } + + .xl\:m-72 { + margin: 18rem !important; + } + + .xl\:m-80 { + margin: 20rem !important; + } + + .xl\:m-96 { + margin: 24rem !important; + } + + .xl\:m-auto { + margin: auto !important; + } + + .xl\:m-px { + margin: 1px !important; + } + + .xl\:m-0\.5 { + margin: 0.125rem !important; + } + + .xl\:m-1\.5 { + margin: 0.375rem !important; + } + + .xl\:m-2\.5 { + margin: 0.625rem !important; + } + + .xl\:m-3\.5 { + margin: 0.875rem !important; + } + + .xl\:-m-0 { + margin: 0px !important; + } + + .xl\:-m-1 { + margin: -0.25rem !important; + } + + .xl\:-m-2 { + margin: -0.5rem !important; + } + + .xl\:-m-3 { + margin: -0.75rem !important; + } + + .xl\:-m-4 { + margin: -1rem !important; + } + + .xl\:-m-5 { + margin: -1.25rem !important; + } + + .xl\:-m-6 { + margin: -1.5rem !important; + } + + .xl\:-m-7 { + margin: -1.75rem !important; + } + + .xl\:-m-8 { + margin: -2rem !important; + } + + .xl\:-m-9 { + margin: -2.25rem !important; + } + + .xl\:-m-10 { + margin: -2.5rem !important; + } + + .xl\:-m-11 { + margin: -2.75rem !important; + } + + .xl\:-m-12 { + margin: -3rem !important; + } + + .xl\:-m-14 { + margin: -3.5rem !important; + } + + .xl\:-m-16 { + margin: -4rem !important; + } + + .xl\:-m-20 { + margin: -5rem !important; + } + + .xl\:-m-24 { + margin: -6rem !important; + } + + .xl\:-m-28 { + margin: -7rem !important; + } + + .xl\:-m-32 { + margin: -8rem !important; + } + + .xl\:-m-36 { + margin: -9rem !important; + } + + .xl\:-m-40 { + margin: -10rem !important; + } + + .xl\:-m-44 { + margin: -11rem !important; + } + + .xl\:-m-48 { + margin: -12rem !important; + } + + .xl\:-m-52 { + margin: -13rem !important; + } + + .xl\:-m-56 { + margin: -14rem !important; + } + + .xl\:-m-60 { + margin: -15rem !important; + } + + .xl\:-m-64 { + margin: -16rem !important; + } + + .xl\:-m-72 { + margin: -18rem !important; + } + + .xl\:-m-80 { + margin: -20rem !important; + } + + .xl\:-m-96 { + margin: -24rem !important; + } + + .xl\:-m-px { + margin: -1px !important; + } + + .xl\:-m-0\.5 { + margin: -0.125rem !important; + } + + .xl\:-m-1\.5 { + margin: -0.375rem !important; + } + + .xl\:-m-2\.5 { + margin: -0.625rem !important; + } + + .xl\:-m-3\.5 { + margin: -0.875rem !important; + } + + .xl\:my-0 { + margin-top: 0px !important; + margin-bottom: 0px !important; + } + + .xl\:mx-0 { + margin-left: 0px !important; + margin-right: 0px !important; + } + + .xl\:my-1 { + margin-top: 0.25rem !important; + margin-bottom: 0.25rem !important; + } + + .xl\:mx-1 { + margin-left: 0.25rem !important; + margin-right: 0.25rem !important; + } + + .xl\:my-2 { + margin-top: 0.5rem !important; + margin-bottom: 0.5rem !important; + } + + .xl\:mx-2 { + margin-left: 0.5rem !important; + margin-right: 0.5rem !important; + } + + .xl\:my-3 { + margin-top: 0.75rem !important; + margin-bottom: 0.75rem !important; + } + + .xl\:mx-3 { + margin-left: 0.75rem !important; + margin-right: 0.75rem !important; + } + + .xl\:my-4 { + margin-top: 1rem !important; + margin-bottom: 1rem !important; + } + + .xl\:mx-4 { + margin-left: 1rem !important; + margin-right: 1rem !important; + } + + .xl\:my-5 { + margin-top: 1.25rem !important; + margin-bottom: 1.25rem !important; + } + + .xl\:mx-5 { + margin-left: 1.25rem !important; + margin-right: 1.25rem !important; + } + + .xl\:my-6 { + margin-top: 1.5rem !important; + margin-bottom: 1.5rem !important; + } + + .xl\:mx-6 { + margin-left: 1.5rem !important; + margin-right: 1.5rem !important; + } + + .xl\:my-7 { + margin-top: 1.75rem !important; + margin-bottom: 1.75rem !important; + } + + .xl\:mx-7 { + margin-left: 1.75rem !important; + margin-right: 1.75rem !important; + } + + .xl\:my-8 { + margin-top: 2rem !important; + margin-bottom: 2rem !important; + } + + .xl\:mx-8 { + margin-left: 2rem !important; + margin-right: 2rem !important; + } + + .xl\:my-9 { + margin-top: 2.25rem !important; + margin-bottom: 2.25rem !important; + } + + .xl\:mx-9 { + margin-left: 2.25rem !important; + margin-right: 2.25rem !important; + } + + .xl\:my-10 { + margin-top: 2.5rem !important; + margin-bottom: 2.5rem !important; + } + + .xl\:mx-10 { + margin-left: 2.5rem !important; + margin-right: 2.5rem !important; + } + + .xl\:my-11 { + margin-top: 2.75rem !important; + margin-bottom: 2.75rem !important; + } + + .xl\:mx-11 { + margin-left: 2.75rem !important; + margin-right: 2.75rem !important; + } + + .xl\:my-12 { + margin-top: 3rem !important; + margin-bottom: 3rem !important; + } + + .xl\:mx-12 { + margin-left: 3rem !important; + margin-right: 3rem !important; + } + + .xl\:my-14 { + margin-top: 3.5rem !important; + margin-bottom: 3.5rem !important; + } + + .xl\:mx-14 { + margin-left: 3.5rem !important; + margin-right: 3.5rem !important; + } + + .xl\:my-16 { + margin-top: 4rem !important; + margin-bottom: 4rem !important; + } + + .xl\:mx-16 { + margin-left: 4rem !important; + margin-right: 4rem !important; + } + + .xl\:my-20 { + margin-top: 5rem !important; + margin-bottom: 5rem !important; + } + + .xl\:mx-20 { + margin-left: 5rem !important; + margin-right: 5rem !important; + } + + .xl\:my-24 { + margin-top: 6rem !important; + margin-bottom: 6rem !important; + } + + .xl\:mx-24 { + margin-left: 6rem !important; + margin-right: 6rem !important; + } + + .xl\:my-28 { + margin-top: 7rem !important; + margin-bottom: 7rem !important; + } + + .xl\:mx-28 { + margin-left: 7rem !important; + margin-right: 7rem !important; + } + + .xl\:my-32 { + margin-top: 8rem !important; + margin-bottom: 8rem !important; + } + + .xl\:mx-32 { + margin-left: 8rem !important; + margin-right: 8rem !important; + } + + .xl\:my-36 { + margin-top: 9rem !important; + margin-bottom: 9rem !important; + } + + .xl\:mx-36 { + margin-left: 9rem !important; + margin-right: 9rem !important; + } + + .xl\:my-40 { + margin-top: 10rem !important; + margin-bottom: 10rem !important; + } + + .xl\:mx-40 { + margin-left: 10rem !important; + margin-right: 10rem !important; + } + + .xl\:my-44 { + margin-top: 11rem !important; + margin-bottom: 11rem !important; + } + + .xl\:mx-44 { + margin-left: 11rem !important; + margin-right: 11rem !important; + } + + .xl\:my-48 { + margin-top: 12rem !important; + margin-bottom: 12rem !important; + } + + .xl\:mx-48 { + margin-left: 12rem !important; + margin-right: 12rem !important; + } + + .xl\:my-52 { + margin-top: 13rem !important; + margin-bottom: 13rem !important; + } + + .xl\:mx-52 { + margin-left: 13rem !important; + margin-right: 13rem !important; + } + + .xl\:my-56 { + margin-top: 14rem !important; + margin-bottom: 14rem !important; + } + + .xl\:mx-56 { + margin-left: 14rem !important; + margin-right: 14rem !important; + } + + .xl\:my-60 { + margin-top: 15rem !important; + margin-bottom: 15rem !important; + } + + .xl\:mx-60 { + margin-left: 15rem !important; + margin-right: 15rem !important; + } + + .xl\:my-64 { + margin-top: 16rem !important; + margin-bottom: 16rem !important; + } + + .xl\:mx-64 { + margin-left: 16rem !important; + margin-right: 16rem !important; + } + + .xl\:my-72 { + margin-top: 18rem !important; + margin-bottom: 18rem !important; + } + + .xl\:mx-72 { + margin-left: 18rem !important; + margin-right: 18rem !important; + } + + .xl\:my-80 { + margin-top: 20rem !important; + margin-bottom: 20rem !important; + } + + .xl\:mx-80 { + margin-left: 20rem !important; + margin-right: 20rem !important; + } + + .xl\:my-96 { + margin-top: 24rem !important; + margin-bottom: 24rem !important; + } + + .xl\:mx-96 { + margin-left: 24rem !important; + margin-right: 24rem !important; + } + + .xl\:my-auto { + margin-top: auto !important; + margin-bottom: auto !important; + } + + .xl\:mx-auto { + margin-left: auto !important; + margin-right: auto !important; + } + + .xl\:my-px { + margin-top: 1px !important; + margin-bottom: 1px !important; + } + + .xl\:mx-px { + margin-left: 1px !important; + margin-right: 1px !important; + } + + .xl\:my-0\.5 { + margin-top: 0.125rem !important; + margin-bottom: 0.125rem !important; + } + + .xl\:mx-0\.5 { + margin-left: 0.125rem !important; + margin-right: 0.125rem !important; + } + + .xl\:my-1\.5 { + margin-top: 0.375rem !important; + margin-bottom: 0.375rem !important; + } + + .xl\:mx-1\.5 { + margin-left: 0.375rem !important; + margin-right: 0.375rem !important; + } + + .xl\:my-2\.5 { + margin-top: 0.625rem !important; + margin-bottom: 0.625rem !important; + } + + .xl\:mx-2\.5 { + margin-left: 0.625rem !important; + margin-right: 0.625rem !important; + } + + .xl\:my-3\.5 { + margin-top: 0.875rem !important; + margin-bottom: 0.875rem !important; + } + + .xl\:mx-3\.5 { + margin-left: 0.875rem !important; + margin-right: 0.875rem !important; + } + + .xl\:-my-0 { + margin-top: 0px !important; + margin-bottom: 0px !important; + } + + .xl\:-mx-0 { + margin-left: 0px !important; + margin-right: 0px !important; + } + + .xl\:-my-1 { + margin-top: -0.25rem !important; + margin-bottom: -0.25rem !important; + } + + .xl\:-mx-1 { + margin-left: -0.25rem !important; + margin-right: -0.25rem !important; + } + + .xl\:-my-2 { + margin-top: -0.5rem !important; + margin-bottom: -0.5rem !important; + } + + .xl\:-mx-2 { + margin-left: -0.5rem !important; + margin-right: -0.5rem !important; + } + + .xl\:-my-3 { + margin-top: -0.75rem !important; + margin-bottom: -0.75rem !important; + } + + .xl\:-mx-3 { + margin-left: -0.75rem !important; + margin-right: -0.75rem !important; + } + + .xl\:-my-4 { + margin-top: -1rem !important; + margin-bottom: -1rem !important; + } + + .xl\:-mx-4 { + margin-left: -1rem !important; + margin-right: -1rem !important; + } + + .xl\:-my-5 { + margin-top: -1.25rem !important; + margin-bottom: -1.25rem !important; + } + + .xl\:-mx-5 { + margin-left: -1.25rem !important; + margin-right: -1.25rem !important; + } + + .xl\:-my-6 { + margin-top: -1.5rem !important; + margin-bottom: -1.5rem !important; + } + + .xl\:-mx-6 { + margin-left: -1.5rem !important; + margin-right: -1.5rem !important; + } + + .xl\:-my-7 { + margin-top: -1.75rem !important; + margin-bottom: -1.75rem !important; + } + + .xl\:-mx-7 { + margin-left: -1.75rem !important; + margin-right: -1.75rem !important; + } + + .xl\:-my-8 { + margin-top: -2rem !important; + margin-bottom: -2rem !important; + } + + .xl\:-mx-8 { + margin-left: -2rem !important; + margin-right: -2rem !important; + } + + .xl\:-my-9 { + margin-top: -2.25rem !important; + margin-bottom: -2.25rem !important; + } + + .xl\:-mx-9 { + margin-left: -2.25rem !important; + margin-right: -2.25rem !important; + } + + .xl\:-my-10 { + margin-top: -2.5rem !important; + margin-bottom: -2.5rem !important; + } + + .xl\:-mx-10 { + margin-left: -2.5rem !important; + margin-right: -2.5rem !important; + } + + .xl\:-my-11 { + margin-top: -2.75rem !important; + margin-bottom: -2.75rem !important; + } + + .xl\:-mx-11 { + margin-left: -2.75rem !important; + margin-right: -2.75rem !important; + } + + .xl\:-my-12 { + margin-top: -3rem !important; + margin-bottom: -3rem !important; + } + + .xl\:-mx-12 { + margin-left: -3rem !important; + margin-right: -3rem !important; + } + + .xl\:-my-14 { + margin-top: -3.5rem !important; + margin-bottom: -3.5rem !important; + } + + .xl\:-mx-14 { + margin-left: -3.5rem !important; + margin-right: -3.5rem !important; + } + + .xl\:-my-16 { + margin-top: -4rem !important; + margin-bottom: -4rem !important; + } + + .xl\:-mx-16 { + margin-left: -4rem !important; + margin-right: -4rem !important; + } + + .xl\:-my-20 { + margin-top: -5rem !important; + margin-bottom: -5rem !important; + } + + .xl\:-mx-20 { + margin-left: -5rem !important; + margin-right: -5rem !important; + } + + .xl\:-my-24 { + margin-top: -6rem !important; + margin-bottom: -6rem !important; + } + + .xl\:-mx-24 { + margin-left: -6rem !important; + margin-right: -6rem !important; + } + + .xl\:-my-28 { + margin-top: -7rem !important; + margin-bottom: -7rem !important; + } + + .xl\:-mx-28 { + margin-left: -7rem !important; + margin-right: -7rem !important; + } + + .xl\:-my-32 { + margin-top: -8rem !important; + margin-bottom: -8rem !important; + } + + .xl\:-mx-32 { + margin-left: -8rem !important; + margin-right: -8rem !important; + } + + .xl\:-my-36 { + margin-top: -9rem !important; + margin-bottom: -9rem !important; + } + + .xl\:-mx-36 { + margin-left: -9rem !important; + margin-right: -9rem !important; + } + + .xl\:-my-40 { + margin-top: -10rem !important; + margin-bottom: -10rem !important; + } + + .xl\:-mx-40 { + margin-left: -10rem !important; + margin-right: -10rem !important; + } + + .xl\:-my-44 { + margin-top: -11rem !important; + margin-bottom: -11rem !important; + } + + .xl\:-mx-44 { + margin-left: -11rem !important; + margin-right: -11rem !important; + } + + .xl\:-my-48 { + margin-top: -12rem !important; + margin-bottom: -12rem !important; + } + + .xl\:-mx-48 { + margin-left: -12rem !important; + margin-right: -12rem !important; + } + + .xl\:-my-52 { + margin-top: -13rem !important; + margin-bottom: -13rem !important; + } + + .xl\:-mx-52 { + margin-left: -13rem !important; + margin-right: -13rem !important; + } + + .xl\:-my-56 { + margin-top: -14rem !important; + margin-bottom: -14rem !important; + } + + .xl\:-mx-56 { + margin-left: -14rem !important; + margin-right: -14rem !important; + } + + .xl\:-my-60 { + margin-top: -15rem !important; + margin-bottom: -15rem !important; + } + + .xl\:-mx-60 { + margin-left: -15rem !important; + margin-right: -15rem !important; + } + + .xl\:-my-64 { + margin-top: -16rem !important; + margin-bottom: -16rem !important; + } + + .xl\:-mx-64 { + margin-left: -16rem !important; + margin-right: -16rem !important; + } + + .xl\:-my-72 { + margin-top: -18rem !important; + margin-bottom: -18rem !important; + } + + .xl\:-mx-72 { + margin-left: -18rem !important; + margin-right: -18rem !important; + } + + .xl\:-my-80 { + margin-top: -20rem !important; + margin-bottom: -20rem !important; + } + + .xl\:-mx-80 { + margin-left: -20rem !important; + margin-right: -20rem !important; + } + + .xl\:-my-96 { + margin-top: -24rem !important; + margin-bottom: -24rem !important; + } + + .xl\:-mx-96 { + margin-left: -24rem !important; + margin-right: -24rem !important; + } + + .xl\:-my-px { + margin-top: -1px !important; + margin-bottom: -1px !important; + } + + .xl\:-mx-px { + margin-left: -1px !important; + margin-right: -1px !important; + } + + .xl\:-my-0\.5 { + margin-top: -0.125rem !important; + margin-bottom: -0.125rem !important; + } + + .xl\:-mx-0\.5 { + margin-left: -0.125rem !important; + margin-right: -0.125rem !important; + } + + .xl\:-my-1\.5 { + margin-top: -0.375rem !important; + margin-bottom: -0.375rem !important; + } + + .xl\:-mx-1\.5 { + margin-left: -0.375rem !important; + margin-right: -0.375rem !important; + } + + .xl\:-my-2\.5 { + margin-top: -0.625rem !important; + margin-bottom: -0.625rem !important; + } + + .xl\:-mx-2\.5 { + margin-left: -0.625rem !important; + margin-right: -0.625rem !important; + } + + .xl\:-my-3\.5 { + margin-top: -0.875rem !important; + margin-bottom: -0.875rem !important; + } + + .xl\:-mx-3\.5 { + margin-left: -0.875rem !important; + margin-right: -0.875rem !important; + } + + .xl\:mt-0 { + margin-top: 0px !important; + } + + .xl\:mr-0 { + margin-right: 0px !important; + } + + .xl\:mb-0 { + margin-bottom: 0px !important; + } + + .xl\:ml-0 { + margin-left: 0px !important; + } + + .xl\:mt-1 { + margin-top: 0.25rem !important; + } + + .xl\:mr-1 { + margin-right: 0.25rem !important; + } + + .xl\:mb-1 { + margin-bottom: 0.25rem !important; + } + + .xl\:ml-1 { + margin-left: 0.25rem !important; + } + + .xl\:mt-2 { + margin-top: 0.5rem !important; + } + + .xl\:mr-2 { + margin-right: 0.5rem !important; + } + + .xl\:mb-2 { + margin-bottom: 0.5rem !important; + } + + .xl\:ml-2 { + margin-left: 0.5rem !important; + } + + .xl\:mt-3 { + margin-top: 0.75rem !important; + } + + .xl\:mr-3 { + margin-right: 0.75rem !important; + } + + .xl\:mb-3 { + margin-bottom: 0.75rem !important; + } + + .xl\:ml-3 { + margin-left: 0.75rem !important; + } + + .xl\:mt-4 { + margin-top: 1rem !important; + } + + .xl\:mr-4 { + margin-right: 1rem !important; + } + + .xl\:mb-4 { + margin-bottom: 1rem !important; + } + + .xl\:ml-4 { + margin-left: 1rem !important; + } + + .xl\:mt-5 { + margin-top: 1.25rem !important; + } + + .xl\:mr-5 { + margin-right: 1.25rem !important; + } + + .xl\:mb-5 { + margin-bottom: 1.25rem !important; + } + + .xl\:ml-5 { + margin-left: 1.25rem !important; + } + + .xl\:mt-6 { + margin-top: 1.5rem !important; + } + + .xl\:mr-6 { + margin-right: 1.5rem !important; + } + + .xl\:mb-6 { + margin-bottom: 1.5rem !important; + } + + .xl\:ml-6 { + margin-left: 1.5rem !important; + } + + .xl\:mt-7 { + margin-top: 1.75rem !important; + } + + .xl\:mr-7 { + margin-right: 1.75rem !important; + } + + .xl\:mb-7 { + margin-bottom: 1.75rem !important; + } + + .xl\:ml-7 { + margin-left: 1.75rem !important; + } + + .xl\:mt-8 { + margin-top: 2rem !important; + } + + .xl\:mr-8 { + margin-right: 2rem !important; + } + + .xl\:mb-8 { + margin-bottom: 2rem !important; + } + + .xl\:ml-8 { + margin-left: 2rem !important; + } + + .xl\:mt-9 { + margin-top: 2.25rem !important; + } + + .xl\:mr-9 { + margin-right: 2.25rem !important; + } + + .xl\:mb-9 { + margin-bottom: 2.25rem !important; + } + + .xl\:ml-9 { + margin-left: 2.25rem !important; + } + + .xl\:mt-10 { + margin-top: 2.5rem !important; + } + + .xl\:mr-10 { + margin-right: 2.5rem !important; + } + + .xl\:mb-10 { + margin-bottom: 2.5rem !important; + } + + .xl\:ml-10 { + margin-left: 2.5rem !important; + } + + .xl\:mt-11 { + margin-top: 2.75rem !important; + } + + .xl\:mr-11 { + margin-right: 2.75rem !important; + } + + .xl\:mb-11 { + margin-bottom: 2.75rem !important; + } + + .xl\:ml-11 { + margin-left: 2.75rem !important; + } + + .xl\:mt-12 { + margin-top: 3rem !important; + } + + .xl\:mr-12 { + margin-right: 3rem !important; + } + + .xl\:mb-12 { + margin-bottom: 3rem !important; + } + + .xl\:ml-12 { + margin-left: 3rem !important; + } + + .xl\:mt-14 { + margin-top: 3.5rem !important; + } + + .xl\:mr-14 { + margin-right: 3.5rem !important; + } + + .xl\:mb-14 { + margin-bottom: 3.5rem !important; + } + + .xl\:ml-14 { + margin-left: 3.5rem !important; + } + + .xl\:mt-16 { + margin-top: 4rem !important; + } + + .xl\:mr-16 { + margin-right: 4rem !important; + } + + .xl\:mb-16 { + margin-bottom: 4rem !important; + } + + .xl\:ml-16 { + margin-left: 4rem !important; + } + + .xl\:mt-20 { + margin-top: 5rem !important; + } + + .xl\:mr-20 { + margin-right: 5rem !important; + } + + .xl\:mb-20 { + margin-bottom: 5rem !important; + } + + .xl\:ml-20 { + margin-left: 5rem !important; + } + + .xl\:mt-24 { + margin-top: 6rem !important; + } + + .xl\:mr-24 { + margin-right: 6rem !important; + } + + .xl\:mb-24 { + margin-bottom: 6rem !important; + } + + .xl\:ml-24 { + margin-left: 6rem !important; + } + + .xl\:mt-28 { + margin-top: 7rem !important; + } + + .xl\:mr-28 { + margin-right: 7rem !important; + } + + .xl\:mb-28 { + margin-bottom: 7rem !important; + } + + .xl\:ml-28 { + margin-left: 7rem !important; + } + + .xl\:mt-32 { + margin-top: 8rem !important; + } + + .xl\:mr-32 { + margin-right: 8rem !important; + } + + .xl\:mb-32 { + margin-bottom: 8rem !important; + } + + .xl\:ml-32 { + margin-left: 8rem !important; + } + + .xl\:mt-36 { + margin-top: 9rem !important; + } + + .xl\:mr-36 { + margin-right: 9rem !important; + } + + .xl\:mb-36 { + margin-bottom: 9rem !important; + } + + .xl\:ml-36 { + margin-left: 9rem !important; + } + + .xl\:mt-40 { + margin-top: 10rem !important; + } + + .xl\:mr-40 { + margin-right: 10rem !important; + } + + .xl\:mb-40 { + margin-bottom: 10rem !important; + } + + .xl\:ml-40 { + margin-left: 10rem !important; + } + + .xl\:mt-44 { + margin-top: 11rem !important; + } + + .xl\:mr-44 { + margin-right: 11rem !important; + } + + .xl\:mb-44 { + margin-bottom: 11rem !important; + } + + .xl\:ml-44 { + margin-left: 11rem !important; + } + + .xl\:mt-48 { + margin-top: 12rem !important; + } + + .xl\:mr-48 { + margin-right: 12rem !important; + } + + .xl\:mb-48 { + margin-bottom: 12rem !important; + } + + .xl\:ml-48 { + margin-left: 12rem !important; + } + + .xl\:mt-52 { + margin-top: 13rem !important; + } + + .xl\:mr-52 { + margin-right: 13rem !important; + } + + .xl\:mb-52 { + margin-bottom: 13rem !important; + } + + .xl\:ml-52 { + margin-left: 13rem !important; + } + + .xl\:mt-56 { + margin-top: 14rem !important; + } + + .xl\:mr-56 { + margin-right: 14rem !important; + } + + .xl\:mb-56 { + margin-bottom: 14rem !important; + } + + .xl\:ml-56 { + margin-left: 14rem !important; + } + + .xl\:mt-60 { + margin-top: 15rem !important; + } + + .xl\:mr-60 { + margin-right: 15rem !important; + } + + .xl\:mb-60 { + margin-bottom: 15rem !important; + } + + .xl\:ml-60 { + margin-left: 15rem !important; + } + + .xl\:mt-64 { + margin-top: 16rem !important; + } + + .xl\:mr-64 { + margin-right: 16rem !important; + } + + .xl\:mb-64 { + margin-bottom: 16rem !important; + } + + .xl\:ml-64 { + margin-left: 16rem !important; + } + + .xl\:mt-72 { + margin-top: 18rem !important; + } + + .xl\:mr-72 { + margin-right: 18rem !important; + } + + .xl\:mb-72 { + margin-bottom: 18rem !important; + } + + .xl\:ml-72 { + margin-left: 18rem !important; + } + + .xl\:mt-80 { + margin-top: 20rem !important; + } + + .xl\:mr-80 { + margin-right: 20rem !important; + } + + .xl\:mb-80 { + margin-bottom: 20rem !important; + } + + .xl\:ml-80 { + margin-left: 20rem !important; + } + + .xl\:mt-96 { + margin-top: 24rem !important; + } + + .xl\:mr-96 { + margin-right: 24rem !important; + } + + .xl\:mb-96 { + margin-bottom: 24rem !important; + } + + .xl\:ml-96 { + margin-left: 24rem !important; + } + + .xl\:mt-auto { + margin-top: auto !important; + } + + .xl\:mr-auto { + margin-right: auto !important; + } + + .xl\:mb-auto { + margin-bottom: auto !important; + } + + .xl\:ml-auto { + margin-left: auto !important; + } + + .xl\:mt-px { + margin-top: 1px !important; + } + + .xl\:mr-px { + margin-right: 1px !important; + } + + .xl\:mb-px { + margin-bottom: 1px !important; + } + + .xl\:ml-px { + margin-left: 1px !important; + } + + .xl\:mt-0\.5 { + margin-top: 0.125rem !important; + } + + .xl\:mr-0\.5 { + margin-right: 0.125rem !important; + } + + .xl\:mb-0\.5 { + margin-bottom: 0.125rem !important; + } + + .xl\:ml-0\.5 { + margin-left: 0.125rem !important; + } + + .xl\:mt-1\.5 { + margin-top: 0.375rem !important; + } + + .xl\:mr-1\.5 { + margin-right: 0.375rem !important; + } + + .xl\:mb-1\.5 { + margin-bottom: 0.375rem !important; + } + + .xl\:ml-1\.5 { + margin-left: 0.375rem !important; + } + + .xl\:mt-2\.5 { + margin-top: 0.625rem !important; + } + + .xl\:mr-2\.5 { + margin-right: 0.625rem !important; + } + + .xl\:mb-2\.5 { + margin-bottom: 0.625rem !important; + } + + .xl\:ml-2\.5 { + margin-left: 0.625rem !important; + } + + .xl\:mt-3\.5 { + margin-top: 0.875rem !important; + } + + .xl\:mr-3\.5 { + margin-right: 0.875rem !important; + } + + .xl\:mb-3\.5 { + margin-bottom: 0.875rem !important; + } + + .xl\:ml-3\.5 { + margin-left: 0.875rem !important; + } + + .xl\:-mt-0 { + margin-top: 0px !important; + } + + .xl\:-mr-0 { + margin-right: 0px !important; + } + + .xl\:-mb-0 { + margin-bottom: 0px !important; + } + + .xl\:-ml-0 { + margin-left: 0px !important; + } + + .xl\:-mt-1 { + margin-top: -0.25rem !important; + } + + .xl\:-mr-1 { + margin-right: -0.25rem !important; + } + + .xl\:-mb-1 { + margin-bottom: -0.25rem !important; + } + + .xl\:-ml-1 { + margin-left: -0.25rem !important; + } + + .xl\:-mt-2 { + margin-top: -0.5rem !important; + } + + .xl\:-mr-2 { + margin-right: -0.5rem !important; + } + + .xl\:-mb-2 { + margin-bottom: -0.5rem !important; + } + + .xl\:-ml-2 { + margin-left: -0.5rem !important; + } + + .xl\:-mt-3 { + margin-top: -0.75rem !important; + } + + .xl\:-mr-3 { + margin-right: -0.75rem !important; + } + + .xl\:-mb-3 { + margin-bottom: -0.75rem !important; + } + + .xl\:-ml-3 { + margin-left: -0.75rem !important; + } + + .xl\:-mt-4 { + margin-top: -1rem !important; + } + + .xl\:-mr-4 { + margin-right: -1rem !important; + } + + .xl\:-mb-4 { + margin-bottom: -1rem !important; + } + + .xl\:-ml-4 { + margin-left: -1rem !important; + } + + .xl\:-mt-5 { + margin-top: -1.25rem !important; + } + + .xl\:-mr-5 { + margin-right: -1.25rem !important; + } + + .xl\:-mb-5 { + margin-bottom: -1.25rem !important; + } + + .xl\:-ml-5 { + margin-left: -1.25rem !important; + } + + .xl\:-mt-6 { + margin-top: -1.5rem !important; + } + + .xl\:-mr-6 { + margin-right: -1.5rem !important; + } + + .xl\:-mb-6 { + margin-bottom: -1.5rem !important; + } + + .xl\:-ml-6 { + margin-left: -1.5rem !important; + } + + .xl\:-mt-7 { + margin-top: -1.75rem !important; + } + + .xl\:-mr-7 { + margin-right: -1.75rem !important; + } + + .xl\:-mb-7 { + margin-bottom: -1.75rem !important; + } + + .xl\:-ml-7 { + margin-left: -1.75rem !important; + } + + .xl\:-mt-8 { + margin-top: -2rem !important; + } + + .xl\:-mr-8 { + margin-right: -2rem !important; + } + + .xl\:-mb-8 { + margin-bottom: -2rem !important; + } + + .xl\:-ml-8 { + margin-left: -2rem !important; + } + + .xl\:-mt-9 { + margin-top: -2.25rem !important; + } + + .xl\:-mr-9 { + margin-right: -2.25rem !important; + } + + .xl\:-mb-9 { + margin-bottom: -2.25rem !important; + } + + .xl\:-ml-9 { + margin-left: -2.25rem !important; + } + + .xl\:-mt-10 { + margin-top: -2.5rem !important; + } + + .xl\:-mr-10 { + margin-right: -2.5rem !important; + } + + .xl\:-mb-10 { + margin-bottom: -2.5rem !important; + } + + .xl\:-ml-10 { + margin-left: -2.5rem !important; + } + + .xl\:-mt-11 { + margin-top: -2.75rem !important; + } + + .xl\:-mr-11 { + margin-right: -2.75rem !important; + } + + .xl\:-mb-11 { + margin-bottom: -2.75rem !important; + } + + .xl\:-ml-11 { + margin-left: -2.75rem !important; + } + + .xl\:-mt-12 { + margin-top: -3rem !important; + } + + .xl\:-mr-12 { + margin-right: -3rem !important; + } + + .xl\:-mb-12 { + margin-bottom: -3rem !important; + } + + .xl\:-ml-12 { + margin-left: -3rem !important; + } + + .xl\:-mt-14 { + margin-top: -3.5rem !important; + } + + .xl\:-mr-14 { + margin-right: -3.5rem !important; + } + + .xl\:-mb-14 { + margin-bottom: -3.5rem !important; + } + + .xl\:-ml-14 { + margin-left: -3.5rem !important; + } + + .xl\:-mt-16 { + margin-top: -4rem !important; + } + + .xl\:-mr-16 { + margin-right: -4rem !important; + } + + .xl\:-mb-16 { + margin-bottom: -4rem !important; + } + + .xl\:-ml-16 { + margin-left: -4rem !important; + } + + .xl\:-mt-20 { + margin-top: -5rem !important; + } + + .xl\:-mr-20 { + margin-right: -5rem !important; + } + + .xl\:-mb-20 { + margin-bottom: -5rem !important; + } + + .xl\:-ml-20 { + margin-left: -5rem !important; + } + + .xl\:-mt-24 { + margin-top: -6rem !important; + } + + .xl\:-mr-24 { + margin-right: -6rem !important; + } + + .xl\:-mb-24 { + margin-bottom: -6rem !important; + } + + .xl\:-ml-24 { + margin-left: -6rem !important; + } + + .xl\:-mt-28 { + margin-top: -7rem !important; + } + + .xl\:-mr-28 { + margin-right: -7rem !important; + } + + .xl\:-mb-28 { + margin-bottom: -7rem !important; + } + + .xl\:-ml-28 { + margin-left: -7rem !important; + } + + .xl\:-mt-32 { + margin-top: -8rem !important; + } + + .xl\:-mr-32 { + margin-right: -8rem !important; + } + + .xl\:-mb-32 { + margin-bottom: -8rem !important; + } + + .xl\:-ml-32 { + margin-left: -8rem !important; + } + + .xl\:-mt-36 { + margin-top: -9rem !important; + } + + .xl\:-mr-36 { + margin-right: -9rem !important; + } + + .xl\:-mb-36 { + margin-bottom: -9rem !important; + } + + .xl\:-ml-36 { + margin-left: -9rem !important; + } + + .xl\:-mt-40 { + margin-top: -10rem !important; + } + + .xl\:-mr-40 { + margin-right: -10rem !important; + } + + .xl\:-mb-40 { + margin-bottom: -10rem !important; + } + + .xl\:-ml-40 { + margin-left: -10rem !important; + } + + .xl\:-mt-44 { + margin-top: -11rem !important; + } + + .xl\:-mr-44 { + margin-right: -11rem !important; + } + + .xl\:-mb-44 { + margin-bottom: -11rem !important; + } + + .xl\:-ml-44 { + margin-left: -11rem !important; + } + + .xl\:-mt-48 { + margin-top: -12rem !important; + } + + .xl\:-mr-48 { + margin-right: -12rem !important; + } + + .xl\:-mb-48 { + margin-bottom: -12rem !important; + } + + .xl\:-ml-48 { + margin-left: -12rem !important; + } + + .xl\:-mt-52 { + margin-top: -13rem !important; + } + + .xl\:-mr-52 { + margin-right: -13rem !important; + } + + .xl\:-mb-52 { + margin-bottom: -13rem !important; + } + + .xl\:-ml-52 { + margin-left: -13rem !important; + } + + .xl\:-mt-56 { + margin-top: -14rem !important; + } + + .xl\:-mr-56 { + margin-right: -14rem !important; + } + + .xl\:-mb-56 { + margin-bottom: -14rem !important; + } + + .xl\:-ml-56 { + margin-left: -14rem !important; + } + + .xl\:-mt-60 { + margin-top: -15rem !important; + } + + .xl\:-mr-60 { + margin-right: -15rem !important; + } + + .xl\:-mb-60 { + margin-bottom: -15rem !important; + } + + .xl\:-ml-60 { + margin-left: -15rem !important; + } + + .xl\:-mt-64 { + margin-top: -16rem !important; + } + + .xl\:-mr-64 { + margin-right: -16rem !important; + } + + .xl\:-mb-64 { + margin-bottom: -16rem !important; + } + + .xl\:-ml-64 { + margin-left: -16rem !important; + } + + .xl\:-mt-72 { + margin-top: -18rem !important; + } + + .xl\:-mr-72 { + margin-right: -18rem !important; + } + + .xl\:-mb-72 { + margin-bottom: -18rem !important; + } + + .xl\:-ml-72 { + margin-left: -18rem !important; + } + + .xl\:-mt-80 { + margin-top: -20rem !important; + } + + .xl\:-mr-80 { + margin-right: -20rem !important; + } + + .xl\:-mb-80 { + margin-bottom: -20rem !important; + } + + .xl\:-ml-80 { + margin-left: -20rem !important; + } + + .xl\:-mt-96 { + margin-top: -24rem !important; + } + + .xl\:-mr-96 { + margin-right: -24rem !important; + } + + .xl\:-mb-96 { + margin-bottom: -24rem !important; + } + + .xl\:-ml-96 { + margin-left: -24rem !important; + } + + .xl\:-mt-px { + margin-top: -1px !important; + } + + .xl\:-mr-px { + margin-right: -1px !important; + } + + .xl\:-mb-px { + margin-bottom: -1px !important; + } + + .xl\:-ml-px { + margin-left: -1px !important; + } + + .xl\:-mt-0\.5 { + margin-top: -0.125rem !important; + } + + .xl\:-mr-0\.5 { + margin-right: -0.125rem !important; + } + + .xl\:-mb-0\.5 { + margin-bottom: -0.125rem !important; + } + + .xl\:-ml-0\.5 { + margin-left: -0.125rem !important; + } + + .xl\:-mt-1\.5 { + margin-top: -0.375rem !important; + } + + .xl\:-mr-1\.5 { + margin-right: -0.375rem !important; + } + + .xl\:-mb-1\.5 { + margin-bottom: -0.375rem !important; + } + + .xl\:-ml-1\.5 { + margin-left: -0.375rem !important; + } + + .xl\:-mt-2\.5 { + margin-top: -0.625rem !important; + } + + .xl\:-mr-2\.5 { + margin-right: -0.625rem !important; + } + + .xl\:-mb-2\.5 { + margin-bottom: -0.625rem !important; + } + + .xl\:-ml-2\.5 { + margin-left: -0.625rem !important; + } + + .xl\:-mt-3\.5 { + margin-top: -0.875rem !important; + } + + .xl\:-mr-3\.5 { + margin-right: -0.875rem !important; + } + + .xl\:-mb-3\.5 { + margin-bottom: -0.875rem !important; + } + + .xl\:-ml-3\.5 { + margin-left: -0.875rem !important; + } + + .xl\:max-h-0 { + max-height: 0px !important; + } + + .xl\:max-h-1 { + max-height: 0.25rem !important; + } + + .xl\:max-h-2 { + max-height: 0.5rem !important; + } + + .xl\:max-h-3 { + max-height: 0.75rem !important; + } + + .xl\:max-h-4 { + max-height: 1rem !important; + } + + .xl\:max-h-5 { + max-height: 1.25rem !important; + } + + .xl\:max-h-6 { + max-height: 1.5rem !important; + } + + .xl\:max-h-7 { + max-height: 1.75rem !important; + } + + .xl\:max-h-8 { + max-height: 2rem !important; + } + + .xl\:max-h-9 { + max-height: 2.25rem !important; + } + + .xl\:max-h-10 { + max-height: 2.5rem !important; + } + + .xl\:max-h-11 { + max-height: 2.75rem !important; + } + + .xl\:max-h-12 { + max-height: 3rem !important; + } + + .xl\:max-h-14 { + max-height: 3.5rem !important; + } + + .xl\:max-h-16 { + max-height: 4rem !important; + } + + .xl\:max-h-20 { + max-height: 5rem !important; + } + + .xl\:max-h-24 { + max-height: 6rem !important; + } + + .xl\:max-h-28 { + max-height: 7rem !important; + } + + .xl\:max-h-32 { + max-height: 8rem !important; + } + + .xl\:max-h-36 { + max-height: 9rem !important; + } + + .xl\:max-h-40 { + max-height: 10rem !important; + } + + .xl\:max-h-44 { + max-height: 11rem !important; + } + + .xl\:max-h-48 { + max-height: 12rem !important; + } + + .xl\:max-h-52 { + max-height: 13rem !important; + } + + .xl\:max-h-56 { + max-height: 14rem !important; + } + + .xl\:max-h-60 { + max-height: 15rem !important; + } + + .xl\:max-h-64 { + max-height: 16rem !important; + } + + .xl\:max-h-72 { + max-height: 18rem !important; + } + + .xl\:max-h-80 { + max-height: 20rem !important; + } + + .xl\:max-h-96 { + max-height: 24rem !important; + } + + .xl\:max-h-px { + max-height: 1px !important; + } + + .xl\:max-h-0\.5 { + max-height: 0.125rem !important; + } + + .xl\:max-h-1\.5 { + max-height: 0.375rem !important; + } + + .xl\:max-h-2\.5 { + max-height: 0.625rem !important; + } + + .xl\:max-h-3\.5 { + max-height: 0.875rem !important; + } + + .xl\:max-h-full { + max-height: 100% !important; + } + + .xl\:max-h-screen { + max-height: 100vh !important; + } + + .xl\:max-w-0 { + max-width: 0rem !important; + } + + .xl\:max-w-none { + max-width: none !important; + } + + .xl\:max-w-xs { + max-width: 20rem !important; + } + + .xl\:max-w-sm { + max-width: 24rem !important; + } + + .xl\:max-w-md { + max-width: 28rem !important; + } + + .xl\:max-w-lg { + max-width: 32rem !important; + } + + .xl\:max-w-xl { + max-width: 36rem !important; + } + + .xl\:max-w-2xl { + max-width: 42rem !important; + } + + .xl\:max-w-3xl { + max-width: 48rem !important; + } + + .xl\:max-w-4xl { + max-width: 56rem !important; + } + + .xl\:max-w-5xl { + max-width: 64rem !important; + } + + .xl\:max-w-6xl { + max-width: 72rem !important; + } + + .xl\:max-w-7xl { + max-width: 80rem !important; + } + + .xl\:max-w-full { + max-width: 100% !important; + } + + .xl\:max-w-min { + max-width: -webkit-min-content !important; + max-width: -moz-min-content !important; + max-width: min-content !important; + } + + .xl\:max-w-max { + max-width: -webkit-max-content !important; + max-width: -moz-max-content !important; + max-width: max-content !important; + } + + .xl\:max-w-prose { + max-width: 65ch !important; + } + + .xl\:max-w-screen-sm { + max-width: 640px !important; + } + + .xl\:max-w-screen-md { + max-width: 768px !important; + } + + .xl\:max-w-screen-lg { + max-width: 1024px !important; + } + + .xl\:max-w-screen-xl { + max-width: 1280px !important; + } + + .xl\:max-w-screen-2xl { + max-width: 1536px !important; + } + + .xl\:min-h-0 { + min-height: 0px !important; + } + + .xl\:min-h-full { + min-height: 100% !important; + } + + .xl\:min-h-screen { + min-height: 100vh !important; + } + + .xl\:min-w-0 { + min-width: 0px !important; + } + + .xl\:min-w-full { + min-width: 100% !important; + } + + .xl\:min-w-min { + min-width: -webkit-min-content !important; + min-width: -moz-min-content !important; + min-width: min-content !important; + } + + .xl\:min-w-max { + min-width: -webkit-max-content !important; + min-width: -moz-max-content !important; + min-width: max-content !important; + } + + .xl\:object-contain { + -o-object-fit: contain !important; + object-fit: contain !important; + } + + .xl\:object-cover { + -o-object-fit: cover !important; + object-fit: cover !important; + } + + .xl\:object-fill { + -o-object-fit: fill !important; + object-fit: fill !important; + } + + .xl\:object-none { + -o-object-fit: none !important; + object-fit: none !important; + } + + .xl\:object-scale-down { + -o-object-fit: scale-down !important; + object-fit: scale-down !important; + } + + .xl\:object-bottom { + -o-object-position: bottom !important; + object-position: bottom !important; + } + + .xl\:object-center { + -o-object-position: center !important; + object-position: center !important; + } + + .xl\:object-left { + -o-object-position: left !important; + object-position: left !important; + } + + .xl\:object-left-bottom { + -o-object-position: left bottom !important; + object-position: left bottom !important; + } + + .xl\:object-left-top { + -o-object-position: left top !important; + object-position: left top !important; + } + + .xl\:object-right { + -o-object-position: right !important; + object-position: right !important; + } + + .xl\:object-right-bottom { + -o-object-position: right bottom !important; + object-position: right bottom !important; + } + + .xl\:object-right-top { + -o-object-position: right top !important; + object-position: right top !important; + } + + .xl\:object-top { + -o-object-position: top !important; + object-position: top !important; + } + + .xl\:opacity-0 { + opacity: 0 !important; + } + + .xl\:opacity-5 { + opacity: 0.05 !important; + } + + .xl\:opacity-10 { + opacity: 0.1 !important; + } + + .xl\:opacity-20 { + opacity: 0.2 !important; + } + + .xl\:opacity-25 { + opacity: 0.25 !important; + } + + .xl\:opacity-30 { + opacity: 0.3 !important; + } + + .xl\:opacity-40 { + opacity: 0.4 !important; + } + + .xl\:opacity-50 { + opacity: 0.5 !important; + } + + .xl\:opacity-60 { + opacity: 0.6 !important; + } + + .xl\:opacity-70 { + opacity: 0.7 !important; + } + + .xl\:opacity-75 { + opacity: 0.75 !important; + } + + .xl\:opacity-80 { + opacity: 0.8 !important; + } + + .xl\:opacity-90 { + opacity: 0.9 !important; + } + + .xl\:opacity-95 { + opacity: 0.95 !important; + } + + .xl\:opacity-100 { + opacity: 1 !important; + } + + .group:hover .xl\:group-hover\:opacity-0 { + opacity: 0 !important; + } + + .group:hover .xl\:group-hover\:opacity-5 { + opacity: 0.05 !important; + } + + .group:hover .xl\:group-hover\:opacity-10 { + opacity: 0.1 !important; + } + + .group:hover .xl\:group-hover\:opacity-20 { + opacity: 0.2 !important; + } + + .group:hover .xl\:group-hover\:opacity-25 { + opacity: 0.25 !important; + } + + .group:hover .xl\:group-hover\:opacity-30 { + opacity: 0.3 !important; + } + + .group:hover .xl\:group-hover\:opacity-40 { + opacity: 0.4 !important; + } + + .group:hover .xl\:group-hover\:opacity-50 { + opacity: 0.5 !important; + } + + .group:hover .xl\:group-hover\:opacity-60 { + opacity: 0.6 !important; + } + + .group:hover .xl\:group-hover\:opacity-70 { + opacity: 0.7 !important; + } + + .group:hover .xl\:group-hover\:opacity-75 { + opacity: 0.75 !important; + } + + .group:hover .xl\:group-hover\:opacity-80 { + opacity: 0.8 !important; + } + + .group:hover .xl\:group-hover\:opacity-90 { + opacity: 0.9 !important; + } + + .group:hover .xl\:group-hover\:opacity-95 { + opacity: 0.95 !important; + } + + .group:hover .xl\:group-hover\:opacity-100 { + opacity: 1 !important; + } + + .xl\:focus-within\:opacity-0:focus-within { + opacity: 0 !important; + } + + .xl\:focus-within\:opacity-5:focus-within { + opacity: 0.05 !important; + } + + .xl\:focus-within\:opacity-10:focus-within { + opacity: 0.1 !important; + } + + .xl\:focus-within\:opacity-20:focus-within { + opacity: 0.2 !important; + } + + .xl\:focus-within\:opacity-25:focus-within { + opacity: 0.25 !important; + } + + .xl\:focus-within\:opacity-30:focus-within { + opacity: 0.3 !important; + } + + .xl\:focus-within\:opacity-40:focus-within { + opacity: 0.4 !important; + } + + .xl\:focus-within\:opacity-50:focus-within { + opacity: 0.5 !important; + } + + .xl\:focus-within\:opacity-60:focus-within { + opacity: 0.6 !important; + } + + .xl\:focus-within\:opacity-70:focus-within { + opacity: 0.7 !important; + } + + .xl\:focus-within\:opacity-75:focus-within { + opacity: 0.75 !important; + } + + .xl\:focus-within\:opacity-80:focus-within { + opacity: 0.8 !important; + } + + .xl\:focus-within\:opacity-90:focus-within { + opacity: 0.9 !important; + } + + .xl\:focus-within\:opacity-95:focus-within { + opacity: 0.95 !important; + } + + .xl\:focus-within\:opacity-100:focus-within { + opacity: 1 !important; + } + + .xl\:hover\:opacity-0:hover { + opacity: 0 !important; + } + + .xl\:hover\:opacity-5:hover { + opacity: 0.05 !important; + } + + .xl\:hover\:opacity-10:hover { + opacity: 0.1 !important; + } + + .xl\:hover\:opacity-20:hover { + opacity: 0.2 !important; + } + + .xl\:hover\:opacity-25:hover { + opacity: 0.25 !important; + } + + .xl\:hover\:opacity-30:hover { + opacity: 0.3 !important; + } + + .xl\:hover\:opacity-40:hover { + opacity: 0.4 !important; + } + + .xl\:hover\:opacity-50:hover { + opacity: 0.5 !important; + } + + .xl\:hover\:opacity-60:hover { + opacity: 0.6 !important; + } + + .xl\:hover\:opacity-70:hover { + opacity: 0.7 !important; + } + + .xl\:hover\:opacity-75:hover { + opacity: 0.75 !important; + } + + .xl\:hover\:opacity-80:hover { + opacity: 0.8 !important; + } + + .xl\:hover\:opacity-90:hover { + opacity: 0.9 !important; + } + + .xl\:hover\:opacity-95:hover { + opacity: 0.95 !important; + } + + .xl\:hover\:opacity-100:hover { + opacity: 1 !important; + } + + .xl\:focus\:opacity-0:focus { + opacity: 0 !important; + } + + .xl\:focus\:opacity-5:focus { + opacity: 0.05 !important; + } + + .xl\:focus\:opacity-10:focus { + opacity: 0.1 !important; + } + + .xl\:focus\:opacity-20:focus { + opacity: 0.2 !important; + } + + .xl\:focus\:opacity-25:focus { + opacity: 0.25 !important; + } + + .xl\:focus\:opacity-30:focus { + opacity: 0.3 !important; + } + + .xl\:focus\:opacity-40:focus { + opacity: 0.4 !important; + } + + .xl\:focus\:opacity-50:focus { + opacity: 0.5 !important; + } + + .xl\:focus\:opacity-60:focus { + opacity: 0.6 !important; + } + + .xl\:focus\:opacity-70:focus { + opacity: 0.7 !important; + } + + .xl\:focus\:opacity-75:focus { + opacity: 0.75 !important; + } + + .xl\:focus\:opacity-80:focus { + opacity: 0.8 !important; + } + + .xl\:focus\:opacity-90:focus { + opacity: 0.9 !important; + } + + .xl\:focus\:opacity-95:focus { + opacity: 0.95 !important; + } + + .xl\:focus\:opacity-100:focus { + opacity: 1 !important; + } + + .xl\:disabled\:opacity-0:disabled { + opacity: 0 !important; + } + + .xl\:disabled\:opacity-5:disabled { + opacity: 0.05 !important; + } + + .xl\:disabled\:opacity-10:disabled { + opacity: 0.1 !important; + } + + .xl\:disabled\:opacity-20:disabled { + opacity: 0.2 !important; + } + + .xl\:disabled\:opacity-25:disabled { + opacity: 0.25 !important; + } + + .xl\:disabled\:opacity-30:disabled { + opacity: 0.3 !important; + } + + .xl\:disabled\:opacity-40:disabled { + opacity: 0.4 !important; + } + + .xl\:disabled\:opacity-50:disabled { + opacity: 0.5 !important; + } + + .xl\:disabled\:opacity-60:disabled { + opacity: 0.6 !important; + } + + .xl\:disabled\:opacity-70:disabled { + opacity: 0.7 !important; + } + + .xl\:disabled\:opacity-75:disabled { + opacity: 0.75 !important; + } + + .xl\:disabled\:opacity-80:disabled { + opacity: 0.8 !important; + } + + .xl\:disabled\:opacity-90:disabled { + opacity: 0.9 !important; + } + + .xl\:disabled\:opacity-95:disabled { + opacity: 0.95 !important; + } + + .xl\:disabled\:opacity-100:disabled { + opacity: 1 !important; + } + + .xl\:outline-none { + outline: 2px solid transparent !important; + outline-offset: 2px !important; + } + + .xl\:outline-white { + outline: 2px dotted white !important; + outline-offset: 2px !important; + } + + .xl\:outline-black { + outline: 2px dotted black !important; + outline-offset: 2px !important; + } + + .xl\:focus-within\:outline-none:focus-within { + outline: 2px solid transparent !important; + outline-offset: 2px !important; + } + + .xl\:focus-within\:outline-white:focus-within { + outline: 2px dotted white !important; + outline-offset: 2px !important; + } + + .xl\:focus-within\:outline-black:focus-within { + outline: 2px dotted black !important; + outline-offset: 2px !important; + } + + .xl\:focus\:outline-none:focus { + outline: 2px solid transparent !important; + outline-offset: 2px !important; + } + + .xl\:focus\:outline-white:focus { + outline: 2px dotted white !important; + outline-offset: 2px !important; + } + + .xl\:focus\:outline-black:focus { + outline: 2px dotted black !important; + outline-offset: 2px !important; + } + + .xl\:overflow-auto { + overflow: auto !important; + } + + .xl\:overflow-hidden { + overflow: hidden !important; + } + + .xl\:overflow-visible { + overflow: visible !important; + } + + .xl\:overflow-scroll { + overflow: scroll !important; + } + + .xl\:overflow-x-auto { + overflow-x: auto !important; + } + + .xl\:overflow-y-auto { + overflow-y: auto !important; + } + + .xl\:overflow-x-hidden { + overflow-x: hidden !important; + } + + .xl\:overflow-y-hidden { + overflow-y: hidden !important; + } + + .xl\:overflow-x-visible { + overflow-x: visible !important; + } + + .xl\:overflow-y-visible { + overflow-y: visible !important; + } + + .xl\:overflow-x-scroll { + overflow-x: scroll !important; + } + + .xl\:overflow-y-scroll { + overflow-y: scroll !important; + } + + .xl\:overscroll-auto { + -ms-scroll-chaining: chained !important; + overscroll-behavior: auto !important; + } + + .xl\:overscroll-contain { + -ms-scroll-chaining: none !important; + overscroll-behavior: contain !important; + } + + .xl\:overscroll-none { + -ms-scroll-chaining: none !important; + overscroll-behavior: none !important; + } + + .xl\:overscroll-y-auto { + overscroll-behavior-y: auto !important; + } + + .xl\:overscroll-y-contain { + overscroll-behavior-y: contain !important; + } + + .xl\:overscroll-y-none { + overscroll-behavior-y: none !important; + } + + .xl\:overscroll-x-auto { + overscroll-behavior-x: auto !important; + } + + .xl\:overscroll-x-contain { + overscroll-behavior-x: contain !important; + } + + .xl\:overscroll-x-none { + overscroll-behavior-x: none !important; + } + + .xl\:p-0 { + padding: 0px !important; + } + + .xl\:p-1 { + padding: 0.25rem !important; + } + + .xl\:p-2 { + padding: 0.5rem !important; + } + + .xl\:p-3 { + padding: 0.75rem !important; + } + + .xl\:p-4 { + padding: 1rem !important; + } + + .xl\:p-5 { + padding: 1.25rem !important; + } + + .xl\:p-6 { + padding: 1.5rem !important; + } + + .xl\:p-7 { + padding: 1.75rem !important; + } + + .xl\:p-8 { + padding: 2rem !important; + } + + .xl\:p-9 { + padding: 2.25rem !important; + } + + .xl\:p-10 { + padding: 2.5rem !important; + } + + .xl\:p-11 { + padding: 2.75rem !important; + } + + .xl\:p-12 { + padding: 3rem !important; + } + + .xl\:p-14 { + padding: 3.5rem !important; + } + + .xl\:p-16 { + padding: 4rem !important; + } + + .xl\:p-20 { + padding: 5rem !important; + } + + .xl\:p-24 { + padding: 6rem !important; + } + + .xl\:p-28 { + padding: 7rem !important; + } + + .xl\:p-32 { + padding: 8rem !important; + } + + .xl\:p-36 { + padding: 9rem !important; + } + + .xl\:p-40 { + padding: 10rem !important; + } + + .xl\:p-44 { + padding: 11rem !important; + } + + .xl\:p-48 { + padding: 12rem !important; + } + + .xl\:p-52 { + padding: 13rem !important; + } + + .xl\:p-56 { + padding: 14rem !important; + } + + .xl\:p-60 { + padding: 15rem !important; + } + + .xl\:p-64 { + padding: 16rem !important; + } + + .xl\:p-72 { + padding: 18rem !important; + } + + .xl\:p-80 { + padding: 20rem !important; + } + + .xl\:p-96 { + padding: 24rem !important; + } + + .xl\:p-px { + padding: 1px !important; + } + + .xl\:p-0\.5 { + padding: 0.125rem !important; + } + + .xl\:p-1\.5 { + padding: 0.375rem !important; + } + + .xl\:p-2\.5 { + padding: 0.625rem !important; + } + + .xl\:p-3\.5 { + padding: 0.875rem !important; + } + + .xl\:py-0 { + padding-top: 0px !important; + padding-bottom: 0px !important; + } + + .xl\:px-0 { + padding-left: 0px !important; + padding-right: 0px !important; + } + + .xl\:py-1 { + padding-top: 0.25rem !important; + padding-bottom: 0.25rem !important; + } + + .xl\:px-1 { + padding-left: 0.25rem !important; + padding-right: 0.25rem !important; + } + + .xl\:py-2 { + padding-top: 0.5rem !important; + padding-bottom: 0.5rem !important; + } + + .xl\:px-2 { + padding-left: 0.5rem !important; + padding-right: 0.5rem !important; + } + + .xl\:py-3 { + padding-top: 0.75rem !important; + padding-bottom: 0.75rem !important; + } + + .xl\:px-3 { + padding-left: 0.75rem !important; + padding-right: 0.75rem !important; + } + + .xl\:py-4 { + padding-top: 1rem !important; + padding-bottom: 1rem !important; + } + + .xl\:px-4 { + padding-left: 1rem !important; + padding-right: 1rem !important; + } + + .xl\:py-5 { + padding-top: 1.25rem !important; + padding-bottom: 1.25rem !important; + } + + .xl\:px-5 { + padding-left: 1.25rem !important; + padding-right: 1.25rem !important; + } + + .xl\:py-6 { + padding-top: 1.5rem !important; + padding-bottom: 1.5rem !important; + } + + .xl\:px-6 { + padding-left: 1.5rem !important; + padding-right: 1.5rem !important; + } + + .xl\:py-7 { + padding-top: 1.75rem !important; + padding-bottom: 1.75rem !important; + } + + .xl\:px-7 { + padding-left: 1.75rem !important; + padding-right: 1.75rem !important; + } + + .xl\:py-8 { + padding-top: 2rem !important; + padding-bottom: 2rem !important; + } + + .xl\:px-8 { + padding-left: 2rem !important; + padding-right: 2rem !important; + } + + .xl\:py-9 { + padding-top: 2.25rem !important; + padding-bottom: 2.25rem !important; + } + + .xl\:px-9 { + padding-left: 2.25rem !important; + padding-right: 2.25rem !important; + } + + .xl\:py-10 { + padding-top: 2.5rem !important; + padding-bottom: 2.5rem !important; + } + + .xl\:px-10 { + padding-left: 2.5rem !important; + padding-right: 2.5rem !important; + } + + .xl\:py-11 { + padding-top: 2.75rem !important; + padding-bottom: 2.75rem !important; + } + + .xl\:px-11 { + padding-left: 2.75rem !important; + padding-right: 2.75rem !important; + } + + .xl\:py-12 { + padding-top: 3rem !important; + padding-bottom: 3rem !important; + } + + .xl\:px-12 { + padding-left: 3rem !important; + padding-right: 3rem !important; + } + + .xl\:py-14 { + padding-top: 3.5rem !important; + padding-bottom: 3.5rem !important; + } + + .xl\:px-14 { + padding-left: 3.5rem !important; + padding-right: 3.5rem !important; + } + + .xl\:py-16 { + padding-top: 4rem !important; + padding-bottom: 4rem !important; + } + + .xl\:px-16 { + padding-left: 4rem !important; + padding-right: 4rem !important; + } + + .xl\:py-20 { + padding-top: 5rem !important; + padding-bottom: 5rem !important; + } + + .xl\:px-20 { + padding-left: 5rem !important; + padding-right: 5rem !important; + } + + .xl\:py-24 { + padding-top: 6rem !important; + padding-bottom: 6rem !important; + } + + .xl\:px-24 { + padding-left: 6rem !important; + padding-right: 6rem !important; + } + + .xl\:py-28 { + padding-top: 7rem !important; + padding-bottom: 7rem !important; + } + + .xl\:px-28 { + padding-left: 7rem !important; + padding-right: 7rem !important; + } + + .xl\:py-32 { + padding-top: 8rem !important; + padding-bottom: 8rem !important; + } + + .xl\:px-32 { + padding-left: 8rem !important; + padding-right: 8rem !important; + } + + .xl\:py-36 { + padding-top: 9rem !important; + padding-bottom: 9rem !important; + } + + .xl\:px-36 { + padding-left: 9rem !important; + padding-right: 9rem !important; + } + + .xl\:py-40 { + padding-top: 10rem !important; + padding-bottom: 10rem !important; + } + + .xl\:px-40 { + padding-left: 10rem !important; + padding-right: 10rem !important; + } + + .xl\:py-44 { + padding-top: 11rem !important; + padding-bottom: 11rem !important; + } + + .xl\:px-44 { + padding-left: 11rem !important; + padding-right: 11rem !important; + } + + .xl\:py-48 { + padding-top: 12rem !important; + padding-bottom: 12rem !important; + } + + .xl\:px-48 { + padding-left: 12rem !important; + padding-right: 12rem !important; + } + + .xl\:py-52 { + padding-top: 13rem !important; + padding-bottom: 13rem !important; + } + + .xl\:px-52 { + padding-left: 13rem !important; + padding-right: 13rem !important; + } + + .xl\:py-56 { + padding-top: 14rem !important; + padding-bottom: 14rem !important; + } + + .xl\:px-56 { + padding-left: 14rem !important; + padding-right: 14rem !important; + } + + .xl\:py-60 { + padding-top: 15rem !important; + padding-bottom: 15rem !important; + } + + .xl\:px-60 { + padding-left: 15rem !important; + padding-right: 15rem !important; + } + + .xl\:py-64 { + padding-top: 16rem !important; + padding-bottom: 16rem !important; + } + + .xl\:px-64 { + padding-left: 16rem !important; + padding-right: 16rem !important; + } + + .xl\:py-72 { + padding-top: 18rem !important; + padding-bottom: 18rem !important; + } + + .xl\:px-72 { + padding-left: 18rem !important; + padding-right: 18rem !important; + } + + .xl\:py-80 { + padding-top: 20rem !important; + padding-bottom: 20rem !important; + } + + .xl\:px-80 { + padding-left: 20rem !important; + padding-right: 20rem !important; + } + + .xl\:py-96 { + padding-top: 24rem !important; + padding-bottom: 24rem !important; + } + + .xl\:px-96 { + padding-left: 24rem !important; + padding-right: 24rem !important; + } + + .xl\:py-px { + padding-top: 1px !important; + padding-bottom: 1px !important; + } + + .xl\:px-px { + padding-left: 1px !important; + padding-right: 1px !important; + } + + .xl\:py-0\.5 { + padding-top: 0.125rem !important; + padding-bottom: 0.125rem !important; + } + + .xl\:px-0\.5 { + padding-left: 0.125rem !important; + padding-right: 0.125rem !important; + } + + .xl\:py-1\.5 { + padding-top: 0.375rem !important; + padding-bottom: 0.375rem !important; + } + + .xl\:px-1\.5 { + padding-left: 0.375rem !important; + padding-right: 0.375rem !important; + } + + .xl\:py-2\.5 { + padding-top: 0.625rem !important; + padding-bottom: 0.625rem !important; + } + + .xl\:px-2\.5 { + padding-left: 0.625rem !important; + padding-right: 0.625rem !important; + } + + .xl\:py-3\.5 { + padding-top: 0.875rem !important; + padding-bottom: 0.875rem !important; + } + + .xl\:px-3\.5 { + padding-left: 0.875rem !important; + padding-right: 0.875rem !important; + } + + .xl\:pt-0 { + padding-top: 0px !important; + } + + .xl\:pr-0 { + padding-right: 0px !important; + } + + .xl\:pb-0 { + padding-bottom: 0px !important; + } + + .xl\:pl-0 { + padding-left: 0px !important; + } + + .xl\:pt-1 { + padding-top: 0.25rem !important; + } + + .xl\:pr-1 { + padding-right: 0.25rem !important; + } + + .xl\:pb-1 { + padding-bottom: 0.25rem !important; + } + + .xl\:pl-1 { + padding-left: 0.25rem !important; + } + + .xl\:pt-2 { + padding-top: 0.5rem !important; + } + + .xl\:pr-2 { + padding-right: 0.5rem !important; + } + + .xl\:pb-2 { + padding-bottom: 0.5rem !important; + } + + .xl\:pl-2 { + padding-left: 0.5rem !important; + } + + .xl\:pt-3 { + padding-top: 0.75rem !important; + } + + .xl\:pr-3 { + padding-right: 0.75rem !important; + } + + .xl\:pb-3 { + padding-bottom: 0.75rem !important; + } + + .xl\:pl-3 { + padding-left: 0.75rem !important; + } + + .xl\:pt-4 { + padding-top: 1rem !important; + } + + .xl\:pr-4 { + padding-right: 1rem !important; + } + + .xl\:pb-4 { + padding-bottom: 1rem !important; + } + + .xl\:pl-4 { + padding-left: 1rem !important; + } + + .xl\:pt-5 { + padding-top: 1.25rem !important; + } + + .xl\:pr-5 { + padding-right: 1.25rem !important; + } + + .xl\:pb-5 { + padding-bottom: 1.25rem !important; + } + + .xl\:pl-5 { + padding-left: 1.25rem !important; + } + + .xl\:pt-6 { + padding-top: 1.5rem !important; + } + + .xl\:pr-6 { + padding-right: 1.5rem !important; + } + + .xl\:pb-6 { + padding-bottom: 1.5rem !important; + } + + .xl\:pl-6 { + padding-left: 1.5rem !important; + } + + .xl\:pt-7 { + padding-top: 1.75rem !important; + } + + .xl\:pr-7 { + padding-right: 1.75rem !important; + } + + .xl\:pb-7 { + padding-bottom: 1.75rem !important; + } + + .xl\:pl-7 { + padding-left: 1.75rem !important; + } + + .xl\:pt-8 { + padding-top: 2rem !important; + } + + .xl\:pr-8 { + padding-right: 2rem !important; + } + + .xl\:pb-8 { + padding-bottom: 2rem !important; + } + + .xl\:pl-8 { + padding-left: 2rem !important; + } + + .xl\:pt-9 { + padding-top: 2.25rem !important; + } + + .xl\:pr-9 { + padding-right: 2.25rem !important; + } + + .xl\:pb-9 { + padding-bottom: 2.25rem !important; + } + + .xl\:pl-9 { + padding-left: 2.25rem !important; + } + + .xl\:pt-10 { + padding-top: 2.5rem !important; + } + + .xl\:pr-10 { + padding-right: 2.5rem !important; + } + + .xl\:pb-10 { + padding-bottom: 2.5rem !important; + } + + .xl\:pl-10 { + padding-left: 2.5rem !important; + } + + .xl\:pt-11 { + padding-top: 2.75rem !important; + } + + .xl\:pr-11 { + padding-right: 2.75rem !important; + } + + .xl\:pb-11 { + padding-bottom: 2.75rem !important; + } + + .xl\:pl-11 { + padding-left: 2.75rem !important; + } + + .xl\:pt-12 { + padding-top: 3rem !important; + } + + .xl\:pr-12 { + padding-right: 3rem !important; + } + + .xl\:pb-12 { + padding-bottom: 3rem !important; + } + + .xl\:pl-12 { + padding-left: 3rem !important; + } + + .xl\:pt-14 { + padding-top: 3.5rem !important; + } + + .xl\:pr-14 { + padding-right: 3.5rem !important; + } + + .xl\:pb-14 { + padding-bottom: 3.5rem !important; + } + + .xl\:pl-14 { + padding-left: 3.5rem !important; + } + + .xl\:pt-16 { + padding-top: 4rem !important; + } + + .xl\:pr-16 { + padding-right: 4rem !important; + } + + .xl\:pb-16 { + padding-bottom: 4rem !important; + } + + .xl\:pl-16 { + padding-left: 4rem !important; + } + + .xl\:pt-20 { + padding-top: 5rem !important; + } + + .xl\:pr-20 { + padding-right: 5rem !important; + } + + .xl\:pb-20 { + padding-bottom: 5rem !important; + } + + .xl\:pl-20 { + padding-left: 5rem !important; + } + + .xl\:pt-24 { + padding-top: 6rem !important; + } + + .xl\:pr-24 { + padding-right: 6rem !important; + } + + .xl\:pb-24 { + padding-bottom: 6rem !important; + } + + .xl\:pl-24 { + padding-left: 6rem !important; + } + + .xl\:pt-28 { + padding-top: 7rem !important; + } + + .xl\:pr-28 { + padding-right: 7rem !important; + } + + .xl\:pb-28 { + padding-bottom: 7rem !important; + } + + .xl\:pl-28 { + padding-left: 7rem !important; + } + + .xl\:pt-32 { + padding-top: 8rem !important; + } + + .xl\:pr-32 { + padding-right: 8rem !important; + } + + .xl\:pb-32 { + padding-bottom: 8rem !important; + } + + .xl\:pl-32 { + padding-left: 8rem !important; + } + + .xl\:pt-36 { + padding-top: 9rem !important; + } + + .xl\:pr-36 { + padding-right: 9rem !important; + } + + .xl\:pb-36 { + padding-bottom: 9rem !important; + } + + .xl\:pl-36 { + padding-left: 9rem !important; + } + + .xl\:pt-40 { + padding-top: 10rem !important; + } + + .xl\:pr-40 { + padding-right: 10rem !important; + } + + .xl\:pb-40 { + padding-bottom: 10rem !important; + } + + .xl\:pl-40 { + padding-left: 10rem !important; + } + + .xl\:pt-44 { + padding-top: 11rem !important; + } + + .xl\:pr-44 { + padding-right: 11rem !important; + } + + .xl\:pb-44 { + padding-bottom: 11rem !important; + } + + .xl\:pl-44 { + padding-left: 11rem !important; + } + + .xl\:pt-48 { + padding-top: 12rem !important; + } + + .xl\:pr-48 { + padding-right: 12rem !important; + } + + .xl\:pb-48 { + padding-bottom: 12rem !important; + } + + .xl\:pl-48 { + padding-left: 12rem !important; + } + + .xl\:pt-52 { + padding-top: 13rem !important; + } + + .xl\:pr-52 { + padding-right: 13rem !important; + } + + .xl\:pb-52 { + padding-bottom: 13rem !important; + } + + .xl\:pl-52 { + padding-left: 13rem !important; + } + + .xl\:pt-56 { + padding-top: 14rem !important; + } + + .xl\:pr-56 { + padding-right: 14rem !important; + } + + .xl\:pb-56 { + padding-bottom: 14rem !important; + } + + .xl\:pl-56 { + padding-left: 14rem !important; + } + + .xl\:pt-60 { + padding-top: 15rem !important; + } + + .xl\:pr-60 { + padding-right: 15rem !important; + } + + .xl\:pb-60 { + padding-bottom: 15rem !important; + } + + .xl\:pl-60 { + padding-left: 15rem !important; + } + + .xl\:pt-64 { + padding-top: 16rem !important; + } + + .xl\:pr-64 { + padding-right: 16rem !important; + } + + .xl\:pb-64 { + padding-bottom: 16rem !important; + } + + .xl\:pl-64 { + padding-left: 16rem !important; + } + + .xl\:pt-72 { + padding-top: 18rem !important; + } + + .xl\:pr-72 { + padding-right: 18rem !important; + } + + .xl\:pb-72 { + padding-bottom: 18rem !important; + } + + .xl\:pl-72 { + padding-left: 18rem !important; + } + + .xl\:pt-80 { + padding-top: 20rem !important; + } + + .xl\:pr-80 { + padding-right: 20rem !important; + } + + .xl\:pb-80 { + padding-bottom: 20rem !important; + } + + .xl\:pl-80 { + padding-left: 20rem !important; + } + + .xl\:pt-96 { + padding-top: 24rem !important; + } + + .xl\:pr-96 { + padding-right: 24rem !important; + } + + .xl\:pb-96 { + padding-bottom: 24rem !important; + } + + .xl\:pl-96 { + padding-left: 24rem !important; + } + + .xl\:pt-px { + padding-top: 1px !important; + } + + .xl\:pr-px { + padding-right: 1px !important; + } + + .xl\:pb-px { + padding-bottom: 1px !important; + } + + .xl\:pl-px { + padding-left: 1px !important; + } + + .xl\:pt-0\.5 { + padding-top: 0.125rem !important; + } + + .xl\:pr-0\.5 { + padding-right: 0.125rem !important; + } + + .xl\:pb-0\.5 { + padding-bottom: 0.125rem !important; + } + + .xl\:pl-0\.5 { + padding-left: 0.125rem !important; + } + + .xl\:pt-1\.5 { + padding-top: 0.375rem !important; + } + + .xl\:pr-1\.5 { + padding-right: 0.375rem !important; + } + + .xl\:pb-1\.5 { + padding-bottom: 0.375rem !important; + } + + .xl\:pl-1\.5 { + padding-left: 0.375rem !important; + } + + .xl\:pt-2\.5 { + padding-top: 0.625rem !important; + } + + .xl\:pr-2\.5 { + padding-right: 0.625rem !important; + } + + .xl\:pb-2\.5 { + padding-bottom: 0.625rem !important; + } + + .xl\:pl-2\.5 { + padding-left: 0.625rem !important; + } + + .xl\:pt-3\.5 { + padding-top: 0.875rem !important; + } + + .xl\:pr-3\.5 { + padding-right: 0.875rem !important; + } + + .xl\:pb-3\.5 { + padding-bottom: 0.875rem !important; + } + + .xl\:pl-3\.5 { + padding-left: 0.875rem !important; + } + + .xl\:placeholder-transparent::-moz-placeholder { + color: transparent !important; + } + + .xl\:placeholder-transparent:-ms-input-placeholder { + color: transparent !important; + } + + .xl\:placeholder-transparent::placeholder { + color: transparent !important; + } + + .xl\:placeholder-current::-moz-placeholder { + color: currentColor !important; + } + + .xl\:placeholder-current:-ms-input-placeholder { + color: currentColor !important; + } + + .xl\:placeholder-current::placeholder { + color: currentColor !important; + } + + .xl\:placeholder-black::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-black:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-black::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-white::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-white:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-white::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-gray-50::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-gray-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-gray-50::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-gray-100::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-gray-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-gray-100::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-gray-200::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-gray-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-gray-200::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-gray-300::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-gray-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-gray-300::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-gray-400::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-gray-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-gray-400::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-gray-500::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-gray-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-gray-500::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-gray-600::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-gray-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-gray-600::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-gray-700::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-gray-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-gray-700::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-gray-800::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-gray-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-gray-800::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-gray-900::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-gray-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-gray-900::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-red-50::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 242, 242, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-red-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 242, 242, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-red-50::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 242, 242, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-red-100::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 226, 226, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-red-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 226, 226, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-red-100::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 226, 226, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-red-200::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 202, 202, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-red-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 202, 202, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-red-200::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 202, 202, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-red-300::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 165, 165, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-red-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 165, 165, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-red-300::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 165, 165, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-red-400::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(248, 113, 113, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-red-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(248, 113, 113, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-red-400::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(248, 113, 113, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-red-500::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(239, 68, 68, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-red-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(239, 68, 68, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-red-500::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(239, 68, 68, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-red-600::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(220, 38, 38, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-red-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(220, 38, 38, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-red-600::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(220, 38, 38, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-red-700::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(185, 28, 28, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-red-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(185, 28, 28, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-red-700::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(185, 28, 28, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-red-800::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(153, 27, 27, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-red-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(153, 27, 27, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-red-800::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(153, 27, 27, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-red-900::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(127, 29, 29, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-red-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(127, 29, 29, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-red-900::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(127, 29, 29, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-yellow-50::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(255, 251, 235, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-yellow-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(255, 251, 235, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-yellow-50::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(255, 251, 235, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-yellow-100::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 243, 199, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-yellow-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 243, 199, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-yellow-100::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 243, 199, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-yellow-200::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(253, 230, 138, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-yellow-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(253, 230, 138, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-yellow-200::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(253, 230, 138, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-yellow-300::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 211, 77, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-yellow-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 211, 77, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-yellow-300::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 211, 77, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-yellow-400::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(251, 191, 36, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-yellow-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(251, 191, 36, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-yellow-400::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(251, 191, 36, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-yellow-500::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-yellow-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-yellow-500::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-yellow-600::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(217, 119, 6, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-yellow-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(217, 119, 6, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-yellow-600::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(217, 119, 6, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-yellow-700::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(180, 83, 9, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-yellow-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(180, 83, 9, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-yellow-700::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(180, 83, 9, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-yellow-800::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(146, 64, 14, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-yellow-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(146, 64, 14, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-yellow-800::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(146, 64, 14, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-yellow-900::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(120, 53, 15, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-yellow-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(120, 53, 15, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-yellow-900::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(120, 53, 15, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-green-50::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(236, 253, 245, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-green-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(236, 253, 245, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-green-50::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(236, 253, 245, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-green-100::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(209, 250, 229, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-green-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(209, 250, 229, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-green-100::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(209, 250, 229, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-green-200::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(167, 243, 208, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-green-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(167, 243, 208, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-green-200::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(167, 243, 208, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-green-300::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(110, 231, 183, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-green-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(110, 231, 183, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-green-300::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(110, 231, 183, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-green-400::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(52, 211, 153, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-green-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(52, 211, 153, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-green-400::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(52, 211, 153, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-green-500::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(16, 185, 129, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-green-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(16, 185, 129, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-green-500::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(16, 185, 129, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-green-600::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(5, 150, 105, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-green-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(5, 150, 105, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-green-600::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(5, 150, 105, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-green-700::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(4, 120, 87, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-green-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(4, 120, 87, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-green-700::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(4, 120, 87, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-green-800::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(6, 95, 70, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-green-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(6, 95, 70, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-green-800::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(6, 95, 70, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-green-900::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(6, 78, 59, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-green-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(6, 78, 59, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-green-900::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(6, 78, 59, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-blue-50::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(239, 246, 255, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-blue-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(239, 246, 255, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-blue-50::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(239, 246, 255, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-blue-100::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(219, 234, 254, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-blue-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(219, 234, 254, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-blue-100::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(219, 234, 254, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-blue-200::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(191, 219, 254, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-blue-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(191, 219, 254, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-blue-200::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(191, 219, 254, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-blue-300::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(147, 197, 253, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-blue-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(147, 197, 253, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-blue-300::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(147, 197, 253, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-blue-400::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(96, 165, 250, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-blue-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(96, 165, 250, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-blue-400::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(96, 165, 250, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-blue-500::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-blue-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-blue-500::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-blue-600::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(37, 99, 235, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-blue-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(37, 99, 235, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-blue-600::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(37, 99, 235, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-blue-700::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(29, 78, 216, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-blue-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(29, 78, 216, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-blue-700::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(29, 78, 216, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-blue-800::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(30, 64, 175, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-blue-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(30, 64, 175, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-blue-800::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(30, 64, 175, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-blue-900::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(30, 58, 138, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-blue-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(30, 58, 138, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-blue-900::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(30, 58, 138, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-indigo-50::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(238, 242, 255, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-indigo-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(238, 242, 255, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-indigo-50::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(238, 242, 255, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-indigo-100::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(224, 231, 255, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-indigo-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(224, 231, 255, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-indigo-100::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(224, 231, 255, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-indigo-200::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(199, 210, 254, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-indigo-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(199, 210, 254, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-indigo-200::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(199, 210, 254, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-indigo-300::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(165, 180, 252, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-indigo-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(165, 180, 252, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-indigo-300::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(165, 180, 252, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-indigo-400::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(129, 140, 248, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-indigo-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(129, 140, 248, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-indigo-400::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(129, 140, 248, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-indigo-500::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(99, 102, 241, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-indigo-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(99, 102, 241, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-indigo-500::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(99, 102, 241, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-indigo-600::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(79, 70, 229, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-indigo-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(79, 70, 229, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-indigo-600::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(79, 70, 229, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-indigo-700::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(67, 56, 202, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-indigo-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(67, 56, 202, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-indigo-700::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(67, 56, 202, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-indigo-800::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(55, 48, 163, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-indigo-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(55, 48, 163, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-indigo-800::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(55, 48, 163, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-indigo-900::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(49, 46, 129, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-indigo-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(49, 46, 129, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-indigo-900::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(49, 46, 129, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-purple-50::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(245, 243, 255, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-purple-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(245, 243, 255, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-purple-50::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(245, 243, 255, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-purple-100::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(237, 233, 254, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-purple-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(237, 233, 254, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-purple-100::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(237, 233, 254, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-purple-200::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(221, 214, 254, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-purple-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(221, 214, 254, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-purple-200::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(221, 214, 254, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-purple-300::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(196, 181, 253, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-purple-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(196, 181, 253, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-purple-300::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(196, 181, 253, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-purple-400::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(167, 139, 250, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-purple-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(167, 139, 250, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-purple-400::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(167, 139, 250, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-purple-500::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(139, 92, 246, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-purple-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(139, 92, 246, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-purple-500::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(139, 92, 246, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-purple-600::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(124, 58, 237, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-purple-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(124, 58, 237, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-purple-600::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(124, 58, 237, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-purple-700::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(109, 40, 217, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-purple-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(109, 40, 217, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-purple-700::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(109, 40, 217, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-purple-800::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(91, 33, 182, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-purple-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(91, 33, 182, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-purple-800::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(91, 33, 182, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-purple-900::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(76, 29, 149, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-purple-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(76, 29, 149, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-purple-900::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(76, 29, 149, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-pink-50::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(253, 242, 248, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-pink-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(253, 242, 248, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-pink-50::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(253, 242, 248, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-pink-100::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 231, 243, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-pink-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 231, 243, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-pink-100::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 231, 243, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-pink-200::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(251, 207, 232, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-pink-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(251, 207, 232, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-pink-200::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(251, 207, 232, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-pink-300::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(249, 168, 212, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-pink-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(249, 168, 212, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-pink-300::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(249, 168, 212, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-pink-400::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(244, 114, 182, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-pink-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(244, 114, 182, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-pink-400::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(244, 114, 182, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-pink-500::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(236, 72, 153, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-pink-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(236, 72, 153, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-pink-500::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(236, 72, 153, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-pink-600::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(219, 39, 119, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-pink-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(219, 39, 119, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-pink-600::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(219, 39, 119, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-pink-700::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(190, 24, 93, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-pink-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(190, 24, 93, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-pink-700::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(190, 24, 93, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-pink-800::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(157, 23, 77, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-pink-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(157, 23, 77, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-pink-800::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(157, 23, 77, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-pink-900::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(131, 24, 67, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-pink-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(131, 24, 67, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-pink-900::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(131, 24, 67, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-primary::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(0, 49, 151, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-primary:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(0, 49, 151, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-primary::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(0, 49, 151, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-transparent:focus::-moz-placeholder { + color: transparent !important; + } + + .xl\:focus\:placeholder-transparent:focus:-ms-input-placeholder { + color: transparent !important; + } + + .xl\:focus\:placeholder-transparent:focus::placeholder { + color: transparent !important; + } + + .xl\:focus\:placeholder-current:focus::-moz-placeholder { + color: currentColor !important; + } + + .xl\:focus\:placeholder-current:focus:-ms-input-placeholder { + color: currentColor !important; + } + + .xl\:focus\:placeholder-current:focus::placeholder { + color: currentColor !important; + } + + .xl\:focus\:placeholder-black:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-black:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-black:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-white:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-white:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-white:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-gray-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-gray-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-gray-50:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-gray-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-gray-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-gray-100:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-gray-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-gray-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-gray-200:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-gray-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-gray-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-gray-300:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-gray-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-gray-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-gray-400:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-gray-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-gray-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-gray-500:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-gray-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-gray-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-gray-600:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-gray-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-gray-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-gray-700:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-gray-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-gray-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-gray-800:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-gray-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-gray-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-gray-900:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-red-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 242, 242, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-red-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 242, 242, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-red-50:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 242, 242, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-red-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 226, 226, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-red-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 226, 226, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-red-100:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 226, 226, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-red-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 202, 202, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-red-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 202, 202, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-red-200:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 202, 202, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-red-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 165, 165, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-red-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 165, 165, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-red-300:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 165, 165, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-red-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(248, 113, 113, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-red-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(248, 113, 113, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-red-400:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(248, 113, 113, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-red-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(239, 68, 68, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-red-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(239, 68, 68, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-red-500:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(239, 68, 68, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-red-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(220, 38, 38, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-red-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(220, 38, 38, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-red-600:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(220, 38, 38, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-red-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(185, 28, 28, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-red-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(185, 28, 28, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-red-700:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(185, 28, 28, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-red-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(153, 27, 27, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-red-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(153, 27, 27, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-red-800:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(153, 27, 27, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-red-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(127, 29, 29, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-red-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(127, 29, 29, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-red-900:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(127, 29, 29, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-yellow-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(255, 251, 235, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-yellow-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(255, 251, 235, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-yellow-50:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(255, 251, 235, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-yellow-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 243, 199, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-yellow-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 243, 199, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-yellow-100:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 243, 199, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-yellow-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(253, 230, 138, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-yellow-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(253, 230, 138, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-yellow-200:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(253, 230, 138, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-yellow-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 211, 77, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-yellow-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 211, 77, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-yellow-300:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 211, 77, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-yellow-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(251, 191, 36, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-yellow-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(251, 191, 36, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-yellow-400:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(251, 191, 36, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-yellow-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-yellow-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-yellow-500:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-yellow-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(217, 119, 6, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-yellow-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(217, 119, 6, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-yellow-600:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(217, 119, 6, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-yellow-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(180, 83, 9, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-yellow-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(180, 83, 9, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-yellow-700:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(180, 83, 9, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-yellow-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(146, 64, 14, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-yellow-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(146, 64, 14, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-yellow-800:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(146, 64, 14, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-yellow-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(120, 53, 15, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-yellow-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(120, 53, 15, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-yellow-900:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(120, 53, 15, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-green-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(236, 253, 245, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-green-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(236, 253, 245, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-green-50:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(236, 253, 245, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-green-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(209, 250, 229, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-green-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(209, 250, 229, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-green-100:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(209, 250, 229, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-green-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(167, 243, 208, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-green-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(167, 243, 208, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-green-200:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(167, 243, 208, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-green-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(110, 231, 183, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-green-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(110, 231, 183, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-green-300:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(110, 231, 183, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-green-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(52, 211, 153, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-green-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(52, 211, 153, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-green-400:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(52, 211, 153, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-green-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(16, 185, 129, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-green-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(16, 185, 129, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-green-500:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(16, 185, 129, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-green-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(5, 150, 105, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-green-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(5, 150, 105, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-green-600:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(5, 150, 105, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-green-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(4, 120, 87, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-green-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(4, 120, 87, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-green-700:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(4, 120, 87, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-green-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(6, 95, 70, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-green-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(6, 95, 70, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-green-800:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(6, 95, 70, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-green-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(6, 78, 59, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-green-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(6, 78, 59, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-green-900:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(6, 78, 59, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-blue-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(239, 246, 255, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-blue-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(239, 246, 255, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-blue-50:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(239, 246, 255, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-blue-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(219, 234, 254, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-blue-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(219, 234, 254, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-blue-100:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(219, 234, 254, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-blue-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(191, 219, 254, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-blue-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(191, 219, 254, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-blue-200:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(191, 219, 254, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-blue-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(147, 197, 253, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-blue-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(147, 197, 253, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-blue-300:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(147, 197, 253, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-blue-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(96, 165, 250, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-blue-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(96, 165, 250, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-blue-400:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(96, 165, 250, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-blue-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-blue-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-blue-500:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-blue-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(37, 99, 235, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-blue-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(37, 99, 235, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-blue-600:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(37, 99, 235, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-blue-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(29, 78, 216, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-blue-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(29, 78, 216, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-blue-700:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(29, 78, 216, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-blue-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(30, 64, 175, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-blue-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(30, 64, 175, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-blue-800:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(30, 64, 175, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-blue-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(30, 58, 138, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-blue-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(30, 58, 138, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-blue-900:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(30, 58, 138, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-indigo-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(238, 242, 255, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-indigo-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(238, 242, 255, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-indigo-50:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(238, 242, 255, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-indigo-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(224, 231, 255, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-indigo-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(224, 231, 255, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-indigo-100:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(224, 231, 255, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-indigo-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(199, 210, 254, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-indigo-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(199, 210, 254, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-indigo-200:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(199, 210, 254, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-indigo-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(165, 180, 252, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-indigo-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(165, 180, 252, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-indigo-300:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(165, 180, 252, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-indigo-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(129, 140, 248, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-indigo-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(129, 140, 248, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-indigo-400:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(129, 140, 248, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-indigo-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(99, 102, 241, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-indigo-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(99, 102, 241, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-indigo-500:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(99, 102, 241, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-indigo-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(79, 70, 229, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-indigo-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(79, 70, 229, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-indigo-600:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(79, 70, 229, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-indigo-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(67, 56, 202, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-indigo-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(67, 56, 202, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-indigo-700:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(67, 56, 202, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-indigo-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(55, 48, 163, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-indigo-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(55, 48, 163, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-indigo-800:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(55, 48, 163, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-indigo-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(49, 46, 129, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-indigo-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(49, 46, 129, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-indigo-900:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(49, 46, 129, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-purple-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(245, 243, 255, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-purple-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(245, 243, 255, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-purple-50:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(245, 243, 255, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-purple-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(237, 233, 254, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-purple-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(237, 233, 254, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-purple-100:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(237, 233, 254, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-purple-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(221, 214, 254, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-purple-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(221, 214, 254, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-purple-200:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(221, 214, 254, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-purple-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(196, 181, 253, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-purple-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(196, 181, 253, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-purple-300:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(196, 181, 253, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-purple-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(167, 139, 250, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-purple-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(167, 139, 250, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-purple-400:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(167, 139, 250, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-purple-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(139, 92, 246, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-purple-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(139, 92, 246, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-purple-500:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(139, 92, 246, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-purple-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(124, 58, 237, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-purple-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(124, 58, 237, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-purple-600:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(124, 58, 237, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-purple-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(109, 40, 217, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-purple-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(109, 40, 217, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-purple-700:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(109, 40, 217, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-purple-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(91, 33, 182, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-purple-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(91, 33, 182, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-purple-800:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(91, 33, 182, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-purple-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(76, 29, 149, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-purple-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(76, 29, 149, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-purple-900:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(76, 29, 149, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-pink-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(253, 242, 248, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-pink-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(253, 242, 248, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-pink-50:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(253, 242, 248, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-pink-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 231, 243, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-pink-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 231, 243, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-pink-100:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 231, 243, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-pink-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(251, 207, 232, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-pink-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(251, 207, 232, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-pink-200:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(251, 207, 232, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-pink-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(249, 168, 212, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-pink-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(249, 168, 212, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-pink-300:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(249, 168, 212, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-pink-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(244, 114, 182, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-pink-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(244, 114, 182, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-pink-400:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(244, 114, 182, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-pink-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(236, 72, 153, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-pink-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(236, 72, 153, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-pink-500:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(236, 72, 153, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-pink-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(219, 39, 119, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-pink-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(219, 39, 119, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-pink-600:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(219, 39, 119, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-pink-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(190, 24, 93, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-pink-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(190, 24, 93, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-pink-700:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(190, 24, 93, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-pink-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(157, 23, 77, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-pink-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(157, 23, 77, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-pink-800:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(157, 23, 77, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-pink-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(131, 24, 67, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-pink-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(131, 24, 67, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-pink-900:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(131, 24, 67, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-primary:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(0, 49, 151, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-primary:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(0, 49, 151, var(--tw-placeholder-opacity)) !important; + } + + .xl\:focus\:placeholder-primary:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(0, 49, 151, var(--tw-placeholder-opacity)) !important; + } + + .xl\:placeholder-opacity-0::-moz-placeholder { + --tw-placeholder-opacity: 0 !important; + } + + .xl\:placeholder-opacity-0:-ms-input-placeholder { + --tw-placeholder-opacity: 0 !important; + } + + .xl\:placeholder-opacity-0::placeholder { + --tw-placeholder-opacity: 0 !important; + } + + .xl\:placeholder-opacity-5::-moz-placeholder { + --tw-placeholder-opacity: 0.05 !important; + } + + .xl\:placeholder-opacity-5:-ms-input-placeholder { + --tw-placeholder-opacity: 0.05 !important; + } + + .xl\:placeholder-opacity-5::placeholder { + --tw-placeholder-opacity: 0.05 !important; + } + + .xl\:placeholder-opacity-10::-moz-placeholder { + --tw-placeholder-opacity: 0.1 !important; + } + + .xl\:placeholder-opacity-10:-ms-input-placeholder { + --tw-placeholder-opacity: 0.1 !important; + } + + .xl\:placeholder-opacity-10::placeholder { + --tw-placeholder-opacity: 0.1 !important; + } + + .xl\:placeholder-opacity-20::-moz-placeholder { + --tw-placeholder-opacity: 0.2 !important; + } + + .xl\:placeholder-opacity-20:-ms-input-placeholder { + --tw-placeholder-opacity: 0.2 !important; + } + + .xl\:placeholder-opacity-20::placeholder { + --tw-placeholder-opacity: 0.2 !important; + } + + .xl\:placeholder-opacity-25::-moz-placeholder { + --tw-placeholder-opacity: 0.25 !important; + } + + .xl\:placeholder-opacity-25:-ms-input-placeholder { + --tw-placeholder-opacity: 0.25 !important; + } + + .xl\:placeholder-opacity-25::placeholder { + --tw-placeholder-opacity: 0.25 !important; + } + + .xl\:placeholder-opacity-30::-moz-placeholder { + --tw-placeholder-opacity: 0.3 !important; + } + + .xl\:placeholder-opacity-30:-ms-input-placeholder { + --tw-placeholder-opacity: 0.3 !important; + } + + .xl\:placeholder-opacity-30::placeholder { + --tw-placeholder-opacity: 0.3 !important; + } + + .xl\:placeholder-opacity-40::-moz-placeholder { + --tw-placeholder-opacity: 0.4 !important; + } + + .xl\:placeholder-opacity-40:-ms-input-placeholder { + --tw-placeholder-opacity: 0.4 !important; + } + + .xl\:placeholder-opacity-40::placeholder { + --tw-placeholder-opacity: 0.4 !important; + } + + .xl\:placeholder-opacity-50::-moz-placeholder { + --tw-placeholder-opacity: 0.5 !important; + } + + .xl\:placeholder-opacity-50:-ms-input-placeholder { + --tw-placeholder-opacity: 0.5 !important; + } + + .xl\:placeholder-opacity-50::placeholder { + --tw-placeholder-opacity: 0.5 !important; + } + + .xl\:placeholder-opacity-60::-moz-placeholder { + --tw-placeholder-opacity: 0.6 !important; + } + + .xl\:placeholder-opacity-60:-ms-input-placeholder { + --tw-placeholder-opacity: 0.6 !important; + } + + .xl\:placeholder-opacity-60::placeholder { + --tw-placeholder-opacity: 0.6 !important; + } + + .xl\:placeholder-opacity-70::-moz-placeholder { + --tw-placeholder-opacity: 0.7 !important; + } + + .xl\:placeholder-opacity-70:-ms-input-placeholder { + --tw-placeholder-opacity: 0.7 !important; + } + + .xl\:placeholder-opacity-70::placeholder { + --tw-placeholder-opacity: 0.7 !important; + } + + .xl\:placeholder-opacity-75::-moz-placeholder { + --tw-placeholder-opacity: 0.75 !important; + } + + .xl\:placeholder-opacity-75:-ms-input-placeholder { + --tw-placeholder-opacity: 0.75 !important; + } + + .xl\:placeholder-opacity-75::placeholder { + --tw-placeholder-opacity: 0.75 !important; + } + + .xl\:placeholder-opacity-80::-moz-placeholder { + --tw-placeholder-opacity: 0.8 !important; + } + + .xl\:placeholder-opacity-80:-ms-input-placeholder { + --tw-placeholder-opacity: 0.8 !important; + } + + .xl\:placeholder-opacity-80::placeholder { + --tw-placeholder-opacity: 0.8 !important; + } + + .xl\:placeholder-opacity-90::-moz-placeholder { + --tw-placeholder-opacity: 0.9 !important; + } + + .xl\:placeholder-opacity-90:-ms-input-placeholder { + --tw-placeholder-opacity: 0.9 !important; + } + + .xl\:placeholder-opacity-90::placeholder { + --tw-placeholder-opacity: 0.9 !important; + } + + .xl\:placeholder-opacity-95::-moz-placeholder { + --tw-placeholder-opacity: 0.95 !important; + } + + .xl\:placeholder-opacity-95:-ms-input-placeholder { + --tw-placeholder-opacity: 0.95 !important; + } + + .xl\:placeholder-opacity-95::placeholder { + --tw-placeholder-opacity: 0.95 !important; + } + + .xl\:placeholder-opacity-100::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + } + + .xl\:placeholder-opacity-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + } + + .xl\:placeholder-opacity-100::placeholder { + --tw-placeholder-opacity: 1 !important; + } + + .xl\:focus\:placeholder-opacity-0:focus::-moz-placeholder { + --tw-placeholder-opacity: 0 !important; + } + + .xl\:focus\:placeholder-opacity-0:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0 !important; + } + + .xl\:focus\:placeholder-opacity-0:focus::placeholder { + --tw-placeholder-opacity: 0 !important; + } + + .xl\:focus\:placeholder-opacity-5:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.05 !important; + } + + .xl\:focus\:placeholder-opacity-5:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.05 !important; + } + + .xl\:focus\:placeholder-opacity-5:focus::placeholder { + --tw-placeholder-opacity: 0.05 !important; + } + + .xl\:focus\:placeholder-opacity-10:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.1 !important; + } + + .xl\:focus\:placeholder-opacity-10:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.1 !important; + } + + .xl\:focus\:placeholder-opacity-10:focus::placeholder { + --tw-placeholder-opacity: 0.1 !important; + } + + .xl\:focus\:placeholder-opacity-20:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.2 !important; + } + + .xl\:focus\:placeholder-opacity-20:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.2 !important; + } + + .xl\:focus\:placeholder-opacity-20:focus::placeholder { + --tw-placeholder-opacity: 0.2 !important; + } + + .xl\:focus\:placeholder-opacity-25:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.25 !important; + } + + .xl\:focus\:placeholder-opacity-25:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.25 !important; + } + + .xl\:focus\:placeholder-opacity-25:focus::placeholder { + --tw-placeholder-opacity: 0.25 !important; + } + + .xl\:focus\:placeholder-opacity-30:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.3 !important; + } + + .xl\:focus\:placeholder-opacity-30:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.3 !important; + } + + .xl\:focus\:placeholder-opacity-30:focus::placeholder { + --tw-placeholder-opacity: 0.3 !important; + } + + .xl\:focus\:placeholder-opacity-40:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.4 !important; + } + + .xl\:focus\:placeholder-opacity-40:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.4 !important; + } + + .xl\:focus\:placeholder-opacity-40:focus::placeholder { + --tw-placeholder-opacity: 0.4 !important; + } + + .xl\:focus\:placeholder-opacity-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.5 !important; + } + + .xl\:focus\:placeholder-opacity-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.5 !important; + } + + .xl\:focus\:placeholder-opacity-50:focus::placeholder { + --tw-placeholder-opacity: 0.5 !important; + } + + .xl\:focus\:placeholder-opacity-60:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.6 !important; + } + + .xl\:focus\:placeholder-opacity-60:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.6 !important; + } + + .xl\:focus\:placeholder-opacity-60:focus::placeholder { + --tw-placeholder-opacity: 0.6 !important; + } + + .xl\:focus\:placeholder-opacity-70:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.7 !important; + } + + .xl\:focus\:placeholder-opacity-70:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.7 !important; + } + + .xl\:focus\:placeholder-opacity-70:focus::placeholder { + --tw-placeholder-opacity: 0.7 !important; + } + + .xl\:focus\:placeholder-opacity-75:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.75 !important; + } + + .xl\:focus\:placeholder-opacity-75:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.75 !important; + } + + .xl\:focus\:placeholder-opacity-75:focus::placeholder { + --tw-placeholder-opacity: 0.75 !important; + } + + .xl\:focus\:placeholder-opacity-80:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.8 !important; + } + + .xl\:focus\:placeholder-opacity-80:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.8 !important; + } + + .xl\:focus\:placeholder-opacity-80:focus::placeholder { + --tw-placeholder-opacity: 0.8 !important; + } + + .xl\:focus\:placeholder-opacity-90:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.9 !important; + } + + .xl\:focus\:placeholder-opacity-90:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.9 !important; + } + + .xl\:focus\:placeholder-opacity-90:focus::placeholder { + --tw-placeholder-opacity: 0.9 !important; + } + + .xl\:focus\:placeholder-opacity-95:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.95 !important; + } + + .xl\:focus\:placeholder-opacity-95:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.95 !important; + } + + .xl\:focus\:placeholder-opacity-95:focus::placeholder { + --tw-placeholder-opacity: 0.95 !important; + } + + .xl\:focus\:placeholder-opacity-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + } + + .xl\:focus\:placeholder-opacity-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + } + + .xl\:focus\:placeholder-opacity-100:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + } + + .xl\:pointer-events-none { + pointer-events: none !important; + } + + .xl\:pointer-events-auto { + pointer-events: auto !important; + } + + .xl\:static { + position: static !important; + } + + .xl\:fixed { + position: fixed !important; + } + + .xl\:absolute { + position: absolute !important; + } + + .xl\:relative { + position: relative !important; + } + + .xl\:sticky { + position: sticky !important; + } + + .xl\:inset-0 { + top: 0px !important; + right: 0px !important; + bottom: 0px !important; + left: 0px !important; + } + + .xl\:inset-1 { + top: 0.25rem !important; + right: 0.25rem !important; + bottom: 0.25rem !important; + left: 0.25rem !important; + } + + .xl\:inset-2 { + top: 0.5rem !important; + right: 0.5rem !important; + bottom: 0.5rem !important; + left: 0.5rem !important; + } + + .xl\:inset-3 { + top: 0.75rem !important; + right: 0.75rem !important; + bottom: 0.75rem !important; + left: 0.75rem !important; + } + + .xl\:inset-4 { + top: 1rem !important; + right: 1rem !important; + bottom: 1rem !important; + left: 1rem !important; + } + + .xl\:inset-5 { + top: 1.25rem !important; + right: 1.25rem !important; + bottom: 1.25rem !important; + left: 1.25rem !important; + } + + .xl\:inset-6 { + top: 1.5rem !important; + right: 1.5rem !important; + bottom: 1.5rem !important; + left: 1.5rem !important; + } + + .xl\:inset-7 { + top: 1.75rem !important; + right: 1.75rem !important; + bottom: 1.75rem !important; + left: 1.75rem !important; + } + + .xl\:inset-8 { + top: 2rem !important; + right: 2rem !important; + bottom: 2rem !important; + left: 2rem !important; + } + + .xl\:inset-9 { + top: 2.25rem !important; + right: 2.25rem !important; + bottom: 2.25rem !important; + left: 2.25rem !important; + } + + .xl\:inset-10 { + top: 2.5rem !important; + right: 2.5rem !important; + bottom: 2.5rem !important; + left: 2.5rem !important; + } + + .xl\:inset-11 { + top: 2.75rem !important; + right: 2.75rem !important; + bottom: 2.75rem !important; + left: 2.75rem !important; + } + + .xl\:inset-12 { + top: 3rem !important; + right: 3rem !important; + bottom: 3rem !important; + left: 3rem !important; + } + + .xl\:inset-14 { + top: 3.5rem !important; + right: 3.5rem !important; + bottom: 3.5rem !important; + left: 3.5rem !important; + } + + .xl\:inset-16 { + top: 4rem !important; + right: 4rem !important; + bottom: 4rem !important; + left: 4rem !important; + } + + .xl\:inset-20 { + top: 5rem !important; + right: 5rem !important; + bottom: 5rem !important; + left: 5rem !important; + } + + .xl\:inset-24 { + top: 6rem !important; + right: 6rem !important; + bottom: 6rem !important; + left: 6rem !important; + } + + .xl\:inset-28 { + top: 7rem !important; + right: 7rem !important; + bottom: 7rem !important; + left: 7rem !important; + } + + .xl\:inset-32 { + top: 8rem !important; + right: 8rem !important; + bottom: 8rem !important; + left: 8rem !important; + } + + .xl\:inset-36 { + top: 9rem !important; + right: 9rem !important; + bottom: 9rem !important; + left: 9rem !important; + } + + .xl\:inset-40 { + top: 10rem !important; + right: 10rem !important; + bottom: 10rem !important; + left: 10rem !important; + } + + .xl\:inset-44 { + top: 11rem !important; + right: 11rem !important; + bottom: 11rem !important; + left: 11rem !important; + } + + .xl\:inset-48 { + top: 12rem !important; + right: 12rem !important; + bottom: 12rem !important; + left: 12rem !important; + } + + .xl\:inset-52 { + top: 13rem !important; + right: 13rem !important; + bottom: 13rem !important; + left: 13rem !important; + } + + .xl\:inset-56 { + top: 14rem !important; + right: 14rem !important; + bottom: 14rem !important; + left: 14rem !important; + } + + .xl\:inset-60 { + top: 15rem !important; + right: 15rem !important; + bottom: 15rem !important; + left: 15rem !important; + } + + .xl\:inset-64 { + top: 16rem !important; + right: 16rem !important; + bottom: 16rem !important; + left: 16rem !important; + } + + .xl\:inset-72 { + top: 18rem !important; + right: 18rem !important; + bottom: 18rem !important; + left: 18rem !important; + } + + .xl\:inset-80 { + top: 20rem !important; + right: 20rem !important; + bottom: 20rem !important; + left: 20rem !important; + } + + .xl\:inset-96 { + top: 24rem !important; + right: 24rem !important; + bottom: 24rem !important; + left: 24rem !important; + } + + .xl\:inset-auto { + top: auto !important; + right: auto !important; + bottom: auto !important; + left: auto !important; + } + + .xl\:inset-px { + top: 1px !important; + right: 1px !important; + bottom: 1px !important; + left: 1px !important; + } + + .xl\:inset-0\.5 { + top: 0.125rem !important; + right: 0.125rem !important; + bottom: 0.125rem !important; + left: 0.125rem !important; + } + + .xl\:inset-1\.5 { + top: 0.375rem !important; + right: 0.375rem !important; + bottom: 0.375rem !important; + left: 0.375rem !important; + } + + .xl\:inset-2\.5 { + top: 0.625rem !important; + right: 0.625rem !important; + bottom: 0.625rem !important; + left: 0.625rem !important; + } + + .xl\:inset-3\.5 { + top: 0.875rem !important; + right: 0.875rem !important; + bottom: 0.875rem !important; + left: 0.875rem !important; + } + + .xl\:-inset-0 { + top: 0px !important; + right: 0px !important; + bottom: 0px !important; + left: 0px !important; + } + + .xl\:-inset-1 { + top: -0.25rem !important; + right: -0.25rem !important; + bottom: -0.25rem !important; + left: -0.25rem !important; + } + + .xl\:-inset-2 { + top: -0.5rem !important; + right: -0.5rem !important; + bottom: -0.5rem !important; + left: -0.5rem !important; + } + + .xl\:-inset-3 { + top: -0.75rem !important; + right: -0.75rem !important; + bottom: -0.75rem !important; + left: -0.75rem !important; + } + + .xl\:-inset-4 { + top: -1rem !important; + right: -1rem !important; + bottom: -1rem !important; + left: -1rem !important; + } + + .xl\:-inset-5 { + top: -1.25rem !important; + right: -1.25rem !important; + bottom: -1.25rem !important; + left: -1.25rem !important; + } + + .xl\:-inset-6 { + top: -1.5rem !important; + right: -1.5rem !important; + bottom: -1.5rem !important; + left: -1.5rem !important; + } + + .xl\:-inset-7 { + top: -1.75rem !important; + right: -1.75rem !important; + bottom: -1.75rem !important; + left: -1.75rem !important; + } + + .xl\:-inset-8 { + top: -2rem !important; + right: -2rem !important; + bottom: -2rem !important; + left: -2rem !important; + } + + .xl\:-inset-9 { + top: -2.25rem !important; + right: -2.25rem !important; + bottom: -2.25rem !important; + left: -2.25rem !important; + } + + .xl\:-inset-10 { + top: -2.5rem !important; + right: -2.5rem !important; + bottom: -2.5rem !important; + left: -2.5rem !important; + } + + .xl\:-inset-11 { + top: -2.75rem !important; + right: -2.75rem !important; + bottom: -2.75rem !important; + left: -2.75rem !important; + } + + .xl\:-inset-12 { + top: -3rem !important; + right: -3rem !important; + bottom: -3rem !important; + left: -3rem !important; + } + + .xl\:-inset-14 { + top: -3.5rem !important; + right: -3.5rem !important; + bottom: -3.5rem !important; + left: -3.5rem !important; + } + + .xl\:-inset-16 { + top: -4rem !important; + right: -4rem !important; + bottom: -4rem !important; + left: -4rem !important; + } + + .xl\:-inset-20 { + top: -5rem !important; + right: -5rem !important; + bottom: -5rem !important; + left: -5rem !important; + } + + .xl\:-inset-24 { + top: -6rem !important; + right: -6rem !important; + bottom: -6rem !important; + left: -6rem !important; + } + + .xl\:-inset-28 { + top: -7rem !important; + right: -7rem !important; + bottom: -7rem !important; + left: -7rem !important; + } + + .xl\:-inset-32 { + top: -8rem !important; + right: -8rem !important; + bottom: -8rem !important; + left: -8rem !important; + } + + .xl\:-inset-36 { + top: -9rem !important; + right: -9rem !important; + bottom: -9rem !important; + left: -9rem !important; + } + + .xl\:-inset-40 { + top: -10rem !important; + right: -10rem !important; + bottom: -10rem !important; + left: -10rem !important; + } + + .xl\:-inset-44 { + top: -11rem !important; + right: -11rem !important; + bottom: -11rem !important; + left: -11rem !important; + } + + .xl\:-inset-48 { + top: -12rem !important; + right: -12rem !important; + bottom: -12rem !important; + left: -12rem !important; + } + + .xl\:-inset-52 { + top: -13rem !important; + right: -13rem !important; + bottom: -13rem !important; + left: -13rem !important; + } + + .xl\:-inset-56 { + top: -14rem !important; + right: -14rem !important; + bottom: -14rem !important; + left: -14rem !important; + } + + .xl\:-inset-60 { + top: -15rem !important; + right: -15rem !important; + bottom: -15rem !important; + left: -15rem !important; + } + + .xl\:-inset-64 { + top: -16rem !important; + right: -16rem !important; + bottom: -16rem !important; + left: -16rem !important; + } + + .xl\:-inset-72 { + top: -18rem !important; + right: -18rem !important; + bottom: -18rem !important; + left: -18rem !important; + } + + .xl\:-inset-80 { + top: -20rem !important; + right: -20rem !important; + bottom: -20rem !important; + left: -20rem !important; + } + + .xl\:-inset-96 { + top: -24rem !important; + right: -24rem !important; + bottom: -24rem !important; + left: -24rem !important; + } + + .xl\:-inset-px { + top: -1px !important; + right: -1px !important; + bottom: -1px !important; + left: -1px !important; + } + + .xl\:-inset-0\.5 { + top: -0.125rem !important; + right: -0.125rem !important; + bottom: -0.125rem !important; + left: -0.125rem !important; + } + + .xl\:-inset-1\.5 { + top: -0.375rem !important; + right: -0.375rem !important; + bottom: -0.375rem !important; + left: -0.375rem !important; + } + + .xl\:-inset-2\.5 { + top: -0.625rem !important; + right: -0.625rem !important; + bottom: -0.625rem !important; + left: -0.625rem !important; + } + + .xl\:-inset-3\.5 { + top: -0.875rem !important; + right: -0.875rem !important; + bottom: -0.875rem !important; + left: -0.875rem !important; + } + + .xl\:inset-1\/2 { + top: 50% !important; + right: 50% !important; + bottom: 50% !important; + left: 50% !important; + } + + .xl\:inset-1\/3 { + top: 33.333333% !important; + right: 33.333333% !important; + bottom: 33.333333% !important; + left: 33.333333% !important; + } + + .xl\:inset-2\/3 { + top: 66.666667% !important; + right: 66.666667% !important; + bottom: 66.666667% !important; + left: 66.666667% !important; + } + + .xl\:inset-1\/4 { + top: 25% !important; + right: 25% !important; + bottom: 25% !important; + left: 25% !important; + } + + .xl\:inset-2\/4 { + top: 50% !important; + right: 50% !important; + bottom: 50% !important; + left: 50% !important; + } + + .xl\:inset-3\/4 { + top: 75% !important; + right: 75% !important; + bottom: 75% !important; + left: 75% !important; + } + + .xl\:inset-full { + top: 100% !important; + right: 100% !important; + bottom: 100% !important; + left: 100% !important; + } + + .xl\:-inset-1\/2 { + top: -50% !important; + right: -50% !important; + bottom: -50% !important; + left: -50% !important; + } + + .xl\:-inset-1\/3 { + top: -33.333333% !important; + right: -33.333333% !important; + bottom: -33.333333% !important; + left: -33.333333% !important; + } + + .xl\:-inset-2\/3 { + top: -66.666667% !important; + right: -66.666667% !important; + bottom: -66.666667% !important; + left: -66.666667% !important; + } + + .xl\:-inset-1\/4 { + top: -25% !important; + right: -25% !important; + bottom: -25% !important; + left: -25% !important; + } + + .xl\:-inset-2\/4 { + top: -50% !important; + right: -50% !important; + bottom: -50% !important; + left: -50% !important; + } + + .xl\:-inset-3\/4 { + top: -75% !important; + right: -75% !important; + bottom: -75% !important; + left: -75% !important; + } + + .xl\:-inset-full { + top: -100% !important; + right: -100% !important; + bottom: -100% !important; + left: -100% !important; + } + + .xl\:inset-y-0 { + top: 0px !important; + bottom: 0px !important; + } + + .xl\:inset-x-0 { + right: 0px !important; + left: 0px !important; + } + + .xl\:inset-y-1 { + top: 0.25rem !important; + bottom: 0.25rem !important; + } + + .xl\:inset-x-1 { + right: 0.25rem !important; + left: 0.25rem !important; + } + + .xl\:inset-y-2 { + top: 0.5rem !important; + bottom: 0.5rem !important; + } + + .xl\:inset-x-2 { + right: 0.5rem !important; + left: 0.5rem !important; + } + + .xl\:inset-y-3 { + top: 0.75rem !important; + bottom: 0.75rem !important; + } + + .xl\:inset-x-3 { + right: 0.75rem !important; + left: 0.75rem !important; + } + + .xl\:inset-y-4 { + top: 1rem !important; + bottom: 1rem !important; + } + + .xl\:inset-x-4 { + right: 1rem !important; + left: 1rem !important; + } + + .xl\:inset-y-5 { + top: 1.25rem !important; + bottom: 1.25rem !important; + } + + .xl\:inset-x-5 { + right: 1.25rem !important; + left: 1.25rem !important; + } + + .xl\:inset-y-6 { + top: 1.5rem !important; + bottom: 1.5rem !important; + } + + .xl\:inset-x-6 { + right: 1.5rem !important; + left: 1.5rem !important; + } + + .xl\:inset-y-7 { + top: 1.75rem !important; + bottom: 1.75rem !important; + } + + .xl\:inset-x-7 { + right: 1.75rem !important; + left: 1.75rem !important; + } + + .xl\:inset-y-8 { + top: 2rem !important; + bottom: 2rem !important; + } + + .xl\:inset-x-8 { + right: 2rem !important; + left: 2rem !important; + } + + .xl\:inset-y-9 { + top: 2.25rem !important; + bottom: 2.25rem !important; + } + + .xl\:inset-x-9 { + right: 2.25rem !important; + left: 2.25rem !important; + } + + .xl\:inset-y-10 { + top: 2.5rem !important; + bottom: 2.5rem !important; + } + + .xl\:inset-x-10 { + right: 2.5rem !important; + left: 2.5rem !important; + } + + .xl\:inset-y-11 { + top: 2.75rem !important; + bottom: 2.75rem !important; + } + + .xl\:inset-x-11 { + right: 2.75rem !important; + left: 2.75rem !important; + } + + .xl\:inset-y-12 { + top: 3rem !important; + bottom: 3rem !important; + } + + .xl\:inset-x-12 { + right: 3rem !important; + left: 3rem !important; + } + + .xl\:inset-y-14 { + top: 3.5rem !important; + bottom: 3.5rem !important; + } + + .xl\:inset-x-14 { + right: 3.5rem !important; + left: 3.5rem !important; + } + + .xl\:inset-y-16 { + top: 4rem !important; + bottom: 4rem !important; + } + + .xl\:inset-x-16 { + right: 4rem !important; + left: 4rem !important; + } + + .xl\:inset-y-20 { + top: 5rem !important; + bottom: 5rem !important; + } + + .xl\:inset-x-20 { + right: 5rem !important; + left: 5rem !important; + } + + .xl\:inset-y-24 { + top: 6rem !important; + bottom: 6rem !important; + } + + .xl\:inset-x-24 { + right: 6rem !important; + left: 6rem !important; + } + + .xl\:inset-y-28 { + top: 7rem !important; + bottom: 7rem !important; + } + + .xl\:inset-x-28 { + right: 7rem !important; + left: 7rem !important; + } + + .xl\:inset-y-32 { + top: 8rem !important; + bottom: 8rem !important; + } + + .xl\:inset-x-32 { + right: 8rem !important; + left: 8rem !important; + } + + .xl\:inset-y-36 { + top: 9rem !important; + bottom: 9rem !important; + } + + .xl\:inset-x-36 { + right: 9rem !important; + left: 9rem !important; + } + + .xl\:inset-y-40 { + top: 10rem !important; + bottom: 10rem !important; + } + + .xl\:inset-x-40 { + right: 10rem !important; + left: 10rem !important; + } + + .xl\:inset-y-44 { + top: 11rem !important; + bottom: 11rem !important; + } + + .xl\:inset-x-44 { + right: 11rem !important; + left: 11rem !important; + } + + .xl\:inset-y-48 { + top: 12rem !important; + bottom: 12rem !important; + } + + .xl\:inset-x-48 { + right: 12rem !important; + left: 12rem !important; + } + + .xl\:inset-y-52 { + top: 13rem !important; + bottom: 13rem !important; + } + + .xl\:inset-x-52 { + right: 13rem !important; + left: 13rem !important; + } + + .xl\:inset-y-56 { + top: 14rem !important; + bottom: 14rem !important; + } + + .xl\:inset-x-56 { + right: 14rem !important; + left: 14rem !important; + } + + .xl\:inset-y-60 { + top: 15rem !important; + bottom: 15rem !important; + } + + .xl\:inset-x-60 { + right: 15rem !important; + left: 15rem !important; + } + + .xl\:inset-y-64 { + top: 16rem !important; + bottom: 16rem !important; + } + + .xl\:inset-x-64 { + right: 16rem !important; + left: 16rem !important; + } + + .xl\:inset-y-72 { + top: 18rem !important; + bottom: 18rem !important; + } + + .xl\:inset-x-72 { + right: 18rem !important; + left: 18rem !important; + } + + .xl\:inset-y-80 { + top: 20rem !important; + bottom: 20rem !important; + } + + .xl\:inset-x-80 { + right: 20rem !important; + left: 20rem !important; + } + + .xl\:inset-y-96 { + top: 24rem !important; + bottom: 24rem !important; + } + + .xl\:inset-x-96 { + right: 24rem !important; + left: 24rem !important; + } + + .xl\:inset-y-auto { + top: auto !important; + bottom: auto !important; + } + + .xl\:inset-x-auto { + right: auto !important; + left: auto !important; + } + + .xl\:inset-y-px { + top: 1px !important; + bottom: 1px !important; + } + + .xl\:inset-x-px { + right: 1px !important; + left: 1px !important; + } + + .xl\:inset-y-0\.5 { + top: 0.125rem !important; + bottom: 0.125rem !important; + } + + .xl\:inset-x-0\.5 { + right: 0.125rem !important; + left: 0.125rem !important; + } + + .xl\:inset-y-1\.5 { + top: 0.375rem !important; + bottom: 0.375rem !important; + } + + .xl\:inset-x-1\.5 { + right: 0.375rem !important; + left: 0.375rem !important; + } + + .xl\:inset-y-2\.5 { + top: 0.625rem !important; + bottom: 0.625rem !important; + } + + .xl\:inset-x-2\.5 { + right: 0.625rem !important; + left: 0.625rem !important; + } + + .xl\:inset-y-3\.5 { + top: 0.875rem !important; + bottom: 0.875rem !important; + } + + .xl\:inset-x-3\.5 { + right: 0.875rem !important; + left: 0.875rem !important; + } + + .xl\:-inset-y-0 { + top: 0px !important; + bottom: 0px !important; + } + + .xl\:-inset-x-0 { + right: 0px !important; + left: 0px !important; + } + + .xl\:-inset-y-1 { + top: -0.25rem !important; + bottom: -0.25rem !important; + } + + .xl\:-inset-x-1 { + right: -0.25rem !important; + left: -0.25rem !important; + } + + .xl\:-inset-y-2 { + top: -0.5rem !important; + bottom: -0.5rem !important; + } + + .xl\:-inset-x-2 { + right: -0.5rem !important; + left: -0.5rem !important; + } + + .xl\:-inset-y-3 { + top: -0.75rem !important; + bottom: -0.75rem !important; + } + + .xl\:-inset-x-3 { + right: -0.75rem !important; + left: -0.75rem !important; + } + + .xl\:-inset-y-4 { + top: -1rem !important; + bottom: -1rem !important; + } + + .xl\:-inset-x-4 { + right: -1rem !important; + left: -1rem !important; + } + + .xl\:-inset-y-5 { + top: -1.25rem !important; + bottom: -1.25rem !important; + } + + .xl\:-inset-x-5 { + right: -1.25rem !important; + left: -1.25rem !important; + } + + .xl\:-inset-y-6 { + top: -1.5rem !important; + bottom: -1.5rem !important; + } + + .xl\:-inset-x-6 { + right: -1.5rem !important; + left: -1.5rem !important; + } + + .xl\:-inset-y-7 { + top: -1.75rem !important; + bottom: -1.75rem !important; + } + + .xl\:-inset-x-7 { + right: -1.75rem !important; + left: -1.75rem !important; + } + + .xl\:-inset-y-8 { + top: -2rem !important; + bottom: -2rem !important; + } + + .xl\:-inset-x-8 { + right: -2rem !important; + left: -2rem !important; + } + + .xl\:-inset-y-9 { + top: -2.25rem !important; + bottom: -2.25rem !important; + } + + .xl\:-inset-x-9 { + right: -2.25rem !important; + left: -2.25rem !important; + } + + .xl\:-inset-y-10 { + top: -2.5rem !important; + bottom: -2.5rem !important; + } + + .xl\:-inset-x-10 { + right: -2.5rem !important; + left: -2.5rem !important; + } + + .xl\:-inset-y-11 { + top: -2.75rem !important; + bottom: -2.75rem !important; + } + + .xl\:-inset-x-11 { + right: -2.75rem !important; + left: -2.75rem !important; + } + + .xl\:-inset-y-12 { + top: -3rem !important; + bottom: -3rem !important; + } + + .xl\:-inset-x-12 { + right: -3rem !important; + left: -3rem !important; + } + + .xl\:-inset-y-14 { + top: -3.5rem !important; + bottom: -3.5rem !important; + } + + .xl\:-inset-x-14 { + right: -3.5rem !important; + left: -3.5rem !important; + } + + .xl\:-inset-y-16 { + top: -4rem !important; + bottom: -4rem !important; + } + + .xl\:-inset-x-16 { + right: -4rem !important; + left: -4rem !important; + } + + .xl\:-inset-y-20 { + top: -5rem !important; + bottom: -5rem !important; + } + + .xl\:-inset-x-20 { + right: -5rem !important; + left: -5rem !important; + } + + .xl\:-inset-y-24 { + top: -6rem !important; + bottom: -6rem !important; + } + + .xl\:-inset-x-24 { + right: -6rem !important; + left: -6rem !important; + } + + .xl\:-inset-y-28 { + top: -7rem !important; + bottom: -7rem !important; + } + + .xl\:-inset-x-28 { + right: -7rem !important; + left: -7rem !important; + } + + .xl\:-inset-y-32 { + top: -8rem !important; + bottom: -8rem !important; + } + + .xl\:-inset-x-32 { + right: -8rem !important; + left: -8rem !important; + } + + .xl\:-inset-y-36 { + top: -9rem !important; + bottom: -9rem !important; + } + + .xl\:-inset-x-36 { + right: -9rem !important; + left: -9rem !important; + } + + .xl\:-inset-y-40 { + top: -10rem !important; + bottom: -10rem !important; + } + + .xl\:-inset-x-40 { + right: -10rem !important; + left: -10rem !important; + } + + .xl\:-inset-y-44 { + top: -11rem !important; + bottom: -11rem !important; + } + + .xl\:-inset-x-44 { + right: -11rem !important; + left: -11rem !important; + } + + .xl\:-inset-y-48 { + top: -12rem !important; + bottom: -12rem !important; + } + + .xl\:-inset-x-48 { + right: -12rem !important; + left: -12rem !important; + } + + .xl\:-inset-y-52 { + top: -13rem !important; + bottom: -13rem !important; + } + + .xl\:-inset-x-52 { + right: -13rem !important; + left: -13rem !important; + } + + .xl\:-inset-y-56 { + top: -14rem !important; + bottom: -14rem !important; + } + + .xl\:-inset-x-56 { + right: -14rem !important; + left: -14rem !important; + } + + .xl\:-inset-y-60 { + top: -15rem !important; + bottom: -15rem !important; + } + + .xl\:-inset-x-60 { + right: -15rem !important; + left: -15rem !important; + } + + .xl\:-inset-y-64 { + top: -16rem !important; + bottom: -16rem !important; + } + + .xl\:-inset-x-64 { + right: -16rem !important; + left: -16rem !important; + } + + .xl\:-inset-y-72 { + top: -18rem !important; + bottom: -18rem !important; + } + + .xl\:-inset-x-72 { + right: -18rem !important; + left: -18rem !important; + } + + .xl\:-inset-y-80 { + top: -20rem !important; + bottom: -20rem !important; + } + + .xl\:-inset-x-80 { + right: -20rem !important; + left: -20rem !important; + } + + .xl\:-inset-y-96 { + top: -24rem !important; + bottom: -24rem !important; + } + + .xl\:-inset-x-96 { + right: -24rem !important; + left: -24rem !important; + } + + .xl\:-inset-y-px { + top: -1px !important; + bottom: -1px !important; + } + + .xl\:-inset-x-px { + right: -1px !important; + left: -1px !important; + } + + .xl\:-inset-y-0\.5 { + top: -0.125rem !important; + bottom: -0.125rem !important; + } + + .xl\:-inset-x-0\.5 { + right: -0.125rem !important; + left: -0.125rem !important; + } + + .xl\:-inset-y-1\.5 { + top: -0.375rem !important; + bottom: -0.375rem !important; + } + + .xl\:-inset-x-1\.5 { + right: -0.375rem !important; + left: -0.375rem !important; + } + + .xl\:-inset-y-2\.5 { + top: -0.625rem !important; + bottom: -0.625rem !important; + } + + .xl\:-inset-x-2\.5 { + right: -0.625rem !important; + left: -0.625rem !important; + } + + .xl\:-inset-y-3\.5 { + top: -0.875rem !important; + bottom: -0.875rem !important; + } + + .xl\:-inset-x-3\.5 { + right: -0.875rem !important; + left: -0.875rem !important; + } + + .xl\:inset-y-1\/2 { + top: 50% !important; + bottom: 50% !important; + } + + .xl\:inset-x-1\/2 { + right: 50% !important; + left: 50% !important; + } + + .xl\:inset-y-1\/3 { + top: 33.333333% !important; + bottom: 33.333333% !important; + } + + .xl\:inset-x-1\/3 { + right: 33.333333% !important; + left: 33.333333% !important; + } + + .xl\:inset-y-2\/3 { + top: 66.666667% !important; + bottom: 66.666667% !important; + } + + .xl\:inset-x-2\/3 { + right: 66.666667% !important; + left: 66.666667% !important; + } + + .xl\:inset-y-1\/4 { + top: 25% !important; + bottom: 25% !important; + } + + .xl\:inset-x-1\/4 { + right: 25% !important; + left: 25% !important; + } + + .xl\:inset-y-2\/4 { + top: 50% !important; + bottom: 50% !important; + } + + .xl\:inset-x-2\/4 { + right: 50% !important; + left: 50% !important; + } + + .xl\:inset-y-3\/4 { + top: 75% !important; + bottom: 75% !important; + } + + .xl\:inset-x-3\/4 { + right: 75% !important; + left: 75% !important; + } + + .xl\:inset-y-full { + top: 100% !important; + bottom: 100% !important; + } + + .xl\:inset-x-full { + right: 100% !important; + left: 100% !important; + } + + .xl\:-inset-y-1\/2 { + top: -50% !important; + bottom: -50% !important; + } + + .xl\:-inset-x-1\/2 { + right: -50% !important; + left: -50% !important; + } + + .xl\:-inset-y-1\/3 { + top: -33.333333% !important; + bottom: -33.333333% !important; + } + + .xl\:-inset-x-1\/3 { + right: -33.333333% !important; + left: -33.333333% !important; + } + + .xl\:-inset-y-2\/3 { + top: -66.666667% !important; + bottom: -66.666667% !important; + } + + .xl\:-inset-x-2\/3 { + right: -66.666667% !important; + left: -66.666667% !important; + } + + .xl\:-inset-y-1\/4 { + top: -25% !important; + bottom: -25% !important; + } + + .xl\:-inset-x-1\/4 { + right: -25% !important; + left: -25% !important; + } + + .xl\:-inset-y-2\/4 { + top: -50% !important; + bottom: -50% !important; + } + + .xl\:-inset-x-2\/4 { + right: -50% !important; + left: -50% !important; + } + + .xl\:-inset-y-3\/4 { + top: -75% !important; + bottom: -75% !important; + } + + .xl\:-inset-x-3\/4 { + right: -75% !important; + left: -75% !important; + } + + .xl\:-inset-y-full { + top: -100% !important; + bottom: -100% !important; + } + + .xl\:-inset-x-full { + right: -100% !important; + left: -100% !important; + } + + .xl\:top-0 { + top: 0px !important; + } + + .xl\:right-0 { + right: 0px !important; + } + + .xl\:bottom-0 { + bottom: 0px !important; + } + + .xl\:left-0 { + left: 0px !important; + } + + .xl\:top-1 { + top: 0.25rem !important; + } + + .xl\:right-1 { + right: 0.25rem !important; + } + + .xl\:bottom-1 { + bottom: 0.25rem !important; + } + + .xl\:left-1 { + left: 0.25rem !important; + } + + .xl\:top-2 { + top: 0.5rem !important; + } + + .xl\:right-2 { + right: 0.5rem !important; + } + + .xl\:bottom-2 { + bottom: 0.5rem !important; + } + + .xl\:left-2 { + left: 0.5rem !important; + } + + .xl\:top-3 { + top: 0.75rem !important; + } + + .xl\:right-3 { + right: 0.75rem !important; + } + + .xl\:bottom-3 { + bottom: 0.75rem !important; + } + + .xl\:left-3 { + left: 0.75rem !important; + } + + .xl\:top-4 { + top: 1rem !important; + } + + .xl\:right-4 { + right: 1rem !important; + } + + .xl\:bottom-4 { + bottom: 1rem !important; + } + + .xl\:left-4 { + left: 1rem !important; + } + + .xl\:top-5 { + top: 1.25rem !important; + } + + .xl\:right-5 { + right: 1.25rem !important; + } + + .xl\:bottom-5 { + bottom: 1.25rem !important; + } + + .xl\:left-5 { + left: 1.25rem !important; + } + + .xl\:top-6 { + top: 1.5rem !important; + } + + .xl\:right-6 { + right: 1.5rem !important; + } + + .xl\:bottom-6 { + bottom: 1.5rem !important; + } + + .xl\:left-6 { + left: 1.5rem !important; + } + + .xl\:top-7 { + top: 1.75rem !important; + } + + .xl\:right-7 { + right: 1.75rem !important; + } + + .xl\:bottom-7 { + bottom: 1.75rem !important; + } + + .xl\:left-7 { + left: 1.75rem !important; + } + + .xl\:top-8 { + top: 2rem !important; + } + + .xl\:right-8 { + right: 2rem !important; + } + + .xl\:bottom-8 { + bottom: 2rem !important; + } + + .xl\:left-8 { + left: 2rem !important; + } + + .xl\:top-9 { + top: 2.25rem !important; + } + + .xl\:right-9 { + right: 2.25rem !important; + } + + .xl\:bottom-9 { + bottom: 2.25rem !important; + } + + .xl\:left-9 { + left: 2.25rem !important; + } + + .xl\:top-10 { + top: 2.5rem !important; + } + + .xl\:right-10 { + right: 2.5rem !important; + } + + .xl\:bottom-10 { + bottom: 2.5rem !important; + } + + .xl\:left-10 { + left: 2.5rem !important; + } + + .xl\:top-11 { + top: 2.75rem !important; + } + + .xl\:right-11 { + right: 2.75rem !important; + } + + .xl\:bottom-11 { + bottom: 2.75rem !important; + } + + .xl\:left-11 { + left: 2.75rem !important; + } + + .xl\:top-12 { + top: 3rem !important; + } + + .xl\:right-12 { + right: 3rem !important; + } + + .xl\:bottom-12 { + bottom: 3rem !important; + } + + .xl\:left-12 { + left: 3rem !important; + } + + .xl\:top-14 { + top: 3.5rem !important; + } + + .xl\:right-14 { + right: 3.5rem !important; + } + + .xl\:bottom-14 { + bottom: 3.5rem !important; + } + + .xl\:left-14 { + left: 3.5rem !important; + } + + .xl\:top-16 { + top: 4rem !important; + } + + .xl\:right-16 { + right: 4rem !important; + } + + .xl\:bottom-16 { + bottom: 4rem !important; + } + + .xl\:left-16 { + left: 4rem !important; + } + + .xl\:top-20 { + top: 5rem !important; + } + + .xl\:right-20 { + right: 5rem !important; + } + + .xl\:bottom-20 { + bottom: 5rem !important; + } + + .xl\:left-20 { + left: 5rem !important; + } + + .xl\:top-24 { + top: 6rem !important; + } + + .xl\:right-24 { + right: 6rem !important; + } + + .xl\:bottom-24 { + bottom: 6rem !important; + } + + .xl\:left-24 { + left: 6rem !important; + } + + .xl\:top-28 { + top: 7rem !important; + } + + .xl\:right-28 { + right: 7rem !important; + } + + .xl\:bottom-28 { + bottom: 7rem !important; + } + + .xl\:left-28 { + left: 7rem !important; + } + + .xl\:top-32 { + top: 8rem !important; + } + + .xl\:right-32 { + right: 8rem !important; + } + + .xl\:bottom-32 { + bottom: 8rem !important; + } + + .xl\:left-32 { + left: 8rem !important; + } + + .xl\:top-36 { + top: 9rem !important; + } + + .xl\:right-36 { + right: 9rem !important; + } + + .xl\:bottom-36 { + bottom: 9rem !important; + } + + .xl\:left-36 { + left: 9rem !important; + } + + .xl\:top-40 { + top: 10rem !important; + } + + .xl\:right-40 { + right: 10rem !important; + } + + .xl\:bottom-40 { + bottom: 10rem !important; + } + + .xl\:left-40 { + left: 10rem !important; + } + + .xl\:top-44 { + top: 11rem !important; + } + + .xl\:right-44 { + right: 11rem !important; + } + + .xl\:bottom-44 { + bottom: 11rem !important; + } + + .xl\:left-44 { + left: 11rem !important; + } + + .xl\:top-48 { + top: 12rem !important; + } + + .xl\:right-48 { + right: 12rem !important; + } + + .xl\:bottom-48 { + bottom: 12rem !important; + } + + .xl\:left-48 { + left: 12rem !important; + } + + .xl\:top-52 { + top: 13rem !important; + } + + .xl\:right-52 { + right: 13rem !important; + } + + .xl\:bottom-52 { + bottom: 13rem !important; + } + + .xl\:left-52 { + left: 13rem !important; + } + + .xl\:top-56 { + top: 14rem !important; + } + + .xl\:right-56 { + right: 14rem !important; + } + + .xl\:bottom-56 { + bottom: 14rem !important; + } + + .xl\:left-56 { + left: 14rem !important; + } + + .xl\:top-60 { + top: 15rem !important; + } + + .xl\:right-60 { + right: 15rem !important; + } + + .xl\:bottom-60 { + bottom: 15rem !important; + } + + .xl\:left-60 { + left: 15rem !important; + } + + .xl\:top-64 { + top: 16rem !important; + } + + .xl\:right-64 { + right: 16rem !important; + } + + .xl\:bottom-64 { + bottom: 16rem !important; + } + + .xl\:left-64 { + left: 16rem !important; + } + + .xl\:top-72 { + top: 18rem !important; + } + + .xl\:right-72 { + right: 18rem !important; + } + + .xl\:bottom-72 { + bottom: 18rem !important; + } + + .xl\:left-72 { + left: 18rem !important; + } + + .xl\:top-80 { + top: 20rem !important; + } + + .xl\:right-80 { + right: 20rem !important; + } + + .xl\:bottom-80 { + bottom: 20rem !important; + } + + .xl\:left-80 { + left: 20rem !important; + } + + .xl\:top-96 { + top: 24rem !important; + } + + .xl\:right-96 { + right: 24rem !important; + } + + .xl\:bottom-96 { + bottom: 24rem !important; + } + + .xl\:left-96 { + left: 24rem !important; + } + + .xl\:top-auto { + top: auto !important; + } + + .xl\:right-auto { + right: auto !important; + } + + .xl\:bottom-auto { + bottom: auto !important; + } + + .xl\:left-auto { + left: auto !important; + } + + .xl\:top-px { + top: 1px !important; + } + + .xl\:right-px { + right: 1px !important; + } + + .xl\:bottom-px { + bottom: 1px !important; + } + + .xl\:left-px { + left: 1px !important; + } + + .xl\:top-0\.5 { + top: 0.125rem !important; + } + + .xl\:right-0\.5 { + right: 0.125rem !important; + } + + .xl\:bottom-0\.5 { + bottom: 0.125rem !important; + } + + .xl\:left-0\.5 { + left: 0.125rem !important; + } + + .xl\:top-1\.5 { + top: 0.375rem !important; + } + + .xl\:right-1\.5 { + right: 0.375rem !important; + } + + .xl\:bottom-1\.5 { + bottom: 0.375rem !important; + } + + .xl\:left-1\.5 { + left: 0.375rem !important; + } + + .xl\:top-2\.5 { + top: 0.625rem !important; + } + + .xl\:right-2\.5 { + right: 0.625rem !important; + } + + .xl\:bottom-2\.5 { + bottom: 0.625rem !important; + } + + .xl\:left-2\.5 { + left: 0.625rem !important; + } + + .xl\:top-3\.5 { + top: 0.875rem !important; + } + + .xl\:right-3\.5 { + right: 0.875rem !important; + } + + .xl\:bottom-3\.5 { + bottom: 0.875rem !important; + } + + .xl\:left-3\.5 { + left: 0.875rem !important; + } + + .xl\:-top-0 { + top: 0px !important; + } + + .xl\:-right-0 { + right: 0px !important; + } + + .xl\:-bottom-0 { + bottom: 0px !important; + } + + .xl\:-left-0 { + left: 0px !important; + } + + .xl\:-top-1 { + top: -0.25rem !important; + } + + .xl\:-right-1 { + right: -0.25rem !important; + } + + .xl\:-bottom-1 { + bottom: -0.25rem !important; + } + + .xl\:-left-1 { + left: -0.25rem !important; + } + + .xl\:-top-2 { + top: -0.5rem !important; + } + + .xl\:-right-2 { + right: -0.5rem !important; + } + + .xl\:-bottom-2 { + bottom: -0.5rem !important; + } + + .xl\:-left-2 { + left: -0.5rem !important; + } + + .xl\:-top-3 { + top: -0.75rem !important; + } + + .xl\:-right-3 { + right: -0.75rem !important; + } + + .xl\:-bottom-3 { + bottom: -0.75rem !important; + } + + .xl\:-left-3 { + left: -0.75rem !important; + } + + .xl\:-top-4 { + top: -1rem !important; + } + + .xl\:-right-4 { + right: -1rem !important; + } + + .xl\:-bottom-4 { + bottom: -1rem !important; + } + + .xl\:-left-4 { + left: -1rem !important; + } + + .xl\:-top-5 { + top: -1.25rem !important; + } + + .xl\:-right-5 { + right: -1.25rem !important; + } + + .xl\:-bottom-5 { + bottom: -1.25rem !important; + } + + .xl\:-left-5 { + left: -1.25rem !important; + } + + .xl\:-top-6 { + top: -1.5rem !important; + } + + .xl\:-right-6 { + right: -1.5rem !important; + } + + .xl\:-bottom-6 { + bottom: -1.5rem !important; + } + + .xl\:-left-6 { + left: -1.5rem !important; + } + + .xl\:-top-7 { + top: -1.75rem !important; + } + + .xl\:-right-7 { + right: -1.75rem !important; + } + + .xl\:-bottom-7 { + bottom: -1.75rem !important; + } + + .xl\:-left-7 { + left: -1.75rem !important; + } + + .xl\:-top-8 { + top: -2rem !important; + } + + .xl\:-right-8 { + right: -2rem !important; + } + + .xl\:-bottom-8 { + bottom: -2rem !important; + } + + .xl\:-left-8 { + left: -2rem !important; + } + + .xl\:-top-9 { + top: -2.25rem !important; + } + + .xl\:-right-9 { + right: -2.25rem !important; + } + + .xl\:-bottom-9 { + bottom: -2.25rem !important; + } + + .xl\:-left-9 { + left: -2.25rem !important; + } + + .xl\:-top-10 { + top: -2.5rem !important; + } + + .xl\:-right-10 { + right: -2.5rem !important; + } + + .xl\:-bottom-10 { + bottom: -2.5rem !important; + } + + .xl\:-left-10 { + left: -2.5rem !important; + } + + .xl\:-top-11 { + top: -2.75rem !important; + } + + .xl\:-right-11 { + right: -2.75rem !important; + } + + .xl\:-bottom-11 { + bottom: -2.75rem !important; + } + + .xl\:-left-11 { + left: -2.75rem !important; + } + + .xl\:-top-12 { + top: -3rem !important; + } + + .xl\:-right-12 { + right: -3rem !important; + } + + .xl\:-bottom-12 { + bottom: -3rem !important; + } + + .xl\:-left-12 { + left: -3rem !important; + } + + .xl\:-top-14 { + top: -3.5rem !important; + } + + .xl\:-right-14 { + right: -3.5rem !important; + } + + .xl\:-bottom-14 { + bottom: -3.5rem !important; + } + + .xl\:-left-14 { + left: -3.5rem !important; + } + + .xl\:-top-16 { + top: -4rem !important; + } + + .xl\:-right-16 { + right: -4rem !important; + } + + .xl\:-bottom-16 { + bottom: -4rem !important; + } + + .xl\:-left-16 { + left: -4rem !important; + } + + .xl\:-top-20 { + top: -5rem !important; + } + + .xl\:-right-20 { + right: -5rem !important; + } + + .xl\:-bottom-20 { + bottom: -5rem !important; + } + + .xl\:-left-20 { + left: -5rem !important; + } + + .xl\:-top-24 { + top: -6rem !important; + } + + .xl\:-right-24 { + right: -6rem !important; + } + + .xl\:-bottom-24 { + bottom: -6rem !important; + } + + .xl\:-left-24 { + left: -6rem !important; + } + + .xl\:-top-28 { + top: -7rem !important; + } + + .xl\:-right-28 { + right: -7rem !important; + } + + .xl\:-bottom-28 { + bottom: -7rem !important; + } + + .xl\:-left-28 { + left: -7rem !important; + } + + .xl\:-top-32 { + top: -8rem !important; + } + + .xl\:-right-32 { + right: -8rem !important; + } + + .xl\:-bottom-32 { + bottom: -8rem !important; + } + + .xl\:-left-32 { + left: -8rem !important; + } + + .xl\:-top-36 { + top: -9rem !important; + } + + .xl\:-right-36 { + right: -9rem !important; + } + + .xl\:-bottom-36 { + bottom: -9rem !important; + } + + .xl\:-left-36 { + left: -9rem !important; + } + + .xl\:-top-40 { + top: -10rem !important; + } + + .xl\:-right-40 { + right: -10rem !important; + } + + .xl\:-bottom-40 { + bottom: -10rem !important; + } + + .xl\:-left-40 { + left: -10rem !important; + } + + .xl\:-top-44 { + top: -11rem !important; + } + + .xl\:-right-44 { + right: -11rem !important; + } + + .xl\:-bottom-44 { + bottom: -11rem !important; + } + + .xl\:-left-44 { + left: -11rem !important; + } + + .xl\:-top-48 { + top: -12rem !important; + } + + .xl\:-right-48 { + right: -12rem !important; + } + + .xl\:-bottom-48 { + bottom: -12rem !important; + } + + .xl\:-left-48 { + left: -12rem !important; + } + + .xl\:-top-52 { + top: -13rem !important; + } + + .xl\:-right-52 { + right: -13rem !important; + } + + .xl\:-bottom-52 { + bottom: -13rem !important; + } + + .xl\:-left-52 { + left: -13rem !important; + } + + .xl\:-top-56 { + top: -14rem !important; + } + + .xl\:-right-56 { + right: -14rem !important; + } + + .xl\:-bottom-56 { + bottom: -14rem !important; + } + + .xl\:-left-56 { + left: -14rem !important; + } + + .xl\:-top-60 { + top: -15rem !important; + } + + .xl\:-right-60 { + right: -15rem !important; + } + + .xl\:-bottom-60 { + bottom: -15rem !important; + } + + .xl\:-left-60 { + left: -15rem !important; + } + + .xl\:-top-64 { + top: -16rem !important; + } + + .xl\:-right-64 { + right: -16rem !important; + } + + .xl\:-bottom-64 { + bottom: -16rem !important; + } + + .xl\:-left-64 { + left: -16rem !important; + } + + .xl\:-top-72 { + top: -18rem !important; + } + + .xl\:-right-72 { + right: -18rem !important; + } + + .xl\:-bottom-72 { + bottom: -18rem !important; + } + + .xl\:-left-72 { + left: -18rem !important; + } + + .xl\:-top-80 { + top: -20rem !important; + } + + .xl\:-right-80 { + right: -20rem !important; + } + + .xl\:-bottom-80 { + bottom: -20rem !important; + } + + .xl\:-left-80 { + left: -20rem !important; + } + + .xl\:-top-96 { + top: -24rem !important; + } + + .xl\:-right-96 { + right: -24rem !important; + } + + .xl\:-bottom-96 { + bottom: -24rem !important; + } + + .xl\:-left-96 { + left: -24rem !important; + } + + .xl\:-top-px { + top: -1px !important; + } + + .xl\:-right-px { + right: -1px !important; + } + + .xl\:-bottom-px { + bottom: -1px !important; + } + + .xl\:-left-px { + left: -1px !important; + } + + .xl\:-top-0\.5 { + top: -0.125rem !important; + } + + .xl\:-right-0\.5 { + right: -0.125rem !important; + } + + .xl\:-bottom-0\.5 { + bottom: -0.125rem !important; + } + + .xl\:-left-0\.5 { + left: -0.125rem !important; + } + + .xl\:-top-1\.5 { + top: -0.375rem !important; + } + + .xl\:-right-1\.5 { + right: -0.375rem !important; + } + + .xl\:-bottom-1\.5 { + bottom: -0.375rem !important; + } + + .xl\:-left-1\.5 { + left: -0.375rem !important; + } + + .xl\:-top-2\.5 { + top: -0.625rem !important; + } + + .xl\:-right-2\.5 { + right: -0.625rem !important; + } + + .xl\:-bottom-2\.5 { + bottom: -0.625rem !important; + } + + .xl\:-left-2\.5 { + left: -0.625rem !important; + } + + .xl\:-top-3\.5 { + top: -0.875rem !important; + } + + .xl\:-right-3\.5 { + right: -0.875rem !important; + } + + .xl\:-bottom-3\.5 { + bottom: -0.875rem !important; + } + + .xl\:-left-3\.5 { + left: -0.875rem !important; + } + + .xl\:top-1\/2 { + top: 50% !important; + } + + .xl\:right-1\/2 { + right: 50% !important; + } + + .xl\:bottom-1\/2 { + bottom: 50% !important; + } + + .xl\:left-1\/2 { + left: 50% !important; + } + + .xl\:top-1\/3 { + top: 33.333333% !important; + } + + .xl\:right-1\/3 { + right: 33.333333% !important; + } + + .xl\:bottom-1\/3 { + bottom: 33.333333% !important; + } + + .xl\:left-1\/3 { + left: 33.333333% !important; + } + + .xl\:top-2\/3 { + top: 66.666667% !important; + } + + .xl\:right-2\/3 { + right: 66.666667% !important; + } + + .xl\:bottom-2\/3 { + bottom: 66.666667% !important; + } + + .xl\:left-2\/3 { + left: 66.666667% !important; + } + + .xl\:top-1\/4 { + top: 25% !important; + } + + .xl\:right-1\/4 { + right: 25% !important; + } + + .xl\:bottom-1\/4 { + bottom: 25% !important; + } + + .xl\:left-1\/4 { + left: 25% !important; + } + + .xl\:top-2\/4 { + top: 50% !important; + } + + .xl\:right-2\/4 { + right: 50% !important; + } + + .xl\:bottom-2\/4 { + bottom: 50% !important; + } + + .xl\:left-2\/4 { + left: 50% !important; + } + + .xl\:top-3\/4 { + top: 75% !important; + } + + .xl\:right-3\/4 { + right: 75% !important; + } + + .xl\:bottom-3\/4 { + bottom: 75% !important; + } + + .xl\:left-3\/4 { + left: 75% !important; + } + + .xl\:top-full { + top: 100% !important; + } + + .xl\:right-full { + right: 100% !important; + } + + .xl\:bottom-full { + bottom: 100% !important; + } + + .xl\:left-full { + left: 100% !important; + } + + .xl\:-top-1\/2 { + top: -50% !important; + } + + .xl\:-right-1\/2 { + right: -50% !important; + } + + .xl\:-bottom-1\/2 { + bottom: -50% !important; + } + + .xl\:-left-1\/2 { + left: -50% !important; + } + + .xl\:-top-1\/3 { + top: -33.333333% !important; + } + + .xl\:-right-1\/3 { + right: -33.333333% !important; + } + + .xl\:-bottom-1\/3 { + bottom: -33.333333% !important; + } + + .xl\:-left-1\/3 { + left: -33.333333% !important; + } + + .xl\:-top-2\/3 { + top: -66.666667% !important; + } + + .xl\:-right-2\/3 { + right: -66.666667% !important; + } + + .xl\:-bottom-2\/3 { + bottom: -66.666667% !important; + } + + .xl\:-left-2\/3 { + left: -66.666667% !important; + } + + .xl\:-top-1\/4 { + top: -25% !important; + } + + .xl\:-right-1\/4 { + right: -25% !important; + } + + .xl\:-bottom-1\/4 { + bottom: -25% !important; + } + + .xl\:-left-1\/4 { + left: -25% !important; + } + + .xl\:-top-2\/4 { + top: -50% !important; + } + + .xl\:-right-2\/4 { + right: -50% !important; + } + + .xl\:-bottom-2\/4 { + bottom: -50% !important; + } + + .xl\:-left-2\/4 { + left: -50% !important; + } + + .xl\:-top-3\/4 { + top: -75% !important; + } + + .xl\:-right-3\/4 { + right: -75% !important; + } + + .xl\:-bottom-3\/4 { + bottom: -75% !important; + } + + .xl\:-left-3\/4 { + left: -75% !important; + } + + .xl\:-top-full { + top: -100% !important; + } + + .xl\:-right-full { + right: -100% !important; + } + + .xl\:-bottom-full { + bottom: -100% !important; + } + + .xl\:-left-full { + left: -100% !important; + } + + .xl\:resize-none { + resize: none !important; + } + + .xl\:resize-y { + resize: vertical !important; + } + + .xl\:resize-x { + resize: horizontal !important; + } + + .xl\:resize { + resize: both !important; + } + + .xl\:shadow-sm { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .xl\:shadow { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .xl\:shadow-md { + --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .xl\:shadow-lg { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .xl\:shadow-xl { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .xl\:shadow-2xl { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .xl\:shadow-inner { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .xl\:shadow-none { + --tw-shadow: 0 0 #0000 !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .group:hover .xl\:group-hover\:shadow-sm { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .group:hover .xl\:group-hover\:shadow { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .group:hover .xl\:group-hover\:shadow-md { + --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .group:hover .xl\:group-hover\:shadow-lg { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .group:hover .xl\:group-hover\:shadow-xl { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .group:hover .xl\:group-hover\:shadow-2xl { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .group:hover .xl\:group-hover\:shadow-inner { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .group:hover .xl\:group-hover\:shadow-none { + --tw-shadow: 0 0 #0000 !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .xl\:focus-within\:shadow-sm:focus-within { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .xl\:focus-within\:shadow:focus-within { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .xl\:focus-within\:shadow-md:focus-within { + --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .xl\:focus-within\:shadow-lg:focus-within { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .xl\:focus-within\:shadow-xl:focus-within { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .xl\:focus-within\:shadow-2xl:focus-within { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .xl\:focus-within\:shadow-inner:focus-within { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .xl\:focus-within\:shadow-none:focus-within { + --tw-shadow: 0 0 #0000 !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .xl\:hover\:shadow-sm:hover { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .xl\:hover\:shadow:hover { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .xl\:hover\:shadow-md:hover { + --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .xl\:hover\:shadow-lg:hover { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .xl\:hover\:shadow-xl:hover { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .xl\:hover\:shadow-2xl:hover { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .xl\:hover\:shadow-inner:hover { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .xl\:hover\:shadow-none:hover { + --tw-shadow: 0 0 #0000 !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .xl\:focus\:shadow-sm:focus { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .xl\:focus\:shadow:focus { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .xl\:focus\:shadow-md:focus { + --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .xl\:focus\:shadow-lg:focus { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .xl\:focus\:shadow-xl:focus { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .xl\:focus\:shadow-2xl:focus { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .xl\:focus\:shadow-inner:focus { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .xl\:focus\:shadow-none:focus { + --tw-shadow: 0 0 #0000 !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .xl\:ring-0 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; + } + + .xl\:ring-1 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; + } + + .xl\:ring-2 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; + } + + .xl\:ring-4 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; + } + + .xl\:ring-8 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; + } + + .xl\:ring { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; + } + + .xl\:ring-inset { + --tw-ring-inset: inset !important; + } + + .xl\:focus-within\:ring-0:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; + } + + .xl\:focus-within\:ring-1:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; + } + + .xl\: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) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; + } + + .xl\:focus-within\:ring-4:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; + } + + .xl\:focus-within\:ring-8:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; + } + + .xl\:focus-within\:ring:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; + } + + .xl\:focus-within\:ring-inset:focus-within { + --tw-ring-inset: inset !important; + } + + .xl\: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) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; + } + + .xl\: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) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; + } + + .xl\: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) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; + } + + .xl\:focus\:ring-4:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; + } + + .xl\:focus\:ring-8:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; + } + + .xl\:focus\:ring:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; + } + + .xl\:focus\:ring-inset:focus { + --tw-ring-inset: inset !important; + } + + .xl\:ring-offset-transparent { + --tw-ring-offset-color: transparent !important; + } + + .xl\:ring-offset-current { + --tw-ring-offset-color: currentColor !important; + } + + .xl\:ring-offset-black { + --tw-ring-offset-color: #000 !important; + } + + .xl\:ring-offset-white { + --tw-ring-offset-color: #fff !important; + } + + .xl\:ring-offset-gray-50 { + --tw-ring-offset-color: #f9fafb !important; + } + + .xl\:ring-offset-gray-100 { + --tw-ring-offset-color: #f3f4f6 !important; + } + + .xl\:ring-offset-gray-200 { + --tw-ring-offset-color: #e5e7eb !important; + } + + .xl\:ring-offset-gray-300 { + --tw-ring-offset-color: #d1d5db !important; + } + + .xl\:ring-offset-gray-400 { + --tw-ring-offset-color: #9ca3af !important; + } + + .xl\:ring-offset-gray-500 { + --tw-ring-offset-color: #6b7280 !important; + } + + .xl\:ring-offset-gray-600 { + --tw-ring-offset-color: #4b5563 !important; + } + + .xl\:ring-offset-gray-700 { + --tw-ring-offset-color: #374151 !important; + } + + .xl\:ring-offset-gray-800 { + --tw-ring-offset-color: #1f2937 !important; + } + + .xl\:ring-offset-gray-900 { + --tw-ring-offset-color: #111827 !important; + } + + .xl\:ring-offset-red-50 { + --tw-ring-offset-color: #fef2f2 !important; + } + + .xl\:ring-offset-red-100 { + --tw-ring-offset-color: #fee2e2 !important; + } + + .xl\:ring-offset-red-200 { + --tw-ring-offset-color: #fecaca !important; + } + + .xl\:ring-offset-red-300 { + --tw-ring-offset-color: #fca5a5 !important; + } + + .xl\:ring-offset-red-400 { + --tw-ring-offset-color: #f87171 !important; + } + + .xl\:ring-offset-red-500 { + --tw-ring-offset-color: #ef4444 !important; + } + + .xl\:ring-offset-red-600 { + --tw-ring-offset-color: #dc2626 !important; + } + + .xl\:ring-offset-red-700 { + --tw-ring-offset-color: #b91c1c !important; + } + + .xl\:ring-offset-red-800 { + --tw-ring-offset-color: #991b1b !important; + } + + .xl\:ring-offset-red-900 { + --tw-ring-offset-color: #7f1d1d !important; + } + + .xl\:ring-offset-yellow-50 { + --tw-ring-offset-color: #fffbeb !important; + } + + .xl\:ring-offset-yellow-100 { + --tw-ring-offset-color: #fef3c7 !important; + } + + .xl\:ring-offset-yellow-200 { + --tw-ring-offset-color: #fde68a !important; + } + + .xl\:ring-offset-yellow-300 { + --tw-ring-offset-color: #fcd34d !important; + } + + .xl\:ring-offset-yellow-400 { + --tw-ring-offset-color: #fbbf24 !important; + } + + .xl\:ring-offset-yellow-500 { + --tw-ring-offset-color: #f59e0b !important; + } + + .xl\:ring-offset-yellow-600 { + --tw-ring-offset-color: #d97706 !important; + } + + .xl\:ring-offset-yellow-700 { + --tw-ring-offset-color: #b45309 !important; + } + + .xl\:ring-offset-yellow-800 { + --tw-ring-offset-color: #92400e !important; + } + + .xl\:ring-offset-yellow-900 { + --tw-ring-offset-color: #78350f !important; + } + + .xl\:ring-offset-green-50 { + --tw-ring-offset-color: #ecfdf5 !important; + } + + .xl\:ring-offset-green-100 { + --tw-ring-offset-color: #d1fae5 !important; + } + + .xl\:ring-offset-green-200 { + --tw-ring-offset-color: #a7f3d0 !important; + } + + .xl\:ring-offset-green-300 { + --tw-ring-offset-color: #6ee7b7 !important; + } + + .xl\:ring-offset-green-400 { + --tw-ring-offset-color: #34d399 !important; + } + + .xl\:ring-offset-green-500 { + --tw-ring-offset-color: #10b981 !important; + } + + .xl\:ring-offset-green-600 { + --tw-ring-offset-color: #059669 !important; + } + + .xl\:ring-offset-green-700 { + --tw-ring-offset-color: #047857 !important; + } + + .xl\:ring-offset-green-800 { + --tw-ring-offset-color: #065f46 !important; + } + + .xl\:ring-offset-green-900 { + --tw-ring-offset-color: #064e3b !important; + } + + .xl\:ring-offset-blue-50 { + --tw-ring-offset-color: #eff6ff !important; + } + + .xl\:ring-offset-blue-100 { + --tw-ring-offset-color: #dbeafe !important; + } + + .xl\:ring-offset-blue-200 { + --tw-ring-offset-color: #bfdbfe !important; + } + + .xl\:ring-offset-blue-300 { + --tw-ring-offset-color: #93c5fd !important; + } + + .xl\:ring-offset-blue-400 { + --tw-ring-offset-color: #60a5fa !important; + } + + .xl\:ring-offset-blue-500 { + --tw-ring-offset-color: #3b82f6 !important; + } + + .xl\:ring-offset-blue-600 { + --tw-ring-offset-color: #2563eb !important; + } + + .xl\:ring-offset-blue-700 { + --tw-ring-offset-color: #1d4ed8 !important; + } + + .xl\:ring-offset-blue-800 { + --tw-ring-offset-color: #1e40af !important; + } + + .xl\:ring-offset-blue-900 { + --tw-ring-offset-color: #1e3a8a !important; + } + + .xl\:ring-offset-indigo-50 { + --tw-ring-offset-color: #eef2ff !important; + } + + .xl\:ring-offset-indigo-100 { + --tw-ring-offset-color: #e0e7ff !important; + } + + .xl\:ring-offset-indigo-200 { + --tw-ring-offset-color: #c7d2fe !important; + } + + .xl\:ring-offset-indigo-300 { + --tw-ring-offset-color: #a5b4fc !important; + } + + .xl\:ring-offset-indigo-400 { + --tw-ring-offset-color: #818cf8 !important; + } + + .xl\:ring-offset-indigo-500 { + --tw-ring-offset-color: #6366f1 !important; + } + + .xl\:ring-offset-indigo-600 { + --tw-ring-offset-color: #4f46e5 !important; + } + + .xl\:ring-offset-indigo-700 { + --tw-ring-offset-color: #4338ca !important; + } + + .xl\:ring-offset-indigo-800 { + --tw-ring-offset-color: #3730a3 !important; + } + + .xl\:ring-offset-indigo-900 { + --tw-ring-offset-color: #312e81 !important; + } + + .xl\:ring-offset-purple-50 { + --tw-ring-offset-color: #f5f3ff !important; + } + + .xl\:ring-offset-purple-100 { + --tw-ring-offset-color: #ede9fe !important; + } + + .xl\:ring-offset-purple-200 { + --tw-ring-offset-color: #ddd6fe !important; + } + + .xl\:ring-offset-purple-300 { + --tw-ring-offset-color: #c4b5fd !important; + } + + .xl\:ring-offset-purple-400 { + --tw-ring-offset-color: #a78bfa !important; + } + + .xl\:ring-offset-purple-500 { + --tw-ring-offset-color: #8b5cf6 !important; + } + + .xl\:ring-offset-purple-600 { + --tw-ring-offset-color: #7c3aed !important; + } + + .xl\:ring-offset-purple-700 { + --tw-ring-offset-color: #6d28d9 !important; + } + + .xl\:ring-offset-purple-800 { + --tw-ring-offset-color: #5b21b6 !important; + } + + .xl\:ring-offset-purple-900 { + --tw-ring-offset-color: #4c1d95 !important; + } + + .xl\:ring-offset-pink-50 { + --tw-ring-offset-color: #fdf2f8 !important; + } + + .xl\:ring-offset-pink-100 { + --tw-ring-offset-color: #fce7f3 !important; + } + + .xl\:ring-offset-pink-200 { + --tw-ring-offset-color: #fbcfe8 !important; + } + + .xl\:ring-offset-pink-300 { + --tw-ring-offset-color: #f9a8d4 !important; + } + + .xl\:ring-offset-pink-400 { + --tw-ring-offset-color: #f472b6 !important; + } + + .xl\:ring-offset-pink-500 { + --tw-ring-offset-color: #ec4899 !important; + } + + .xl\:ring-offset-pink-600 { + --tw-ring-offset-color: #db2777 !important; + } + + .xl\:ring-offset-pink-700 { + --tw-ring-offset-color: #be185d !important; + } + + .xl\:ring-offset-pink-800 { + --tw-ring-offset-color: #9d174d !important; + } + + .xl\:ring-offset-pink-900 { + --tw-ring-offset-color: #831843 !important; + } + + .xl\:ring-offset-primary { + --tw-ring-offset-color: #003197 !important; + } + + .xl\:focus-within\:ring-offset-transparent:focus-within { + --tw-ring-offset-color: transparent !important; + } + + .xl\:focus-within\:ring-offset-current:focus-within { + --tw-ring-offset-color: currentColor !important; + } + + .xl\:focus-within\:ring-offset-black:focus-within { + --tw-ring-offset-color: #000 !important; + } + + .xl\:focus-within\:ring-offset-white:focus-within { + --tw-ring-offset-color: #fff !important; + } + + .xl\:focus-within\:ring-offset-gray-50:focus-within { + --tw-ring-offset-color: #f9fafb !important; + } + + .xl\:focus-within\:ring-offset-gray-100:focus-within { + --tw-ring-offset-color: #f3f4f6 !important; + } + + .xl\:focus-within\:ring-offset-gray-200:focus-within { + --tw-ring-offset-color: #e5e7eb !important; + } + + .xl\:focus-within\:ring-offset-gray-300:focus-within { + --tw-ring-offset-color: #d1d5db !important; + } + + .xl\:focus-within\:ring-offset-gray-400:focus-within { + --tw-ring-offset-color: #9ca3af !important; + } + + .xl\:focus-within\:ring-offset-gray-500:focus-within { + --tw-ring-offset-color: #6b7280 !important; + } + + .xl\:focus-within\:ring-offset-gray-600:focus-within { + --tw-ring-offset-color: #4b5563 !important; + } + + .xl\:focus-within\:ring-offset-gray-700:focus-within { + --tw-ring-offset-color: #374151 !important; + } + + .xl\:focus-within\:ring-offset-gray-800:focus-within { + --tw-ring-offset-color: #1f2937 !important; + } + + .xl\:focus-within\:ring-offset-gray-900:focus-within { + --tw-ring-offset-color: #111827 !important; + } + + .xl\:focus-within\:ring-offset-red-50:focus-within { + --tw-ring-offset-color: #fef2f2 !important; + } + + .xl\:focus-within\:ring-offset-red-100:focus-within { + --tw-ring-offset-color: #fee2e2 !important; + } + + .xl\:focus-within\:ring-offset-red-200:focus-within { + --tw-ring-offset-color: #fecaca !important; + } + + .xl\:focus-within\:ring-offset-red-300:focus-within { + --tw-ring-offset-color: #fca5a5 !important; + } + + .xl\:focus-within\:ring-offset-red-400:focus-within { + --tw-ring-offset-color: #f87171 !important; + } + + .xl\:focus-within\:ring-offset-red-500:focus-within { + --tw-ring-offset-color: #ef4444 !important; + } + + .xl\:focus-within\:ring-offset-red-600:focus-within { + --tw-ring-offset-color: #dc2626 !important; + } + + .xl\:focus-within\:ring-offset-red-700:focus-within { + --tw-ring-offset-color: #b91c1c !important; + } + + .xl\:focus-within\:ring-offset-red-800:focus-within { + --tw-ring-offset-color: #991b1b !important; + } + + .xl\:focus-within\:ring-offset-red-900:focus-within { + --tw-ring-offset-color: #7f1d1d !important; + } + + .xl\:focus-within\:ring-offset-yellow-50:focus-within { + --tw-ring-offset-color: #fffbeb !important; + } + + .xl\:focus-within\:ring-offset-yellow-100:focus-within { + --tw-ring-offset-color: #fef3c7 !important; + } + + .xl\:focus-within\:ring-offset-yellow-200:focus-within { + --tw-ring-offset-color: #fde68a !important; + } + + .xl\:focus-within\:ring-offset-yellow-300:focus-within { + --tw-ring-offset-color: #fcd34d !important; + } + + .xl\:focus-within\:ring-offset-yellow-400:focus-within { + --tw-ring-offset-color: #fbbf24 !important; + } + + .xl\:focus-within\:ring-offset-yellow-500:focus-within { + --tw-ring-offset-color: #f59e0b !important; + } + + .xl\:focus-within\:ring-offset-yellow-600:focus-within { + --tw-ring-offset-color: #d97706 !important; + } + + .xl\:focus-within\:ring-offset-yellow-700:focus-within { + --tw-ring-offset-color: #b45309 !important; + } + + .xl\:focus-within\:ring-offset-yellow-800:focus-within { + --tw-ring-offset-color: #92400e !important; + } + + .xl\:focus-within\:ring-offset-yellow-900:focus-within { + --tw-ring-offset-color: #78350f !important; + } + + .xl\:focus-within\:ring-offset-green-50:focus-within { + --tw-ring-offset-color: #ecfdf5 !important; + } + + .xl\:focus-within\:ring-offset-green-100:focus-within { + --tw-ring-offset-color: #d1fae5 !important; + } + + .xl\:focus-within\:ring-offset-green-200:focus-within { + --tw-ring-offset-color: #a7f3d0 !important; + } + + .xl\:focus-within\:ring-offset-green-300:focus-within { + --tw-ring-offset-color: #6ee7b7 !important; + } + + .xl\:focus-within\:ring-offset-green-400:focus-within { + --tw-ring-offset-color: #34d399 !important; + } + + .xl\:focus-within\:ring-offset-green-500:focus-within { + --tw-ring-offset-color: #10b981 !important; + } + + .xl\:focus-within\:ring-offset-green-600:focus-within { + --tw-ring-offset-color: #059669 !important; + } + + .xl\:focus-within\:ring-offset-green-700:focus-within { + --tw-ring-offset-color: #047857 !important; + } + + .xl\:focus-within\:ring-offset-green-800:focus-within { + --tw-ring-offset-color: #065f46 !important; + } + + .xl\:focus-within\:ring-offset-green-900:focus-within { + --tw-ring-offset-color: #064e3b !important; + } + + .xl\:focus-within\:ring-offset-blue-50:focus-within { + --tw-ring-offset-color: #eff6ff !important; + } + + .xl\:focus-within\:ring-offset-blue-100:focus-within { + --tw-ring-offset-color: #dbeafe !important; + } + + .xl\:focus-within\:ring-offset-blue-200:focus-within { + --tw-ring-offset-color: #bfdbfe !important; + } + + .xl\:focus-within\:ring-offset-blue-300:focus-within { + --tw-ring-offset-color: #93c5fd !important; + } + + .xl\:focus-within\:ring-offset-blue-400:focus-within { + --tw-ring-offset-color: #60a5fa !important; + } + + .xl\:focus-within\:ring-offset-blue-500:focus-within { + --tw-ring-offset-color: #3b82f6 !important; + } + + .xl\:focus-within\:ring-offset-blue-600:focus-within { + --tw-ring-offset-color: #2563eb !important; + } + + .xl\:focus-within\:ring-offset-blue-700:focus-within { + --tw-ring-offset-color: #1d4ed8 !important; + } + + .xl\:focus-within\:ring-offset-blue-800:focus-within { + --tw-ring-offset-color: #1e40af !important; + } + + .xl\:focus-within\:ring-offset-blue-900:focus-within { + --tw-ring-offset-color: #1e3a8a !important; + } + + .xl\:focus-within\:ring-offset-indigo-50:focus-within { + --tw-ring-offset-color: #eef2ff !important; + } + + .xl\:focus-within\:ring-offset-indigo-100:focus-within { + --tw-ring-offset-color: #e0e7ff !important; + } + + .xl\:focus-within\:ring-offset-indigo-200:focus-within { + --tw-ring-offset-color: #c7d2fe !important; + } + + .xl\:focus-within\:ring-offset-indigo-300:focus-within { + --tw-ring-offset-color: #a5b4fc !important; + } + + .xl\:focus-within\:ring-offset-indigo-400:focus-within { + --tw-ring-offset-color: #818cf8 !important; + } + + .xl\:focus-within\:ring-offset-indigo-500:focus-within { + --tw-ring-offset-color: #6366f1 !important; + } + + .xl\:focus-within\:ring-offset-indigo-600:focus-within { + --tw-ring-offset-color: #4f46e5 !important; + } + + .xl\:focus-within\:ring-offset-indigo-700:focus-within { + --tw-ring-offset-color: #4338ca !important; + } + + .xl\:focus-within\:ring-offset-indigo-800:focus-within { + --tw-ring-offset-color: #3730a3 !important; + } + + .xl\:focus-within\:ring-offset-indigo-900:focus-within { + --tw-ring-offset-color: #312e81 !important; + } + + .xl\:focus-within\:ring-offset-purple-50:focus-within { + --tw-ring-offset-color: #f5f3ff !important; + } + + .xl\:focus-within\:ring-offset-purple-100:focus-within { + --tw-ring-offset-color: #ede9fe !important; + } + + .xl\:focus-within\:ring-offset-purple-200:focus-within { + --tw-ring-offset-color: #ddd6fe !important; + } + + .xl\:focus-within\:ring-offset-purple-300:focus-within { + --tw-ring-offset-color: #c4b5fd !important; + } + + .xl\:focus-within\:ring-offset-purple-400:focus-within { + --tw-ring-offset-color: #a78bfa !important; + } + + .xl\:focus-within\:ring-offset-purple-500:focus-within { + --tw-ring-offset-color: #8b5cf6 !important; + } + + .xl\:focus-within\:ring-offset-purple-600:focus-within { + --tw-ring-offset-color: #7c3aed !important; + } + + .xl\:focus-within\:ring-offset-purple-700:focus-within { + --tw-ring-offset-color: #6d28d9 !important; + } + + .xl\:focus-within\:ring-offset-purple-800:focus-within { + --tw-ring-offset-color: #5b21b6 !important; + } + + .xl\:focus-within\:ring-offset-purple-900:focus-within { + --tw-ring-offset-color: #4c1d95 !important; + } + + .xl\:focus-within\:ring-offset-pink-50:focus-within { + --tw-ring-offset-color: #fdf2f8 !important; + } + + .xl\:focus-within\:ring-offset-pink-100:focus-within { + --tw-ring-offset-color: #fce7f3 !important; + } + + .xl\:focus-within\:ring-offset-pink-200:focus-within { + --tw-ring-offset-color: #fbcfe8 !important; + } + + .xl\:focus-within\:ring-offset-pink-300:focus-within { + --tw-ring-offset-color: #f9a8d4 !important; + } + + .xl\:focus-within\:ring-offset-pink-400:focus-within { + --tw-ring-offset-color: #f472b6 !important; + } + + .xl\:focus-within\:ring-offset-pink-500:focus-within { + --tw-ring-offset-color: #ec4899 !important; + } + + .xl\:focus-within\:ring-offset-pink-600:focus-within { + --tw-ring-offset-color: #db2777 !important; + } + + .xl\:focus-within\:ring-offset-pink-700:focus-within { + --tw-ring-offset-color: #be185d !important; + } + + .xl\:focus-within\:ring-offset-pink-800:focus-within { + --tw-ring-offset-color: #9d174d !important; + } + + .xl\:focus-within\:ring-offset-pink-900:focus-within { + --tw-ring-offset-color: #831843 !important; + } + + .xl\:focus-within\:ring-offset-primary:focus-within { + --tw-ring-offset-color: #003197 !important; + } + + .xl\:focus\:ring-offset-transparent:focus { + --tw-ring-offset-color: transparent !important; + } + + .xl\:focus\:ring-offset-current:focus { + --tw-ring-offset-color: currentColor !important; + } + + .xl\:focus\:ring-offset-black:focus { + --tw-ring-offset-color: #000 !important; + } + + .xl\:focus\:ring-offset-white:focus { + --tw-ring-offset-color: #fff !important; + } + + .xl\:focus\:ring-offset-gray-50:focus { + --tw-ring-offset-color: #f9fafb !important; + } + + .xl\:focus\:ring-offset-gray-100:focus { + --tw-ring-offset-color: #f3f4f6 !important; + } + + .xl\:focus\:ring-offset-gray-200:focus { + --tw-ring-offset-color: #e5e7eb !important; + } + + .xl\:focus\:ring-offset-gray-300:focus { + --tw-ring-offset-color: #d1d5db !important; + } + + .xl\:focus\:ring-offset-gray-400:focus { + --tw-ring-offset-color: #9ca3af !important; + } + + .xl\:focus\:ring-offset-gray-500:focus { + --tw-ring-offset-color: #6b7280 !important; + } + + .xl\:focus\:ring-offset-gray-600:focus { + --tw-ring-offset-color: #4b5563 !important; + } + + .xl\:focus\:ring-offset-gray-700:focus { + --tw-ring-offset-color: #374151 !important; + } + + .xl\:focus\:ring-offset-gray-800:focus { + --tw-ring-offset-color: #1f2937 !important; + } + + .xl\:focus\:ring-offset-gray-900:focus { + --tw-ring-offset-color: #111827 !important; + } + + .xl\:focus\:ring-offset-red-50:focus { + --tw-ring-offset-color: #fef2f2 !important; + } + + .xl\:focus\:ring-offset-red-100:focus { + --tw-ring-offset-color: #fee2e2 !important; + } + + .xl\:focus\:ring-offset-red-200:focus { + --tw-ring-offset-color: #fecaca !important; + } + + .xl\:focus\:ring-offset-red-300:focus { + --tw-ring-offset-color: #fca5a5 !important; + } + + .xl\:focus\:ring-offset-red-400:focus { + --tw-ring-offset-color: #f87171 !important; + } + + .xl\:focus\:ring-offset-red-500:focus { + --tw-ring-offset-color: #ef4444 !important; + } + + .xl\:focus\:ring-offset-red-600:focus { + --tw-ring-offset-color: #dc2626 !important; + } + + .xl\:focus\:ring-offset-red-700:focus { + --tw-ring-offset-color: #b91c1c !important; + } + + .xl\:focus\:ring-offset-red-800:focus { + --tw-ring-offset-color: #991b1b !important; + } + + .xl\:focus\:ring-offset-red-900:focus { + --tw-ring-offset-color: #7f1d1d !important; + } + + .xl\:focus\:ring-offset-yellow-50:focus { + --tw-ring-offset-color: #fffbeb !important; + } + + .xl\:focus\:ring-offset-yellow-100:focus { + --tw-ring-offset-color: #fef3c7 !important; + } + + .xl\:focus\:ring-offset-yellow-200:focus { + --tw-ring-offset-color: #fde68a !important; + } + + .xl\:focus\:ring-offset-yellow-300:focus { + --tw-ring-offset-color: #fcd34d !important; + } + + .xl\:focus\:ring-offset-yellow-400:focus { + --tw-ring-offset-color: #fbbf24 !important; + } + + .xl\:focus\:ring-offset-yellow-500:focus { + --tw-ring-offset-color: #f59e0b !important; + } + + .xl\:focus\:ring-offset-yellow-600:focus { + --tw-ring-offset-color: #d97706 !important; + } + + .xl\:focus\:ring-offset-yellow-700:focus { + --tw-ring-offset-color: #b45309 !important; + } + + .xl\:focus\:ring-offset-yellow-800:focus { + --tw-ring-offset-color: #92400e !important; + } + + .xl\:focus\:ring-offset-yellow-900:focus { + --tw-ring-offset-color: #78350f !important; + } + + .xl\:focus\:ring-offset-green-50:focus { + --tw-ring-offset-color: #ecfdf5 !important; + } + + .xl\:focus\:ring-offset-green-100:focus { + --tw-ring-offset-color: #d1fae5 !important; + } + + .xl\:focus\:ring-offset-green-200:focus { + --tw-ring-offset-color: #a7f3d0 !important; + } + + .xl\:focus\:ring-offset-green-300:focus { + --tw-ring-offset-color: #6ee7b7 !important; + } + + .xl\:focus\:ring-offset-green-400:focus { + --tw-ring-offset-color: #34d399 !important; + } + + .xl\:focus\:ring-offset-green-500:focus { + --tw-ring-offset-color: #10b981 !important; + } + + .xl\:focus\:ring-offset-green-600:focus { + --tw-ring-offset-color: #059669 !important; + } + + .xl\:focus\:ring-offset-green-700:focus { + --tw-ring-offset-color: #047857 !important; + } + + .xl\:focus\:ring-offset-green-800:focus { + --tw-ring-offset-color: #065f46 !important; + } + + .xl\:focus\:ring-offset-green-900:focus { + --tw-ring-offset-color: #064e3b !important; + } + + .xl\:focus\:ring-offset-blue-50:focus { + --tw-ring-offset-color: #eff6ff !important; + } + + .xl\:focus\:ring-offset-blue-100:focus { + --tw-ring-offset-color: #dbeafe !important; + } + + .xl\:focus\:ring-offset-blue-200:focus { + --tw-ring-offset-color: #bfdbfe !important; + } + + .xl\:focus\:ring-offset-blue-300:focus { + --tw-ring-offset-color: #93c5fd !important; + } + + .xl\:focus\:ring-offset-blue-400:focus { + --tw-ring-offset-color: #60a5fa !important; + } + + .xl\:focus\:ring-offset-blue-500:focus { + --tw-ring-offset-color: #3b82f6 !important; + } + + .xl\:focus\:ring-offset-blue-600:focus { + --tw-ring-offset-color: #2563eb !important; + } + + .xl\:focus\:ring-offset-blue-700:focus { + --tw-ring-offset-color: #1d4ed8 !important; + } + + .xl\:focus\:ring-offset-blue-800:focus { + --tw-ring-offset-color: #1e40af !important; + } + + .xl\:focus\:ring-offset-blue-900:focus { + --tw-ring-offset-color: #1e3a8a !important; + } + + .xl\:focus\:ring-offset-indigo-50:focus { + --tw-ring-offset-color: #eef2ff !important; + } + + .xl\:focus\:ring-offset-indigo-100:focus { + --tw-ring-offset-color: #e0e7ff !important; + } + + .xl\:focus\:ring-offset-indigo-200:focus { + --tw-ring-offset-color: #c7d2fe !important; + } + + .xl\:focus\:ring-offset-indigo-300:focus { + --tw-ring-offset-color: #a5b4fc !important; + } + + .xl\:focus\:ring-offset-indigo-400:focus { + --tw-ring-offset-color: #818cf8 !important; + } + + .xl\:focus\:ring-offset-indigo-500:focus { + --tw-ring-offset-color: #6366f1 !important; + } + + .xl\:focus\:ring-offset-indigo-600:focus { + --tw-ring-offset-color: #4f46e5 !important; + } + + .xl\:focus\:ring-offset-indigo-700:focus { + --tw-ring-offset-color: #4338ca !important; + } + + .xl\:focus\:ring-offset-indigo-800:focus { + --tw-ring-offset-color: #3730a3 !important; + } + + .xl\:focus\:ring-offset-indigo-900:focus { + --tw-ring-offset-color: #312e81 !important; + } + + .xl\:focus\:ring-offset-purple-50:focus { + --tw-ring-offset-color: #f5f3ff !important; + } + + .xl\:focus\:ring-offset-purple-100:focus { + --tw-ring-offset-color: #ede9fe !important; + } + + .xl\:focus\:ring-offset-purple-200:focus { + --tw-ring-offset-color: #ddd6fe !important; + } + + .xl\:focus\:ring-offset-purple-300:focus { + --tw-ring-offset-color: #c4b5fd !important; + } + + .xl\:focus\:ring-offset-purple-400:focus { + --tw-ring-offset-color: #a78bfa !important; + } + + .xl\:focus\:ring-offset-purple-500:focus { + --tw-ring-offset-color: #8b5cf6 !important; + } + + .xl\:focus\:ring-offset-purple-600:focus { + --tw-ring-offset-color: #7c3aed !important; + } + + .xl\:focus\:ring-offset-purple-700:focus { + --tw-ring-offset-color: #6d28d9 !important; + } + + .xl\:focus\:ring-offset-purple-800:focus { + --tw-ring-offset-color: #5b21b6 !important; + } + + .xl\:focus\:ring-offset-purple-900:focus { + --tw-ring-offset-color: #4c1d95 !important; + } + + .xl\:focus\:ring-offset-pink-50:focus { + --tw-ring-offset-color: #fdf2f8 !important; + } + + .xl\:focus\:ring-offset-pink-100:focus { + --tw-ring-offset-color: #fce7f3 !important; + } + + .xl\:focus\:ring-offset-pink-200:focus { + --tw-ring-offset-color: #fbcfe8 !important; + } + + .xl\:focus\:ring-offset-pink-300:focus { + --tw-ring-offset-color: #f9a8d4 !important; + } + + .xl\:focus\:ring-offset-pink-400:focus { + --tw-ring-offset-color: #f472b6 !important; + } + + .xl\:focus\:ring-offset-pink-500:focus { + --tw-ring-offset-color: #ec4899 !important; + } + + .xl\:focus\:ring-offset-pink-600:focus { + --tw-ring-offset-color: #db2777 !important; + } + + .xl\:focus\:ring-offset-pink-700:focus { + --tw-ring-offset-color: #be185d !important; + } + + .xl\:focus\:ring-offset-pink-800:focus { + --tw-ring-offset-color: #9d174d !important; + } + + .xl\:focus\:ring-offset-pink-900:focus { + --tw-ring-offset-color: #831843 !important; + } + + .xl\:focus\:ring-offset-primary:focus { + --tw-ring-offset-color: #003197 !important; + } + + .xl\:ring-offset-0 { + --tw-ring-offset-width: 0px !important; + } + + .xl\:ring-offset-1 { + --tw-ring-offset-width: 1px !important; + } + + .xl\:ring-offset-2 { + --tw-ring-offset-width: 2px !important; + } + + .xl\:ring-offset-4 { + --tw-ring-offset-width: 4px !important; + } + + .xl\:ring-offset-8 { + --tw-ring-offset-width: 8px !important; + } + + .xl\:focus-within\:ring-offset-0:focus-within { + --tw-ring-offset-width: 0px !important; + } + + .xl\:focus-within\:ring-offset-1:focus-within { + --tw-ring-offset-width: 1px !important; + } + + .xl\:focus-within\:ring-offset-2:focus-within { + --tw-ring-offset-width: 2px !important; + } + + .xl\:focus-within\:ring-offset-4:focus-within { + --tw-ring-offset-width: 4px !important; + } + + .xl\:focus-within\:ring-offset-8:focus-within { + --tw-ring-offset-width: 8px !important; + } + + .xl\:focus\:ring-offset-0:focus { + --tw-ring-offset-width: 0px !important; + } + + .xl\:focus\:ring-offset-1:focus { + --tw-ring-offset-width: 1px !important; + } + + .xl\:focus\:ring-offset-2:focus { + --tw-ring-offset-width: 2px !important; + } + + .xl\:focus\:ring-offset-4:focus { + --tw-ring-offset-width: 4px !important; + } + + .xl\:focus\:ring-offset-8:focus { + --tw-ring-offset-width: 8px !important; + } + + .xl\:ring-transparent { + --tw-ring-color: transparent !important; + } + + .xl\:ring-current { + --tw-ring-color: currentColor !important; + } + + .xl\:ring-black { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important; + } + + .xl\:ring-white { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)) !important; + } + + .xl\:ring-gray-50 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)) !important; + } + + .xl\:ring-gray-100 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)) !important; + } + + .xl\:ring-gray-200 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)) !important; + } + + .xl\:ring-gray-300 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)) !important; + } + + .xl\:ring-gray-400 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)) !important; + } + + .xl\:ring-gray-500 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)) !important; + } + + .xl\:ring-gray-600 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)) !important; + } + + .xl\:ring-gray-700 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)) !important; + } + + .xl\:ring-gray-800 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)) !important; + } + + .xl\:ring-gray-900 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)) !important; + } + + .xl\:ring-red-50 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)) !important; + } + + .xl\:ring-red-100 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)) !important; + } + + .xl\:ring-red-200 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)) !important; + } + + .xl\:ring-red-300 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)) !important; + } + + .xl\:ring-red-400 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)) !important; + } + + .xl\:ring-red-500 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)) !important; + } + + .xl\:ring-red-600 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)) !important; + } + + .xl\:ring-red-700 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)) !important; + } + + .xl\:ring-red-800 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)) !important; + } + + .xl\:ring-red-900 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)) !important; + } + + .xl\:ring-yellow-50 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)) !important; + } + + .xl\:ring-yellow-100 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)) !important; + } + + .xl\:ring-yellow-200 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)) !important; + } + + .xl\:ring-yellow-300 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)) !important; + } + + .xl\:ring-yellow-400 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)) !important; + } + + .xl\:ring-yellow-500 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)) !important; + } + + .xl\:ring-yellow-600 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)) !important; + } + + .xl\:ring-yellow-700 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)) !important; + } + + .xl\:ring-yellow-800 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)) !important; + } + + .xl\:ring-yellow-900 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)) !important; + } + + .xl\:ring-green-50 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)) !important; + } + + .xl\:ring-green-100 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)) !important; + } + + .xl\:ring-green-200 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)) !important; + } + + .xl\:ring-green-300 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)) !important; + } + + .xl\:ring-green-400 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)) !important; + } + + .xl\:ring-green-500 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)) !important; + } + + .xl\:ring-green-600 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)) !important; + } + + .xl\:ring-green-700 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)) !important; + } + + .xl\:ring-green-800 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)) !important; + } + + .xl\:ring-green-900 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)) !important; + } + + .xl\:ring-blue-50 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)) !important; + } + + .xl\:ring-blue-100 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)) !important; + } + + .xl\:ring-blue-200 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)) !important; + } + + .xl\:ring-blue-300 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)) !important; + } + + .xl\:ring-blue-400 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)) !important; + } + + .xl\:ring-blue-500 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)) !important; + } + + .xl\:ring-blue-600 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)) !important; + } + + .xl\:ring-blue-700 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)) !important; + } + + .xl\:ring-blue-800 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)) !important; + } + + .xl\:ring-blue-900 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)) !important; + } + + .xl\:ring-indigo-50 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)) !important; + } + + .xl\:ring-indigo-100 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)) !important; + } + + .xl\:ring-indigo-200 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)) !important; + } + + .xl\:ring-indigo-300 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)) !important; + } + + .xl\:ring-indigo-400 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)) !important; + } + + .xl\:ring-indigo-500 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)) !important; + } + + .xl\:ring-indigo-600 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)) !important; + } + + .xl\:ring-indigo-700 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)) !important; + } + + .xl\:ring-indigo-800 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)) !important; + } + + .xl\:ring-indigo-900 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)) !important; + } + + .xl\:ring-purple-50 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)) !important; + } + + .xl\:ring-purple-100 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)) !important; + } + + .xl\:ring-purple-200 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)) !important; + } + + .xl\:ring-purple-300 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)) !important; + } + + .xl\:ring-purple-400 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)) !important; + } + + .xl\:ring-purple-500 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)) !important; + } + + .xl\:ring-purple-600 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)) !important; + } + + .xl\:ring-purple-700 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)) !important; + } + + .xl\:ring-purple-800 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)) !important; + } + + .xl\:ring-purple-900 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)) !important; + } + + .xl\:ring-pink-50 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)) !important; + } + + .xl\:ring-pink-100 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)) !important; + } + + .xl\:ring-pink-200 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)) !important; + } + + .xl\:ring-pink-300 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)) !important; + } + + .xl\:ring-pink-400 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)) !important; + } + + .xl\:ring-pink-500 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)) !important; + } + + .xl\:ring-pink-600 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)) !important; + } + + .xl\:ring-pink-700 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)) !important; + } + + .xl\:ring-pink-800 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)) !important; + } + + .xl\:ring-pink-900 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)) !important; + } + + .xl\:ring-primary { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(0, 49, 151, var(--tw-ring-opacity)) !important; + } + + .xl\:focus-within\:ring-transparent:focus-within { + --tw-ring-color: transparent !important; + } + + .xl\:focus-within\:ring-current:focus-within { + --tw-ring-color: currentColor !important; + } + + .xl\:focus-within\:ring-black:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important; + } + + .xl\:focus-within\:ring-white:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)) !important; + } + + .xl\:focus-within\:ring-gray-50:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)) !important; + } + + .xl\:focus-within\:ring-gray-100:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)) !important; + } + + .xl\:focus-within\:ring-gray-200:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)) !important; + } + + .xl\:focus-within\:ring-gray-300:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)) !important; + } + + .xl\:focus-within\:ring-gray-400:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)) !important; + } + + .xl\:focus-within\:ring-gray-500:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)) !important; + } + + .xl\:focus-within\:ring-gray-600:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)) !important; + } + + .xl\:focus-within\:ring-gray-700:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)) !important; + } + + .xl\:focus-within\:ring-gray-800:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)) !important; + } + + .xl\:focus-within\:ring-gray-900:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)) !important; + } + + .xl\:focus-within\:ring-red-50:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)) !important; + } + + .xl\:focus-within\:ring-red-100:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)) !important; + } + + .xl\:focus-within\:ring-red-200:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)) !important; + } + + .xl\:focus-within\:ring-red-300:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)) !important; + } + + .xl\:focus-within\:ring-red-400:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)) !important; + } + + .xl\:focus-within\:ring-red-500:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)) !important; + } + + .xl\:focus-within\:ring-red-600:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)) !important; + } + + .xl\:focus-within\:ring-red-700:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)) !important; + } + + .xl\:focus-within\:ring-red-800:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)) !important; + } + + .xl\:focus-within\:ring-red-900:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)) !important; + } + + .xl\:focus-within\:ring-yellow-50:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)) !important; + } + + .xl\:focus-within\:ring-yellow-100:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)) !important; + } + + .xl\:focus-within\:ring-yellow-200:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)) !important; + } + + .xl\:focus-within\:ring-yellow-300:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)) !important; + } + + .xl\:focus-within\:ring-yellow-400:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)) !important; + } + + .xl\:focus-within\:ring-yellow-500:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)) !important; + } + + .xl\:focus-within\:ring-yellow-600:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)) !important; + } + + .xl\:focus-within\:ring-yellow-700:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)) !important; + } + + .xl\:focus-within\:ring-yellow-800:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)) !important; + } + + .xl\:focus-within\:ring-yellow-900:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)) !important; + } + + .xl\:focus-within\:ring-green-50:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)) !important; + } + + .xl\:focus-within\:ring-green-100:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)) !important; + } + + .xl\:focus-within\:ring-green-200:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)) !important; + } + + .xl\:focus-within\:ring-green-300:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)) !important; + } + + .xl\:focus-within\:ring-green-400:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)) !important; + } + + .xl\:focus-within\:ring-green-500:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)) !important; + } + + .xl\:focus-within\:ring-green-600:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)) !important; + } + + .xl\:focus-within\:ring-green-700:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)) !important; + } + + .xl\:focus-within\:ring-green-800:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)) !important; + } + + .xl\:focus-within\:ring-green-900:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)) !important; + } + + .xl\:focus-within\:ring-blue-50:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)) !important; + } + + .xl\:focus-within\:ring-blue-100:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)) !important; + } + + .xl\:focus-within\:ring-blue-200:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)) !important; + } + + .xl\:focus-within\:ring-blue-300:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)) !important; + } + + .xl\:focus-within\:ring-blue-400:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)) !important; + } + + .xl\:focus-within\:ring-blue-500:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)) !important; + } + + .xl\:focus-within\:ring-blue-600:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)) !important; + } + + .xl\:focus-within\:ring-blue-700:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)) !important; + } + + .xl\:focus-within\:ring-blue-800:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)) !important; + } + + .xl\:focus-within\:ring-blue-900:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)) !important; + } + + .xl\:focus-within\:ring-indigo-50:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)) !important; + } + + .xl\:focus-within\:ring-indigo-100:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)) !important; + } + + .xl\:focus-within\:ring-indigo-200:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)) !important; + } + + .xl\:focus-within\:ring-indigo-300:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)) !important; + } + + .xl\:focus-within\:ring-indigo-400:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)) !important; + } + + .xl\:focus-within\:ring-indigo-500:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)) !important; + } + + .xl\:focus-within\:ring-indigo-600:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)) !important; + } + + .xl\:focus-within\:ring-indigo-700:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)) !important; + } + + .xl\:focus-within\:ring-indigo-800:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)) !important; + } + + .xl\:focus-within\:ring-indigo-900:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)) !important; + } + + .xl\:focus-within\:ring-purple-50:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)) !important; + } + + .xl\:focus-within\:ring-purple-100:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)) !important; + } + + .xl\:focus-within\:ring-purple-200:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)) !important; + } + + .xl\:focus-within\:ring-purple-300:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)) !important; + } + + .xl\:focus-within\:ring-purple-400:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)) !important; + } + + .xl\:focus-within\:ring-purple-500:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)) !important; + } + + .xl\:focus-within\:ring-purple-600:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)) !important; + } + + .xl\:focus-within\:ring-purple-700:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)) !important; + } + + .xl\:focus-within\:ring-purple-800:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)) !important; + } + + .xl\:focus-within\:ring-purple-900:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)) !important; + } + + .xl\:focus-within\:ring-pink-50:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)) !important; + } + + .xl\:focus-within\:ring-pink-100:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)) !important; + } + + .xl\:focus-within\:ring-pink-200:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)) !important; + } + + .xl\:focus-within\:ring-pink-300:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)) !important; + } + + .xl\:focus-within\:ring-pink-400:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)) !important; + } + + .xl\:focus-within\:ring-pink-500:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)) !important; + } + + .xl\:focus-within\:ring-pink-600:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)) !important; + } + + .xl\:focus-within\:ring-pink-700:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)) !important; + } + + .xl\:focus-within\:ring-pink-800:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)) !important; + } + + .xl\:focus-within\:ring-pink-900:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)) !important; + } + + .xl\:focus-within\:ring-primary:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(0, 49, 151, var(--tw-ring-opacity)) !important; + } + + .xl\:focus\:ring-transparent:focus { + --tw-ring-color: transparent !important; + } + + .xl\:focus\:ring-current:focus { + --tw-ring-color: currentColor !important; + } + + .xl\:focus\:ring-black:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important; + } + + .xl\:focus\:ring-white:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)) !important; + } + + .xl\:focus\:ring-gray-50:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)) !important; + } + + .xl\:focus\:ring-gray-100:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)) !important; + } + + .xl\:focus\:ring-gray-200:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)) !important; + } + + .xl\:focus\:ring-gray-300:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)) !important; + } + + .xl\:focus\:ring-gray-400:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)) !important; + } + + .xl\:focus\:ring-gray-500:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)) !important; + } + + .xl\:focus\:ring-gray-600:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)) !important; + } + + .xl\:focus\:ring-gray-700:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)) !important; + } + + .xl\:focus\:ring-gray-800:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)) !important; + } + + .xl\:focus\:ring-gray-900:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)) !important; + } + + .xl\:focus\:ring-red-50:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)) !important; + } + + .xl\:focus\:ring-red-100:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)) !important; + } + + .xl\:focus\:ring-red-200:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)) !important; + } + + .xl\:focus\:ring-red-300:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)) !important; + } + + .xl\:focus\:ring-red-400:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)) !important; + } + + .xl\:focus\:ring-red-500:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)) !important; + } + + .xl\:focus\:ring-red-600:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)) !important; + } + + .xl\:focus\:ring-red-700:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)) !important; + } + + .xl\:focus\:ring-red-800:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)) !important; + } + + .xl\:focus\:ring-red-900:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)) !important; + } + + .xl\:focus\:ring-yellow-50:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)) !important; + } + + .xl\:focus\:ring-yellow-100:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)) !important; + } + + .xl\:focus\:ring-yellow-200:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)) !important; + } + + .xl\:focus\:ring-yellow-300:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)) !important; + } + + .xl\:focus\:ring-yellow-400:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)) !important; + } + + .xl\:focus\:ring-yellow-500:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)) !important; + } + + .xl\:focus\:ring-yellow-600:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)) !important; + } + + .xl\:focus\:ring-yellow-700:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)) !important; + } + + .xl\:focus\:ring-yellow-800:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)) !important; + } + + .xl\:focus\:ring-yellow-900:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)) !important; + } + + .xl\:focus\:ring-green-50:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)) !important; + } + + .xl\:focus\:ring-green-100:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)) !important; + } + + .xl\:focus\:ring-green-200:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)) !important; + } + + .xl\:focus\:ring-green-300:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)) !important; + } + + .xl\:focus\:ring-green-400:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)) !important; + } + + .xl\:focus\:ring-green-500:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)) !important; + } + + .xl\:focus\:ring-green-600:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)) !important; + } + + .xl\:focus\:ring-green-700:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)) !important; + } + + .xl\:focus\:ring-green-800:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)) !important; + } + + .xl\:focus\:ring-green-900:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)) !important; + } + + .xl\:focus\:ring-blue-50:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)) !important; + } + + .xl\:focus\:ring-blue-100:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)) !important; + } + + .xl\:focus\:ring-blue-200:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)) !important; + } + + .xl\:focus\:ring-blue-300:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)) !important; + } + + .xl\:focus\:ring-blue-400:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)) !important; + } + + .xl\:focus\:ring-blue-500:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)) !important; + } + + .xl\:focus\:ring-blue-600:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)) !important; + } + + .xl\:focus\:ring-blue-700:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)) !important; + } + + .xl\:focus\:ring-blue-800:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)) !important; + } + + .xl\:focus\:ring-blue-900:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)) !important; + } + + .xl\:focus\:ring-indigo-50:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)) !important; + } + + .xl\:focus\:ring-indigo-100:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)) !important; + } + + .xl\:focus\:ring-indigo-200:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)) !important; + } + + .xl\:focus\:ring-indigo-300:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)) !important; + } + + .xl\:focus\:ring-indigo-400:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)) !important; + } + + .xl\:focus\:ring-indigo-500:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)) !important; + } + + .xl\:focus\:ring-indigo-600:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)) !important; + } + + .xl\:focus\:ring-indigo-700:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)) !important; + } + + .xl\:focus\:ring-indigo-800:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)) !important; + } + + .xl\:focus\:ring-indigo-900:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)) !important; + } + + .xl\:focus\:ring-purple-50:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)) !important; + } + + .xl\:focus\:ring-purple-100:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)) !important; + } + + .xl\:focus\:ring-purple-200:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)) !important; + } + + .xl\:focus\:ring-purple-300:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)) !important; + } + + .xl\:focus\:ring-purple-400:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)) !important; + } + + .xl\:focus\:ring-purple-500:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)) !important; + } + + .xl\:focus\:ring-purple-600:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)) !important; + } + + .xl\:focus\:ring-purple-700:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)) !important; + } + + .xl\:focus\:ring-purple-800:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)) !important; + } + + .xl\:focus\:ring-purple-900:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)) !important; + } + + .xl\:focus\:ring-pink-50:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)) !important; + } + + .xl\:focus\:ring-pink-100:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)) !important; + } + + .xl\:focus\:ring-pink-200:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)) !important; + } + + .xl\:focus\:ring-pink-300:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)) !important; + } + + .xl\:focus\:ring-pink-400:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)) !important; + } + + .xl\:focus\:ring-pink-500:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)) !important; + } + + .xl\:focus\:ring-pink-600:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)) !important; + } + + .xl\:focus\:ring-pink-700:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)) !important; + } + + .xl\:focus\:ring-pink-800:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)) !important; + } + + .xl\:focus\:ring-pink-900:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)) !important; + } + + .xl\:focus\:ring-primary:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(0, 49, 151, var(--tw-ring-opacity)) !important; + } + + .xl\:ring-opacity-0 { + --tw-ring-opacity: 0 !important; + } + + .xl\:ring-opacity-5 { + --tw-ring-opacity: 0.05 !important; + } + + .xl\:ring-opacity-10 { + --tw-ring-opacity: 0.1 !important; + } + + .xl\:ring-opacity-20 { + --tw-ring-opacity: 0.2 !important; + } + + .xl\:ring-opacity-25 { + --tw-ring-opacity: 0.25 !important; + } + + .xl\:ring-opacity-30 { + --tw-ring-opacity: 0.3 !important; + } + + .xl\:ring-opacity-40 { + --tw-ring-opacity: 0.4 !important; + } + + .xl\:ring-opacity-50 { + --tw-ring-opacity: 0.5 !important; + } + + .xl\:ring-opacity-60 { + --tw-ring-opacity: 0.6 !important; + } + + .xl\:ring-opacity-70 { + --tw-ring-opacity: 0.7 !important; + } + + .xl\:ring-opacity-75 { + --tw-ring-opacity: 0.75 !important; + } + + .xl\:ring-opacity-80 { + --tw-ring-opacity: 0.8 !important; + } + + .xl\:ring-opacity-90 { + --tw-ring-opacity: 0.9 !important; + } + + .xl\:ring-opacity-95 { + --tw-ring-opacity: 0.95 !important; + } + + .xl\:ring-opacity-100 { + --tw-ring-opacity: 1 !important; + } + + .xl\:focus-within\:ring-opacity-0:focus-within { + --tw-ring-opacity: 0 !important; + } + + .xl\:focus-within\:ring-opacity-5:focus-within { + --tw-ring-opacity: 0.05 !important; + } + + .xl\:focus-within\:ring-opacity-10:focus-within { + --tw-ring-opacity: 0.1 !important; + } + + .xl\:focus-within\:ring-opacity-20:focus-within { + --tw-ring-opacity: 0.2 !important; + } + + .xl\:focus-within\:ring-opacity-25:focus-within { + --tw-ring-opacity: 0.25 !important; + } + + .xl\:focus-within\:ring-opacity-30:focus-within { + --tw-ring-opacity: 0.3 !important; + } + + .xl\:focus-within\:ring-opacity-40:focus-within { + --tw-ring-opacity: 0.4 !important; + } + + .xl\:focus-within\:ring-opacity-50:focus-within { + --tw-ring-opacity: 0.5 !important; + } + + .xl\:focus-within\:ring-opacity-60:focus-within { + --tw-ring-opacity: 0.6 !important; + } + + .xl\:focus-within\:ring-opacity-70:focus-within { + --tw-ring-opacity: 0.7 !important; + } + + .xl\:focus-within\:ring-opacity-75:focus-within { + --tw-ring-opacity: 0.75 !important; + } + + .xl\:focus-within\:ring-opacity-80:focus-within { + --tw-ring-opacity: 0.8 !important; + } + + .xl\:focus-within\:ring-opacity-90:focus-within { + --tw-ring-opacity: 0.9 !important; + } + + .xl\:focus-within\:ring-opacity-95:focus-within { + --tw-ring-opacity: 0.95 !important; + } + + .xl\:focus-within\:ring-opacity-100:focus-within { + --tw-ring-opacity: 1 !important; + } + + .xl\:focus\:ring-opacity-0:focus { + --tw-ring-opacity: 0 !important; + } + + .xl\:focus\:ring-opacity-5:focus { + --tw-ring-opacity: 0.05 !important; + } + + .xl\:focus\:ring-opacity-10:focus { + --tw-ring-opacity: 0.1 !important; + } + + .xl\:focus\:ring-opacity-20:focus { + --tw-ring-opacity: 0.2 !important; + } + + .xl\:focus\:ring-opacity-25:focus { + --tw-ring-opacity: 0.25 !important; + } + + .xl\:focus\:ring-opacity-30:focus { + --tw-ring-opacity: 0.3 !important; + } + + .xl\:focus\:ring-opacity-40:focus { + --tw-ring-opacity: 0.4 !important; + } + + .xl\:focus\:ring-opacity-50:focus { + --tw-ring-opacity: 0.5 !important; + } + + .xl\:focus\:ring-opacity-60:focus { + --tw-ring-opacity: 0.6 !important; + } + + .xl\:focus\:ring-opacity-70:focus { + --tw-ring-opacity: 0.7 !important; + } + + .xl\:focus\:ring-opacity-75:focus { + --tw-ring-opacity: 0.75 !important; + } + + .xl\:focus\:ring-opacity-80:focus { + --tw-ring-opacity: 0.8 !important; + } + + .xl\:focus\:ring-opacity-90:focus { + --tw-ring-opacity: 0.9 !important; + } + + .xl\:focus\:ring-opacity-95:focus { + --tw-ring-opacity: 0.95 !important; + } + + .xl\:focus\:ring-opacity-100:focus { + --tw-ring-opacity: 1 !important; + } + + .xl\:fill-current { + fill: currentColor !important; + } + + .xl\:stroke-current { + stroke: currentColor !important; + } + + .xl\:stroke-0 { + stroke-width: 0 !important; + } + + .xl\:stroke-1 { + stroke-width: 1 !important; + } + + .xl\:stroke-2 { + stroke-width: 2 !important; + } + + .xl\:table-auto { + table-layout: auto !important; + } + + .xl\:table-fixed { + table-layout: fixed !important; + } + + .xl\:text-left { + text-align: left !important; + } + + .xl\:text-center { + text-align: center !important; + } + + .xl\:text-right { + text-align: right !important; + } + + .xl\:text-justify { + text-align: justify !important; + } + + .xl\:text-transparent { + color: transparent !important; + } + + .xl\:text-current { + color: currentColor !important; + } + + .xl\:text-black { + --tw-text-opacity: 1 !important; + color: rgba(0, 0, 0, var(--tw-text-opacity)) !important; + } + + .xl\:text-white { + --tw-text-opacity: 1 !important; + color: rgba(255, 255, 255, var(--tw-text-opacity)) !important; + } + + .xl\:text-gray-50 { + --tw-text-opacity: 1 !important; + color: rgba(249, 250, 251, var(--tw-text-opacity)) !important; + } + + .xl\:text-gray-100 { + --tw-text-opacity: 1 !important; + color: rgba(243, 244, 246, var(--tw-text-opacity)) !important; + } + + .xl\:text-gray-200 { + --tw-text-opacity: 1 !important; + color: rgba(229, 231, 235, var(--tw-text-opacity)) !important; + } + + .xl\:text-gray-300 { + --tw-text-opacity: 1 !important; + color: rgba(209, 213, 219, var(--tw-text-opacity)) !important; + } + + .xl\:text-gray-400 { + --tw-text-opacity: 1 !important; + color: rgba(156, 163, 175, var(--tw-text-opacity)) !important; + } + + .xl\:text-gray-500 { + --tw-text-opacity: 1 !important; + color: rgba(107, 114, 128, var(--tw-text-opacity)) !important; + } + + .xl\:text-gray-600 { + --tw-text-opacity: 1 !important; + color: rgba(75, 85, 99, var(--tw-text-opacity)) !important; + } + + .xl\:text-gray-700 { + --tw-text-opacity: 1 !important; + color: rgba(55, 65, 81, var(--tw-text-opacity)) !important; + } + + .xl\:text-gray-800 { + --tw-text-opacity: 1 !important; + color: rgba(31, 41, 55, var(--tw-text-opacity)) !important; + } + + .xl\:text-gray-900 { + --tw-text-opacity: 1 !important; + color: rgba(17, 24, 39, var(--tw-text-opacity)) !important; + } + + .xl\:text-red-50 { + --tw-text-opacity: 1 !important; + color: rgba(254, 242, 242, var(--tw-text-opacity)) !important; + } + + .xl\:text-red-100 { + --tw-text-opacity: 1 !important; + color: rgba(254, 226, 226, var(--tw-text-opacity)) !important; + } + + .xl\:text-red-200 { + --tw-text-opacity: 1 !important; + color: rgba(254, 202, 202, var(--tw-text-opacity)) !important; + } + + .xl\:text-red-300 { + --tw-text-opacity: 1 !important; + color: rgba(252, 165, 165, var(--tw-text-opacity)) !important; + } + + .xl\:text-red-400 { + --tw-text-opacity: 1 !important; + color: rgba(248, 113, 113, var(--tw-text-opacity)) !important; + } + + .xl\:text-red-500 { + --tw-text-opacity: 1 !important; + color: rgba(239, 68, 68, var(--tw-text-opacity)) !important; + } + + .xl\:text-red-600 { + --tw-text-opacity: 1 !important; + color: rgba(220, 38, 38, var(--tw-text-opacity)) !important; + } + + .xl\:text-red-700 { + --tw-text-opacity: 1 !important; + color: rgba(185, 28, 28, var(--tw-text-opacity)) !important; + } + + .xl\:text-red-800 { + --tw-text-opacity: 1 !important; + color: rgba(153, 27, 27, var(--tw-text-opacity)) !important; + } + + .xl\:text-red-900 { + --tw-text-opacity: 1 !important; + color: rgba(127, 29, 29, var(--tw-text-opacity)) !important; + } + + .xl\:text-yellow-50 { + --tw-text-opacity: 1 !important; + color: rgba(255, 251, 235, var(--tw-text-opacity)) !important; + } + + .xl\:text-yellow-100 { + --tw-text-opacity: 1 !important; + color: rgba(254, 243, 199, var(--tw-text-opacity)) !important; + } + + .xl\:text-yellow-200 { + --tw-text-opacity: 1 !important; + color: rgba(253, 230, 138, var(--tw-text-opacity)) !important; + } + + .xl\:text-yellow-300 { + --tw-text-opacity: 1 !important; + color: rgba(252, 211, 77, var(--tw-text-opacity)) !important; + } + + .xl\:text-yellow-400 { + --tw-text-opacity: 1 !important; + color: rgba(251, 191, 36, var(--tw-text-opacity)) !important; + } + + .xl\:text-yellow-500 { + --tw-text-opacity: 1 !important; + color: rgba(245, 158, 11, var(--tw-text-opacity)) !important; + } + + .xl\:text-yellow-600 { + --tw-text-opacity: 1 !important; + color: rgba(217, 119, 6, var(--tw-text-opacity)) !important; + } + + .xl\:text-yellow-700 { + --tw-text-opacity: 1 !important; + color: rgba(180, 83, 9, var(--tw-text-opacity)) !important; + } + + .xl\:text-yellow-800 { + --tw-text-opacity: 1 !important; + color: rgba(146, 64, 14, var(--tw-text-opacity)) !important; + } + + .xl\:text-yellow-900 { + --tw-text-opacity: 1 !important; + color: rgba(120, 53, 15, var(--tw-text-opacity)) !important; + } + + .xl\:text-green-50 { + --tw-text-opacity: 1 !important; + color: rgba(236, 253, 245, var(--tw-text-opacity)) !important; + } + + .xl\:text-green-100 { + --tw-text-opacity: 1 !important; + color: rgba(209, 250, 229, var(--tw-text-opacity)) !important; + } + + .xl\:text-green-200 { + --tw-text-opacity: 1 !important; + color: rgba(167, 243, 208, var(--tw-text-opacity)) !important; + } + + .xl\:text-green-300 { + --tw-text-opacity: 1 !important; + color: rgba(110, 231, 183, var(--tw-text-opacity)) !important; + } + + .xl\:text-green-400 { + --tw-text-opacity: 1 !important; + color: rgba(52, 211, 153, var(--tw-text-opacity)) !important; + } + + .xl\:text-green-500 { + --tw-text-opacity: 1 !important; + color: rgba(16, 185, 129, var(--tw-text-opacity)) !important; + } + + .xl\:text-green-600 { + --tw-text-opacity: 1 !important; + color: rgba(5, 150, 105, var(--tw-text-opacity)) !important; + } + + .xl\:text-green-700 { + --tw-text-opacity: 1 !important; + color: rgba(4, 120, 87, var(--tw-text-opacity)) !important; + } + + .xl\:text-green-800 { + --tw-text-opacity: 1 !important; + color: rgba(6, 95, 70, var(--tw-text-opacity)) !important; + } + + .xl\:text-green-900 { + --tw-text-opacity: 1 !important; + color: rgba(6, 78, 59, var(--tw-text-opacity)) !important; + } + + .xl\:text-blue-50 { + --tw-text-opacity: 1 !important; + color: rgba(239, 246, 255, var(--tw-text-opacity)) !important; + } + + .xl\:text-blue-100 { + --tw-text-opacity: 1 !important; + color: rgba(219, 234, 254, var(--tw-text-opacity)) !important; + } + + .xl\:text-blue-200 { + --tw-text-opacity: 1 !important; + color: rgba(191, 219, 254, var(--tw-text-opacity)) !important; + } + + .xl\:text-blue-300 { + --tw-text-opacity: 1 !important; + color: rgba(147, 197, 253, var(--tw-text-opacity)) !important; + } + + .xl\:text-blue-400 { + --tw-text-opacity: 1 !important; + color: rgba(96, 165, 250, var(--tw-text-opacity)) !important; + } + + .xl\:text-blue-500 { + --tw-text-opacity: 1 !important; + color: rgba(59, 130, 246, var(--tw-text-opacity)) !important; + } + + .xl\:text-blue-600 { + --tw-text-opacity: 1 !important; + color: rgba(37, 99, 235, var(--tw-text-opacity)) !important; + } + + .xl\:text-blue-700 { + --tw-text-opacity: 1 !important; + color: rgba(29, 78, 216, var(--tw-text-opacity)) !important; + } + + .xl\:text-blue-800 { + --tw-text-opacity: 1 !important; + color: rgba(30, 64, 175, var(--tw-text-opacity)) !important; + } + + .xl\:text-blue-900 { + --tw-text-opacity: 1 !important; + color: rgba(30, 58, 138, var(--tw-text-opacity)) !important; + } + + .xl\:text-indigo-50 { + --tw-text-opacity: 1 !important; + color: rgba(238, 242, 255, var(--tw-text-opacity)) !important; + } + + .xl\:text-indigo-100 { + --tw-text-opacity: 1 !important; + color: rgba(224, 231, 255, var(--tw-text-opacity)) !important; + } + + .xl\:text-indigo-200 { + --tw-text-opacity: 1 !important; + color: rgba(199, 210, 254, var(--tw-text-opacity)) !important; + } + + .xl\:text-indigo-300 { + --tw-text-opacity: 1 !important; + color: rgba(165, 180, 252, var(--tw-text-opacity)) !important; + } + + .xl\:text-indigo-400 { + --tw-text-opacity: 1 !important; + color: rgba(129, 140, 248, var(--tw-text-opacity)) !important; + } + + .xl\:text-indigo-500 { + --tw-text-opacity: 1 !important; + color: rgba(99, 102, 241, var(--tw-text-opacity)) !important; + } + + .xl\:text-indigo-600 { + --tw-text-opacity: 1 !important; + color: rgba(79, 70, 229, var(--tw-text-opacity)) !important; + } + + .xl\:text-indigo-700 { + --tw-text-opacity: 1 !important; + color: rgba(67, 56, 202, var(--tw-text-opacity)) !important; + } + + .xl\:text-indigo-800 { + --tw-text-opacity: 1 !important; + color: rgba(55, 48, 163, var(--tw-text-opacity)) !important; + } + + .xl\:text-indigo-900 { + --tw-text-opacity: 1 !important; + color: rgba(49, 46, 129, var(--tw-text-opacity)) !important; + } + + .xl\:text-purple-50 { + --tw-text-opacity: 1 !important; + color: rgba(245, 243, 255, var(--tw-text-opacity)) !important; + } + + .xl\:text-purple-100 { + --tw-text-opacity: 1 !important; + color: rgba(237, 233, 254, var(--tw-text-opacity)) !important; + } + + .xl\:text-purple-200 { + --tw-text-opacity: 1 !important; + color: rgba(221, 214, 254, var(--tw-text-opacity)) !important; + } + + .xl\:text-purple-300 { + --tw-text-opacity: 1 !important; + color: rgba(196, 181, 253, var(--tw-text-opacity)) !important; + } + + .xl\:text-purple-400 { + --tw-text-opacity: 1 !important; + color: rgba(167, 139, 250, var(--tw-text-opacity)) !important; + } + + .xl\:text-purple-500 { + --tw-text-opacity: 1 !important; + color: rgba(139, 92, 246, var(--tw-text-opacity)) !important; + } + + .xl\:text-purple-600 { + --tw-text-opacity: 1 !important; + color: rgba(124, 58, 237, var(--tw-text-opacity)) !important; + } + + .xl\:text-purple-700 { + --tw-text-opacity: 1 !important; + color: rgba(109, 40, 217, var(--tw-text-opacity)) !important; + } + + .xl\:text-purple-800 { + --tw-text-opacity: 1 !important; + color: rgba(91, 33, 182, var(--tw-text-opacity)) !important; + } + + .xl\:text-purple-900 { + --tw-text-opacity: 1 !important; + color: rgba(76, 29, 149, var(--tw-text-opacity)) !important; + } + + .xl\:text-pink-50 { + --tw-text-opacity: 1 !important; + color: rgba(253, 242, 248, var(--tw-text-opacity)) !important; + } + + .xl\:text-pink-100 { + --tw-text-opacity: 1 !important; + color: rgba(252, 231, 243, var(--tw-text-opacity)) !important; + } + + .xl\:text-pink-200 { + --tw-text-opacity: 1 !important; + color: rgba(251, 207, 232, var(--tw-text-opacity)) !important; + } + + .xl\:text-pink-300 { + --tw-text-opacity: 1 !important; + color: rgba(249, 168, 212, var(--tw-text-opacity)) !important; + } + + .xl\:text-pink-400 { + --tw-text-opacity: 1 !important; + color: rgba(244, 114, 182, var(--tw-text-opacity)) !important; + } + + .xl\:text-pink-500 { + --tw-text-opacity: 1 !important; + color: rgba(236, 72, 153, var(--tw-text-opacity)) !important; + } + + .xl\:text-pink-600 { + --tw-text-opacity: 1 !important; + color: rgba(219, 39, 119, var(--tw-text-opacity)) !important; + } + + .xl\:text-pink-700 { + --tw-text-opacity: 1 !important; + color: rgba(190, 24, 93, var(--tw-text-opacity)) !important; + } + + .xl\:text-pink-800 { + --tw-text-opacity: 1 !important; + color: rgba(157, 23, 77, var(--tw-text-opacity)) !important; + } + + .xl\:text-pink-900 { + --tw-text-opacity: 1 !important; + color: rgba(131, 24, 67, var(--tw-text-opacity)) !important; + } + + .xl\:text-primary { + --tw-text-opacity: 1 !important; + color: rgba(0, 49, 151, var(--tw-text-opacity)) !important; + } + + .group:hover .xl\:group-hover\:text-transparent { + color: transparent !important; + } + + .group:hover .xl\:group-hover\:text-current { + color: currentColor !important; + } + + .group:hover .xl\:group-hover\:text-black { + --tw-text-opacity: 1 !important; + color: rgba(0, 0, 0, var(--tw-text-opacity)) !important; + } + + .group:hover .xl\:group-hover\:text-white { + --tw-text-opacity: 1 !important; + color: rgba(255, 255, 255, var(--tw-text-opacity)) !important; + } + + .group:hover .xl\:group-hover\:text-gray-50 { + --tw-text-opacity: 1 !important; + color: rgba(249, 250, 251, var(--tw-text-opacity)) !important; + } + + .group:hover .xl\:group-hover\:text-gray-100 { + --tw-text-opacity: 1 !important; + color: rgba(243, 244, 246, var(--tw-text-opacity)) !important; + } + + .group:hover .xl\:group-hover\:text-gray-200 { + --tw-text-opacity: 1 !important; + color: rgba(229, 231, 235, var(--tw-text-opacity)) !important; + } + + .group:hover .xl\:group-hover\:text-gray-300 { + --tw-text-opacity: 1 !important; + color: rgba(209, 213, 219, var(--tw-text-opacity)) !important; + } + + .group:hover .xl\:group-hover\:text-gray-400 { + --tw-text-opacity: 1 !important; + color: rgba(156, 163, 175, var(--tw-text-opacity)) !important; + } + + .group:hover .xl\:group-hover\:text-gray-500 { + --tw-text-opacity: 1 !important; + color: rgba(107, 114, 128, var(--tw-text-opacity)) !important; + } + + .group:hover .xl\:group-hover\:text-gray-600 { + --tw-text-opacity: 1 !important; + color: rgba(75, 85, 99, var(--tw-text-opacity)) !important; + } + + .group:hover .xl\:group-hover\:text-gray-700 { + --tw-text-opacity: 1 !important; + color: rgba(55, 65, 81, var(--tw-text-opacity)) !important; + } + + .group:hover .xl\:group-hover\:text-gray-800 { + --tw-text-opacity: 1 !important; + color: rgba(31, 41, 55, var(--tw-text-opacity)) !important; + } + + .group:hover .xl\:group-hover\:text-gray-900 { + --tw-text-opacity: 1 !important; + color: rgba(17, 24, 39, var(--tw-text-opacity)) !important; + } + + .group:hover .xl\:group-hover\:text-red-50 { + --tw-text-opacity: 1 !important; + color: rgba(254, 242, 242, var(--tw-text-opacity)) !important; + } + + .group:hover .xl\:group-hover\:text-red-100 { + --tw-text-opacity: 1 !important; + color: rgba(254, 226, 226, var(--tw-text-opacity)) !important; + } + + .group:hover .xl\:group-hover\:text-red-200 { + --tw-text-opacity: 1 !important; + color: rgba(254, 202, 202, var(--tw-text-opacity)) !important; + } + + .group:hover .xl\:group-hover\:text-red-300 { + --tw-text-opacity: 1 !important; + color: rgba(252, 165, 165, var(--tw-text-opacity)) !important; + } + + .group:hover .xl\:group-hover\:text-red-400 { + --tw-text-opacity: 1 !important; + color: rgba(248, 113, 113, var(--tw-text-opacity)) !important; + } + + .group:hover .xl\:group-hover\:text-red-500 { + --tw-text-opacity: 1 !important; + color: rgba(239, 68, 68, var(--tw-text-opacity)) !important; + } + + .group:hover .xl\:group-hover\:text-red-600 { + --tw-text-opacity: 1 !important; + color: rgba(220, 38, 38, var(--tw-text-opacity)) !important; + } + + .group:hover .xl\:group-hover\:text-red-700 { + --tw-text-opacity: 1 !important; + color: rgba(185, 28, 28, var(--tw-text-opacity)) !important; + } + + .group:hover .xl\:group-hover\:text-red-800 { + --tw-text-opacity: 1 !important; + color: rgba(153, 27, 27, var(--tw-text-opacity)) !important; + } + + .group:hover .xl\:group-hover\:text-red-900 { + --tw-text-opacity: 1 !important; + color: rgba(127, 29, 29, var(--tw-text-opacity)) !important; + } + + .group:hover .xl\:group-hover\:text-yellow-50 { + --tw-text-opacity: 1 !important; + color: rgba(255, 251, 235, var(--tw-text-opacity)) !important; + } + + .group:hover .xl\:group-hover\:text-yellow-100 { + --tw-text-opacity: 1 !important; + color: rgba(254, 243, 199, var(--tw-text-opacity)) !important; + } + + .group:hover .xl\:group-hover\:text-yellow-200 { + --tw-text-opacity: 1 !important; + color: rgba(253, 230, 138, var(--tw-text-opacity)) !important; + } + + .group:hover .xl\:group-hover\:text-yellow-300 { + --tw-text-opacity: 1 !important; + color: rgba(252, 211, 77, var(--tw-text-opacity)) !important; + } + + .group:hover .xl\:group-hover\:text-yellow-400 { + --tw-text-opacity: 1 !important; + color: rgba(251, 191, 36, var(--tw-text-opacity)) !important; + } + + .group:hover .xl\:group-hover\:text-yellow-500 { + --tw-text-opacity: 1 !important; + color: rgba(245, 158, 11, var(--tw-text-opacity)) !important; + } + + .group:hover .xl\:group-hover\:text-yellow-600 { + --tw-text-opacity: 1 !important; + color: rgba(217, 119, 6, var(--tw-text-opacity)) !important; + } + + .group:hover .xl\:group-hover\:text-yellow-700 { + --tw-text-opacity: 1 !important; + color: rgba(180, 83, 9, var(--tw-text-opacity)) !important; + } + + .group:hover .xl\:group-hover\:text-yellow-800 { + --tw-text-opacity: 1 !important; + color: rgba(146, 64, 14, var(--tw-text-opacity)) !important; + } + + .group:hover .xl\:group-hover\:text-yellow-900 { + --tw-text-opacity: 1 !important; + color: rgba(120, 53, 15, var(--tw-text-opacity)) !important; + } + + .group:hover .xl\:group-hover\:text-green-50 { + --tw-text-opacity: 1 !important; + color: rgba(236, 253, 245, var(--tw-text-opacity)) !important; + } + + .group:hover .xl\:group-hover\:text-green-100 { + --tw-text-opacity: 1 !important; + color: rgba(209, 250, 229, var(--tw-text-opacity)) !important; + } + + .group:hover .xl\:group-hover\:text-green-200 { + --tw-text-opacity: 1 !important; + color: rgba(167, 243, 208, var(--tw-text-opacity)) !important; + } + + .group:hover .xl\:group-hover\:text-green-300 { + --tw-text-opacity: 1 !important; + color: rgba(110, 231, 183, var(--tw-text-opacity)) !important; + } + + .group:hover .xl\:group-hover\:text-green-400 { + --tw-text-opacity: 1 !important; + color: rgba(52, 211, 153, var(--tw-text-opacity)) !important; + } + + .group:hover .xl\:group-hover\:text-green-500 { + --tw-text-opacity: 1 !important; + color: rgba(16, 185, 129, var(--tw-text-opacity)) !important; + } + + .group:hover .xl\:group-hover\:text-green-600 { + --tw-text-opacity: 1 !important; + color: rgba(5, 150, 105, var(--tw-text-opacity)) !important; + } + + .group:hover .xl\:group-hover\:text-green-700 { + --tw-text-opacity: 1 !important; + color: rgba(4, 120, 87, var(--tw-text-opacity)) !important; + } + + .group:hover .xl\:group-hover\:text-green-800 { + --tw-text-opacity: 1 !important; + color: rgba(6, 95, 70, var(--tw-text-opacity)) !important; + } + + .group:hover .xl\:group-hover\:text-green-900 { + --tw-text-opacity: 1 !important; + color: rgba(6, 78, 59, var(--tw-text-opacity)) !important; + } + + .group:hover .xl\:group-hover\:text-blue-50 { + --tw-text-opacity: 1 !important; + color: rgba(239, 246, 255, var(--tw-text-opacity)) !important; + } + + .group:hover .xl\:group-hover\:text-blue-100 { + --tw-text-opacity: 1 !important; + color: rgba(219, 234, 254, var(--tw-text-opacity)) !important; + } + + .group:hover .xl\:group-hover\:text-blue-200 { + --tw-text-opacity: 1 !important; + color: rgba(191, 219, 254, var(--tw-text-opacity)) !important; + } + + .group:hover .xl\:group-hover\:text-blue-300 { + --tw-text-opacity: 1 !important; + color: rgba(147, 197, 253, var(--tw-text-opacity)) !important; + } + + .group:hover .xl\:group-hover\:text-blue-400 { + --tw-text-opacity: 1 !important; + color: rgba(96, 165, 250, var(--tw-text-opacity)) !important; + } + + .group:hover .xl\:group-hover\:text-blue-500 { + --tw-text-opacity: 1 !important; + color: rgba(59, 130, 246, var(--tw-text-opacity)) !important; + } + + .group:hover .xl\:group-hover\:text-blue-600 { + --tw-text-opacity: 1 !important; + color: rgba(37, 99, 235, var(--tw-text-opacity)) !important; + } + + .group:hover .xl\:group-hover\:text-blue-700 { + --tw-text-opacity: 1 !important; + color: rgba(29, 78, 216, var(--tw-text-opacity)) !important; + } + + .group:hover .xl\:group-hover\:text-blue-800 { + --tw-text-opacity: 1 !important; + color: rgba(30, 64, 175, var(--tw-text-opacity)) !important; + } + + .group:hover .xl\:group-hover\:text-blue-900 { + --tw-text-opacity: 1 !important; + color: rgba(30, 58, 138, var(--tw-text-opacity)) !important; + } + + .group:hover .xl\:group-hover\:text-indigo-50 { + --tw-text-opacity: 1 !important; + color: rgba(238, 242, 255, var(--tw-text-opacity)) !important; + } + + .group:hover .xl\:group-hover\:text-indigo-100 { + --tw-text-opacity: 1 !important; + color: rgba(224, 231, 255, var(--tw-text-opacity)) !important; + } + + .group:hover .xl\:group-hover\:text-indigo-200 { + --tw-text-opacity: 1 !important; + color: rgba(199, 210, 254, var(--tw-text-opacity)) !important; + } + + .group:hover .xl\:group-hover\:text-indigo-300 { + --tw-text-opacity: 1 !important; + color: rgba(165, 180, 252, var(--tw-text-opacity)) !important; + } + + .group:hover .xl\:group-hover\:text-indigo-400 { + --tw-text-opacity: 1 !important; + color: rgba(129, 140, 248, var(--tw-text-opacity)) !important; + } + + .group:hover .xl\:group-hover\:text-indigo-500 { + --tw-text-opacity: 1 !important; + color: rgba(99, 102, 241, var(--tw-text-opacity)) !important; + } + + .group:hover .xl\:group-hover\:text-indigo-600 { + --tw-text-opacity: 1 !important; + color: rgba(79, 70, 229, var(--tw-text-opacity)) !important; + } + + .group:hover .xl\:group-hover\:text-indigo-700 { + --tw-text-opacity: 1 !important; + color: rgba(67, 56, 202, var(--tw-text-opacity)) !important; + } + + .group:hover .xl\:group-hover\:text-indigo-800 { + --tw-text-opacity: 1 !important; + color: rgba(55, 48, 163, var(--tw-text-opacity)) !important; + } + + .group:hover .xl\:group-hover\:text-indigo-900 { + --tw-text-opacity: 1 !important; + color: rgba(49, 46, 129, var(--tw-text-opacity)) !important; + } + + .group:hover .xl\:group-hover\:text-purple-50 { + --tw-text-opacity: 1 !important; + color: rgba(245, 243, 255, var(--tw-text-opacity)) !important; + } + + .group:hover .xl\:group-hover\:text-purple-100 { + --tw-text-opacity: 1 !important; + color: rgba(237, 233, 254, var(--tw-text-opacity)) !important; + } + + .group:hover .xl\:group-hover\:text-purple-200 { + --tw-text-opacity: 1 !important; + color: rgba(221, 214, 254, var(--tw-text-opacity)) !important; + } + + .group:hover .xl\:group-hover\:text-purple-300 { + --tw-text-opacity: 1 !important; + color: rgba(196, 181, 253, var(--tw-text-opacity)) !important; + } + + .group:hover .xl\:group-hover\:text-purple-400 { + --tw-text-opacity: 1 !important; + color: rgba(167, 139, 250, var(--tw-text-opacity)) !important; + } + + .group:hover .xl\:group-hover\:text-purple-500 { + --tw-text-opacity: 1 !important; + color: rgba(139, 92, 246, var(--tw-text-opacity)) !important; + } + + .group:hover .xl\:group-hover\:text-purple-600 { + --tw-text-opacity: 1 !important; + color: rgba(124, 58, 237, var(--tw-text-opacity)) !important; + } + + .group:hover .xl\:group-hover\:text-purple-700 { + --tw-text-opacity: 1 !important; + color: rgba(109, 40, 217, var(--tw-text-opacity)) !important; + } + + .group:hover .xl\:group-hover\:text-purple-800 { + --tw-text-opacity: 1 !important; + color: rgba(91, 33, 182, var(--tw-text-opacity)) !important; + } + + .group:hover .xl\:group-hover\:text-purple-900 { + --tw-text-opacity: 1 !important; + color: rgba(76, 29, 149, var(--tw-text-opacity)) !important; + } + + .group:hover .xl\:group-hover\:text-pink-50 { + --tw-text-opacity: 1 !important; + color: rgba(253, 242, 248, var(--tw-text-opacity)) !important; + } + + .group:hover .xl\:group-hover\:text-pink-100 { + --tw-text-opacity: 1 !important; + color: rgba(252, 231, 243, var(--tw-text-opacity)) !important; + } + + .group:hover .xl\:group-hover\:text-pink-200 { + --tw-text-opacity: 1 !important; + color: rgba(251, 207, 232, var(--tw-text-opacity)) !important; + } + + .group:hover .xl\:group-hover\:text-pink-300 { + --tw-text-opacity: 1 !important; + color: rgba(249, 168, 212, var(--tw-text-opacity)) !important; + } + + .group:hover .xl\:group-hover\:text-pink-400 { + --tw-text-opacity: 1 !important; + color: rgba(244, 114, 182, var(--tw-text-opacity)) !important; + } + + .group:hover .xl\:group-hover\:text-pink-500 { + --tw-text-opacity: 1 !important; + color: rgba(236, 72, 153, var(--tw-text-opacity)) !important; + } + + .group:hover .xl\:group-hover\:text-pink-600 { + --tw-text-opacity: 1 !important; + color: rgba(219, 39, 119, var(--tw-text-opacity)) !important; + } + + .group:hover .xl\:group-hover\:text-pink-700 { + --tw-text-opacity: 1 !important; + color: rgba(190, 24, 93, var(--tw-text-opacity)) !important; + } + + .group:hover .xl\:group-hover\:text-pink-800 { + --tw-text-opacity: 1 !important; + color: rgba(157, 23, 77, var(--tw-text-opacity)) !important; + } + + .group:hover .xl\:group-hover\:text-pink-900 { + --tw-text-opacity: 1 !important; + color: rgba(131, 24, 67, var(--tw-text-opacity)) !important; + } + + .group:hover .xl\:group-hover\:text-primary { + --tw-text-opacity: 1 !important; + color: rgba(0, 49, 151, var(--tw-text-opacity)) !important; + } + + .xl\:focus-within\:text-transparent:focus-within { + color: transparent !important; + } + + .xl\:focus-within\:text-current:focus-within { + color: currentColor !important; + } + + .xl\:focus-within\:text-black:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(0, 0, 0, var(--tw-text-opacity)) !important; + } + + .xl\:focus-within\:text-white:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(255, 255, 255, var(--tw-text-opacity)) !important; + } + + .xl\:focus-within\:text-gray-50:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(249, 250, 251, var(--tw-text-opacity)) !important; + } + + .xl\:focus-within\:text-gray-100:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(243, 244, 246, var(--tw-text-opacity)) !important; + } + + .xl\:focus-within\:text-gray-200:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(229, 231, 235, var(--tw-text-opacity)) !important; + } + + .xl\:focus-within\:text-gray-300:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(209, 213, 219, var(--tw-text-opacity)) !important; + } + + .xl\:focus-within\:text-gray-400:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(156, 163, 175, var(--tw-text-opacity)) !important; + } + + .xl\:focus-within\:text-gray-500:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(107, 114, 128, var(--tw-text-opacity)) !important; + } + + .xl\:focus-within\:text-gray-600:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(75, 85, 99, var(--tw-text-opacity)) !important; + } + + .xl\:focus-within\:text-gray-700:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(55, 65, 81, var(--tw-text-opacity)) !important; + } + + .xl\:focus-within\:text-gray-800:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(31, 41, 55, var(--tw-text-opacity)) !important; + } + + .xl\:focus-within\:text-gray-900:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(17, 24, 39, var(--tw-text-opacity)) !important; + } + + .xl\:focus-within\:text-red-50:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(254, 242, 242, var(--tw-text-opacity)) !important; + } + + .xl\:focus-within\:text-red-100:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(254, 226, 226, var(--tw-text-opacity)) !important; + } + + .xl\:focus-within\:text-red-200:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(254, 202, 202, var(--tw-text-opacity)) !important; + } + + .xl\:focus-within\:text-red-300:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(252, 165, 165, var(--tw-text-opacity)) !important; + } + + .xl\:focus-within\:text-red-400:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(248, 113, 113, var(--tw-text-opacity)) !important; + } + + .xl\:focus-within\:text-red-500:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(239, 68, 68, var(--tw-text-opacity)) !important; + } + + .xl\:focus-within\:text-red-600:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(220, 38, 38, var(--tw-text-opacity)) !important; + } + + .xl\:focus-within\:text-red-700:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(185, 28, 28, var(--tw-text-opacity)) !important; + } + + .xl\:focus-within\:text-red-800:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(153, 27, 27, var(--tw-text-opacity)) !important; + } + + .xl\:focus-within\:text-red-900:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(127, 29, 29, var(--tw-text-opacity)) !important; + } + + .xl\:focus-within\:text-yellow-50:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(255, 251, 235, var(--tw-text-opacity)) !important; + } + + .xl\:focus-within\:text-yellow-100:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(254, 243, 199, var(--tw-text-opacity)) !important; + } + + .xl\:focus-within\:text-yellow-200:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(253, 230, 138, var(--tw-text-opacity)) !important; + } + + .xl\:focus-within\:text-yellow-300:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(252, 211, 77, var(--tw-text-opacity)) !important; + } + + .xl\:focus-within\:text-yellow-400:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(251, 191, 36, var(--tw-text-opacity)) !important; + } + + .xl\:focus-within\:text-yellow-500:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(245, 158, 11, var(--tw-text-opacity)) !important; + } + + .xl\:focus-within\:text-yellow-600:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(217, 119, 6, var(--tw-text-opacity)) !important; + } + + .xl\:focus-within\:text-yellow-700:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(180, 83, 9, var(--tw-text-opacity)) !important; + } + + .xl\:focus-within\:text-yellow-800:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(146, 64, 14, var(--tw-text-opacity)) !important; + } + + .xl\:focus-within\:text-yellow-900:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(120, 53, 15, var(--tw-text-opacity)) !important; + } + + .xl\:focus-within\:text-green-50:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(236, 253, 245, var(--tw-text-opacity)) !important; + } + + .xl\:focus-within\:text-green-100:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(209, 250, 229, var(--tw-text-opacity)) !important; + } + + .xl\:focus-within\:text-green-200:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(167, 243, 208, var(--tw-text-opacity)) !important; + } + + .xl\:focus-within\:text-green-300:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(110, 231, 183, var(--tw-text-opacity)) !important; + } + + .xl\:focus-within\:text-green-400:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(52, 211, 153, var(--tw-text-opacity)) !important; + } + + .xl\:focus-within\:text-green-500:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(16, 185, 129, var(--tw-text-opacity)) !important; + } + + .xl\:focus-within\:text-green-600:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(5, 150, 105, var(--tw-text-opacity)) !important; + } + + .xl\:focus-within\:text-green-700:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(4, 120, 87, var(--tw-text-opacity)) !important; + } + + .xl\:focus-within\:text-green-800:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(6, 95, 70, var(--tw-text-opacity)) !important; + } + + .xl\:focus-within\:text-green-900:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(6, 78, 59, var(--tw-text-opacity)) !important; + } + + .xl\:focus-within\:text-blue-50:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(239, 246, 255, var(--tw-text-opacity)) !important; + } + + .xl\:focus-within\:text-blue-100:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(219, 234, 254, var(--tw-text-opacity)) !important; + } + + .xl\:focus-within\:text-blue-200:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(191, 219, 254, var(--tw-text-opacity)) !important; + } + + .xl\:focus-within\:text-blue-300:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(147, 197, 253, var(--tw-text-opacity)) !important; + } + + .xl\:focus-within\:text-blue-400:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(96, 165, 250, var(--tw-text-opacity)) !important; + } + + .xl\:focus-within\:text-blue-500:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(59, 130, 246, var(--tw-text-opacity)) !important; + } + + .xl\:focus-within\:text-blue-600:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(37, 99, 235, var(--tw-text-opacity)) !important; + } + + .xl\:focus-within\:text-blue-700:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(29, 78, 216, var(--tw-text-opacity)) !important; + } + + .xl\:focus-within\:text-blue-800:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(30, 64, 175, var(--tw-text-opacity)) !important; + } + + .xl\:focus-within\:text-blue-900:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(30, 58, 138, var(--tw-text-opacity)) !important; + } + + .xl\:focus-within\:text-indigo-50:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(238, 242, 255, var(--tw-text-opacity)) !important; + } + + .xl\:focus-within\:text-indigo-100:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(224, 231, 255, var(--tw-text-opacity)) !important; + } + + .xl\:focus-within\:text-indigo-200:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(199, 210, 254, var(--tw-text-opacity)) !important; + } + + .xl\:focus-within\:text-indigo-300:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(165, 180, 252, var(--tw-text-opacity)) !important; + } + + .xl\:focus-within\:text-indigo-400:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(129, 140, 248, var(--tw-text-opacity)) !important; + } + + .xl\:focus-within\:text-indigo-500:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(99, 102, 241, var(--tw-text-opacity)) !important; + } + + .xl\:focus-within\:text-indigo-600:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(79, 70, 229, var(--tw-text-opacity)) !important; + } + + .xl\:focus-within\:text-indigo-700:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(67, 56, 202, var(--tw-text-opacity)) !important; + } + + .xl\:focus-within\:text-indigo-800:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(55, 48, 163, var(--tw-text-opacity)) !important; + } + + .xl\:focus-within\:text-indigo-900:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(49, 46, 129, var(--tw-text-opacity)) !important; + } + + .xl\:focus-within\:text-purple-50:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(245, 243, 255, var(--tw-text-opacity)) !important; + } + + .xl\:focus-within\:text-purple-100:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(237, 233, 254, var(--tw-text-opacity)) !important; + } + + .xl\:focus-within\:text-purple-200:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(221, 214, 254, var(--tw-text-opacity)) !important; + } + + .xl\:focus-within\:text-purple-300:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(196, 181, 253, var(--tw-text-opacity)) !important; + } + + .xl\:focus-within\:text-purple-400:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(167, 139, 250, var(--tw-text-opacity)) !important; + } + + .xl\:focus-within\:text-purple-500:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(139, 92, 246, var(--tw-text-opacity)) !important; + } + + .xl\:focus-within\:text-purple-600:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(124, 58, 237, var(--tw-text-opacity)) !important; + } + + .xl\:focus-within\:text-purple-700:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(109, 40, 217, var(--tw-text-opacity)) !important; + } + + .xl\:focus-within\:text-purple-800:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(91, 33, 182, var(--tw-text-opacity)) !important; + } + + .xl\:focus-within\:text-purple-900:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(76, 29, 149, var(--tw-text-opacity)) !important; + } + + .xl\:focus-within\:text-pink-50:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(253, 242, 248, var(--tw-text-opacity)) !important; + } + + .xl\:focus-within\:text-pink-100:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(252, 231, 243, var(--tw-text-opacity)) !important; + } + + .xl\:focus-within\:text-pink-200:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(251, 207, 232, var(--tw-text-opacity)) !important; + } + + .xl\:focus-within\:text-pink-300:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(249, 168, 212, var(--tw-text-opacity)) !important; + } + + .xl\:focus-within\:text-pink-400:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(244, 114, 182, var(--tw-text-opacity)) !important; + } + + .xl\:focus-within\:text-pink-500:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(236, 72, 153, var(--tw-text-opacity)) !important; + } + + .xl\:focus-within\:text-pink-600:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(219, 39, 119, var(--tw-text-opacity)) !important; + } + + .xl\:focus-within\:text-pink-700:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(190, 24, 93, var(--tw-text-opacity)) !important; + } + + .xl\:focus-within\:text-pink-800:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(157, 23, 77, var(--tw-text-opacity)) !important; + } + + .xl\:focus-within\:text-pink-900:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(131, 24, 67, var(--tw-text-opacity)) !important; + } + + .xl\:focus-within\:text-primary:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(0, 49, 151, var(--tw-text-opacity)) !important; + } + + .xl\:hover\:text-transparent:hover { + color: transparent !important; + } + + .xl\:hover\:text-current:hover { + color: currentColor !important; + } + + .xl\:hover\:text-black:hover { + --tw-text-opacity: 1 !important; + color: rgba(0, 0, 0, var(--tw-text-opacity)) !important; + } + + .xl\:hover\:text-white:hover { + --tw-text-opacity: 1 !important; + color: rgba(255, 255, 255, var(--tw-text-opacity)) !important; + } + + .xl\:hover\:text-gray-50:hover { + --tw-text-opacity: 1 !important; + color: rgba(249, 250, 251, var(--tw-text-opacity)) !important; + } + + .xl\:hover\:text-gray-100:hover { + --tw-text-opacity: 1 !important; + color: rgba(243, 244, 246, var(--tw-text-opacity)) !important; + } + + .xl\:hover\:text-gray-200:hover { + --tw-text-opacity: 1 !important; + color: rgba(229, 231, 235, var(--tw-text-opacity)) !important; + } + + .xl\:hover\:text-gray-300:hover { + --tw-text-opacity: 1 !important; + color: rgba(209, 213, 219, var(--tw-text-opacity)) !important; + } + + .xl\:hover\:text-gray-400:hover { + --tw-text-opacity: 1 !important; + color: rgba(156, 163, 175, var(--tw-text-opacity)) !important; + } + + .xl\:hover\:text-gray-500:hover { + --tw-text-opacity: 1 !important; + color: rgba(107, 114, 128, var(--tw-text-opacity)) !important; + } + + .xl\:hover\:text-gray-600:hover { + --tw-text-opacity: 1 !important; + color: rgba(75, 85, 99, var(--tw-text-opacity)) !important; + } + + .xl\:hover\:text-gray-700:hover { + --tw-text-opacity: 1 !important; + color: rgba(55, 65, 81, var(--tw-text-opacity)) !important; + } + + .xl\:hover\:text-gray-800:hover { + --tw-text-opacity: 1 !important; + color: rgba(31, 41, 55, var(--tw-text-opacity)) !important; + } + + .xl\:hover\:text-gray-900:hover { + --tw-text-opacity: 1 !important; + color: rgba(17, 24, 39, var(--tw-text-opacity)) !important; + } + + .xl\:hover\:text-red-50:hover { + --tw-text-opacity: 1 !important; + color: rgba(254, 242, 242, var(--tw-text-opacity)) !important; + } + + .xl\:hover\:text-red-100:hover { + --tw-text-opacity: 1 !important; + color: rgba(254, 226, 226, var(--tw-text-opacity)) !important; + } + + .xl\:hover\:text-red-200:hover { + --tw-text-opacity: 1 !important; + color: rgba(254, 202, 202, var(--tw-text-opacity)) !important; + } + + .xl\:hover\:text-red-300:hover { + --tw-text-opacity: 1 !important; + color: rgba(252, 165, 165, var(--tw-text-opacity)) !important; + } + + .xl\:hover\:text-red-400:hover { + --tw-text-opacity: 1 !important; + color: rgba(248, 113, 113, var(--tw-text-opacity)) !important; + } + + .xl\:hover\:text-red-500:hover { + --tw-text-opacity: 1 !important; + color: rgba(239, 68, 68, var(--tw-text-opacity)) !important; + } + + .xl\:hover\:text-red-600:hover { + --tw-text-opacity: 1 !important; + color: rgba(220, 38, 38, var(--tw-text-opacity)) !important; + } + + .xl\:hover\:text-red-700:hover { + --tw-text-opacity: 1 !important; + color: rgba(185, 28, 28, var(--tw-text-opacity)) !important; + } + + .xl\:hover\:text-red-800:hover { + --tw-text-opacity: 1 !important; + color: rgba(153, 27, 27, var(--tw-text-opacity)) !important; + } + + .xl\:hover\:text-red-900:hover { + --tw-text-opacity: 1 !important; + color: rgba(127, 29, 29, var(--tw-text-opacity)) !important; + } + + .xl\:hover\:text-yellow-50:hover { + --tw-text-opacity: 1 !important; + color: rgba(255, 251, 235, var(--tw-text-opacity)) !important; + } + + .xl\:hover\:text-yellow-100:hover { + --tw-text-opacity: 1 !important; + color: rgba(254, 243, 199, var(--tw-text-opacity)) !important; + } + + .xl\:hover\:text-yellow-200:hover { + --tw-text-opacity: 1 !important; + color: rgba(253, 230, 138, var(--tw-text-opacity)) !important; + } + + .xl\:hover\:text-yellow-300:hover { + --tw-text-opacity: 1 !important; + color: rgba(252, 211, 77, var(--tw-text-opacity)) !important; + } + + .xl\:hover\:text-yellow-400:hover { + --tw-text-opacity: 1 !important; + color: rgba(251, 191, 36, var(--tw-text-opacity)) !important; + } + + .xl\:hover\:text-yellow-500:hover { + --tw-text-opacity: 1 !important; + color: rgba(245, 158, 11, var(--tw-text-opacity)) !important; + } + + .xl\:hover\:text-yellow-600:hover { + --tw-text-opacity: 1 !important; + color: rgba(217, 119, 6, var(--tw-text-opacity)) !important; + } + + .xl\:hover\:text-yellow-700:hover { + --tw-text-opacity: 1 !important; + color: rgba(180, 83, 9, var(--tw-text-opacity)) !important; + } + + .xl\:hover\:text-yellow-800:hover { + --tw-text-opacity: 1 !important; + color: rgba(146, 64, 14, var(--tw-text-opacity)) !important; + } + + .xl\:hover\:text-yellow-900:hover { + --tw-text-opacity: 1 !important; + color: rgba(120, 53, 15, var(--tw-text-opacity)) !important; + } + + .xl\:hover\:text-green-50:hover { + --tw-text-opacity: 1 !important; + color: rgba(236, 253, 245, var(--tw-text-opacity)) !important; + } + + .xl\:hover\:text-green-100:hover { + --tw-text-opacity: 1 !important; + color: rgba(209, 250, 229, var(--tw-text-opacity)) !important; + } + + .xl\:hover\:text-green-200:hover { + --tw-text-opacity: 1 !important; + color: rgba(167, 243, 208, var(--tw-text-opacity)) !important; + } + + .xl\:hover\:text-green-300:hover { + --tw-text-opacity: 1 !important; + color: rgba(110, 231, 183, var(--tw-text-opacity)) !important; + } + + .xl\:hover\:text-green-400:hover { + --tw-text-opacity: 1 !important; + color: rgba(52, 211, 153, var(--tw-text-opacity)) !important; + } + + .xl\:hover\:text-green-500:hover { + --tw-text-opacity: 1 !important; + color: rgba(16, 185, 129, var(--tw-text-opacity)) !important; + } + + .xl\:hover\:text-green-600:hover { + --tw-text-opacity: 1 !important; + color: rgba(5, 150, 105, var(--tw-text-opacity)) !important; + } + + .xl\:hover\:text-green-700:hover { + --tw-text-opacity: 1 !important; + color: rgba(4, 120, 87, var(--tw-text-opacity)) !important; + } + + .xl\:hover\:text-green-800:hover { + --tw-text-opacity: 1 !important; + color: rgba(6, 95, 70, var(--tw-text-opacity)) !important; + } + + .xl\:hover\:text-green-900:hover { + --tw-text-opacity: 1 !important; + color: rgba(6, 78, 59, var(--tw-text-opacity)) !important; + } + + .xl\:hover\:text-blue-50:hover { + --tw-text-opacity: 1 !important; + color: rgba(239, 246, 255, var(--tw-text-opacity)) !important; + } + + .xl\:hover\:text-blue-100:hover { + --tw-text-opacity: 1 !important; + color: rgba(219, 234, 254, var(--tw-text-opacity)) !important; + } + + .xl\:hover\:text-blue-200:hover { + --tw-text-opacity: 1 !important; + color: rgba(191, 219, 254, var(--tw-text-opacity)) !important; + } + + .xl\:hover\:text-blue-300:hover { + --tw-text-opacity: 1 !important; + color: rgba(147, 197, 253, var(--tw-text-opacity)) !important; + } + + .xl\:hover\:text-blue-400:hover { + --tw-text-opacity: 1 !important; + color: rgba(96, 165, 250, var(--tw-text-opacity)) !important; + } + + .xl\:hover\:text-blue-500:hover { + --tw-text-opacity: 1 !important; + color: rgba(59, 130, 246, var(--tw-text-opacity)) !important; + } + + .xl\:hover\:text-blue-600:hover { + --tw-text-opacity: 1 !important; + color: rgba(37, 99, 235, var(--tw-text-opacity)) !important; + } + + .xl\:hover\:text-blue-700:hover { + --tw-text-opacity: 1 !important; + color: rgba(29, 78, 216, var(--tw-text-opacity)) !important; + } + + .xl\:hover\:text-blue-800:hover { + --tw-text-opacity: 1 !important; + color: rgba(30, 64, 175, var(--tw-text-opacity)) !important; + } + + .xl\:hover\:text-blue-900:hover { + --tw-text-opacity: 1 !important; + color: rgba(30, 58, 138, var(--tw-text-opacity)) !important; + } + + .xl\:hover\:text-indigo-50:hover { + --tw-text-opacity: 1 !important; + color: rgba(238, 242, 255, var(--tw-text-opacity)) !important; + } + + .xl\:hover\:text-indigo-100:hover { + --tw-text-opacity: 1 !important; + color: rgba(224, 231, 255, var(--tw-text-opacity)) !important; + } + + .xl\:hover\:text-indigo-200:hover { + --tw-text-opacity: 1 !important; + color: rgba(199, 210, 254, var(--tw-text-opacity)) !important; + } + + .xl\:hover\:text-indigo-300:hover { + --tw-text-opacity: 1 !important; + color: rgba(165, 180, 252, var(--tw-text-opacity)) !important; + } + + .xl\:hover\:text-indigo-400:hover { + --tw-text-opacity: 1 !important; + color: rgba(129, 140, 248, var(--tw-text-opacity)) !important; + } + + .xl\:hover\:text-indigo-500:hover { + --tw-text-opacity: 1 !important; + color: rgba(99, 102, 241, var(--tw-text-opacity)) !important; + } + + .xl\:hover\:text-indigo-600:hover { + --tw-text-opacity: 1 !important; + color: rgba(79, 70, 229, var(--tw-text-opacity)) !important; + } + + .xl\:hover\:text-indigo-700:hover { + --tw-text-opacity: 1 !important; + color: rgba(67, 56, 202, var(--tw-text-opacity)) !important; + } + + .xl\:hover\:text-indigo-800:hover { + --tw-text-opacity: 1 !important; + color: rgba(55, 48, 163, var(--tw-text-opacity)) !important; + } + + .xl\:hover\:text-indigo-900:hover { + --tw-text-opacity: 1 !important; + color: rgba(49, 46, 129, var(--tw-text-opacity)) !important; + } + + .xl\:hover\:text-purple-50:hover { + --tw-text-opacity: 1 !important; + color: rgba(245, 243, 255, var(--tw-text-opacity)) !important; + } + + .xl\:hover\:text-purple-100:hover { + --tw-text-opacity: 1 !important; + color: rgba(237, 233, 254, var(--tw-text-opacity)) !important; + } + + .xl\:hover\:text-purple-200:hover { + --tw-text-opacity: 1 !important; + color: rgba(221, 214, 254, var(--tw-text-opacity)) !important; + } + + .xl\:hover\:text-purple-300:hover { + --tw-text-opacity: 1 !important; + color: rgba(196, 181, 253, var(--tw-text-opacity)) !important; + } + + .xl\:hover\:text-purple-400:hover { + --tw-text-opacity: 1 !important; + color: rgba(167, 139, 250, var(--tw-text-opacity)) !important; + } + + .xl\:hover\:text-purple-500:hover { + --tw-text-opacity: 1 !important; + color: rgba(139, 92, 246, var(--tw-text-opacity)) !important; + } + + .xl\:hover\:text-purple-600:hover { + --tw-text-opacity: 1 !important; + color: rgba(124, 58, 237, var(--tw-text-opacity)) !important; + } + + .xl\:hover\:text-purple-700:hover { + --tw-text-opacity: 1 !important; + color: rgba(109, 40, 217, var(--tw-text-opacity)) !important; + } + + .xl\:hover\:text-purple-800:hover { + --tw-text-opacity: 1 !important; + color: rgba(91, 33, 182, var(--tw-text-opacity)) !important; + } + + .xl\:hover\:text-purple-900:hover { + --tw-text-opacity: 1 !important; + color: rgba(76, 29, 149, var(--tw-text-opacity)) !important; + } + + .xl\:hover\:text-pink-50:hover { + --tw-text-opacity: 1 !important; + color: rgba(253, 242, 248, var(--tw-text-opacity)) !important; + } + + .xl\:hover\:text-pink-100:hover { + --tw-text-opacity: 1 !important; + color: rgba(252, 231, 243, var(--tw-text-opacity)) !important; + } + + .xl\:hover\:text-pink-200:hover { + --tw-text-opacity: 1 !important; + color: rgba(251, 207, 232, var(--tw-text-opacity)) !important; + } + + .xl\:hover\:text-pink-300:hover { + --tw-text-opacity: 1 !important; + color: rgba(249, 168, 212, var(--tw-text-opacity)) !important; + } + + .xl\:hover\:text-pink-400:hover { + --tw-text-opacity: 1 !important; + color: rgba(244, 114, 182, var(--tw-text-opacity)) !important; + } + + .xl\:hover\:text-pink-500:hover { + --tw-text-opacity: 1 !important; + color: rgba(236, 72, 153, var(--tw-text-opacity)) !important; + } + + .xl\:hover\:text-pink-600:hover { + --tw-text-opacity: 1 !important; + color: rgba(219, 39, 119, var(--tw-text-opacity)) !important; + } + + .xl\:hover\:text-pink-700:hover { + --tw-text-opacity: 1 !important; + color: rgba(190, 24, 93, var(--tw-text-opacity)) !important; + } + + .xl\:hover\:text-pink-800:hover { + --tw-text-opacity: 1 !important; + color: rgba(157, 23, 77, var(--tw-text-opacity)) !important; + } + + .xl\:hover\:text-pink-900:hover { + --tw-text-opacity: 1 !important; + color: rgba(131, 24, 67, var(--tw-text-opacity)) !important; + } + + .xl\:hover\:text-primary:hover { + --tw-text-opacity: 1 !important; + color: rgba(0, 49, 151, var(--tw-text-opacity)) !important; + } + + .xl\:focus\:text-transparent:focus { + color: transparent !important; + } + + .xl\:focus\:text-current:focus { + color: currentColor !important; + } + + .xl\:focus\:text-black:focus { + --tw-text-opacity: 1 !important; + color: rgba(0, 0, 0, var(--tw-text-opacity)) !important; + } + + .xl\:focus\:text-white:focus { + --tw-text-opacity: 1 !important; + color: rgba(255, 255, 255, var(--tw-text-opacity)) !important; + } + + .xl\:focus\:text-gray-50:focus { + --tw-text-opacity: 1 !important; + color: rgba(249, 250, 251, var(--tw-text-opacity)) !important; + } + + .xl\:focus\:text-gray-100:focus { + --tw-text-opacity: 1 !important; + color: rgba(243, 244, 246, var(--tw-text-opacity)) !important; + } + + .xl\:focus\:text-gray-200:focus { + --tw-text-opacity: 1 !important; + color: rgba(229, 231, 235, var(--tw-text-opacity)) !important; + } + + .xl\:focus\:text-gray-300:focus { + --tw-text-opacity: 1 !important; + color: rgba(209, 213, 219, var(--tw-text-opacity)) !important; + } + + .xl\:focus\:text-gray-400:focus { + --tw-text-opacity: 1 !important; + color: rgba(156, 163, 175, var(--tw-text-opacity)) !important; + } + + .xl\:focus\:text-gray-500:focus { + --tw-text-opacity: 1 !important; + color: rgba(107, 114, 128, var(--tw-text-opacity)) !important; + } + + .xl\:focus\:text-gray-600:focus { + --tw-text-opacity: 1 !important; + color: rgba(75, 85, 99, var(--tw-text-opacity)) !important; + } + + .xl\:focus\:text-gray-700:focus { + --tw-text-opacity: 1 !important; + color: rgba(55, 65, 81, var(--tw-text-opacity)) !important; + } + + .xl\:focus\:text-gray-800:focus { + --tw-text-opacity: 1 !important; + color: rgba(31, 41, 55, var(--tw-text-opacity)) !important; + } + + .xl\:focus\:text-gray-900:focus { + --tw-text-opacity: 1 !important; + color: rgba(17, 24, 39, var(--tw-text-opacity)) !important; + } + + .xl\:focus\:text-red-50:focus { + --tw-text-opacity: 1 !important; + color: rgba(254, 242, 242, var(--tw-text-opacity)) !important; + } + + .xl\:focus\:text-red-100:focus { + --tw-text-opacity: 1 !important; + color: rgba(254, 226, 226, var(--tw-text-opacity)) !important; + } + + .xl\:focus\:text-red-200:focus { + --tw-text-opacity: 1 !important; + color: rgba(254, 202, 202, var(--tw-text-opacity)) !important; + } + + .xl\:focus\:text-red-300:focus { + --tw-text-opacity: 1 !important; + color: rgba(252, 165, 165, var(--tw-text-opacity)) !important; + } + + .xl\:focus\:text-red-400:focus { + --tw-text-opacity: 1 !important; + color: rgba(248, 113, 113, var(--tw-text-opacity)) !important; + } + + .xl\:focus\:text-red-500:focus { + --tw-text-opacity: 1 !important; + color: rgba(239, 68, 68, var(--tw-text-opacity)) !important; + } + + .xl\:focus\:text-red-600:focus { + --tw-text-opacity: 1 !important; + color: rgba(220, 38, 38, var(--tw-text-opacity)) !important; + } + + .xl\:focus\:text-red-700:focus { + --tw-text-opacity: 1 !important; + color: rgba(185, 28, 28, var(--tw-text-opacity)) !important; + } + + .xl\:focus\:text-red-800:focus { + --tw-text-opacity: 1 !important; + color: rgba(153, 27, 27, var(--tw-text-opacity)) !important; + } + + .xl\:focus\:text-red-900:focus { + --tw-text-opacity: 1 !important; + color: rgba(127, 29, 29, var(--tw-text-opacity)) !important; + } + + .xl\:focus\:text-yellow-50:focus { + --tw-text-opacity: 1 !important; + color: rgba(255, 251, 235, var(--tw-text-opacity)) !important; + } + + .xl\:focus\:text-yellow-100:focus { + --tw-text-opacity: 1 !important; + color: rgba(254, 243, 199, var(--tw-text-opacity)) !important; + } + + .xl\:focus\:text-yellow-200:focus { + --tw-text-opacity: 1 !important; + color: rgba(253, 230, 138, var(--tw-text-opacity)) !important; + } + + .xl\:focus\:text-yellow-300:focus { + --tw-text-opacity: 1 !important; + color: rgba(252, 211, 77, var(--tw-text-opacity)) !important; + } + + .xl\:focus\:text-yellow-400:focus { + --tw-text-opacity: 1 !important; + color: rgba(251, 191, 36, var(--tw-text-opacity)) !important; + } + + .xl\:focus\:text-yellow-500:focus { + --tw-text-opacity: 1 !important; + color: rgba(245, 158, 11, var(--tw-text-opacity)) !important; + } + + .xl\:focus\:text-yellow-600:focus { + --tw-text-opacity: 1 !important; + color: rgba(217, 119, 6, var(--tw-text-opacity)) !important; + } + + .xl\:focus\:text-yellow-700:focus { + --tw-text-opacity: 1 !important; + color: rgba(180, 83, 9, var(--tw-text-opacity)) !important; + } + + .xl\:focus\:text-yellow-800:focus { + --tw-text-opacity: 1 !important; + color: rgba(146, 64, 14, var(--tw-text-opacity)) !important; + } + + .xl\:focus\:text-yellow-900:focus { + --tw-text-opacity: 1 !important; + color: rgba(120, 53, 15, var(--tw-text-opacity)) !important; + } + + .xl\:focus\:text-green-50:focus { + --tw-text-opacity: 1 !important; + color: rgba(236, 253, 245, var(--tw-text-opacity)) !important; + } + + .xl\:focus\:text-green-100:focus { + --tw-text-opacity: 1 !important; + color: rgba(209, 250, 229, var(--tw-text-opacity)) !important; + } + + .xl\:focus\:text-green-200:focus { + --tw-text-opacity: 1 !important; + color: rgba(167, 243, 208, var(--tw-text-opacity)) !important; + } + + .xl\:focus\:text-green-300:focus { + --tw-text-opacity: 1 !important; + color: rgba(110, 231, 183, var(--tw-text-opacity)) !important; + } + + .xl\:focus\:text-green-400:focus { + --tw-text-opacity: 1 !important; + color: rgba(52, 211, 153, var(--tw-text-opacity)) !important; + } + + .xl\:focus\:text-green-500:focus { + --tw-text-opacity: 1 !important; + color: rgba(16, 185, 129, var(--tw-text-opacity)) !important; + } + + .xl\:focus\:text-green-600:focus { + --tw-text-opacity: 1 !important; + color: rgba(5, 150, 105, var(--tw-text-opacity)) !important; + } + + .xl\:focus\:text-green-700:focus { + --tw-text-opacity: 1 !important; + color: rgba(4, 120, 87, var(--tw-text-opacity)) !important; + } + + .xl\:focus\:text-green-800:focus { + --tw-text-opacity: 1 !important; + color: rgba(6, 95, 70, var(--tw-text-opacity)) !important; + } + + .xl\:focus\:text-green-900:focus { + --tw-text-opacity: 1 !important; + color: rgba(6, 78, 59, var(--tw-text-opacity)) !important; + } + + .xl\:focus\:text-blue-50:focus { + --tw-text-opacity: 1 !important; + color: rgba(239, 246, 255, var(--tw-text-opacity)) !important; + } + + .xl\:focus\:text-blue-100:focus { + --tw-text-opacity: 1 !important; + color: rgba(219, 234, 254, var(--tw-text-opacity)) !important; + } + + .xl\:focus\:text-blue-200:focus { + --tw-text-opacity: 1 !important; + color: rgba(191, 219, 254, var(--tw-text-opacity)) !important; + } + + .xl\:focus\:text-blue-300:focus { + --tw-text-opacity: 1 !important; + color: rgba(147, 197, 253, var(--tw-text-opacity)) !important; + } + + .xl\:focus\:text-blue-400:focus { + --tw-text-opacity: 1 !important; + color: rgba(96, 165, 250, var(--tw-text-opacity)) !important; + } + + .xl\:focus\:text-blue-500:focus { + --tw-text-opacity: 1 !important; + color: rgba(59, 130, 246, var(--tw-text-opacity)) !important; + } + + .xl\:focus\:text-blue-600:focus { + --tw-text-opacity: 1 !important; + color: rgba(37, 99, 235, var(--tw-text-opacity)) !important; + } + + .xl\:focus\:text-blue-700:focus { + --tw-text-opacity: 1 !important; + color: rgba(29, 78, 216, var(--tw-text-opacity)) !important; + } + + .xl\:focus\:text-blue-800:focus { + --tw-text-opacity: 1 !important; + color: rgba(30, 64, 175, var(--tw-text-opacity)) !important; + } + + .xl\:focus\:text-blue-900:focus { + --tw-text-opacity: 1 !important; + color: rgba(30, 58, 138, var(--tw-text-opacity)) !important; + } + + .xl\:focus\:text-indigo-50:focus { + --tw-text-opacity: 1 !important; + color: rgba(238, 242, 255, var(--tw-text-opacity)) !important; + } + + .xl\:focus\:text-indigo-100:focus { + --tw-text-opacity: 1 !important; + color: rgba(224, 231, 255, var(--tw-text-opacity)) !important; + } + + .xl\:focus\:text-indigo-200:focus { + --tw-text-opacity: 1 !important; + color: rgba(199, 210, 254, var(--tw-text-opacity)) !important; + } + + .xl\:focus\:text-indigo-300:focus { + --tw-text-opacity: 1 !important; + color: rgba(165, 180, 252, var(--tw-text-opacity)) !important; + } + + .xl\:focus\:text-indigo-400:focus { + --tw-text-opacity: 1 !important; + color: rgba(129, 140, 248, var(--tw-text-opacity)) !important; + } + + .xl\:focus\:text-indigo-500:focus { + --tw-text-opacity: 1 !important; + color: rgba(99, 102, 241, var(--tw-text-opacity)) !important; + } + + .xl\:focus\:text-indigo-600:focus { + --tw-text-opacity: 1 !important; + color: rgba(79, 70, 229, var(--tw-text-opacity)) !important; + } + + .xl\:focus\:text-indigo-700:focus { + --tw-text-opacity: 1 !important; + color: rgba(67, 56, 202, var(--tw-text-opacity)) !important; + } + + .xl\:focus\:text-indigo-800:focus { + --tw-text-opacity: 1 !important; + color: rgba(55, 48, 163, var(--tw-text-opacity)) !important; + } + + .xl\:focus\:text-indigo-900:focus { + --tw-text-opacity: 1 !important; + color: rgba(49, 46, 129, var(--tw-text-opacity)) !important; + } + + .xl\:focus\:text-purple-50:focus { + --tw-text-opacity: 1 !important; + color: rgba(245, 243, 255, var(--tw-text-opacity)) !important; + } + + .xl\:focus\:text-purple-100:focus { + --tw-text-opacity: 1 !important; + color: rgba(237, 233, 254, var(--tw-text-opacity)) !important; + } + + .xl\:focus\:text-purple-200:focus { + --tw-text-opacity: 1 !important; + color: rgba(221, 214, 254, var(--tw-text-opacity)) !important; + } + + .xl\:focus\:text-purple-300:focus { + --tw-text-opacity: 1 !important; + color: rgba(196, 181, 253, var(--tw-text-opacity)) !important; + } + + .xl\:focus\:text-purple-400:focus { + --tw-text-opacity: 1 !important; + color: rgba(167, 139, 250, var(--tw-text-opacity)) !important; + } + + .xl\:focus\:text-purple-500:focus { + --tw-text-opacity: 1 !important; + color: rgba(139, 92, 246, var(--tw-text-opacity)) !important; + } + + .xl\:focus\:text-purple-600:focus { + --tw-text-opacity: 1 !important; + color: rgba(124, 58, 237, var(--tw-text-opacity)) !important; + } + + .xl\:focus\:text-purple-700:focus { + --tw-text-opacity: 1 !important; + color: rgba(109, 40, 217, var(--tw-text-opacity)) !important; + } + + .xl\:focus\:text-purple-800:focus { + --tw-text-opacity: 1 !important; + color: rgba(91, 33, 182, var(--tw-text-opacity)) !important; + } + + .xl\:focus\:text-purple-900:focus { + --tw-text-opacity: 1 !important; + color: rgba(76, 29, 149, var(--tw-text-opacity)) !important; + } + + .xl\:focus\:text-pink-50:focus { + --tw-text-opacity: 1 !important; + color: rgba(253, 242, 248, var(--tw-text-opacity)) !important; + } + + .xl\:focus\:text-pink-100:focus { + --tw-text-opacity: 1 !important; + color: rgba(252, 231, 243, var(--tw-text-opacity)) !important; + } + + .xl\:focus\:text-pink-200:focus { + --tw-text-opacity: 1 !important; + color: rgba(251, 207, 232, var(--tw-text-opacity)) !important; + } + + .xl\:focus\:text-pink-300:focus { + --tw-text-opacity: 1 !important; + color: rgba(249, 168, 212, var(--tw-text-opacity)) !important; + } + + .xl\:focus\:text-pink-400:focus { + --tw-text-opacity: 1 !important; + color: rgba(244, 114, 182, var(--tw-text-opacity)) !important; + } + + .xl\:focus\:text-pink-500:focus { + --tw-text-opacity: 1 !important; + color: rgba(236, 72, 153, var(--tw-text-opacity)) !important; + } + + .xl\:focus\:text-pink-600:focus { + --tw-text-opacity: 1 !important; + color: rgba(219, 39, 119, var(--tw-text-opacity)) !important; + } + + .xl\:focus\:text-pink-700:focus { + --tw-text-opacity: 1 !important; + color: rgba(190, 24, 93, var(--tw-text-opacity)) !important; + } + + .xl\:focus\:text-pink-800:focus { + --tw-text-opacity: 1 !important; + color: rgba(157, 23, 77, var(--tw-text-opacity)) !important; + } + + .xl\:focus\:text-pink-900:focus { + --tw-text-opacity: 1 !important; + color: rgba(131, 24, 67, var(--tw-text-opacity)) !important; + } + + .xl\:focus\:text-primary:focus { + --tw-text-opacity: 1 !important; + color: rgba(0, 49, 151, var(--tw-text-opacity)) !important; + } + + .xl\:text-opacity-0 { + --tw-text-opacity: 0 !important; + } + + .xl\:text-opacity-5 { + --tw-text-opacity: 0.05 !important; + } + + .xl\:text-opacity-10 { + --tw-text-opacity: 0.1 !important; + } + + .xl\:text-opacity-20 { + --tw-text-opacity: 0.2 !important; + } + + .xl\:text-opacity-25 { + --tw-text-opacity: 0.25 !important; + } + + .xl\:text-opacity-30 { + --tw-text-opacity: 0.3 !important; + } + + .xl\:text-opacity-40 { + --tw-text-opacity: 0.4 !important; + } + + .xl\:text-opacity-50 { + --tw-text-opacity: 0.5 !important; + } + + .xl\:text-opacity-60 { + --tw-text-opacity: 0.6 !important; + } + + .xl\:text-opacity-70 { + --tw-text-opacity: 0.7 !important; + } + + .xl\:text-opacity-75 { + --tw-text-opacity: 0.75 !important; + } + + .xl\:text-opacity-80 { + --tw-text-opacity: 0.8 !important; + } + + .xl\:text-opacity-90 { + --tw-text-opacity: 0.9 !important; + } + + .xl\:text-opacity-95 { + --tw-text-opacity: 0.95 !important; + } + + .xl\:text-opacity-100 { + --tw-text-opacity: 1 !important; + } + + .group:hover .xl\:group-hover\:text-opacity-0 { + --tw-text-opacity: 0 !important; + } + + .group:hover .xl\:group-hover\:text-opacity-5 { + --tw-text-opacity: 0.05 !important; + } + + .group:hover .xl\:group-hover\:text-opacity-10 { + --tw-text-opacity: 0.1 !important; + } + + .group:hover .xl\:group-hover\:text-opacity-20 { + --tw-text-opacity: 0.2 !important; + } + + .group:hover .xl\:group-hover\:text-opacity-25 { + --tw-text-opacity: 0.25 !important; + } + + .group:hover .xl\:group-hover\:text-opacity-30 { + --tw-text-opacity: 0.3 !important; + } + + .group:hover .xl\:group-hover\:text-opacity-40 { + --tw-text-opacity: 0.4 !important; + } + + .group:hover .xl\:group-hover\:text-opacity-50 { + --tw-text-opacity: 0.5 !important; + } + + .group:hover .xl\:group-hover\:text-opacity-60 { + --tw-text-opacity: 0.6 !important; + } + + .group:hover .xl\:group-hover\:text-opacity-70 { + --tw-text-opacity: 0.7 !important; + } + + .group:hover .xl\:group-hover\:text-opacity-75 { + --tw-text-opacity: 0.75 !important; + } + + .group:hover .xl\:group-hover\:text-opacity-80 { + --tw-text-opacity: 0.8 !important; + } + + .group:hover .xl\:group-hover\:text-opacity-90 { + --tw-text-opacity: 0.9 !important; + } + + .group:hover .xl\:group-hover\:text-opacity-95 { + --tw-text-opacity: 0.95 !important; + } + + .group:hover .xl\:group-hover\:text-opacity-100 { + --tw-text-opacity: 1 !important; + } + + .xl\:focus-within\:text-opacity-0:focus-within { + --tw-text-opacity: 0 !important; + } + + .xl\:focus-within\:text-opacity-5:focus-within { + --tw-text-opacity: 0.05 !important; + } + + .xl\:focus-within\:text-opacity-10:focus-within { + --tw-text-opacity: 0.1 !important; + } + + .xl\:focus-within\:text-opacity-20:focus-within { + --tw-text-opacity: 0.2 !important; + } + + .xl\:focus-within\:text-opacity-25:focus-within { + --tw-text-opacity: 0.25 !important; + } + + .xl\:focus-within\:text-opacity-30:focus-within { + --tw-text-opacity: 0.3 !important; + } + + .xl\:focus-within\:text-opacity-40:focus-within { + --tw-text-opacity: 0.4 !important; + } + + .xl\:focus-within\:text-opacity-50:focus-within { + --tw-text-opacity: 0.5 !important; + } + + .xl\:focus-within\:text-opacity-60:focus-within { + --tw-text-opacity: 0.6 !important; + } + + .xl\:focus-within\:text-opacity-70:focus-within { + --tw-text-opacity: 0.7 !important; + } + + .xl\:focus-within\:text-opacity-75:focus-within { + --tw-text-opacity: 0.75 !important; + } + + .xl\:focus-within\:text-opacity-80:focus-within { + --tw-text-opacity: 0.8 !important; + } + + .xl\:focus-within\:text-opacity-90:focus-within { + --tw-text-opacity: 0.9 !important; + } + + .xl\:focus-within\:text-opacity-95:focus-within { + --tw-text-opacity: 0.95 !important; + } + + .xl\:focus-within\:text-opacity-100:focus-within { + --tw-text-opacity: 1 !important; + } + + .xl\:hover\:text-opacity-0:hover { + --tw-text-opacity: 0 !important; + } + + .xl\:hover\:text-opacity-5:hover { + --tw-text-opacity: 0.05 !important; + } + + .xl\:hover\:text-opacity-10:hover { + --tw-text-opacity: 0.1 !important; + } + + .xl\:hover\:text-opacity-20:hover { + --tw-text-opacity: 0.2 !important; + } + + .xl\:hover\:text-opacity-25:hover { + --tw-text-opacity: 0.25 !important; + } + + .xl\:hover\:text-opacity-30:hover { + --tw-text-opacity: 0.3 !important; + } + + .xl\:hover\:text-opacity-40:hover { + --tw-text-opacity: 0.4 !important; + } + + .xl\:hover\:text-opacity-50:hover { + --tw-text-opacity: 0.5 !important; + } + + .xl\:hover\:text-opacity-60:hover { + --tw-text-opacity: 0.6 !important; + } + + .xl\:hover\:text-opacity-70:hover { + --tw-text-opacity: 0.7 !important; + } + + .xl\:hover\:text-opacity-75:hover { + --tw-text-opacity: 0.75 !important; + } + + .xl\:hover\:text-opacity-80:hover { + --tw-text-opacity: 0.8 !important; + } + + .xl\:hover\:text-opacity-90:hover { + --tw-text-opacity: 0.9 !important; + } + + .xl\:hover\:text-opacity-95:hover { + --tw-text-opacity: 0.95 !important; + } + + .xl\:hover\:text-opacity-100:hover { + --tw-text-opacity: 1 !important; + } + + .xl\:focus\:text-opacity-0:focus { + --tw-text-opacity: 0 !important; + } + + .xl\:focus\:text-opacity-5:focus { + --tw-text-opacity: 0.05 !important; + } + + .xl\:focus\:text-opacity-10:focus { + --tw-text-opacity: 0.1 !important; + } + + .xl\:focus\:text-opacity-20:focus { + --tw-text-opacity: 0.2 !important; + } + + .xl\:focus\:text-opacity-25:focus { + --tw-text-opacity: 0.25 !important; + } + + .xl\:focus\:text-opacity-30:focus { + --tw-text-opacity: 0.3 !important; + } + + .xl\:focus\:text-opacity-40:focus { + --tw-text-opacity: 0.4 !important; + } + + .xl\:focus\:text-opacity-50:focus { + --tw-text-opacity: 0.5 !important; + } + + .xl\:focus\:text-opacity-60:focus { + --tw-text-opacity: 0.6 !important; + } + + .xl\:focus\:text-opacity-70:focus { + --tw-text-opacity: 0.7 !important; + } + + .xl\:focus\:text-opacity-75:focus { + --tw-text-opacity: 0.75 !important; + } + + .xl\:focus\:text-opacity-80:focus { + --tw-text-opacity: 0.8 !important; + } + + .xl\:focus\:text-opacity-90:focus { + --tw-text-opacity: 0.9 !important; + } + + .xl\:focus\:text-opacity-95:focus { + --tw-text-opacity: 0.95 !important; + } + + .xl\:focus\:text-opacity-100:focus { + --tw-text-opacity: 1 !important; + } + + .xl\:truncate { + overflow: hidden !important; + text-overflow: ellipsis !important; + white-space: nowrap !important; + } + + .xl\:overflow-ellipsis { + text-overflow: ellipsis !important; + } + + .xl\:overflow-clip { + text-overflow: clip !important; + } + + .xl\:italic { + font-style: italic !important; + } + + .xl\:not-italic { + font-style: normal !important; + } + + .xl\:uppercase { + text-transform: uppercase !important; + } + + .xl\:lowercase { + text-transform: lowercase !important; + } + + .xl\:capitalize { + text-transform: capitalize !important; + } + + .xl\:normal-case { + text-transform: none !important; + } + + .xl\:underline { + text-decoration: underline !important; + } + + .xl\:line-through { + text-decoration: line-through !important; + } + + .xl\:no-underline { + text-decoration: none !important; + } + + .group:hover .xl\:group-hover\:underline { + text-decoration: underline !important; + } + + .group:hover .xl\:group-hover\:line-through { + text-decoration: line-through !important; + } + + .group:hover .xl\:group-hover\:no-underline { + text-decoration: none !important; + } + + .xl\:focus-within\:underline:focus-within { + text-decoration: underline !important; + } + + .xl\:focus-within\:line-through:focus-within { + text-decoration: line-through !important; + } + + .xl\:focus-within\:no-underline:focus-within { + text-decoration: none !important; + } + + .xl\:hover\:underline:hover { + text-decoration: underline !important; + } + + .xl\:hover\:line-through:hover { + text-decoration: line-through !important; + } + + .xl\:hover\:no-underline:hover { + text-decoration: none !important; + } + + .xl\:focus\:underline:focus { + text-decoration: underline !important; + } + + .xl\:focus\:line-through:focus { + text-decoration: line-through !important; + } + + .xl\:focus\:no-underline:focus { + text-decoration: none !important; + } + + .xl\:antialiased { + -webkit-font-smoothing: antialiased !important; + -moz-osx-font-smoothing: grayscale !important; + } + + .xl\:subpixel-antialiased { + -webkit-font-smoothing: auto !important; + -moz-osx-font-smoothing: auto !important; + } + + .xl\:ordinal, .xl\:slashed-zero, .xl\:lining-nums, .xl\:oldstyle-nums, .xl\:proportional-nums, .xl\:tabular-nums, .xl\:diagonal-fractions, .xl\:stacked-fractions { + --tw-ordinal: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-slashed-zero: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-numeric-figure: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-numeric-spacing: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-numeric-fraction: var(--tw-empty,/*!*/ /*!*/) !important; + font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction) !important; + } + + .xl\:normal-nums { + font-variant-numeric: normal !important; + } + + .xl\:ordinal { + --tw-ordinal: ordinal !important; + } + + .xl\:slashed-zero { + --tw-slashed-zero: slashed-zero !important; + } + + .xl\:lining-nums { + --tw-numeric-figure: lining-nums !important; + } + + .xl\:oldstyle-nums { + --tw-numeric-figure: oldstyle-nums !important; + } + + .xl\:proportional-nums { + --tw-numeric-spacing: proportional-nums !important; + } + + .xl\:tabular-nums { + --tw-numeric-spacing: tabular-nums !important; + } + + .xl\:diagonal-fractions { + --tw-numeric-fraction: diagonal-fractions !important; + } + + .xl\:stacked-fractions { + --tw-numeric-fraction: stacked-fractions !important; + } + + .xl\:tracking-tighter { + letter-spacing: -0.05em !important; + } + + .xl\:tracking-tight { + letter-spacing: -0.025em !important; + } + + .xl\:tracking-normal { + letter-spacing: 0em !important; + } + + .xl\:tracking-wide { + letter-spacing: 0.025em !important; + } + + .xl\:tracking-wider { + letter-spacing: 0.05em !important; + } + + .xl\:tracking-widest { + letter-spacing: 0.1em !important; + } + + .xl\:select-none { + -webkit-user-select: none !important; + -moz-user-select: none !important; + -ms-user-select: none !important; + user-select: none !important; + } + + .xl\:select-text { + -webkit-user-select: text !important; + -moz-user-select: text !important; + -ms-user-select: text !important; + user-select: text !important; + } + + .xl\:select-all { + -webkit-user-select: all !important; + -moz-user-select: all !important; + user-select: all !important; + } + + .xl\:select-auto { + -webkit-user-select: auto !important; + -moz-user-select: auto !important; + -ms-user-select: auto !important; + user-select: auto !important; + } + + .xl\:align-baseline { + vertical-align: baseline !important; + } + + .xl\:align-top { + vertical-align: top !important; + } + + .xl\:align-middle { + vertical-align: middle !important; + } + + .xl\:align-bottom { + vertical-align: bottom !important; + } + + .xl\:align-text-top { + vertical-align: text-top !important; + } + + .xl\:align-text-bottom { + vertical-align: text-bottom !important; + } + + .xl\:visible { + visibility: visible !important; + } + + .xl\:invisible { + visibility: hidden !important; + } + + .xl\:whitespace-normal { + white-space: normal !important; + } + + .xl\:whitespace-nowrap { + white-space: nowrap !important; + } + + .xl\:whitespace-pre { + white-space: pre !important; + } + + .xl\:whitespace-pre-line { + white-space: pre-line !important; + } + + .xl\:whitespace-pre-wrap { + white-space: pre-wrap !important; + } + + .xl\:break-normal { + overflow-wrap: normal !important; + word-break: normal !important; + } + + .xl\:break-words { + overflow-wrap: break-word !important; + } + + .xl\:break-all { + word-break: break-all !important; + } + + .xl\:w-0 { + width: 0px !important; + } + + .xl\:w-1 { + width: 0.25rem !important; + } + + .xl\:w-2 { + width: 0.5rem !important; + } + + .xl\:w-3 { + width: 0.75rem !important; + } + + .xl\:w-4 { + width: 1rem !important; + } + + .xl\:w-5 { + width: 1.25rem !important; + } + + .xl\:w-6 { + width: 1.5rem !important; + } + + .xl\:w-7 { + width: 1.75rem !important; + } + + .xl\:w-8 { + width: 2rem !important; + } + + .xl\:w-9 { + width: 2.25rem !important; + } + + .xl\:w-10 { + width: 2.5rem !important; + } + + .xl\:w-11 { + width: 2.75rem !important; + } + + .xl\:w-12 { + width: 3rem !important; + } + + .xl\:w-14 { + width: 3.5rem !important; + } + + .xl\:w-16 { + width: 4rem !important; + } + + .xl\:w-20 { + width: 5rem !important; + } + + .xl\:w-24 { + width: 6rem !important; + } + + .xl\:w-28 { + width: 7rem !important; + } + + .xl\:w-32 { + width: 8rem !important; + } + + .xl\:w-36 { + width: 9rem !important; + } + + .xl\:w-40 { + width: 10rem !important; + } + + .xl\:w-44 { + width: 11rem !important; + } + + .xl\:w-48 { + width: 12rem !important; + } + + .xl\:w-52 { + width: 13rem !important; + } + + .xl\:w-56 { + width: 14rem !important; + } + + .xl\:w-60 { + width: 15rem !important; + } + + .xl\:w-64 { + width: 16rem !important; + } + + .xl\:w-72 { + width: 18rem !important; + } + + .xl\:w-80 { + width: 20rem !important; + } + + .xl\:w-96 { + width: 24rem !important; + } + + .xl\:w-auto { + width: auto !important; + } + + .xl\:w-px { + width: 1px !important; + } + + .xl\:w-0\.5 { + width: 0.125rem !important; + } + + .xl\:w-1\.5 { + width: 0.375rem !important; + } + + .xl\:w-2\.5 { + width: 0.625rem !important; + } + + .xl\:w-3\.5 { + width: 0.875rem !important; + } + + .xl\:w-1\/2 { + width: 50% !important; + } + + .xl\:w-1\/3 { + width: 33.333333% !important; + } + + .xl\:w-2\/3 { + width: 66.666667% !important; + } + + .xl\:w-1\/4 { + width: 25% !important; + } + + .xl\:w-2\/4 { + width: 50% !important; + } + + .xl\:w-3\/4 { + width: 75% !important; + } + + .xl\:w-1\/5 { + width: 20% !important; + } + + .xl\:w-2\/5 { + width: 40% !important; + } + + .xl\:w-3\/5 { + width: 60% !important; + } + + .xl\:w-4\/5 { + width: 80% !important; + } + + .xl\:w-1\/6 { + width: 16.666667% !important; + } + + .xl\:w-2\/6 { + width: 33.333333% !important; + } + + .xl\:w-3\/6 { + width: 50% !important; + } + + .xl\:w-4\/6 { + width: 66.666667% !important; + } + + .xl\:w-5\/6 { + width: 83.333333% !important; + } + + .xl\:w-1\/12 { + width: 8.333333% !important; + } + + .xl\:w-2\/12 { + width: 16.666667% !important; + } + + .xl\:w-3\/12 { + width: 25% !important; + } + + .xl\:w-4\/12 { + width: 33.333333% !important; + } + + .xl\:w-5\/12 { + width: 41.666667% !important; + } + + .xl\:w-6\/12 { + width: 50% !important; + } + + .xl\:w-7\/12 { + width: 58.333333% !important; + } + + .xl\:w-8\/12 { + width: 66.666667% !important; + } + + .xl\:w-9\/12 { + width: 75% !important; + } + + .xl\:w-10\/12 { + width: 83.333333% !important; + } + + .xl\:w-11\/12 { + width: 91.666667% !important; + } + + .xl\:w-full { + width: 100% !important; + } + + .xl\:w-screen { + width: 100vw !important; + } + + .xl\:w-min { + width: -webkit-min-content !important; + width: -moz-min-content !important; + width: min-content !important; + } + + .xl\:w-max { + width: -webkit-max-content !important; + width: -moz-max-content !important; + width: max-content !important; + } + + .xl\:z-0 { + z-index: 0 !important; + } + + .xl\:z-10 { + z-index: 10 !important; + } + + .xl\:z-20 { + z-index: 20 !important; + } + + .xl\:z-30 { + z-index: 30 !important; + } + + .xl\:z-40 { + z-index: 40 !important; + } + + .xl\:z-50 { + z-index: 50 !important; + } + + .xl\:z-auto { + z-index: auto !important; + } + + .xl\:focus-within\:z-0:focus-within { + z-index: 0 !important; + } + + .xl\:focus-within\:z-10:focus-within { + z-index: 10 !important; + } + + .xl\:focus-within\:z-20:focus-within { + z-index: 20 !important; + } + + .xl\:focus-within\:z-30:focus-within { + z-index: 30 !important; + } + + .xl\:focus-within\:z-40:focus-within { + z-index: 40 !important; + } + + .xl\:focus-within\:z-50:focus-within { + z-index: 50 !important; + } + + .xl\:focus-within\:z-auto:focus-within { + z-index: auto !important; + } + + .xl\:focus\:z-0:focus { + z-index: 0 !important; + } + + .xl\:focus\:z-10:focus { + z-index: 10 !important; + } + + .xl\:focus\:z-20:focus { + z-index: 20 !important; + } + + .xl\:focus\:z-30:focus { + z-index: 30 !important; + } + + .xl\:focus\:z-40:focus { + z-index: 40 !important; + } + + .xl\:focus\:z-50:focus { + z-index: 50 !important; + } + + .xl\:focus\:z-auto:focus { + z-index: auto !important; + } + + .xl\:isolate { + isolation: isolate !important; + } + + .xl\:isolation-auto { + isolation: auto !important; + } + + .xl\:gap-0 { + gap: 0px !important; + } + + .xl\:gap-1 { + gap: 0.25rem !important; + } + + .xl\:gap-2 { + gap: 0.5rem !important; + } + + .xl\:gap-3 { + gap: 0.75rem !important; + } + + .xl\:gap-4 { + gap: 1rem !important; + } + + .xl\:gap-5 { + gap: 1.25rem !important; + } + + .xl\:gap-6 { + gap: 1.5rem !important; + } + + .xl\:gap-7 { + gap: 1.75rem !important; + } + + .xl\:gap-8 { + gap: 2rem !important; + } + + .xl\:gap-9 { + gap: 2.25rem !important; + } + + .xl\:gap-10 { + gap: 2.5rem !important; + } + + .xl\:gap-11 { + gap: 2.75rem !important; + } + + .xl\:gap-12 { + gap: 3rem !important; + } + + .xl\:gap-14 { + gap: 3.5rem !important; + } + + .xl\:gap-16 { + gap: 4rem !important; + } + + .xl\:gap-20 { + gap: 5rem !important; + } + + .xl\:gap-24 { + gap: 6rem !important; + } + + .xl\:gap-28 { + gap: 7rem !important; + } + + .xl\:gap-32 { + gap: 8rem !important; + } + + .xl\:gap-36 { + gap: 9rem !important; + } + + .xl\:gap-40 { + gap: 10rem !important; + } + + .xl\:gap-44 { + gap: 11rem !important; + } + + .xl\:gap-48 { + gap: 12rem !important; + } + + .xl\:gap-52 { + gap: 13rem !important; + } + + .xl\:gap-56 { + gap: 14rem !important; + } + + .xl\:gap-60 { + gap: 15rem !important; + } + + .xl\:gap-64 { + gap: 16rem !important; + } + + .xl\:gap-72 { + gap: 18rem !important; + } + + .xl\:gap-80 { + gap: 20rem !important; + } + + .xl\:gap-96 { + gap: 24rem !important; + } + + .xl\:gap-px { + gap: 1px !important; + } + + .xl\:gap-0\.5 { + gap: 0.125rem !important; + } + + .xl\:gap-1\.5 { + gap: 0.375rem !important; + } + + .xl\:gap-2\.5 { + gap: 0.625rem !important; + } + + .xl\:gap-3\.5 { + gap: 0.875rem !important; + } + + .xl\:gap-x-0 { + -moz-column-gap: 0px !important; + column-gap: 0px !important; + } + + .xl\:gap-x-1 { + -moz-column-gap: 0.25rem !important; + column-gap: 0.25rem !important; + } + + .xl\:gap-x-2 { + -moz-column-gap: 0.5rem !important; + column-gap: 0.5rem !important; + } + + .xl\:gap-x-3 { + -moz-column-gap: 0.75rem !important; + column-gap: 0.75rem !important; + } + + .xl\:gap-x-4 { + -moz-column-gap: 1rem !important; + column-gap: 1rem !important; + } + + .xl\:gap-x-5 { + -moz-column-gap: 1.25rem !important; + column-gap: 1.25rem !important; + } + + .xl\:gap-x-6 { + -moz-column-gap: 1.5rem !important; + column-gap: 1.5rem !important; + } + + .xl\:gap-x-7 { + -moz-column-gap: 1.75rem !important; + column-gap: 1.75rem !important; + } + + .xl\:gap-x-8 { + -moz-column-gap: 2rem !important; + column-gap: 2rem !important; + } + + .xl\:gap-x-9 { + -moz-column-gap: 2.25rem !important; + column-gap: 2.25rem !important; + } + + .xl\:gap-x-10 { + -moz-column-gap: 2.5rem !important; + column-gap: 2.5rem !important; + } + + .xl\:gap-x-11 { + -moz-column-gap: 2.75rem !important; + column-gap: 2.75rem !important; + } + + .xl\:gap-x-12 { + -moz-column-gap: 3rem !important; + column-gap: 3rem !important; + } + + .xl\:gap-x-14 { + -moz-column-gap: 3.5rem !important; + column-gap: 3.5rem !important; + } + + .xl\:gap-x-16 { + -moz-column-gap: 4rem !important; + column-gap: 4rem !important; + } + + .xl\:gap-x-20 { + -moz-column-gap: 5rem !important; + column-gap: 5rem !important; + } + + .xl\:gap-x-24 { + -moz-column-gap: 6rem !important; + column-gap: 6rem !important; + } + + .xl\:gap-x-28 { + -moz-column-gap: 7rem !important; + column-gap: 7rem !important; + } + + .xl\:gap-x-32 { + -moz-column-gap: 8rem !important; + column-gap: 8rem !important; + } + + .xl\:gap-x-36 { + -moz-column-gap: 9rem !important; + column-gap: 9rem !important; + } + + .xl\:gap-x-40 { + -moz-column-gap: 10rem !important; + column-gap: 10rem !important; + } + + .xl\:gap-x-44 { + -moz-column-gap: 11rem !important; + column-gap: 11rem !important; + } + + .xl\:gap-x-48 { + -moz-column-gap: 12rem !important; + column-gap: 12rem !important; + } + + .xl\:gap-x-52 { + -moz-column-gap: 13rem !important; + column-gap: 13rem !important; + } + + .xl\:gap-x-56 { + -moz-column-gap: 14rem !important; + column-gap: 14rem !important; + } + + .xl\:gap-x-60 { + -moz-column-gap: 15rem !important; + column-gap: 15rem !important; + } + + .xl\:gap-x-64 { + -moz-column-gap: 16rem !important; + column-gap: 16rem !important; + } + + .xl\:gap-x-72 { + -moz-column-gap: 18rem !important; + column-gap: 18rem !important; + } + + .xl\:gap-x-80 { + -moz-column-gap: 20rem !important; + column-gap: 20rem !important; + } + + .xl\:gap-x-96 { + -moz-column-gap: 24rem !important; + column-gap: 24rem !important; + } + + .xl\:gap-x-px { + -moz-column-gap: 1px !important; + column-gap: 1px !important; + } + + .xl\:gap-x-0\.5 { + -moz-column-gap: 0.125rem !important; + column-gap: 0.125rem !important; + } + + .xl\:gap-x-1\.5 { + -moz-column-gap: 0.375rem !important; + column-gap: 0.375rem !important; + } + + .xl\:gap-x-2\.5 { + -moz-column-gap: 0.625rem !important; + column-gap: 0.625rem !important; + } + + .xl\:gap-x-3\.5 { + -moz-column-gap: 0.875rem !important; + column-gap: 0.875rem !important; + } + + .xl\:gap-y-0 { + row-gap: 0px !important; + } + + .xl\:gap-y-1 { + row-gap: 0.25rem !important; + } + + .xl\:gap-y-2 { + row-gap: 0.5rem !important; + } + + .xl\:gap-y-3 { + row-gap: 0.75rem !important; + } + + .xl\:gap-y-4 { + row-gap: 1rem !important; + } + + .xl\:gap-y-5 { + row-gap: 1.25rem !important; + } + + .xl\:gap-y-6 { + row-gap: 1.5rem !important; + } + + .xl\:gap-y-7 { + row-gap: 1.75rem !important; + } + + .xl\:gap-y-8 { + row-gap: 2rem !important; + } + + .xl\:gap-y-9 { + row-gap: 2.25rem !important; + } + + .xl\:gap-y-10 { + row-gap: 2.5rem !important; + } + + .xl\:gap-y-11 { + row-gap: 2.75rem !important; + } + + .xl\:gap-y-12 { + row-gap: 3rem !important; + } + + .xl\:gap-y-14 { + row-gap: 3.5rem !important; + } + + .xl\:gap-y-16 { + row-gap: 4rem !important; + } + + .xl\:gap-y-20 { + row-gap: 5rem !important; + } + + .xl\:gap-y-24 { + row-gap: 6rem !important; + } + + .xl\:gap-y-28 { + row-gap: 7rem !important; + } + + .xl\:gap-y-32 { + row-gap: 8rem !important; + } + + .xl\:gap-y-36 { + row-gap: 9rem !important; + } + + .xl\:gap-y-40 { + row-gap: 10rem !important; + } + + .xl\:gap-y-44 { + row-gap: 11rem !important; + } + + .xl\:gap-y-48 { + row-gap: 12rem !important; + } + + .xl\:gap-y-52 { + row-gap: 13rem !important; + } + + .xl\:gap-y-56 { + row-gap: 14rem !important; + } + + .xl\:gap-y-60 { + row-gap: 15rem !important; + } + + .xl\:gap-y-64 { + row-gap: 16rem !important; + } + + .xl\:gap-y-72 { + row-gap: 18rem !important; + } + + .xl\:gap-y-80 { + row-gap: 20rem !important; + } + + .xl\:gap-y-96 { + row-gap: 24rem !important; + } + + .xl\:gap-y-px { + row-gap: 1px !important; + } + + .xl\:gap-y-0\.5 { + row-gap: 0.125rem !important; + } + + .xl\:gap-y-1\.5 { + row-gap: 0.375rem !important; + } + + .xl\:gap-y-2\.5 { + row-gap: 0.625rem !important; + } + + .xl\:gap-y-3\.5 { + row-gap: 0.875rem !important; + } + + .xl\:grid-flow-row { + grid-auto-flow: row !important; + } + + .xl\:grid-flow-col { + grid-auto-flow: column !important; + } + + .xl\:grid-flow-row-dense { + grid-auto-flow: row dense !important; + } + + .xl\:grid-flow-col-dense { + grid-auto-flow: column dense !important; + } + + .xl\:grid-cols-1 { + grid-template-columns: repeat(1, minmax(0, 1fr)) !important; + } + + .xl\:grid-cols-2 { + grid-template-columns: repeat(2, minmax(0, 1fr)) !important; + } + + .xl\:grid-cols-3 { + grid-template-columns: repeat(3, minmax(0, 1fr)) !important; + } + + .xl\:grid-cols-4 { + grid-template-columns: repeat(4, minmax(0, 1fr)) !important; + } + + .xl\:grid-cols-5 { + grid-template-columns: repeat(5, minmax(0, 1fr)) !important; + } + + .xl\:grid-cols-6 { + grid-template-columns: repeat(6, minmax(0, 1fr)) !important; + } + + .xl\:grid-cols-7 { + grid-template-columns: repeat(7, minmax(0, 1fr)) !important; + } + + .xl\:grid-cols-8 { + grid-template-columns: repeat(8, minmax(0, 1fr)) !important; + } + + .xl\:grid-cols-9 { + grid-template-columns: repeat(9, minmax(0, 1fr)) !important; + } + + .xl\:grid-cols-10 { + grid-template-columns: repeat(10, minmax(0, 1fr)) !important; + } + + .xl\:grid-cols-11 { + grid-template-columns: repeat(11, minmax(0, 1fr)) !important; + } + + .xl\:grid-cols-12 { + grid-template-columns: repeat(12, minmax(0, 1fr)) !important; + } + + .xl\:grid-cols-none { + grid-template-columns: none !important; + } + + .xl\:auto-cols-auto { + grid-auto-columns: auto !important; + } + + .xl\:auto-cols-min { + grid-auto-columns: -webkit-min-content !important; + grid-auto-columns: min-content !important; + } + + .xl\:auto-cols-max { + grid-auto-columns: -webkit-max-content !important; + grid-auto-columns: max-content !important; + } + + .xl\:auto-cols-fr { + grid-auto-columns: minmax(0, 1fr) !important; + } + + .xl\:col-auto { + grid-column: auto !important; + } + + .xl\:col-span-1 { + grid-column: span 1 / span 1 !important; + } + + .xl\:col-span-2 { + grid-column: span 2 / span 2 !important; + } + + .xl\:col-span-3 { + grid-column: span 3 / span 3 !important; + } + + .xl\:col-span-4 { + grid-column: span 4 / span 4 !important; + } + + .xl\:col-span-5 { + grid-column: span 5 / span 5 !important; + } + + .xl\:col-span-6 { + grid-column: span 6 / span 6 !important; + } + + .xl\:col-span-7 { + grid-column: span 7 / span 7 !important; + } + + .xl\:col-span-8 { + grid-column: span 8 / span 8 !important; + } + + .xl\:col-span-9 { + grid-column: span 9 / span 9 !important; + } + + .xl\:col-span-10 { + grid-column: span 10 / span 10 !important; + } + + .xl\:col-span-11 { + grid-column: span 11 / span 11 !important; + } + + .xl\:col-span-12 { + grid-column: span 12 / span 12 !important; + } + + .xl\:col-span-full { + grid-column: 1 / -1 !important; + } + + .xl\:col-start-1 { + grid-column-start: 1 !important; + } + + .xl\:col-start-2 { + grid-column-start: 2 !important; + } + + .xl\:col-start-3 { + grid-column-start: 3 !important; + } + + .xl\:col-start-4 { + grid-column-start: 4 !important; + } + + .xl\:col-start-5 { + grid-column-start: 5 !important; + } + + .xl\:col-start-6 { + grid-column-start: 6 !important; + } + + .xl\:col-start-7 { + grid-column-start: 7 !important; + } + + .xl\:col-start-8 { + grid-column-start: 8 !important; + } + + .xl\:col-start-9 { + grid-column-start: 9 !important; + } + + .xl\:col-start-10 { + grid-column-start: 10 !important; + } + + .xl\:col-start-11 { + grid-column-start: 11 !important; + } + + .xl\:col-start-12 { + grid-column-start: 12 !important; + } + + .xl\:col-start-13 { + grid-column-start: 13 !important; + } + + .xl\:col-start-auto { + grid-column-start: auto !important; + } + + .xl\:col-end-1 { + grid-column-end: 1 !important; + } + + .xl\:col-end-2 { + grid-column-end: 2 !important; + } + + .xl\:col-end-3 { + grid-column-end: 3 !important; + } + + .xl\:col-end-4 { + grid-column-end: 4 !important; + } + + .xl\:col-end-5 { + grid-column-end: 5 !important; + } + + .xl\:col-end-6 { + grid-column-end: 6 !important; + } + + .xl\:col-end-7 { + grid-column-end: 7 !important; + } + + .xl\:col-end-8 { + grid-column-end: 8 !important; + } + + .xl\:col-end-9 { + grid-column-end: 9 !important; + } + + .xl\:col-end-10 { + grid-column-end: 10 !important; + } + + .xl\:col-end-11 { + grid-column-end: 11 !important; + } + + .xl\:col-end-12 { + grid-column-end: 12 !important; + } + + .xl\:col-end-13 { + grid-column-end: 13 !important; + } + + .xl\:col-end-auto { + grid-column-end: auto !important; + } + + .xl\:grid-rows-1 { + grid-template-rows: repeat(1, minmax(0, 1fr)) !important; + } + + .xl\:grid-rows-2 { + grid-template-rows: repeat(2, minmax(0, 1fr)) !important; + } + + .xl\:grid-rows-3 { + grid-template-rows: repeat(3, minmax(0, 1fr)) !important; + } + + .xl\:grid-rows-4 { + grid-template-rows: repeat(4, minmax(0, 1fr)) !important; + } + + .xl\:grid-rows-5 { + grid-template-rows: repeat(5, minmax(0, 1fr)) !important; + } + + .xl\:grid-rows-6 { + grid-template-rows: repeat(6, minmax(0, 1fr)) !important; + } + + .xl\:grid-rows-none { + grid-template-rows: none !important; + } + + .xl\:auto-rows-auto { + grid-auto-rows: auto !important; + } + + .xl\:auto-rows-min { + grid-auto-rows: -webkit-min-content !important; + grid-auto-rows: min-content !important; + } + + .xl\:auto-rows-max { + grid-auto-rows: -webkit-max-content !important; + grid-auto-rows: max-content !important; + } + + .xl\:auto-rows-fr { + grid-auto-rows: minmax(0, 1fr) !important; + } + + .xl\:row-auto { + grid-row: auto !important; + } + + .xl\:row-span-1 { + grid-row: span 1 / span 1 !important; + } + + .xl\:row-span-2 { + grid-row: span 2 / span 2 !important; + } + + .xl\:row-span-3 { + grid-row: span 3 / span 3 !important; + } + + .xl\:row-span-4 { + grid-row: span 4 / span 4 !important; + } + + .xl\:row-span-5 { + grid-row: span 5 / span 5 !important; + } + + .xl\:row-span-6 { + grid-row: span 6 / span 6 !important; + } + + .xl\:row-span-full { + grid-row: 1 / -1 !important; + } + + .xl\:row-start-1 { + grid-row-start: 1 !important; + } + + .xl\:row-start-2 { + grid-row-start: 2 !important; + } + + .xl\:row-start-3 { + grid-row-start: 3 !important; + } + + .xl\:row-start-4 { + grid-row-start: 4 !important; + } + + .xl\:row-start-5 { + grid-row-start: 5 !important; + } + + .xl\:row-start-6 { + grid-row-start: 6 !important; + } + + .xl\:row-start-7 { + grid-row-start: 7 !important; + } + + .xl\:row-start-auto { + grid-row-start: auto !important; + } + + .xl\:row-end-1 { + grid-row-end: 1 !important; + } + + .xl\:row-end-2 { + grid-row-end: 2 !important; + } + + .xl\:row-end-3 { + grid-row-end: 3 !important; + } + + .xl\:row-end-4 { + grid-row-end: 4 !important; + } + + .xl\:row-end-5 { + grid-row-end: 5 !important; + } + + .xl\:row-end-6 { + grid-row-end: 6 !important; + } + + .xl\:row-end-7 { + grid-row-end: 7 !important; + } + + .xl\:row-end-auto { + grid-row-end: auto !important; + } + + .xl\:transform { + --tw-translate-x: 0 !important; + --tw-translate-y: 0 !important; + --tw-rotate: 0 !important; + --tw-skew-x: 0 !important; + --tw-skew-y: 0 !important; + --tw-scale-x: 1 !important; + --tw-scale-y: 1 !important; + 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)) !important; + } + + .xl\:transform-gpu { + --tw-translate-x: 0 !important; + --tw-translate-y: 0 !important; + --tw-rotate: 0 !important; + --tw-skew-x: 0 !important; + --tw-skew-y: 0 !important; + --tw-scale-x: 1 !important; + --tw-scale-y: 1 !important; + transform: translate3d(var(--tw-translate-x), var(--tw-translate-y), 0) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)) !important; + } + + .xl\:transform-none { + transform: none !important; + } + + .xl\:origin-center { + transform-origin: center !important; + } + + .xl\:origin-top { + transform-origin: top !important; + } + + .xl\:origin-top-right { + transform-origin: top right !important; + } + + .xl\:origin-right { + transform-origin: right !important; + } + + .xl\:origin-bottom-right { + transform-origin: bottom right !important; + } + + .xl\:origin-bottom { + transform-origin: bottom !important; + } + + .xl\:origin-bottom-left { + transform-origin: bottom left !important; + } + + .xl\:origin-left { + transform-origin: left !important; + } + + .xl\:origin-top-left { + transform-origin: top left !important; + } + + .xl\:scale-0 { + --tw-scale-x: 0 !important; + --tw-scale-y: 0 !important; + } + + .xl\:scale-50 { + --tw-scale-x: .5 !important; + --tw-scale-y: .5 !important; + } + + .xl\:scale-75 { + --tw-scale-x: .75 !important; + --tw-scale-y: .75 !important; + } + + .xl\:scale-90 { + --tw-scale-x: .9 !important; + --tw-scale-y: .9 !important; + } + + .xl\:scale-95 { + --tw-scale-x: .95 !important; + --tw-scale-y: .95 !important; + } + + .xl\:scale-100 { + --tw-scale-x: 1 !important; + --tw-scale-y: 1 !important; + } + + .xl\:scale-105 { + --tw-scale-x: 1.05 !important; + --tw-scale-y: 1.05 !important; + } + + .xl\:scale-110 { + --tw-scale-x: 1.1 !important; + --tw-scale-y: 1.1 !important; + } + + .xl\:scale-125 { + --tw-scale-x: 1.25 !important; + --tw-scale-y: 1.25 !important; + } + + .xl\:scale-150 { + --tw-scale-x: 1.5 !important; + --tw-scale-y: 1.5 !important; + } + + .xl\:scale-x-0 { + --tw-scale-x: 0 !important; + } + + .xl\:scale-x-50 { + --tw-scale-x: .5 !important; + } + + .xl\:scale-x-75 { + --tw-scale-x: .75 !important; + } + + .xl\:scale-x-90 { + --tw-scale-x: .9 !important; + } + + .xl\:scale-x-95 { + --tw-scale-x: .95 !important; + } + + .xl\:scale-x-100 { + --tw-scale-x: 1 !important; + } + + .xl\:scale-x-105 { + --tw-scale-x: 1.05 !important; + } + + .xl\:scale-x-110 { + --tw-scale-x: 1.1 !important; + } + + .xl\:scale-x-125 { + --tw-scale-x: 1.25 !important; + } + + .xl\:scale-x-150 { + --tw-scale-x: 1.5 !important; + } + + .xl\:scale-y-0 { + --tw-scale-y: 0 !important; + } + + .xl\:scale-y-50 { + --tw-scale-y: .5 !important; + } + + .xl\:scale-y-75 { + --tw-scale-y: .75 !important; + } + + .xl\:scale-y-90 { + --tw-scale-y: .9 !important; + } + + .xl\:scale-y-95 { + --tw-scale-y: .95 !important; + } + + .xl\:scale-y-100 { + --tw-scale-y: 1 !important; + } + + .xl\:scale-y-105 { + --tw-scale-y: 1.05 !important; + } + + .xl\:scale-y-110 { + --tw-scale-y: 1.1 !important; + } + + .xl\:scale-y-125 { + --tw-scale-y: 1.25 !important; + } + + .xl\:scale-y-150 { + --tw-scale-y: 1.5 !important; + } + + .xl\:hover\:scale-0:hover { + --tw-scale-x: 0 !important; + --tw-scale-y: 0 !important; + } + + .xl\:hover\:scale-50:hover { + --tw-scale-x: .5 !important; + --tw-scale-y: .5 !important; + } + + .xl\:hover\:scale-75:hover { + --tw-scale-x: .75 !important; + --tw-scale-y: .75 !important; + } + + .xl\:hover\:scale-90:hover { + --tw-scale-x: .9 !important; + --tw-scale-y: .9 !important; + } + + .xl\:hover\:scale-95:hover { + --tw-scale-x: .95 !important; + --tw-scale-y: .95 !important; + } + + .xl\:hover\:scale-100:hover { + --tw-scale-x: 1 !important; + --tw-scale-y: 1 !important; + } + + .xl\:hover\:scale-105:hover { + --tw-scale-x: 1.05 !important; + --tw-scale-y: 1.05 !important; + } + + .xl\:hover\:scale-110:hover { + --tw-scale-x: 1.1 !important; + --tw-scale-y: 1.1 !important; + } + + .xl\:hover\:scale-125:hover { + --tw-scale-x: 1.25 !important; + --tw-scale-y: 1.25 !important; + } + + .xl\:hover\:scale-150:hover { + --tw-scale-x: 1.5 !important; + --tw-scale-y: 1.5 !important; + } + + .xl\:hover\:scale-x-0:hover { + --tw-scale-x: 0 !important; + } + + .xl\:hover\:scale-x-50:hover { + --tw-scale-x: .5 !important; + } + + .xl\:hover\:scale-x-75:hover { + --tw-scale-x: .75 !important; + } + + .xl\:hover\:scale-x-90:hover { + --tw-scale-x: .9 !important; + } + + .xl\:hover\:scale-x-95:hover { + --tw-scale-x: .95 !important; + } + + .xl\:hover\:scale-x-100:hover { + --tw-scale-x: 1 !important; + } + + .xl\:hover\:scale-x-105:hover { + --tw-scale-x: 1.05 !important; + } + + .xl\:hover\:scale-x-110:hover { + --tw-scale-x: 1.1 !important; + } + + .xl\:hover\:scale-x-125:hover { + --tw-scale-x: 1.25 !important; + } + + .xl\:hover\:scale-x-150:hover { + --tw-scale-x: 1.5 !important; + } + + .xl\:hover\:scale-y-0:hover { + --tw-scale-y: 0 !important; + } + + .xl\:hover\:scale-y-50:hover { + --tw-scale-y: .5 !important; + } + + .xl\:hover\:scale-y-75:hover { + --tw-scale-y: .75 !important; + } + + .xl\:hover\:scale-y-90:hover { + --tw-scale-y: .9 !important; + } + + .xl\:hover\:scale-y-95:hover { + --tw-scale-y: .95 !important; + } + + .xl\:hover\:scale-y-100:hover { + --tw-scale-y: 1 !important; + } + + .xl\:hover\:scale-y-105:hover { + --tw-scale-y: 1.05 !important; + } + + .xl\:hover\:scale-y-110:hover { + --tw-scale-y: 1.1 !important; + } + + .xl\:hover\:scale-y-125:hover { + --tw-scale-y: 1.25 !important; + } + + .xl\:hover\:scale-y-150:hover { + --tw-scale-y: 1.5 !important; + } + + .xl\:focus\:scale-0:focus { + --tw-scale-x: 0 !important; + --tw-scale-y: 0 !important; + } + + .xl\:focus\:scale-50:focus { + --tw-scale-x: .5 !important; + --tw-scale-y: .5 !important; + } + + .xl\:focus\:scale-75:focus { + --tw-scale-x: .75 !important; + --tw-scale-y: .75 !important; + } + + .xl\:focus\:scale-90:focus { + --tw-scale-x: .9 !important; + --tw-scale-y: .9 !important; + } + + .xl\:focus\:scale-95:focus { + --tw-scale-x: .95 !important; + --tw-scale-y: .95 !important; + } + + .xl\:focus\:scale-100:focus { + --tw-scale-x: 1 !important; + --tw-scale-y: 1 !important; + } + + .xl\:focus\:scale-105:focus { + --tw-scale-x: 1.05 !important; + --tw-scale-y: 1.05 !important; + } + + .xl\:focus\:scale-110:focus { + --tw-scale-x: 1.1 !important; + --tw-scale-y: 1.1 !important; + } + + .xl\:focus\:scale-125:focus { + --tw-scale-x: 1.25 !important; + --tw-scale-y: 1.25 !important; + } + + .xl\:focus\:scale-150:focus { + --tw-scale-x: 1.5 !important; + --tw-scale-y: 1.5 !important; + } + + .xl\:focus\:scale-x-0:focus { + --tw-scale-x: 0 !important; + } + + .xl\:focus\:scale-x-50:focus { + --tw-scale-x: .5 !important; + } + + .xl\:focus\:scale-x-75:focus { + --tw-scale-x: .75 !important; + } + + .xl\:focus\:scale-x-90:focus { + --tw-scale-x: .9 !important; + } + + .xl\:focus\:scale-x-95:focus { + --tw-scale-x: .95 !important; + } + + .xl\:focus\:scale-x-100:focus { + --tw-scale-x: 1 !important; + } + + .xl\:focus\:scale-x-105:focus { + --tw-scale-x: 1.05 !important; + } + + .xl\:focus\:scale-x-110:focus { + --tw-scale-x: 1.1 !important; + } + + .xl\:focus\:scale-x-125:focus { + --tw-scale-x: 1.25 !important; + } + + .xl\:focus\:scale-x-150:focus { + --tw-scale-x: 1.5 !important; + } + + .xl\:focus\:scale-y-0:focus { + --tw-scale-y: 0 !important; + } + + .xl\:focus\:scale-y-50:focus { + --tw-scale-y: .5 !important; + } + + .xl\:focus\:scale-y-75:focus { + --tw-scale-y: .75 !important; + } + + .xl\:focus\:scale-y-90:focus { + --tw-scale-y: .9 !important; + } + + .xl\:focus\:scale-y-95:focus { + --tw-scale-y: .95 !important; + } + + .xl\:focus\:scale-y-100:focus { + --tw-scale-y: 1 !important; + } + + .xl\:focus\:scale-y-105:focus { + --tw-scale-y: 1.05 !important; + } + + .xl\:focus\:scale-y-110:focus { + --tw-scale-y: 1.1 !important; + } + + .xl\:focus\:scale-y-125:focus { + --tw-scale-y: 1.25 !important; + } + + .xl\:focus\:scale-y-150:focus { + --tw-scale-y: 1.5 !important; + } + + .xl\:rotate-0 { + --tw-rotate: 0deg !important; + } + + .xl\:rotate-1 { + --tw-rotate: 1deg !important; + } + + .xl\:rotate-2 { + --tw-rotate: 2deg !important; + } + + .xl\:rotate-3 { + --tw-rotate: 3deg !important; + } + + .xl\:rotate-6 { + --tw-rotate: 6deg !important; + } + + .xl\:rotate-12 { + --tw-rotate: 12deg !important; + } + + .xl\:rotate-45 { + --tw-rotate: 45deg !important; + } + + .xl\:rotate-90 { + --tw-rotate: 90deg !important; + } + + .xl\:rotate-180 { + --tw-rotate: 180deg !important; + } + + .xl\:-rotate-180 { + --tw-rotate: -180deg !important; + } + + .xl\:-rotate-90 { + --tw-rotate: -90deg !important; + } + + .xl\:-rotate-45 { + --tw-rotate: -45deg !important; + } + + .xl\:-rotate-12 { + --tw-rotate: -12deg !important; + } + + .xl\:-rotate-6 { + --tw-rotate: -6deg !important; + } + + .xl\:-rotate-3 { + --tw-rotate: -3deg !important; + } + + .xl\:-rotate-2 { + --tw-rotate: -2deg !important; + } + + .xl\:-rotate-1 { + --tw-rotate: -1deg !important; + } + + .xl\:hover\:rotate-0:hover { + --tw-rotate: 0deg !important; + } + + .xl\:hover\:rotate-1:hover { + --tw-rotate: 1deg !important; + } + + .xl\:hover\:rotate-2:hover { + --tw-rotate: 2deg !important; + } + + .xl\:hover\:rotate-3:hover { + --tw-rotate: 3deg !important; + } + + .xl\:hover\:rotate-6:hover { + --tw-rotate: 6deg !important; + } + + .xl\:hover\:rotate-12:hover { + --tw-rotate: 12deg !important; + } + + .xl\:hover\:rotate-45:hover { + --tw-rotate: 45deg !important; + } + + .xl\:hover\:rotate-90:hover { + --tw-rotate: 90deg !important; + } + + .xl\:hover\:rotate-180:hover { + --tw-rotate: 180deg !important; + } + + .xl\:hover\:-rotate-180:hover { + --tw-rotate: -180deg !important; + } + + .xl\:hover\:-rotate-90:hover { + --tw-rotate: -90deg !important; + } + + .xl\:hover\:-rotate-45:hover { + --tw-rotate: -45deg !important; + } + + .xl\:hover\:-rotate-12:hover { + --tw-rotate: -12deg !important; + } + + .xl\:hover\:-rotate-6:hover { + --tw-rotate: -6deg !important; + } + + .xl\:hover\:-rotate-3:hover { + --tw-rotate: -3deg !important; + } + + .xl\:hover\:-rotate-2:hover { + --tw-rotate: -2deg !important; + } + + .xl\:hover\:-rotate-1:hover { + --tw-rotate: -1deg !important; + } + + .xl\:focus\:rotate-0:focus { + --tw-rotate: 0deg !important; + } + + .xl\:focus\:rotate-1:focus { + --tw-rotate: 1deg !important; + } + + .xl\:focus\:rotate-2:focus { + --tw-rotate: 2deg !important; + } + + .xl\:focus\:rotate-3:focus { + --tw-rotate: 3deg !important; + } + + .xl\:focus\:rotate-6:focus { + --tw-rotate: 6deg !important; + } + + .xl\:focus\:rotate-12:focus { + --tw-rotate: 12deg !important; + } + + .xl\:focus\:rotate-45:focus { + --tw-rotate: 45deg !important; + } + + .xl\:focus\:rotate-90:focus { + --tw-rotate: 90deg !important; + } + + .xl\:focus\:rotate-180:focus { + --tw-rotate: 180deg !important; + } + + .xl\:focus\:-rotate-180:focus { + --tw-rotate: -180deg !important; + } + + .xl\:focus\:-rotate-90:focus { + --tw-rotate: -90deg !important; + } + + .xl\:focus\:-rotate-45:focus { + --tw-rotate: -45deg !important; + } + + .xl\:focus\:-rotate-12:focus { + --tw-rotate: -12deg !important; + } + + .xl\:focus\:-rotate-6:focus { + --tw-rotate: -6deg !important; + } + + .xl\:focus\:-rotate-3:focus { + --tw-rotate: -3deg !important; + } + + .xl\:focus\:-rotate-2:focus { + --tw-rotate: -2deg !important; + } + + .xl\:focus\:-rotate-1:focus { + --tw-rotate: -1deg !important; + } + + .xl\:translate-x-0 { + --tw-translate-x: 0px !important; + } + + .xl\:translate-x-1 { + --tw-translate-x: 0.25rem !important; + } + + .xl\:translate-x-2 { + --tw-translate-x: 0.5rem !important; + } + + .xl\:translate-x-3 { + --tw-translate-x: 0.75rem !important; + } + + .xl\:translate-x-4 { + --tw-translate-x: 1rem !important; + } + + .xl\:translate-x-5 { + --tw-translate-x: 1.25rem !important; + } + + .xl\:translate-x-6 { + --tw-translate-x: 1.5rem !important; + } + + .xl\:translate-x-7 { + --tw-translate-x: 1.75rem !important; + } + + .xl\:translate-x-8 { + --tw-translate-x: 2rem !important; + } + + .xl\:translate-x-9 { + --tw-translate-x: 2.25rem !important; + } + + .xl\:translate-x-10 { + --tw-translate-x: 2.5rem !important; + } + + .xl\:translate-x-11 { + --tw-translate-x: 2.75rem !important; + } + + .xl\:translate-x-12 { + --tw-translate-x: 3rem !important; + } + + .xl\:translate-x-14 { + --tw-translate-x: 3.5rem !important; + } + + .xl\:translate-x-16 { + --tw-translate-x: 4rem !important; + } + + .xl\:translate-x-20 { + --tw-translate-x: 5rem !important; + } + + .xl\:translate-x-24 { + --tw-translate-x: 6rem !important; + } + + .xl\:translate-x-28 { + --tw-translate-x: 7rem !important; + } + + .xl\:translate-x-32 { + --tw-translate-x: 8rem !important; + } + + .xl\:translate-x-36 { + --tw-translate-x: 9rem !important; + } + + .xl\:translate-x-40 { + --tw-translate-x: 10rem !important; + } + + .xl\:translate-x-44 { + --tw-translate-x: 11rem !important; + } + + .xl\:translate-x-48 { + --tw-translate-x: 12rem !important; + } + + .xl\:translate-x-52 { + --tw-translate-x: 13rem !important; + } + + .xl\:translate-x-56 { + --tw-translate-x: 14rem !important; + } + + .xl\:translate-x-60 { + --tw-translate-x: 15rem !important; + } + + .xl\:translate-x-64 { + --tw-translate-x: 16rem !important; + } + + .xl\:translate-x-72 { + --tw-translate-x: 18rem !important; + } + + .xl\:translate-x-80 { + --tw-translate-x: 20rem !important; + } + + .xl\:translate-x-96 { + --tw-translate-x: 24rem !important; + } + + .xl\:translate-x-px { + --tw-translate-x: 1px !important; + } + + .xl\:translate-x-0\.5 { + --tw-translate-x: 0.125rem !important; + } + + .xl\:translate-x-1\.5 { + --tw-translate-x: 0.375rem !important; + } + + .xl\:translate-x-2\.5 { + --tw-translate-x: 0.625rem !important; + } + + .xl\:translate-x-3\.5 { + --tw-translate-x: 0.875rem !important; + } + + .xl\:-translate-x-0 { + --tw-translate-x: 0px !important; + } + + .xl\:-translate-x-1 { + --tw-translate-x: -0.25rem !important; + } + + .xl\:-translate-x-2 { + --tw-translate-x: -0.5rem !important; + } + + .xl\:-translate-x-3 { + --tw-translate-x: -0.75rem !important; + } + + .xl\:-translate-x-4 { + --tw-translate-x: -1rem !important; + } + + .xl\:-translate-x-5 { + --tw-translate-x: -1.25rem !important; + } + + .xl\:-translate-x-6 { + --tw-translate-x: -1.5rem !important; + } + + .xl\:-translate-x-7 { + --tw-translate-x: -1.75rem !important; + } + + .xl\:-translate-x-8 { + --tw-translate-x: -2rem !important; + } + + .xl\:-translate-x-9 { + --tw-translate-x: -2.25rem !important; + } + + .xl\:-translate-x-10 { + --tw-translate-x: -2.5rem !important; + } + + .xl\:-translate-x-11 { + --tw-translate-x: -2.75rem !important; + } + + .xl\:-translate-x-12 { + --tw-translate-x: -3rem !important; + } + + .xl\:-translate-x-14 { + --tw-translate-x: -3.5rem !important; + } + + .xl\:-translate-x-16 { + --tw-translate-x: -4rem !important; + } + + .xl\:-translate-x-20 { + --tw-translate-x: -5rem !important; + } + + .xl\:-translate-x-24 { + --tw-translate-x: -6rem !important; + } + + .xl\:-translate-x-28 { + --tw-translate-x: -7rem !important; + } + + .xl\:-translate-x-32 { + --tw-translate-x: -8rem !important; + } + + .xl\:-translate-x-36 { + --tw-translate-x: -9rem !important; + } + + .xl\:-translate-x-40 { + --tw-translate-x: -10rem !important; + } + + .xl\:-translate-x-44 { + --tw-translate-x: -11rem !important; + } + + .xl\:-translate-x-48 { + --tw-translate-x: -12rem !important; + } + + .xl\:-translate-x-52 { + --tw-translate-x: -13rem !important; + } + + .xl\:-translate-x-56 { + --tw-translate-x: -14rem !important; + } + + .xl\:-translate-x-60 { + --tw-translate-x: -15rem !important; + } + + .xl\:-translate-x-64 { + --tw-translate-x: -16rem !important; + } + + .xl\:-translate-x-72 { + --tw-translate-x: -18rem !important; + } + + .xl\:-translate-x-80 { + --tw-translate-x: -20rem !important; + } + + .xl\:-translate-x-96 { + --tw-translate-x: -24rem !important; + } + + .xl\:-translate-x-px { + --tw-translate-x: -1px !important; + } + + .xl\:-translate-x-0\.5 { + --tw-translate-x: -0.125rem !important; + } + + .xl\:-translate-x-1\.5 { + --tw-translate-x: -0.375rem !important; + } + + .xl\:-translate-x-2\.5 { + --tw-translate-x: -0.625rem !important; + } + + .xl\:-translate-x-3\.5 { + --tw-translate-x: -0.875rem !important; + } + + .xl\:translate-x-1\/2 { + --tw-translate-x: 50% !important; + } + + .xl\:translate-x-1\/3 { + --tw-translate-x: 33.333333% !important; + } + + .xl\:translate-x-2\/3 { + --tw-translate-x: 66.666667% !important; + } + + .xl\:translate-x-1\/4 { + --tw-translate-x: 25% !important; + } + + .xl\:translate-x-2\/4 { + --tw-translate-x: 50% !important; + } + + .xl\:translate-x-3\/4 { + --tw-translate-x: 75% !important; + } + + .xl\:translate-x-full { + --tw-translate-x: 100% !important; + } + + .xl\:-translate-x-1\/2 { + --tw-translate-x: -50% !important; + } + + .xl\:-translate-x-1\/3 { + --tw-translate-x: -33.333333% !important; + } + + .xl\:-translate-x-2\/3 { + --tw-translate-x: -66.666667% !important; + } + + .xl\:-translate-x-1\/4 { + --tw-translate-x: -25% !important; + } + + .xl\:-translate-x-2\/4 { + --tw-translate-x: -50% !important; + } + + .xl\:-translate-x-3\/4 { + --tw-translate-x: -75% !important; + } + + .xl\:-translate-x-full { + --tw-translate-x: -100% !important; + } + + .xl\:translate-y-0 { + --tw-translate-y: 0px !important; + } + + .xl\:translate-y-1 { + --tw-translate-y: 0.25rem !important; + } + + .xl\:translate-y-2 { + --tw-translate-y: 0.5rem !important; + } + + .xl\:translate-y-3 { + --tw-translate-y: 0.75rem !important; + } + + .xl\:translate-y-4 { + --tw-translate-y: 1rem !important; + } + + .xl\:translate-y-5 { + --tw-translate-y: 1.25rem !important; + } + + .xl\:translate-y-6 { + --tw-translate-y: 1.5rem !important; + } + + .xl\:translate-y-7 { + --tw-translate-y: 1.75rem !important; + } + + .xl\:translate-y-8 { + --tw-translate-y: 2rem !important; + } + + .xl\:translate-y-9 { + --tw-translate-y: 2.25rem !important; + } + + .xl\:translate-y-10 { + --tw-translate-y: 2.5rem !important; + } + + .xl\:translate-y-11 { + --tw-translate-y: 2.75rem !important; + } + + .xl\:translate-y-12 { + --tw-translate-y: 3rem !important; + } + + .xl\:translate-y-14 { + --tw-translate-y: 3.5rem !important; + } + + .xl\:translate-y-16 { + --tw-translate-y: 4rem !important; + } + + .xl\:translate-y-20 { + --tw-translate-y: 5rem !important; + } + + .xl\:translate-y-24 { + --tw-translate-y: 6rem !important; + } + + .xl\:translate-y-28 { + --tw-translate-y: 7rem !important; + } + + .xl\:translate-y-32 { + --tw-translate-y: 8rem !important; + } + + .xl\:translate-y-36 { + --tw-translate-y: 9rem !important; + } + + .xl\:translate-y-40 { + --tw-translate-y: 10rem !important; + } + + .xl\:translate-y-44 { + --tw-translate-y: 11rem !important; + } + + .xl\:translate-y-48 { + --tw-translate-y: 12rem !important; + } + + .xl\:translate-y-52 { + --tw-translate-y: 13rem !important; + } + + .xl\:translate-y-56 { + --tw-translate-y: 14rem !important; + } + + .xl\:translate-y-60 { + --tw-translate-y: 15rem !important; + } + + .xl\:translate-y-64 { + --tw-translate-y: 16rem !important; + } + + .xl\:translate-y-72 { + --tw-translate-y: 18rem !important; + } + + .xl\:translate-y-80 { + --tw-translate-y: 20rem !important; + } + + .xl\:translate-y-96 { + --tw-translate-y: 24rem !important; + } + + .xl\:translate-y-px { + --tw-translate-y: 1px !important; + } + + .xl\:translate-y-0\.5 { + --tw-translate-y: 0.125rem !important; + } + + .xl\:translate-y-1\.5 { + --tw-translate-y: 0.375rem !important; + } + + .xl\:translate-y-2\.5 { + --tw-translate-y: 0.625rem !important; + } + + .xl\:translate-y-3\.5 { + --tw-translate-y: 0.875rem !important; + } + + .xl\:-translate-y-0 { + --tw-translate-y: 0px !important; + } + + .xl\:-translate-y-1 { + --tw-translate-y: -0.25rem !important; + } + + .xl\:-translate-y-2 { + --tw-translate-y: -0.5rem !important; + } + + .xl\:-translate-y-3 { + --tw-translate-y: -0.75rem !important; + } + + .xl\:-translate-y-4 { + --tw-translate-y: -1rem !important; + } + + .xl\:-translate-y-5 { + --tw-translate-y: -1.25rem !important; + } + + .xl\:-translate-y-6 { + --tw-translate-y: -1.5rem !important; + } + + .xl\:-translate-y-7 { + --tw-translate-y: -1.75rem !important; + } + + .xl\:-translate-y-8 { + --tw-translate-y: -2rem !important; + } + + .xl\:-translate-y-9 { + --tw-translate-y: -2.25rem !important; + } + + .xl\:-translate-y-10 { + --tw-translate-y: -2.5rem !important; + } + + .xl\:-translate-y-11 { + --tw-translate-y: -2.75rem !important; + } + + .xl\:-translate-y-12 { + --tw-translate-y: -3rem !important; + } + + .xl\:-translate-y-14 { + --tw-translate-y: -3.5rem !important; + } + + .xl\:-translate-y-16 { + --tw-translate-y: -4rem !important; + } + + .xl\:-translate-y-20 { + --tw-translate-y: -5rem !important; + } + + .xl\:-translate-y-24 { + --tw-translate-y: -6rem !important; + } + + .xl\:-translate-y-28 { + --tw-translate-y: -7rem !important; + } + + .xl\:-translate-y-32 { + --tw-translate-y: -8rem !important; + } + + .xl\:-translate-y-36 { + --tw-translate-y: -9rem !important; + } + + .xl\:-translate-y-40 { + --tw-translate-y: -10rem !important; + } + + .xl\:-translate-y-44 { + --tw-translate-y: -11rem !important; + } + + .xl\:-translate-y-48 { + --tw-translate-y: -12rem !important; + } + + .xl\:-translate-y-52 { + --tw-translate-y: -13rem !important; + } + + .xl\:-translate-y-56 { + --tw-translate-y: -14rem !important; + } + + .xl\:-translate-y-60 { + --tw-translate-y: -15rem !important; + } + + .xl\:-translate-y-64 { + --tw-translate-y: -16rem !important; + } + + .xl\:-translate-y-72 { + --tw-translate-y: -18rem !important; + } + + .xl\:-translate-y-80 { + --tw-translate-y: -20rem !important; + } + + .xl\:-translate-y-96 { + --tw-translate-y: -24rem !important; + } + + .xl\:-translate-y-px { + --tw-translate-y: -1px !important; + } + + .xl\:-translate-y-0\.5 { + --tw-translate-y: -0.125rem !important; + } + + .xl\:-translate-y-1\.5 { + --tw-translate-y: -0.375rem !important; + } + + .xl\:-translate-y-2\.5 { + --tw-translate-y: -0.625rem !important; + } + + .xl\:-translate-y-3\.5 { + --tw-translate-y: -0.875rem !important; + } + + .xl\:translate-y-1\/2 { + --tw-translate-y: 50% !important; + } + + .xl\:translate-y-1\/3 { + --tw-translate-y: 33.333333% !important; + } + + .xl\:translate-y-2\/3 { + --tw-translate-y: 66.666667% !important; + } + + .xl\:translate-y-1\/4 { + --tw-translate-y: 25% !important; + } + + .xl\:translate-y-2\/4 { + --tw-translate-y: 50% !important; + } + + .xl\:translate-y-3\/4 { + --tw-translate-y: 75% !important; + } + + .xl\:translate-y-full { + --tw-translate-y: 100% !important; + } + + .xl\:-translate-y-1\/2 { + --tw-translate-y: -50% !important; + } + + .xl\:-translate-y-1\/3 { + --tw-translate-y: -33.333333% !important; + } + + .xl\:-translate-y-2\/3 { + --tw-translate-y: -66.666667% !important; + } + + .xl\:-translate-y-1\/4 { + --tw-translate-y: -25% !important; + } + + .xl\:-translate-y-2\/4 { + --tw-translate-y: -50% !important; + } + + .xl\:-translate-y-3\/4 { + --tw-translate-y: -75% !important; + } + + .xl\:-translate-y-full { + --tw-translate-y: -100% !important; + } + + .xl\:hover\:translate-x-0:hover { + --tw-translate-x: 0px !important; + } + + .xl\:hover\:translate-x-1:hover { + --tw-translate-x: 0.25rem !important; + } + + .xl\:hover\:translate-x-2:hover { + --tw-translate-x: 0.5rem !important; + } + + .xl\:hover\:translate-x-3:hover { + --tw-translate-x: 0.75rem !important; + } + + .xl\:hover\:translate-x-4:hover { + --tw-translate-x: 1rem !important; + } + + .xl\:hover\:translate-x-5:hover { + --tw-translate-x: 1.25rem !important; + } + + .xl\:hover\:translate-x-6:hover { + --tw-translate-x: 1.5rem !important; + } + + .xl\:hover\:translate-x-7:hover { + --tw-translate-x: 1.75rem !important; + } + + .xl\:hover\:translate-x-8:hover { + --tw-translate-x: 2rem !important; + } + + .xl\:hover\:translate-x-9:hover { + --tw-translate-x: 2.25rem !important; + } + + .xl\:hover\:translate-x-10:hover { + --tw-translate-x: 2.5rem !important; + } + + .xl\:hover\:translate-x-11:hover { + --tw-translate-x: 2.75rem !important; + } + + .xl\:hover\:translate-x-12:hover { + --tw-translate-x: 3rem !important; + } + + .xl\:hover\:translate-x-14:hover { + --tw-translate-x: 3.5rem !important; + } + + .xl\:hover\:translate-x-16:hover { + --tw-translate-x: 4rem !important; + } + + .xl\:hover\:translate-x-20:hover { + --tw-translate-x: 5rem !important; + } + + .xl\:hover\:translate-x-24:hover { + --tw-translate-x: 6rem !important; + } + + .xl\:hover\:translate-x-28:hover { + --tw-translate-x: 7rem !important; + } + + .xl\:hover\:translate-x-32:hover { + --tw-translate-x: 8rem !important; + } + + .xl\:hover\:translate-x-36:hover { + --tw-translate-x: 9rem !important; + } + + .xl\:hover\:translate-x-40:hover { + --tw-translate-x: 10rem !important; + } + + .xl\:hover\:translate-x-44:hover { + --tw-translate-x: 11rem !important; + } + + .xl\:hover\:translate-x-48:hover { + --tw-translate-x: 12rem !important; + } + + .xl\:hover\:translate-x-52:hover { + --tw-translate-x: 13rem !important; + } + + .xl\:hover\:translate-x-56:hover { + --tw-translate-x: 14rem !important; + } + + .xl\:hover\:translate-x-60:hover { + --tw-translate-x: 15rem !important; + } + + .xl\:hover\:translate-x-64:hover { + --tw-translate-x: 16rem !important; + } + + .xl\:hover\:translate-x-72:hover { + --tw-translate-x: 18rem !important; + } + + .xl\:hover\:translate-x-80:hover { + --tw-translate-x: 20rem !important; + } + + .xl\:hover\:translate-x-96:hover { + --tw-translate-x: 24rem !important; + } + + .xl\:hover\:translate-x-px:hover { + --tw-translate-x: 1px !important; + } + + .xl\:hover\:translate-x-0\.5:hover { + --tw-translate-x: 0.125rem !important; + } + + .xl\:hover\:translate-x-1\.5:hover { + --tw-translate-x: 0.375rem !important; + } + + .xl\:hover\:translate-x-2\.5:hover { + --tw-translate-x: 0.625rem !important; + } + + .xl\:hover\:translate-x-3\.5:hover { + --tw-translate-x: 0.875rem !important; + } + + .xl\:hover\:-translate-x-0:hover { + --tw-translate-x: 0px !important; + } + + .xl\:hover\:-translate-x-1:hover { + --tw-translate-x: -0.25rem !important; + } + + .xl\:hover\:-translate-x-2:hover { + --tw-translate-x: -0.5rem !important; + } + + .xl\:hover\:-translate-x-3:hover { + --tw-translate-x: -0.75rem !important; + } + + .xl\:hover\:-translate-x-4:hover { + --tw-translate-x: -1rem !important; + } + + .xl\:hover\:-translate-x-5:hover { + --tw-translate-x: -1.25rem !important; + } + + .xl\:hover\:-translate-x-6:hover { + --tw-translate-x: -1.5rem !important; + } + + .xl\:hover\:-translate-x-7:hover { + --tw-translate-x: -1.75rem !important; + } + + .xl\:hover\:-translate-x-8:hover { + --tw-translate-x: -2rem !important; + } + + .xl\:hover\:-translate-x-9:hover { + --tw-translate-x: -2.25rem !important; + } + + .xl\:hover\:-translate-x-10:hover { + --tw-translate-x: -2.5rem !important; + } + + .xl\:hover\:-translate-x-11:hover { + --tw-translate-x: -2.75rem !important; + } + + .xl\:hover\:-translate-x-12:hover { + --tw-translate-x: -3rem !important; + } + + .xl\:hover\:-translate-x-14:hover { + --tw-translate-x: -3.5rem !important; + } + + .xl\:hover\:-translate-x-16:hover { + --tw-translate-x: -4rem !important; + } + + .xl\:hover\:-translate-x-20:hover { + --tw-translate-x: -5rem !important; + } + + .xl\:hover\:-translate-x-24:hover { + --tw-translate-x: -6rem !important; + } + + .xl\:hover\:-translate-x-28:hover { + --tw-translate-x: -7rem !important; + } + + .xl\:hover\:-translate-x-32:hover { + --tw-translate-x: -8rem !important; + } + + .xl\:hover\:-translate-x-36:hover { + --tw-translate-x: -9rem !important; + } + + .xl\:hover\:-translate-x-40:hover { + --tw-translate-x: -10rem !important; + } + + .xl\:hover\:-translate-x-44:hover { + --tw-translate-x: -11rem !important; + } + + .xl\:hover\:-translate-x-48:hover { + --tw-translate-x: -12rem !important; + } + + .xl\:hover\:-translate-x-52:hover { + --tw-translate-x: -13rem !important; + } + + .xl\:hover\:-translate-x-56:hover { + --tw-translate-x: -14rem !important; + } + + .xl\:hover\:-translate-x-60:hover { + --tw-translate-x: -15rem !important; + } + + .xl\:hover\:-translate-x-64:hover { + --tw-translate-x: -16rem !important; + } + + .xl\:hover\:-translate-x-72:hover { + --tw-translate-x: -18rem !important; + } + + .xl\:hover\:-translate-x-80:hover { + --tw-translate-x: -20rem !important; + } + + .xl\:hover\:-translate-x-96:hover { + --tw-translate-x: -24rem !important; + } + + .xl\:hover\:-translate-x-px:hover { + --tw-translate-x: -1px !important; + } + + .xl\:hover\:-translate-x-0\.5:hover { + --tw-translate-x: -0.125rem !important; + } + + .xl\:hover\:-translate-x-1\.5:hover { + --tw-translate-x: -0.375rem !important; + } + + .xl\:hover\:-translate-x-2\.5:hover { + --tw-translate-x: -0.625rem !important; + } + + .xl\:hover\:-translate-x-3\.5:hover { + --tw-translate-x: -0.875rem !important; + } + + .xl\:hover\:translate-x-1\/2:hover { + --tw-translate-x: 50% !important; + } + + .xl\:hover\:translate-x-1\/3:hover { + --tw-translate-x: 33.333333% !important; + } + + .xl\:hover\:translate-x-2\/3:hover { + --tw-translate-x: 66.666667% !important; + } + + .xl\:hover\:translate-x-1\/4:hover { + --tw-translate-x: 25% !important; + } + + .xl\:hover\:translate-x-2\/4:hover { + --tw-translate-x: 50% !important; + } + + .xl\:hover\:translate-x-3\/4:hover { + --tw-translate-x: 75% !important; + } + + .xl\:hover\:translate-x-full:hover { + --tw-translate-x: 100% !important; + } + + .xl\:hover\:-translate-x-1\/2:hover { + --tw-translate-x: -50% !important; + } + + .xl\:hover\:-translate-x-1\/3:hover { + --tw-translate-x: -33.333333% !important; + } + + .xl\:hover\:-translate-x-2\/3:hover { + --tw-translate-x: -66.666667% !important; + } + + .xl\:hover\:-translate-x-1\/4:hover { + --tw-translate-x: -25% !important; + } + + .xl\:hover\:-translate-x-2\/4:hover { + --tw-translate-x: -50% !important; + } + + .xl\:hover\:-translate-x-3\/4:hover { + --tw-translate-x: -75% !important; + } + + .xl\:hover\:-translate-x-full:hover { + --tw-translate-x: -100% !important; + } + + .xl\:hover\:translate-y-0:hover { + --tw-translate-y: 0px !important; + } + + .xl\:hover\:translate-y-1:hover { + --tw-translate-y: 0.25rem !important; + } + + .xl\:hover\:translate-y-2:hover { + --tw-translate-y: 0.5rem !important; + } + + .xl\:hover\:translate-y-3:hover { + --tw-translate-y: 0.75rem !important; + } + + .xl\:hover\:translate-y-4:hover { + --tw-translate-y: 1rem !important; + } + + .xl\:hover\:translate-y-5:hover { + --tw-translate-y: 1.25rem !important; + } + + .xl\:hover\:translate-y-6:hover { + --tw-translate-y: 1.5rem !important; + } + + .xl\:hover\:translate-y-7:hover { + --tw-translate-y: 1.75rem !important; + } + + .xl\:hover\:translate-y-8:hover { + --tw-translate-y: 2rem !important; + } + + .xl\:hover\:translate-y-9:hover { + --tw-translate-y: 2.25rem !important; + } + + .xl\:hover\:translate-y-10:hover { + --tw-translate-y: 2.5rem !important; + } + + .xl\:hover\:translate-y-11:hover { + --tw-translate-y: 2.75rem !important; + } + + .xl\:hover\:translate-y-12:hover { + --tw-translate-y: 3rem !important; + } + + .xl\:hover\:translate-y-14:hover { + --tw-translate-y: 3.5rem !important; + } + + .xl\:hover\:translate-y-16:hover { + --tw-translate-y: 4rem !important; + } + + .xl\:hover\:translate-y-20:hover { + --tw-translate-y: 5rem !important; + } + + .xl\:hover\:translate-y-24:hover { + --tw-translate-y: 6rem !important; + } + + .xl\:hover\:translate-y-28:hover { + --tw-translate-y: 7rem !important; + } + + .xl\:hover\:translate-y-32:hover { + --tw-translate-y: 8rem !important; + } + + .xl\:hover\:translate-y-36:hover { + --tw-translate-y: 9rem !important; + } + + .xl\:hover\:translate-y-40:hover { + --tw-translate-y: 10rem !important; + } + + .xl\:hover\:translate-y-44:hover { + --tw-translate-y: 11rem !important; + } + + .xl\:hover\:translate-y-48:hover { + --tw-translate-y: 12rem !important; + } + + .xl\:hover\:translate-y-52:hover { + --tw-translate-y: 13rem !important; + } + + .xl\:hover\:translate-y-56:hover { + --tw-translate-y: 14rem !important; + } + + .xl\:hover\:translate-y-60:hover { + --tw-translate-y: 15rem !important; + } + + .xl\:hover\:translate-y-64:hover { + --tw-translate-y: 16rem !important; + } + + .xl\:hover\:translate-y-72:hover { + --tw-translate-y: 18rem !important; + } + + .xl\:hover\:translate-y-80:hover { + --tw-translate-y: 20rem !important; + } + + .xl\:hover\:translate-y-96:hover { + --tw-translate-y: 24rem !important; + } + + .xl\:hover\:translate-y-px:hover { + --tw-translate-y: 1px !important; + } + + .xl\:hover\:translate-y-0\.5:hover { + --tw-translate-y: 0.125rem !important; + } + + .xl\:hover\:translate-y-1\.5:hover { + --tw-translate-y: 0.375rem !important; + } + + .xl\:hover\:translate-y-2\.5:hover { + --tw-translate-y: 0.625rem !important; + } + + .xl\:hover\:translate-y-3\.5:hover { + --tw-translate-y: 0.875rem !important; + } + + .xl\:hover\:-translate-y-0:hover { + --tw-translate-y: 0px !important; + } + + .xl\:hover\:-translate-y-1:hover { + --tw-translate-y: -0.25rem !important; + } + + .xl\:hover\:-translate-y-2:hover { + --tw-translate-y: -0.5rem !important; + } + + .xl\:hover\:-translate-y-3:hover { + --tw-translate-y: -0.75rem !important; + } + + .xl\:hover\:-translate-y-4:hover { + --tw-translate-y: -1rem !important; + } + + .xl\:hover\:-translate-y-5:hover { + --tw-translate-y: -1.25rem !important; + } + + .xl\:hover\:-translate-y-6:hover { + --tw-translate-y: -1.5rem !important; + } + + .xl\:hover\:-translate-y-7:hover { + --tw-translate-y: -1.75rem !important; + } + + .xl\:hover\:-translate-y-8:hover { + --tw-translate-y: -2rem !important; + } + + .xl\:hover\:-translate-y-9:hover { + --tw-translate-y: -2.25rem !important; + } + + .xl\:hover\:-translate-y-10:hover { + --tw-translate-y: -2.5rem !important; + } + + .xl\:hover\:-translate-y-11:hover { + --tw-translate-y: -2.75rem !important; + } + + .xl\:hover\:-translate-y-12:hover { + --tw-translate-y: -3rem !important; + } + + .xl\:hover\:-translate-y-14:hover { + --tw-translate-y: -3.5rem !important; + } + + .xl\:hover\:-translate-y-16:hover { + --tw-translate-y: -4rem !important; + } + + .xl\:hover\:-translate-y-20:hover { + --tw-translate-y: -5rem !important; + } + + .xl\:hover\:-translate-y-24:hover { + --tw-translate-y: -6rem !important; + } + + .xl\:hover\:-translate-y-28:hover { + --tw-translate-y: -7rem !important; + } + + .xl\:hover\:-translate-y-32:hover { + --tw-translate-y: -8rem !important; + } + + .xl\:hover\:-translate-y-36:hover { + --tw-translate-y: -9rem !important; + } + + .xl\:hover\:-translate-y-40:hover { + --tw-translate-y: -10rem !important; + } + + .xl\:hover\:-translate-y-44:hover { + --tw-translate-y: -11rem !important; + } + + .xl\:hover\:-translate-y-48:hover { + --tw-translate-y: -12rem !important; + } + + .xl\:hover\:-translate-y-52:hover { + --tw-translate-y: -13rem !important; + } + + .xl\:hover\:-translate-y-56:hover { + --tw-translate-y: -14rem !important; + } + + .xl\:hover\:-translate-y-60:hover { + --tw-translate-y: -15rem !important; + } + + .xl\:hover\:-translate-y-64:hover { + --tw-translate-y: -16rem !important; + } + + .xl\:hover\:-translate-y-72:hover { + --tw-translate-y: -18rem !important; + } + + .xl\:hover\:-translate-y-80:hover { + --tw-translate-y: -20rem !important; + } + + .xl\:hover\:-translate-y-96:hover { + --tw-translate-y: -24rem !important; + } + + .xl\:hover\:-translate-y-px:hover { + --tw-translate-y: -1px !important; + } + + .xl\:hover\:-translate-y-0\.5:hover { + --tw-translate-y: -0.125rem !important; + } + + .xl\:hover\:-translate-y-1\.5:hover { + --tw-translate-y: -0.375rem !important; + } + + .xl\:hover\:-translate-y-2\.5:hover { + --tw-translate-y: -0.625rem !important; + } + + .xl\:hover\:-translate-y-3\.5:hover { + --tw-translate-y: -0.875rem !important; + } + + .xl\:hover\:translate-y-1\/2:hover { + --tw-translate-y: 50% !important; + } + + .xl\:hover\:translate-y-1\/3:hover { + --tw-translate-y: 33.333333% !important; + } + + .xl\:hover\:translate-y-2\/3:hover { + --tw-translate-y: 66.666667% !important; + } + + .xl\:hover\:translate-y-1\/4:hover { + --tw-translate-y: 25% !important; + } + + .xl\:hover\:translate-y-2\/4:hover { + --tw-translate-y: 50% !important; + } + + .xl\:hover\:translate-y-3\/4:hover { + --tw-translate-y: 75% !important; + } + + .xl\:hover\:translate-y-full:hover { + --tw-translate-y: 100% !important; + } + + .xl\:hover\:-translate-y-1\/2:hover { + --tw-translate-y: -50% !important; + } + + .xl\:hover\:-translate-y-1\/3:hover { + --tw-translate-y: -33.333333% !important; + } + + .xl\:hover\:-translate-y-2\/3:hover { + --tw-translate-y: -66.666667% !important; + } + + .xl\:hover\:-translate-y-1\/4:hover { + --tw-translate-y: -25% !important; + } + + .xl\:hover\:-translate-y-2\/4:hover { + --tw-translate-y: -50% !important; + } + + .xl\:hover\:-translate-y-3\/4:hover { + --tw-translate-y: -75% !important; + } + + .xl\:hover\:-translate-y-full:hover { + --tw-translate-y: -100% !important; + } + + .xl\:focus\:translate-x-0:focus { + --tw-translate-x: 0px !important; + } + + .xl\:focus\:translate-x-1:focus { + --tw-translate-x: 0.25rem !important; + } + + .xl\:focus\:translate-x-2:focus { + --tw-translate-x: 0.5rem !important; + } + + .xl\:focus\:translate-x-3:focus { + --tw-translate-x: 0.75rem !important; + } + + .xl\:focus\:translate-x-4:focus { + --tw-translate-x: 1rem !important; + } + + .xl\:focus\:translate-x-5:focus { + --tw-translate-x: 1.25rem !important; + } + + .xl\:focus\:translate-x-6:focus { + --tw-translate-x: 1.5rem !important; + } + + .xl\:focus\:translate-x-7:focus { + --tw-translate-x: 1.75rem !important; + } + + .xl\:focus\:translate-x-8:focus { + --tw-translate-x: 2rem !important; + } + + .xl\:focus\:translate-x-9:focus { + --tw-translate-x: 2.25rem !important; + } + + .xl\:focus\:translate-x-10:focus { + --tw-translate-x: 2.5rem !important; + } + + .xl\:focus\:translate-x-11:focus { + --tw-translate-x: 2.75rem !important; + } + + .xl\:focus\:translate-x-12:focus { + --tw-translate-x: 3rem !important; + } + + .xl\:focus\:translate-x-14:focus { + --tw-translate-x: 3.5rem !important; + } + + .xl\:focus\:translate-x-16:focus { + --tw-translate-x: 4rem !important; + } + + .xl\:focus\:translate-x-20:focus { + --tw-translate-x: 5rem !important; + } + + .xl\:focus\:translate-x-24:focus { + --tw-translate-x: 6rem !important; + } + + .xl\:focus\:translate-x-28:focus { + --tw-translate-x: 7rem !important; + } + + .xl\:focus\:translate-x-32:focus { + --tw-translate-x: 8rem !important; + } + + .xl\:focus\:translate-x-36:focus { + --tw-translate-x: 9rem !important; + } + + .xl\:focus\:translate-x-40:focus { + --tw-translate-x: 10rem !important; + } + + .xl\:focus\:translate-x-44:focus { + --tw-translate-x: 11rem !important; + } + + .xl\:focus\:translate-x-48:focus { + --tw-translate-x: 12rem !important; + } + + .xl\:focus\:translate-x-52:focus { + --tw-translate-x: 13rem !important; + } + + .xl\:focus\:translate-x-56:focus { + --tw-translate-x: 14rem !important; + } + + .xl\:focus\:translate-x-60:focus { + --tw-translate-x: 15rem !important; + } + + .xl\:focus\:translate-x-64:focus { + --tw-translate-x: 16rem !important; + } + + .xl\:focus\:translate-x-72:focus { + --tw-translate-x: 18rem !important; + } + + .xl\:focus\:translate-x-80:focus { + --tw-translate-x: 20rem !important; + } + + .xl\:focus\:translate-x-96:focus { + --tw-translate-x: 24rem !important; + } + + .xl\:focus\:translate-x-px:focus { + --tw-translate-x: 1px !important; + } + + .xl\:focus\:translate-x-0\.5:focus { + --tw-translate-x: 0.125rem !important; + } + + .xl\:focus\:translate-x-1\.5:focus { + --tw-translate-x: 0.375rem !important; + } + + .xl\:focus\:translate-x-2\.5:focus { + --tw-translate-x: 0.625rem !important; + } + + .xl\:focus\:translate-x-3\.5:focus { + --tw-translate-x: 0.875rem !important; + } + + .xl\:focus\:-translate-x-0:focus { + --tw-translate-x: 0px !important; + } + + .xl\:focus\:-translate-x-1:focus { + --tw-translate-x: -0.25rem !important; + } + + .xl\:focus\:-translate-x-2:focus { + --tw-translate-x: -0.5rem !important; + } + + .xl\:focus\:-translate-x-3:focus { + --tw-translate-x: -0.75rem !important; + } + + .xl\:focus\:-translate-x-4:focus { + --tw-translate-x: -1rem !important; + } + + .xl\:focus\:-translate-x-5:focus { + --tw-translate-x: -1.25rem !important; + } + + .xl\:focus\:-translate-x-6:focus { + --tw-translate-x: -1.5rem !important; + } + + .xl\:focus\:-translate-x-7:focus { + --tw-translate-x: -1.75rem !important; + } + + .xl\:focus\:-translate-x-8:focus { + --tw-translate-x: -2rem !important; + } + + .xl\:focus\:-translate-x-9:focus { + --tw-translate-x: -2.25rem !important; + } + + .xl\:focus\:-translate-x-10:focus { + --tw-translate-x: -2.5rem !important; + } + + .xl\:focus\:-translate-x-11:focus { + --tw-translate-x: -2.75rem !important; + } + + .xl\:focus\:-translate-x-12:focus { + --tw-translate-x: -3rem !important; + } + + .xl\:focus\:-translate-x-14:focus { + --tw-translate-x: -3.5rem !important; + } + + .xl\:focus\:-translate-x-16:focus { + --tw-translate-x: -4rem !important; + } + + .xl\:focus\:-translate-x-20:focus { + --tw-translate-x: -5rem !important; + } + + .xl\:focus\:-translate-x-24:focus { + --tw-translate-x: -6rem !important; + } + + .xl\:focus\:-translate-x-28:focus { + --tw-translate-x: -7rem !important; + } + + .xl\:focus\:-translate-x-32:focus { + --tw-translate-x: -8rem !important; + } + + .xl\:focus\:-translate-x-36:focus { + --tw-translate-x: -9rem !important; + } + + .xl\:focus\:-translate-x-40:focus { + --tw-translate-x: -10rem !important; + } + + .xl\:focus\:-translate-x-44:focus { + --tw-translate-x: -11rem !important; + } + + .xl\:focus\:-translate-x-48:focus { + --tw-translate-x: -12rem !important; + } + + .xl\:focus\:-translate-x-52:focus { + --tw-translate-x: -13rem !important; + } + + .xl\:focus\:-translate-x-56:focus { + --tw-translate-x: -14rem !important; + } + + .xl\:focus\:-translate-x-60:focus { + --tw-translate-x: -15rem !important; + } + + .xl\:focus\:-translate-x-64:focus { + --tw-translate-x: -16rem !important; + } + + .xl\:focus\:-translate-x-72:focus { + --tw-translate-x: -18rem !important; + } + + .xl\:focus\:-translate-x-80:focus { + --tw-translate-x: -20rem !important; + } + + .xl\:focus\:-translate-x-96:focus { + --tw-translate-x: -24rem !important; + } + + .xl\:focus\:-translate-x-px:focus { + --tw-translate-x: -1px !important; + } + + .xl\:focus\:-translate-x-0\.5:focus { + --tw-translate-x: -0.125rem !important; + } + + .xl\:focus\:-translate-x-1\.5:focus { + --tw-translate-x: -0.375rem !important; + } + + .xl\:focus\:-translate-x-2\.5:focus { + --tw-translate-x: -0.625rem !important; + } + + .xl\:focus\:-translate-x-3\.5:focus { + --tw-translate-x: -0.875rem !important; + } + + .xl\:focus\:translate-x-1\/2:focus { + --tw-translate-x: 50% !important; + } + + .xl\:focus\:translate-x-1\/3:focus { + --tw-translate-x: 33.333333% !important; + } + + .xl\:focus\:translate-x-2\/3:focus { + --tw-translate-x: 66.666667% !important; + } + + .xl\:focus\:translate-x-1\/4:focus { + --tw-translate-x: 25% !important; + } + + .xl\:focus\:translate-x-2\/4:focus { + --tw-translate-x: 50% !important; + } + + .xl\:focus\:translate-x-3\/4:focus { + --tw-translate-x: 75% !important; + } + + .xl\:focus\:translate-x-full:focus { + --tw-translate-x: 100% !important; + } + + .xl\:focus\:-translate-x-1\/2:focus { + --tw-translate-x: -50% !important; + } + + .xl\:focus\:-translate-x-1\/3:focus { + --tw-translate-x: -33.333333% !important; + } + + .xl\:focus\:-translate-x-2\/3:focus { + --tw-translate-x: -66.666667% !important; + } + + .xl\:focus\:-translate-x-1\/4:focus { + --tw-translate-x: -25% !important; + } + + .xl\:focus\:-translate-x-2\/4:focus { + --tw-translate-x: -50% !important; + } + + .xl\:focus\:-translate-x-3\/4:focus { + --tw-translate-x: -75% !important; + } + + .xl\:focus\:-translate-x-full:focus { + --tw-translate-x: -100% !important; + } + + .xl\:focus\:translate-y-0:focus { + --tw-translate-y: 0px !important; + } + + .xl\:focus\:translate-y-1:focus { + --tw-translate-y: 0.25rem !important; + } + + .xl\:focus\:translate-y-2:focus { + --tw-translate-y: 0.5rem !important; + } + + .xl\:focus\:translate-y-3:focus { + --tw-translate-y: 0.75rem !important; + } + + .xl\:focus\:translate-y-4:focus { + --tw-translate-y: 1rem !important; + } + + .xl\:focus\:translate-y-5:focus { + --tw-translate-y: 1.25rem !important; + } + + .xl\:focus\:translate-y-6:focus { + --tw-translate-y: 1.5rem !important; + } + + .xl\:focus\:translate-y-7:focus { + --tw-translate-y: 1.75rem !important; + } + + .xl\:focus\:translate-y-8:focus { + --tw-translate-y: 2rem !important; + } + + .xl\:focus\:translate-y-9:focus { + --tw-translate-y: 2.25rem !important; + } + + .xl\:focus\:translate-y-10:focus { + --tw-translate-y: 2.5rem !important; + } + + .xl\:focus\:translate-y-11:focus { + --tw-translate-y: 2.75rem !important; + } + + .xl\:focus\:translate-y-12:focus { + --tw-translate-y: 3rem !important; + } + + .xl\:focus\:translate-y-14:focus { + --tw-translate-y: 3.5rem !important; + } + + .xl\:focus\:translate-y-16:focus { + --tw-translate-y: 4rem !important; + } + + .xl\:focus\:translate-y-20:focus { + --tw-translate-y: 5rem !important; + } + + .xl\:focus\:translate-y-24:focus { + --tw-translate-y: 6rem !important; + } + + .xl\:focus\:translate-y-28:focus { + --tw-translate-y: 7rem !important; + } + + .xl\:focus\:translate-y-32:focus { + --tw-translate-y: 8rem !important; + } + + .xl\:focus\:translate-y-36:focus { + --tw-translate-y: 9rem !important; + } + + .xl\:focus\:translate-y-40:focus { + --tw-translate-y: 10rem !important; + } + + .xl\:focus\:translate-y-44:focus { + --tw-translate-y: 11rem !important; + } + + .xl\:focus\:translate-y-48:focus { + --tw-translate-y: 12rem !important; + } + + .xl\:focus\:translate-y-52:focus { + --tw-translate-y: 13rem !important; + } + + .xl\:focus\:translate-y-56:focus { + --tw-translate-y: 14rem !important; + } + + .xl\:focus\:translate-y-60:focus { + --tw-translate-y: 15rem !important; + } + + .xl\:focus\:translate-y-64:focus { + --tw-translate-y: 16rem !important; + } + + .xl\:focus\:translate-y-72:focus { + --tw-translate-y: 18rem !important; + } + + .xl\:focus\:translate-y-80:focus { + --tw-translate-y: 20rem !important; + } + + .xl\:focus\:translate-y-96:focus { + --tw-translate-y: 24rem !important; + } + + .xl\:focus\:translate-y-px:focus { + --tw-translate-y: 1px !important; + } + + .xl\:focus\:translate-y-0\.5:focus { + --tw-translate-y: 0.125rem !important; + } + + .xl\:focus\:translate-y-1\.5:focus { + --tw-translate-y: 0.375rem !important; + } + + .xl\:focus\:translate-y-2\.5:focus { + --tw-translate-y: 0.625rem !important; + } + + .xl\:focus\:translate-y-3\.5:focus { + --tw-translate-y: 0.875rem !important; + } + + .xl\:focus\:-translate-y-0:focus { + --tw-translate-y: 0px !important; + } + + .xl\:focus\:-translate-y-1:focus { + --tw-translate-y: -0.25rem !important; + } + + .xl\:focus\:-translate-y-2:focus { + --tw-translate-y: -0.5rem !important; + } + + .xl\:focus\:-translate-y-3:focus { + --tw-translate-y: -0.75rem !important; + } + + .xl\:focus\:-translate-y-4:focus { + --tw-translate-y: -1rem !important; + } + + .xl\:focus\:-translate-y-5:focus { + --tw-translate-y: -1.25rem !important; + } + + .xl\:focus\:-translate-y-6:focus { + --tw-translate-y: -1.5rem !important; + } + + .xl\:focus\:-translate-y-7:focus { + --tw-translate-y: -1.75rem !important; + } + + .xl\:focus\:-translate-y-8:focus { + --tw-translate-y: -2rem !important; + } + + .xl\:focus\:-translate-y-9:focus { + --tw-translate-y: -2.25rem !important; + } + + .xl\:focus\:-translate-y-10:focus { + --tw-translate-y: -2.5rem !important; + } + + .xl\:focus\:-translate-y-11:focus { + --tw-translate-y: -2.75rem !important; + } + + .xl\:focus\:-translate-y-12:focus { + --tw-translate-y: -3rem !important; + } + + .xl\:focus\:-translate-y-14:focus { + --tw-translate-y: -3.5rem !important; + } + + .xl\:focus\:-translate-y-16:focus { + --tw-translate-y: -4rem !important; + } + + .xl\:focus\:-translate-y-20:focus { + --tw-translate-y: -5rem !important; + } + + .xl\:focus\:-translate-y-24:focus { + --tw-translate-y: -6rem !important; + } + + .xl\:focus\:-translate-y-28:focus { + --tw-translate-y: -7rem !important; + } + + .xl\:focus\:-translate-y-32:focus { + --tw-translate-y: -8rem !important; + } + + .xl\:focus\:-translate-y-36:focus { + --tw-translate-y: -9rem !important; + } + + .xl\:focus\:-translate-y-40:focus { + --tw-translate-y: -10rem !important; + } + + .xl\:focus\:-translate-y-44:focus { + --tw-translate-y: -11rem !important; + } + + .xl\:focus\:-translate-y-48:focus { + --tw-translate-y: -12rem !important; + } + + .xl\:focus\:-translate-y-52:focus { + --tw-translate-y: -13rem !important; + } + + .xl\:focus\:-translate-y-56:focus { + --tw-translate-y: -14rem !important; + } + + .xl\:focus\:-translate-y-60:focus { + --tw-translate-y: -15rem !important; + } + + .xl\:focus\:-translate-y-64:focus { + --tw-translate-y: -16rem !important; + } + + .xl\:focus\:-translate-y-72:focus { + --tw-translate-y: -18rem !important; + } + + .xl\:focus\:-translate-y-80:focus { + --tw-translate-y: -20rem !important; + } + + .xl\:focus\:-translate-y-96:focus { + --tw-translate-y: -24rem !important; + } + + .xl\:focus\:-translate-y-px:focus { + --tw-translate-y: -1px !important; + } + + .xl\:focus\:-translate-y-0\.5:focus { + --tw-translate-y: -0.125rem !important; + } + + .xl\:focus\:-translate-y-1\.5:focus { + --tw-translate-y: -0.375rem !important; + } + + .xl\:focus\:-translate-y-2\.5:focus { + --tw-translate-y: -0.625rem !important; + } + + .xl\:focus\:-translate-y-3\.5:focus { + --tw-translate-y: -0.875rem !important; + } + + .xl\:focus\:translate-y-1\/2:focus { + --tw-translate-y: 50% !important; + } + + .xl\:focus\:translate-y-1\/3:focus { + --tw-translate-y: 33.333333% !important; + } + + .xl\:focus\:translate-y-2\/3:focus { + --tw-translate-y: 66.666667% !important; + } + + .xl\:focus\:translate-y-1\/4:focus { + --tw-translate-y: 25% !important; + } + + .xl\:focus\:translate-y-2\/4:focus { + --tw-translate-y: 50% !important; + } + + .xl\:focus\:translate-y-3\/4:focus { + --tw-translate-y: 75% !important; + } + + .xl\:focus\:translate-y-full:focus { + --tw-translate-y: 100% !important; + } + + .xl\:focus\:-translate-y-1\/2:focus { + --tw-translate-y: -50% !important; + } + + .xl\:focus\:-translate-y-1\/3:focus { + --tw-translate-y: -33.333333% !important; + } + + .xl\:focus\:-translate-y-2\/3:focus { + --tw-translate-y: -66.666667% !important; + } + + .xl\:focus\:-translate-y-1\/4:focus { + --tw-translate-y: -25% !important; + } + + .xl\:focus\:-translate-y-2\/4:focus { + --tw-translate-y: -50% !important; + } + + .xl\:focus\:-translate-y-3\/4:focus { + --tw-translate-y: -75% !important; + } + + .xl\:focus\:-translate-y-full:focus { + --tw-translate-y: -100% !important; + } + + .xl\:skew-x-0 { + --tw-skew-x: 0deg !important; + } + + .xl\:skew-x-1 { + --tw-skew-x: 1deg !important; + } + + .xl\:skew-x-2 { + --tw-skew-x: 2deg !important; + } + + .xl\:skew-x-3 { + --tw-skew-x: 3deg !important; + } + + .xl\:skew-x-6 { + --tw-skew-x: 6deg !important; + } + + .xl\:skew-x-12 { + --tw-skew-x: 12deg !important; + } + + .xl\:-skew-x-12 { + --tw-skew-x: -12deg !important; + } + + .xl\:-skew-x-6 { + --tw-skew-x: -6deg !important; + } + + .xl\:-skew-x-3 { + --tw-skew-x: -3deg !important; + } + + .xl\:-skew-x-2 { + --tw-skew-x: -2deg !important; + } + + .xl\:-skew-x-1 { + --tw-skew-x: -1deg !important; + } + + .xl\:skew-y-0 { + --tw-skew-y: 0deg !important; + } + + .xl\:skew-y-1 { + --tw-skew-y: 1deg !important; + } + + .xl\:skew-y-2 { + --tw-skew-y: 2deg !important; + } + + .xl\:skew-y-3 { + --tw-skew-y: 3deg !important; + } + + .xl\:skew-y-6 { + --tw-skew-y: 6deg !important; + } + + .xl\:skew-y-12 { + --tw-skew-y: 12deg !important; + } + + .xl\:-skew-y-12 { + --tw-skew-y: -12deg !important; + } + + .xl\:-skew-y-6 { + --tw-skew-y: -6deg !important; + } + + .xl\:-skew-y-3 { + --tw-skew-y: -3deg !important; + } + + .xl\:-skew-y-2 { + --tw-skew-y: -2deg !important; + } + + .xl\:-skew-y-1 { + --tw-skew-y: -1deg !important; + } + + .xl\:hover\:skew-x-0:hover { + --tw-skew-x: 0deg !important; + } + + .xl\:hover\:skew-x-1:hover { + --tw-skew-x: 1deg !important; + } + + .xl\:hover\:skew-x-2:hover { + --tw-skew-x: 2deg !important; + } + + .xl\:hover\:skew-x-3:hover { + --tw-skew-x: 3deg !important; + } + + .xl\:hover\:skew-x-6:hover { + --tw-skew-x: 6deg !important; + } + + .xl\:hover\:skew-x-12:hover { + --tw-skew-x: 12deg !important; + } + + .xl\:hover\:-skew-x-12:hover { + --tw-skew-x: -12deg !important; + } + + .xl\:hover\:-skew-x-6:hover { + --tw-skew-x: -6deg !important; + } + + .xl\:hover\:-skew-x-3:hover { + --tw-skew-x: -3deg !important; + } + + .xl\:hover\:-skew-x-2:hover { + --tw-skew-x: -2deg !important; + } + + .xl\:hover\:-skew-x-1:hover { + --tw-skew-x: -1deg !important; + } + + .xl\:hover\:skew-y-0:hover { + --tw-skew-y: 0deg !important; + } + + .xl\:hover\:skew-y-1:hover { + --tw-skew-y: 1deg !important; + } + + .xl\:hover\:skew-y-2:hover { + --tw-skew-y: 2deg !important; + } + + .xl\:hover\:skew-y-3:hover { + --tw-skew-y: 3deg !important; + } + + .xl\:hover\:skew-y-6:hover { + --tw-skew-y: 6deg !important; + } + + .xl\:hover\:skew-y-12:hover { + --tw-skew-y: 12deg !important; + } + + .xl\:hover\:-skew-y-12:hover { + --tw-skew-y: -12deg !important; + } + + .xl\:hover\:-skew-y-6:hover { + --tw-skew-y: -6deg !important; + } + + .xl\:hover\:-skew-y-3:hover { + --tw-skew-y: -3deg !important; + } + + .xl\:hover\:-skew-y-2:hover { + --tw-skew-y: -2deg !important; + } + + .xl\:hover\:-skew-y-1:hover { + --tw-skew-y: -1deg !important; + } + + .xl\:focus\:skew-x-0:focus { + --tw-skew-x: 0deg !important; + } + + .xl\:focus\:skew-x-1:focus { + --tw-skew-x: 1deg !important; + } + + .xl\:focus\:skew-x-2:focus { + --tw-skew-x: 2deg !important; + } + + .xl\:focus\:skew-x-3:focus { + --tw-skew-x: 3deg !important; + } + + .xl\:focus\:skew-x-6:focus { + --tw-skew-x: 6deg !important; + } + + .xl\:focus\:skew-x-12:focus { + --tw-skew-x: 12deg !important; + } + + .xl\:focus\:-skew-x-12:focus { + --tw-skew-x: -12deg !important; + } + + .xl\:focus\:-skew-x-6:focus { + --tw-skew-x: -6deg !important; + } + + .xl\:focus\:-skew-x-3:focus { + --tw-skew-x: -3deg !important; + } + + .xl\:focus\:-skew-x-2:focus { + --tw-skew-x: -2deg !important; + } + + .xl\:focus\:-skew-x-1:focus { + --tw-skew-x: -1deg !important; + } + + .xl\:focus\:skew-y-0:focus { + --tw-skew-y: 0deg !important; + } + + .xl\:focus\:skew-y-1:focus { + --tw-skew-y: 1deg !important; + } + + .xl\:focus\:skew-y-2:focus { + --tw-skew-y: 2deg !important; + } + + .xl\:focus\:skew-y-3:focus { + --tw-skew-y: 3deg !important; + } + + .xl\:focus\:skew-y-6:focus { + --tw-skew-y: 6deg !important; + } + + .xl\:focus\:skew-y-12:focus { + --tw-skew-y: 12deg !important; + } + + .xl\:focus\:-skew-y-12:focus { + --tw-skew-y: -12deg !important; + } + + .xl\:focus\:-skew-y-6:focus { + --tw-skew-y: -6deg !important; + } + + .xl\:focus\:-skew-y-3:focus { + --tw-skew-y: -3deg !important; + } + + .xl\:focus\:-skew-y-2:focus { + --tw-skew-y: -2deg !important; + } + + .xl\:focus\:-skew-y-1:focus { + --tw-skew-y: -1deg !important; + } + + .xl\:transition-none { + transition-property: none !important; + } + + .xl\:transition-all { + transition-property: all !important; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important; + transition-duration: 150ms !important; + } + + .xl\:transition { + transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter !important; + transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter !important; + transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter !important; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important; + transition-duration: 150ms !important; + } + + .xl\:transition-colors { + transition-property: background-color, border-color, color, fill, stroke !important; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important; + transition-duration: 150ms !important; + } + + .xl\:transition-opacity { + transition-property: opacity !important; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important; + transition-duration: 150ms !important; + } + + .xl\:transition-shadow { + transition-property: box-shadow !important; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important; + transition-duration: 150ms !important; + } + + .xl\:transition-transform { + transition-property: transform !important; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important; + transition-duration: 150ms !important; + } + + .xl\:ease-linear { + transition-timing-function: linear !important; + } + + .xl\:ease-in { + transition-timing-function: cubic-bezier(0.4, 0, 1, 1) !important; + } + + .xl\:ease-out { + transition-timing-function: cubic-bezier(0, 0, 0.2, 1) !important; + } + + .xl\:ease-in-out { + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important; + } + + .xl\:duration-75 { + transition-duration: 75ms !important; + } + + .xl\:duration-100 { + transition-duration: 100ms !important; + } + + .xl\:duration-150 { + transition-duration: 150ms !important; + } + + .xl\:duration-200 { + transition-duration: 200ms !important; + } + + .xl\:duration-300 { + transition-duration: 300ms !important; + } + + .xl\:duration-500 { + transition-duration: 500ms !important; + } + + .xl\:duration-700 { + transition-duration: 700ms !important; + } + + .xl\:duration-1000 { + transition-duration: 1000ms !important; + } + + .xl\:delay-75 { + transition-delay: 75ms !important; + } + + .xl\:delay-100 { + transition-delay: 100ms !important; + } + + .xl\:delay-150 { + transition-delay: 150ms !important; + } + + .xl\:delay-200 { + transition-delay: 200ms !important; + } + + .xl\:delay-300 { + transition-delay: 300ms !important; + } + + .xl\:delay-500 { + transition-delay: 500ms !important; + } + + .xl\:delay-700 { + transition-delay: 700ms !important; + } + + .xl\:delay-1000 { + transition-delay: 1000ms !important; + } + + .xl\:animate-none { + -webkit-animation: none !important; + animation: none !important; + } + + .xl\:animate-spin { + -webkit-animation: spin 1s linear infinite !important; + animation: spin 1s linear infinite !important; + } + + .xl\:animate-ping { + -webkit-animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite !important; + animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite !important; + } + + .xl\:animate-pulse { + -webkit-animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite !important; + animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite !important; + } + + .xl\:animate-bounce { + -webkit-animation: bounce 1s infinite !important; + animation: bounce 1s infinite !important; + } + + .xl\:mix-blend-normal { + mix-blend-mode: normal !important; + } + + .xl\:mix-blend-multiply { + mix-blend-mode: multiply !important; + } + + .xl\:mix-blend-screen { + mix-blend-mode: screen !important; + } + + .xl\:mix-blend-overlay { + mix-blend-mode: overlay !important; + } + + .xl\:mix-blend-darken { + mix-blend-mode: darken !important; + } + + .xl\:mix-blend-lighten { + mix-blend-mode: lighten !important; + } + + .xl\:mix-blend-color-dodge { + mix-blend-mode: color-dodge !important; + } + + .xl\:mix-blend-color-burn { + mix-blend-mode: color-burn !important; + } + + .xl\:mix-blend-hard-light { + mix-blend-mode: hard-light !important; + } + + .xl\:mix-blend-soft-light { + mix-blend-mode: soft-light !important; + } + + .xl\:mix-blend-difference { + mix-blend-mode: difference !important; + } + + .xl\:mix-blend-exclusion { + mix-blend-mode: exclusion !important; + } + + .xl\:mix-blend-hue { + mix-blend-mode: hue !important; + } + + .xl\:mix-blend-saturation { + mix-blend-mode: saturation !important; + } + + .xl\:mix-blend-color { + mix-blend-mode: color !important; + } + + .xl\:mix-blend-luminosity { + mix-blend-mode: luminosity !important; + } + + .xl\:bg-blend-normal { + background-blend-mode: normal !important; + } + + .xl\:bg-blend-multiply { + background-blend-mode: multiply !important; + } + + .xl\:bg-blend-screen { + background-blend-mode: screen !important; + } + + .xl\:bg-blend-overlay { + background-blend-mode: overlay !important; + } + + .xl\:bg-blend-darken { + background-blend-mode: darken !important; + } + + .xl\:bg-blend-lighten { + background-blend-mode: lighten !important; + } + + .xl\:bg-blend-color-dodge { + background-blend-mode: color-dodge !important; + } + + .xl\:bg-blend-color-burn { + background-blend-mode: color-burn !important; + } + + .xl\:bg-blend-hard-light { + background-blend-mode: hard-light !important; + } + + .xl\:bg-blend-soft-light { + background-blend-mode: soft-light !important; + } + + .xl\:bg-blend-difference { + background-blend-mode: difference !important; + } + + .xl\:bg-blend-exclusion { + background-blend-mode: exclusion !important; + } + + .xl\:bg-blend-hue { + background-blend-mode: hue !important; + } + + .xl\:bg-blend-saturation { + background-blend-mode: saturation !important; + } + + .xl\:bg-blend-color { + background-blend-mode: color !important; + } + + .xl\:bg-blend-luminosity { + background-blend-mode: luminosity !important; + } + + .xl\:filter { + --tw-blur: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-brightness: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-contrast: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-grayscale: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-hue-rotate: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-invert: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-saturate: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-sepia: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-drop-shadow: var(--tw-empty,/*!*/ /*!*/) !important; + 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) !important; + } + + .xl\:filter-none { + filter: none !important; + } + + .xl\:blur-0 { + --tw-blur: blur(0) !important; + } + + .xl\:blur-sm { + --tw-blur: blur(4px) !important; + } + + .xl\:blur { + --tw-blur: blur(8px) !important; + } + + .xl\:blur-md { + --tw-blur: blur(12px) !important; + } + + .xl\:blur-lg { + --tw-blur: blur(16px) !important; + } + + .xl\:blur-xl { + --tw-blur: blur(24px) !important; + } + + .xl\:blur-2xl { + --tw-blur: blur(40px) !important; + } + + .xl\:blur-3xl { + --tw-blur: blur(64px) !important; + } + + .xl\:brightness-0 { + --tw-brightness: brightness(0) !important; + } + + .xl\:brightness-50 { + --tw-brightness: brightness(.5) !important; + } + + .xl\:brightness-75 { + --tw-brightness: brightness(.75) !important; + } + + .xl\:brightness-90 { + --tw-brightness: brightness(.9) !important; + } + + .xl\:brightness-95 { + --tw-brightness: brightness(.95) !important; + } + + .xl\:brightness-100 { + --tw-brightness: brightness(1) !important; + } + + .xl\:brightness-105 { + --tw-brightness: brightness(1.05) !important; + } + + .xl\:brightness-110 { + --tw-brightness: brightness(1.1) !important; + } + + .xl\:brightness-125 { + --tw-brightness: brightness(1.25) !important; + } + + .xl\:brightness-150 { + --tw-brightness: brightness(1.5) !important; + } + + .xl\:brightness-200 { + --tw-brightness: brightness(2) !important; + } + + .xl\:contrast-0 { + --tw-contrast: contrast(0) !important; + } + + .xl\:contrast-50 { + --tw-contrast: contrast(.5) !important; + } + + .xl\:contrast-75 { + --tw-contrast: contrast(.75) !important; + } + + .xl\:contrast-100 { + --tw-contrast: contrast(1) !important; + } + + .xl\:contrast-125 { + --tw-contrast: contrast(1.25) !important; + } + + .xl\:contrast-150 { + --tw-contrast: contrast(1.5) !important; + } + + .xl\:contrast-200 { + --tw-contrast: contrast(2) !important; + } + + .xl\:drop-shadow-sm { + --tw-drop-shadow: drop-shadow(0 1px 1px rgba(0,0,0,0.05)) !important; + } + + .xl\:drop-shadow { + --tw-drop-shadow: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1)) drop-shadow(0 1px 1px rgba(0, 0, 0, 0.06)) !important; + } + + .xl\:drop-shadow-md { + --tw-drop-shadow: drop-shadow(0 4px 3px rgba(0, 0, 0, 0.07)) drop-shadow(0 2px 2px rgba(0, 0, 0, 0.06)) !important; + } + + .xl\:drop-shadow-lg { + --tw-drop-shadow: drop-shadow(0 10px 8px rgba(0, 0, 0, 0.04)) drop-shadow(0 4px 3px rgba(0, 0, 0, 0.1)) !important; + } + + .xl\:drop-shadow-xl { + --tw-drop-shadow: drop-shadow(0 20px 13px rgba(0, 0, 0, 0.03)) drop-shadow(0 8px 5px rgba(0, 0, 0, 0.08)) !important; + } + + .xl\:drop-shadow-2xl { + --tw-drop-shadow: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.15)) !important; + } + + .xl\:drop-shadow-none { + --tw-drop-shadow: drop-shadow(0 0 #0000) !important; + } + + .xl\:grayscale-0 { + --tw-grayscale: grayscale(0) !important; + } + + .xl\:grayscale { + --tw-grayscale: grayscale(100%) !important; + } + + .xl\:hue-rotate-0 { + --tw-hue-rotate: hue-rotate(0deg) !important; + } + + .xl\:hue-rotate-15 { + --tw-hue-rotate: hue-rotate(15deg) !important; + } + + .xl\:hue-rotate-30 { + --tw-hue-rotate: hue-rotate(30deg) !important; + } + + .xl\:hue-rotate-60 { + --tw-hue-rotate: hue-rotate(60deg) !important; + } + + .xl\:hue-rotate-90 { + --tw-hue-rotate: hue-rotate(90deg) !important; + } + + .xl\:hue-rotate-180 { + --tw-hue-rotate: hue-rotate(180deg) !important; + } + + .xl\:-hue-rotate-180 { + --tw-hue-rotate: hue-rotate(-180deg) !important; + } + + .xl\:-hue-rotate-90 { + --tw-hue-rotate: hue-rotate(-90deg) !important; + } + + .xl\:-hue-rotate-60 { + --tw-hue-rotate: hue-rotate(-60deg) !important; + } + + .xl\:-hue-rotate-30 { + --tw-hue-rotate: hue-rotate(-30deg) !important; + } + + .xl\:-hue-rotate-15 { + --tw-hue-rotate: hue-rotate(-15deg) !important; + } + + .xl\:invert-0 { + --tw-invert: invert(0) !important; + } + + .xl\:invert { + --tw-invert: invert(100%) !important; + } + + .xl\:saturate-0 { + --tw-saturate: saturate(0) !important; + } + + .xl\:saturate-50 { + --tw-saturate: saturate(.5) !important; + } + + .xl\:saturate-100 { + --tw-saturate: saturate(1) !important; + } + + .xl\:saturate-150 { + --tw-saturate: saturate(1.5) !important; + } + + .xl\:saturate-200 { + --tw-saturate: saturate(2) !important; + } + + .xl\:sepia-0 { + --tw-sepia: sepia(0) !important; + } + + .xl\:sepia { + --tw-sepia: sepia(100%) !important; + } + + .xl\:backdrop-filter { + --tw-backdrop-blur: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-backdrop-brightness: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-backdrop-contrast: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-backdrop-grayscale: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-backdrop-hue-rotate: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-backdrop-invert: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-backdrop-opacity: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-backdrop-saturate: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-backdrop-sepia: var(--tw-empty,/*!*/ /*!*/) !important; + -webkit-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) !important; + 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) !important; + } + + .xl\:backdrop-filter-none { + -webkit-backdrop-filter: none !important; + backdrop-filter: none !important; + } + + .xl\:backdrop-brightness-0 { + --tw-backdrop-brightness: brightness(0) !important; + } + + .xl\:backdrop-brightness-50 { + --tw-backdrop-brightness: brightness(.5) !important; + } + + .xl\:backdrop-brightness-75 { + --tw-backdrop-brightness: brightness(.75) !important; + } + + .xl\:backdrop-brightness-90 { + --tw-backdrop-brightness: brightness(.9) !important; + } + + .xl\:backdrop-brightness-95 { + --tw-backdrop-brightness: brightness(.95) !important; + } + + .xl\:backdrop-brightness-100 { + --tw-backdrop-brightness: brightness(1) !important; + } + + .xl\:backdrop-brightness-105 { + --tw-backdrop-brightness: brightness(1.05) !important; + } + + .xl\:backdrop-brightness-110 { + --tw-backdrop-brightness: brightness(1.1) !important; + } + + .xl\:backdrop-brightness-125 { + --tw-backdrop-brightness: brightness(1.25) !important; + } + + .xl\:backdrop-brightness-150 { + --tw-backdrop-brightness: brightness(1.5) !important; + } + + .xl\:backdrop-brightness-200 { + --tw-backdrop-brightness: brightness(2) !important; + } + + .xl\:backdrop-contrast-0 { + --tw-backdrop-contrast: contrast(0) !important; + } + + .xl\:backdrop-contrast-50 { + --tw-backdrop-contrast: contrast(.5) !important; + } + + .xl\:backdrop-contrast-75 { + --tw-backdrop-contrast: contrast(.75) !important; + } + + .xl\:backdrop-contrast-100 { + --tw-backdrop-contrast: contrast(1) !important; + } + + .xl\:backdrop-contrast-125 { + --tw-backdrop-contrast: contrast(1.25) !important; + } + + .xl\:backdrop-contrast-150 { + --tw-backdrop-contrast: contrast(1.5) !important; + } + + .xl\:backdrop-contrast-200 { + --tw-backdrop-contrast: contrast(2) !important; + } + + .xl\:backdrop-grayscale-0 { + --tw-backdrop-grayscale: grayscale(0) !important; + } + + .xl\:backdrop-grayscale { + --tw-backdrop-grayscale: grayscale(100%) !important; + } + + .xl\:backdrop-hue-rotate-0 { + --tw-backdrop-hue-rotate: hue-rotate(0deg) !important; + } + + .xl\:backdrop-hue-rotate-15 { + --tw-backdrop-hue-rotate: hue-rotate(15deg) !important; + } + + .xl\:backdrop-hue-rotate-30 { + --tw-backdrop-hue-rotate: hue-rotate(30deg) !important; + } + + .xl\:backdrop-hue-rotate-60 { + --tw-backdrop-hue-rotate: hue-rotate(60deg) !important; + } + + .xl\:backdrop-hue-rotate-90 { + --tw-backdrop-hue-rotate: hue-rotate(90deg) !important; + } + + .xl\:backdrop-hue-rotate-180 { + --tw-backdrop-hue-rotate: hue-rotate(180deg) !important; + } + + .xl\:-backdrop-hue-rotate-180 { + --tw-backdrop-hue-rotate: hue-rotate(-180deg) !important; + } + + .xl\:-backdrop-hue-rotate-90 { + --tw-backdrop-hue-rotate: hue-rotate(-90deg) !important; + } + + .xl\:-backdrop-hue-rotate-60 { + --tw-backdrop-hue-rotate: hue-rotate(-60deg) !important; + } + + .xl\:-backdrop-hue-rotate-30 { + --tw-backdrop-hue-rotate: hue-rotate(-30deg) !important; + } + + .xl\:-backdrop-hue-rotate-15 { + --tw-backdrop-hue-rotate: hue-rotate(-15deg) !important; + } + + .xl\:backdrop-invert-0 { + --tw-backdrop-invert: invert(0) !important; + } + + .xl\:backdrop-invert { + --tw-backdrop-invert: invert(100%) !important; + } + + .xl\:backdrop-saturate-0 { + --tw-backdrop-saturate: saturate(0) !important; + } + + .xl\:backdrop-saturate-50 { + --tw-backdrop-saturate: saturate(.5) !important; + } + + .xl\:backdrop-saturate-100 { + --tw-backdrop-saturate: saturate(1) !important; + } + + .xl\:backdrop-saturate-150 { + --tw-backdrop-saturate: saturate(1.5) !important; + } + + .xl\:backdrop-saturate-200 { + --tw-backdrop-saturate: saturate(2) !important; + } + + .xl\:backdrop-sepia-0 { + --tw-backdrop-sepia: sepia(0) !important; + } + + .xl\:backdrop-sepia { + --tw-backdrop-sepia: sepia(100%) !important; + } +} + +@media (min-width: 1536px) { + .\32xl\:container { + width: 100%; + } + + @media (min-width: 640px) { + .\32xl\:container { + max-width: 640px; + } + } + + @media (min-width: 768px) { + .\32xl\:container { + max-width: 768px; + } + } + + @media (min-width: 1024px) { + .\32xl\:container { + max-width: 1024px; + } + } + + @media (min-width: 1280px) { + .\32xl\:container { + max-width: 1280px; + } + } + + @media (min-width: 1536px) { + .\32xl\:container { + max-width: 1536px; + } + } + + .\32xl\:space-y-0 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(0px * var(--tw-space-y-reverse)) !important; + } + + .\32xl\:space-x-0 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(0px * var(--tw-space-x-reverse)) !important; + margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .\32xl\:space-y-1 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(0.25rem * var(--tw-space-y-reverse)) !important; + } + + .\32xl\:space-x-1 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(0.25rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(0.25rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .\32xl\:space-y-2 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(0.5rem * var(--tw-space-y-reverse)) !important; + } + + .\32xl\:space-x-2 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(0.5rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .\32xl\:space-y-3 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(0.75rem * var(--tw-space-y-reverse)) !important; + } + + .\32xl\:space-x-3 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(0.75rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(0.75rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .\32xl\:space-y-4 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(1rem * var(--tw-space-y-reverse)) !important; + } + + .\32xl\:space-x-4 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(1rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .\32xl\:space-y-5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(1.25rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(1.25rem * var(--tw-space-y-reverse)) !important; + } + + .\32xl\:space-x-5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(1.25rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(1.25rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .\32xl\:space-y-6 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(1.5rem * var(--tw-space-y-reverse)) !important; + } + + .\32xl\:space-x-6 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(1.5rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(1.5rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .\32xl\:space-y-7 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(1.75rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(1.75rem * var(--tw-space-y-reverse)) !important; + } + + .\32xl\:space-x-7 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(1.75rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(1.75rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .\32xl\:space-y-8 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(2rem * var(--tw-space-y-reverse)) !important; + } + + .\32xl\:space-x-8 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(2rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(2rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .\32xl\:space-y-9 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(2.25rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(2.25rem * var(--tw-space-y-reverse)) !important; + } + + .\32xl\:space-x-9 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(2.25rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(2.25rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .\32xl\:space-y-10 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(2.5rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(2.5rem * var(--tw-space-y-reverse)) !important; + } + + .\32xl\:space-x-10 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(2.5rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(2.5rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .\32xl\:space-y-11 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(2.75rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(2.75rem * var(--tw-space-y-reverse)) !important; + } + + .\32xl\:space-x-11 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(2.75rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(2.75rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .\32xl\:space-y-12 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(3rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(3rem * var(--tw-space-y-reverse)) !important; + } + + .\32xl\:space-x-12 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(3rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(3rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .\32xl\:space-y-14 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(3.5rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(3.5rem * var(--tw-space-y-reverse)) !important; + } + + .\32xl\:space-x-14 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(3.5rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(3.5rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .\32xl\:space-y-16 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(4rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(4rem * var(--tw-space-y-reverse)) !important; + } + + .\32xl\:space-x-16 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(4rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(4rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .\32xl\:space-y-20 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(5rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(5rem * var(--tw-space-y-reverse)) !important; + } + + .\32xl\:space-x-20 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(5rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(5rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .\32xl\:space-y-24 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(6rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(6rem * var(--tw-space-y-reverse)) !important; + } + + .\32xl\:space-x-24 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(6rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(6rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .\32xl\:space-y-28 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(7rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(7rem * var(--tw-space-y-reverse)) !important; + } + + .\32xl\:space-x-28 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(7rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(7rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .\32xl\:space-y-32 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(8rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(8rem * var(--tw-space-y-reverse)) !important; + } + + .\32xl\:space-x-32 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(8rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(8rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .\32xl\:space-y-36 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(9rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(9rem * var(--tw-space-y-reverse)) !important; + } + + .\32xl\:space-x-36 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(9rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(9rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .\32xl\:space-y-40 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(10rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(10rem * var(--tw-space-y-reverse)) !important; + } + + .\32xl\:space-x-40 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(10rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(10rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .\32xl\:space-y-44 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(11rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(11rem * var(--tw-space-y-reverse)) !important; + } + + .\32xl\:space-x-44 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(11rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(11rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .\32xl\:space-y-48 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(12rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(12rem * var(--tw-space-y-reverse)) !important; + } + + .\32xl\:space-x-48 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(12rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(12rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .\32xl\:space-y-52 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(13rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(13rem * var(--tw-space-y-reverse)) !important; + } + + .\32xl\:space-x-52 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(13rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(13rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .\32xl\:space-y-56 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(14rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(14rem * var(--tw-space-y-reverse)) !important; + } + + .\32xl\:space-x-56 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(14rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(14rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .\32xl\:space-y-60 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(15rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(15rem * var(--tw-space-y-reverse)) !important; + } + + .\32xl\:space-x-60 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(15rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(15rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .\32xl\:space-y-64 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(16rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(16rem * var(--tw-space-y-reverse)) !important; + } + + .\32xl\:space-x-64 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(16rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(16rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .\32xl\:space-y-72 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(18rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(18rem * var(--tw-space-y-reverse)) !important; + } + + .\32xl\:space-x-72 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(18rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(18rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .\32xl\:space-y-80 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(20rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(20rem * var(--tw-space-y-reverse)) !important; + } + + .\32xl\:space-x-80 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(20rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(20rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .\32xl\:space-y-96 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(24rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(24rem * var(--tw-space-y-reverse)) !important; + } + + .\32xl\:space-x-96 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(24rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(24rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .\32xl\:space-y-px > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(1px * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(1px * var(--tw-space-y-reverse)) !important; + } + + .\32xl\:space-x-px > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(1px * var(--tw-space-x-reverse)) !important; + margin-left: calc(1px * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .\32xl\:space-y-0\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(0.125rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(0.125rem * var(--tw-space-y-reverse)) !important; + } + + .\32xl\:space-x-0\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(0.125rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(0.125rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .\32xl\:space-y-1\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(0.375rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(0.375rem * var(--tw-space-y-reverse)) !important; + } + + .\32xl\:space-x-1\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(0.375rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(0.375rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .\32xl\:space-y-2\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(0.625rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(0.625rem * var(--tw-space-y-reverse)) !important; + } + + .\32xl\:space-x-2\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(0.625rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(0.625rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .\32xl\:space-y-3\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(0.875rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(0.875rem * var(--tw-space-y-reverse)) !important; + } + + .\32xl\:space-x-3\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(0.875rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(0.875rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .\32xl\:-space-y-0 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(0px * var(--tw-space-y-reverse)) !important; + } + + .\32xl\:-space-x-0 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(0px * var(--tw-space-x-reverse)) !important; + margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .\32xl\:-space-y-1 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-0.25rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-0.25rem * var(--tw-space-y-reverse)) !important; + } + + .\32xl\:-space-x-1 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-0.25rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-0.25rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .\32xl\:-space-y-2 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-0.5rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-0.5rem * var(--tw-space-y-reverse)) !important; + } + + .\32xl\:-space-x-2 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-0.5rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-0.5rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .\32xl\:-space-y-3 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-0.75rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-0.75rem * var(--tw-space-y-reverse)) !important; + } + + .\32xl\:-space-x-3 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-0.75rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-0.75rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .\32xl\:-space-y-4 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-1rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-1rem * var(--tw-space-y-reverse)) !important; + } + + .\32xl\:-space-x-4 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-1rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-1rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .\32xl\:-space-y-5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-1.25rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-1.25rem * var(--tw-space-y-reverse)) !important; + } + + .\32xl\:-space-x-5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-1.25rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-1.25rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .\32xl\:-space-y-6 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-1.5rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-1.5rem * var(--tw-space-y-reverse)) !important; + } + + .\32xl\:-space-x-6 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-1.5rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-1.5rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .\32xl\:-space-y-7 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-1.75rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-1.75rem * var(--tw-space-y-reverse)) !important; + } + + .\32xl\:-space-x-7 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-1.75rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-1.75rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .\32xl\:-space-y-8 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-2rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-2rem * var(--tw-space-y-reverse)) !important; + } + + .\32xl\:-space-x-8 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-2rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-2rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .\32xl\:-space-y-9 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-2.25rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-2.25rem * var(--tw-space-y-reverse)) !important; + } + + .\32xl\:-space-x-9 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-2.25rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-2.25rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .\32xl\:-space-y-10 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-2.5rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-2.5rem * var(--tw-space-y-reverse)) !important; + } + + .\32xl\:-space-x-10 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-2.5rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-2.5rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .\32xl\:-space-y-11 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-2.75rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-2.75rem * var(--tw-space-y-reverse)) !important; + } + + .\32xl\:-space-x-11 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-2.75rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-2.75rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .\32xl\:-space-y-12 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-3rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-3rem * var(--tw-space-y-reverse)) !important; + } + + .\32xl\:-space-x-12 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-3rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-3rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .\32xl\:-space-y-14 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-3.5rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-3.5rem * var(--tw-space-y-reverse)) !important; + } + + .\32xl\:-space-x-14 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-3.5rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-3.5rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .\32xl\:-space-y-16 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-4rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-4rem * var(--tw-space-y-reverse)) !important; + } + + .\32xl\:-space-x-16 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-4rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-4rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .\32xl\:-space-y-20 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-5rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-5rem * var(--tw-space-y-reverse)) !important; + } + + .\32xl\:-space-x-20 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-5rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-5rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .\32xl\:-space-y-24 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-6rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-6rem * var(--tw-space-y-reverse)) !important; + } + + .\32xl\:-space-x-24 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-6rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-6rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .\32xl\:-space-y-28 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-7rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-7rem * var(--tw-space-y-reverse)) !important; + } + + .\32xl\:-space-x-28 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-7rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-7rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .\32xl\:-space-y-32 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-8rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-8rem * var(--tw-space-y-reverse)) !important; + } + + .\32xl\:-space-x-32 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-8rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-8rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .\32xl\:-space-y-36 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-9rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-9rem * var(--tw-space-y-reverse)) !important; + } + + .\32xl\:-space-x-36 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-9rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-9rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .\32xl\:-space-y-40 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-10rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-10rem * var(--tw-space-y-reverse)) !important; + } + + .\32xl\:-space-x-40 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-10rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-10rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .\32xl\:-space-y-44 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-11rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-11rem * var(--tw-space-y-reverse)) !important; + } + + .\32xl\:-space-x-44 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-11rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-11rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .\32xl\:-space-y-48 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-12rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-12rem * var(--tw-space-y-reverse)) !important; + } + + .\32xl\:-space-x-48 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-12rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-12rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .\32xl\:-space-y-52 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-13rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-13rem * var(--tw-space-y-reverse)) !important; + } + + .\32xl\:-space-x-52 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-13rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-13rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .\32xl\:-space-y-56 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-14rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-14rem * var(--tw-space-y-reverse)) !important; + } + + .\32xl\:-space-x-56 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-14rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-14rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .\32xl\:-space-y-60 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-15rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-15rem * var(--tw-space-y-reverse)) !important; + } + + .\32xl\:-space-x-60 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-15rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-15rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .\32xl\:-space-y-64 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-16rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-16rem * var(--tw-space-y-reverse)) !important; + } + + .\32xl\:-space-x-64 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-16rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-16rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .\32xl\:-space-y-72 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-18rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-18rem * var(--tw-space-y-reverse)) !important; + } + + .\32xl\:-space-x-72 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-18rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-18rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .\32xl\:-space-y-80 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-20rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-20rem * var(--tw-space-y-reverse)) !important; + } + + .\32xl\:-space-x-80 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-20rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-20rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .\32xl\:-space-y-96 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-24rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-24rem * var(--tw-space-y-reverse)) !important; + } + + .\32xl\:-space-x-96 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-24rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-24rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .\32xl\:-space-y-px > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-1px * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-1px * var(--tw-space-y-reverse)) !important; + } + + .\32xl\:-space-x-px > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-1px * var(--tw-space-x-reverse)) !important; + margin-left: calc(-1px * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .\32xl\:-space-y-0\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-0.125rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-0.125rem * var(--tw-space-y-reverse)) !important; + } + + .\32xl\:-space-x-0\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-0.125rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-0.125rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .\32xl\:-space-y-1\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-0.375rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-0.375rem * var(--tw-space-y-reverse)) !important; + } + + .\32xl\:-space-x-1\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-0.375rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-0.375rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .\32xl\:-space-y-2\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-0.625rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-0.625rem * var(--tw-space-y-reverse)) !important; + } + + .\32xl\:-space-x-2\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-0.625rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-0.625rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .\32xl\:-space-y-3\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(-0.875rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(-0.875rem * var(--tw-space-y-reverse)) !important; + } + + .\32xl\:-space-x-3\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-0.875rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-0.875rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .\32xl\:space-y-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 1 !important; + } + + .\32xl\:space-x-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 1 !important; + } + + .\32xl\:divide-y-0 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0 !important; + border-top-width: calc(0px * calc(1 - var(--tw-divide-y-reverse))) !important; + border-bottom-width: calc(0px * var(--tw-divide-y-reverse)) !important; + } + + .\32xl\:divide-x-0 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-x-reverse: 0 !important; + border-right-width: calc(0px * var(--tw-divide-x-reverse)) !important; + border-left-width: calc(0px * calc(1 - var(--tw-divide-x-reverse))) !important; + } + + .\32xl\:divide-y-2 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0 !important; + border-top-width: calc(2px * calc(1 - var(--tw-divide-y-reverse))) !important; + border-bottom-width: calc(2px * var(--tw-divide-y-reverse)) !important; + } + + .\32xl\:divide-x-2 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-x-reverse: 0 !important; + border-right-width: calc(2px * var(--tw-divide-x-reverse)) !important; + border-left-width: calc(2px * calc(1 - var(--tw-divide-x-reverse))) !important; + } + + .\32xl\:divide-y-4 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0 !important; + border-top-width: calc(4px * calc(1 - var(--tw-divide-y-reverse))) !important; + border-bottom-width: calc(4px * var(--tw-divide-y-reverse)) !important; + } + + .\32xl\:divide-x-4 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-x-reverse: 0 !important; + border-right-width: calc(4px * var(--tw-divide-x-reverse)) !important; + border-left-width: calc(4px * calc(1 - var(--tw-divide-x-reverse))) !important; + } + + .\32xl\:divide-y-8 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0 !important; + border-top-width: calc(8px * calc(1 - var(--tw-divide-y-reverse))) !important; + border-bottom-width: calc(8px * var(--tw-divide-y-reverse)) !important; + } + + .\32xl\:divide-x-8 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-x-reverse: 0 !important; + border-right-width: calc(8px * var(--tw-divide-x-reverse)) !important; + border-left-width: calc(8px * calc(1 - var(--tw-divide-x-reverse))) !important; + } + + .\32xl\:divide-y > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0 !important; + border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse))) !important; + border-bottom-width: calc(1px * var(--tw-divide-y-reverse)) !important; + } + + .\32xl\:divide-x > :not([hidden]) ~ :not([hidden]) { + --tw-divide-x-reverse: 0 !important; + border-right-width: calc(1px * var(--tw-divide-x-reverse)) !important; + border-left-width: calc(1px * calc(1 - var(--tw-divide-x-reverse))) !important; + } + + .\32xl\:divide-y-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 1 !important; + } + + .\32xl\:divide-x-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-divide-x-reverse: 1 !important; + } + + .\32xl\:divide-transparent > :not([hidden]) ~ :not([hidden]) { + border-color: transparent !important; + } + + .\32xl\:divide-current > :not([hidden]) ~ :not([hidden]) { + border-color: currentColor !important; + } + + .\32xl\:divide-black > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(0, 0, 0, var(--tw-divide-opacity)) !important; + } + + .\32xl\:divide-white > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(255, 255, 255, var(--tw-divide-opacity)) !important; + } + + .\32xl\:divide-gray-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(249, 250, 251, var(--tw-divide-opacity)) !important; + } + + .\32xl\:divide-gray-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(243, 244, 246, var(--tw-divide-opacity)) !important; + } + + .\32xl\:divide-gray-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(229, 231, 235, var(--tw-divide-opacity)) !important; + } + + .\32xl\:divide-gray-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(209, 213, 219, var(--tw-divide-opacity)) !important; + } + + .\32xl\:divide-gray-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(156, 163, 175, var(--tw-divide-opacity)) !important; + } + + .\32xl\:divide-gray-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(107, 114, 128, var(--tw-divide-opacity)) !important; + } + + .\32xl\:divide-gray-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(75, 85, 99, var(--tw-divide-opacity)) !important; + } + + .\32xl\:divide-gray-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(55, 65, 81, var(--tw-divide-opacity)) !important; + } + + .\32xl\:divide-gray-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(31, 41, 55, var(--tw-divide-opacity)) !important; + } + + .\32xl\:divide-gray-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(17, 24, 39, var(--tw-divide-opacity)) !important; + } + + .\32xl\:divide-red-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(254, 242, 242, var(--tw-divide-opacity)) !important; + } + + .\32xl\:divide-red-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(254, 226, 226, var(--tw-divide-opacity)) !important; + } + + .\32xl\:divide-red-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(254, 202, 202, var(--tw-divide-opacity)) !important; + } + + .\32xl\:divide-red-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(252, 165, 165, var(--tw-divide-opacity)) !important; + } + + .\32xl\:divide-red-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(248, 113, 113, var(--tw-divide-opacity)) !important; + } + + .\32xl\:divide-red-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(239, 68, 68, var(--tw-divide-opacity)) !important; + } + + .\32xl\:divide-red-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(220, 38, 38, var(--tw-divide-opacity)) !important; + } + + .\32xl\:divide-red-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(185, 28, 28, var(--tw-divide-opacity)) !important; + } + + .\32xl\:divide-red-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(153, 27, 27, var(--tw-divide-opacity)) !important; + } + + .\32xl\:divide-red-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(127, 29, 29, var(--tw-divide-opacity)) !important; + } + + .\32xl\:divide-yellow-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(255, 251, 235, var(--tw-divide-opacity)) !important; + } + + .\32xl\:divide-yellow-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(254, 243, 199, var(--tw-divide-opacity)) !important; + } + + .\32xl\:divide-yellow-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(253, 230, 138, var(--tw-divide-opacity)) !important; + } + + .\32xl\:divide-yellow-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(252, 211, 77, var(--tw-divide-opacity)) !important; + } + + .\32xl\:divide-yellow-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(251, 191, 36, var(--tw-divide-opacity)) !important; + } + + .\32xl\:divide-yellow-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(245, 158, 11, var(--tw-divide-opacity)) !important; + } + + .\32xl\:divide-yellow-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(217, 119, 6, var(--tw-divide-opacity)) !important; + } + + .\32xl\:divide-yellow-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(180, 83, 9, var(--tw-divide-opacity)) !important; + } + + .\32xl\:divide-yellow-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(146, 64, 14, var(--tw-divide-opacity)) !important; + } + + .\32xl\:divide-yellow-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(120, 53, 15, var(--tw-divide-opacity)) !important; + } + + .\32xl\:divide-green-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(236, 253, 245, var(--tw-divide-opacity)) !important; + } + + .\32xl\:divide-green-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(209, 250, 229, var(--tw-divide-opacity)) !important; + } + + .\32xl\:divide-green-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(167, 243, 208, var(--tw-divide-opacity)) !important; + } + + .\32xl\:divide-green-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(110, 231, 183, var(--tw-divide-opacity)) !important; + } + + .\32xl\:divide-green-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(52, 211, 153, var(--tw-divide-opacity)) !important; + } + + .\32xl\:divide-green-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(16, 185, 129, var(--tw-divide-opacity)) !important; + } + + .\32xl\:divide-green-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(5, 150, 105, var(--tw-divide-opacity)) !important; + } + + .\32xl\:divide-green-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(4, 120, 87, var(--tw-divide-opacity)) !important; + } + + .\32xl\:divide-green-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(6, 95, 70, var(--tw-divide-opacity)) !important; + } + + .\32xl\:divide-green-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(6, 78, 59, var(--tw-divide-opacity)) !important; + } + + .\32xl\:divide-blue-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(239, 246, 255, var(--tw-divide-opacity)) !important; + } + + .\32xl\:divide-blue-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(219, 234, 254, var(--tw-divide-opacity)) !important; + } + + .\32xl\:divide-blue-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(191, 219, 254, var(--tw-divide-opacity)) !important; + } + + .\32xl\:divide-blue-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(147, 197, 253, var(--tw-divide-opacity)) !important; + } + + .\32xl\:divide-blue-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(96, 165, 250, var(--tw-divide-opacity)) !important; + } + + .\32xl\:divide-blue-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(59, 130, 246, var(--tw-divide-opacity)) !important; + } + + .\32xl\:divide-blue-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(37, 99, 235, var(--tw-divide-opacity)) !important; + } + + .\32xl\:divide-blue-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(29, 78, 216, var(--tw-divide-opacity)) !important; + } + + .\32xl\:divide-blue-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(30, 64, 175, var(--tw-divide-opacity)) !important; + } + + .\32xl\:divide-blue-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(30, 58, 138, var(--tw-divide-opacity)) !important; + } + + .\32xl\:divide-indigo-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(238, 242, 255, var(--tw-divide-opacity)) !important; + } + + .\32xl\:divide-indigo-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(224, 231, 255, var(--tw-divide-opacity)) !important; + } + + .\32xl\:divide-indigo-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(199, 210, 254, var(--tw-divide-opacity)) !important; + } + + .\32xl\:divide-indigo-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(165, 180, 252, var(--tw-divide-opacity)) !important; + } + + .\32xl\:divide-indigo-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(129, 140, 248, var(--tw-divide-opacity)) !important; + } + + .\32xl\:divide-indigo-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(99, 102, 241, var(--tw-divide-opacity)) !important; + } + + .\32xl\:divide-indigo-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(79, 70, 229, var(--tw-divide-opacity)) !important; + } + + .\32xl\:divide-indigo-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(67, 56, 202, var(--tw-divide-opacity)) !important; + } + + .\32xl\:divide-indigo-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(55, 48, 163, var(--tw-divide-opacity)) !important; + } + + .\32xl\:divide-indigo-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(49, 46, 129, var(--tw-divide-opacity)) !important; + } + + .\32xl\:divide-purple-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(245, 243, 255, var(--tw-divide-opacity)) !important; + } + + .\32xl\:divide-purple-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(237, 233, 254, var(--tw-divide-opacity)) !important; + } + + .\32xl\:divide-purple-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(221, 214, 254, var(--tw-divide-opacity)) !important; + } + + .\32xl\:divide-purple-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(196, 181, 253, var(--tw-divide-opacity)) !important; + } + + .\32xl\:divide-purple-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(167, 139, 250, var(--tw-divide-opacity)) !important; + } + + .\32xl\:divide-purple-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(139, 92, 246, var(--tw-divide-opacity)) !important; + } + + .\32xl\:divide-purple-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(124, 58, 237, var(--tw-divide-opacity)) !important; + } + + .\32xl\:divide-purple-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(109, 40, 217, var(--tw-divide-opacity)) !important; + } + + .\32xl\:divide-purple-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(91, 33, 182, var(--tw-divide-opacity)) !important; + } + + .\32xl\:divide-purple-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(76, 29, 149, var(--tw-divide-opacity)) !important; + } + + .\32xl\:divide-pink-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(253, 242, 248, var(--tw-divide-opacity)) !important; + } + + .\32xl\:divide-pink-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(252, 231, 243, var(--tw-divide-opacity)) !important; + } + + .\32xl\:divide-pink-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(251, 207, 232, var(--tw-divide-opacity)) !important; + } + + .\32xl\:divide-pink-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(249, 168, 212, var(--tw-divide-opacity)) !important; + } + + .\32xl\:divide-pink-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(244, 114, 182, var(--tw-divide-opacity)) !important; + } + + .\32xl\:divide-pink-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(236, 72, 153, var(--tw-divide-opacity)) !important; + } + + .\32xl\:divide-pink-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(219, 39, 119, var(--tw-divide-opacity)) !important; + } + + .\32xl\:divide-pink-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(190, 24, 93, var(--tw-divide-opacity)) !important; + } + + .\32xl\:divide-pink-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(157, 23, 77, var(--tw-divide-opacity)) !important; + } + + .\32xl\:divide-pink-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(131, 24, 67, var(--tw-divide-opacity)) !important; + } + + .\32xl\:divide-primary > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(0, 49, 151, var(--tw-divide-opacity)) !important; + } + + .\32xl\:divide-solid > :not([hidden]) ~ :not([hidden]) { + border-style: solid !important; + } + + .\32xl\:divide-dashed > :not([hidden]) ~ :not([hidden]) { + border-style: dashed !important; + } + + .\32xl\:divide-dotted > :not([hidden]) ~ :not([hidden]) { + border-style: dotted !important; + } + + .\32xl\:divide-double > :not([hidden]) ~ :not([hidden]) { + border-style: double !important; + } + + .\32xl\:divide-none > :not([hidden]) ~ :not([hidden]) { + border-style: none !important; + } + + .\32xl\:divide-opacity-0 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0 !important; + } + + .\32xl\:divide-opacity-5 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.05 !important; + } + + .\32xl\:divide-opacity-10 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.1 !important; + } + + .\32xl\:divide-opacity-20 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.2 !important; + } + + .\32xl\:divide-opacity-25 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.25 !important; + } + + .\32xl\:divide-opacity-30 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.3 !important; + } + + .\32xl\:divide-opacity-40 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.4 !important; + } + + .\32xl\:divide-opacity-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.5 !important; + } + + .\32xl\:divide-opacity-60 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.6 !important; + } + + .\32xl\:divide-opacity-70 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.7 !important; + } + + .\32xl\:divide-opacity-75 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.75 !important; + } + + .\32xl\:divide-opacity-80 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.8 !important; + } + + .\32xl\:divide-opacity-90 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.9 !important; + } + + .\32xl\:divide-opacity-95 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.95 !important; + } + + .\32xl\:divide-opacity-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + } + + .\32xl\:sr-only { + position: absolute !important; + width: 1px !important; + height: 1px !important; + padding: 0 !important; + margin: -1px !important; + overflow: hidden !important; + clip: rect(0, 0, 0, 0) !important; + white-space: nowrap !important; + border-width: 0 !important; + } + + .\32xl\:not-sr-only { + position: static !important; + width: auto !important; + height: auto !important; + padding: 0 !important; + margin: 0 !important; + overflow: visible !important; + clip: auto !important; + white-space: normal !important; + } + + .\32xl\:focus-within\:sr-only:focus-within { + position: absolute !important; + width: 1px !important; + height: 1px !important; + padding: 0 !important; + margin: -1px !important; + overflow: hidden !important; + clip: rect(0, 0, 0, 0) !important; + white-space: nowrap !important; + border-width: 0 !important; + } + + .\32xl\:focus-within\:not-sr-only:focus-within { + position: static !important; + width: auto !important; + height: auto !important; + padding: 0 !important; + margin: 0 !important; + overflow: visible !important; + clip: auto !important; + white-space: normal !important; + } + + .\32xl\:focus\:sr-only:focus { + position: absolute !important; + width: 1px !important; + height: 1px !important; + padding: 0 !important; + margin: -1px !important; + overflow: hidden !important; + clip: rect(0, 0, 0, 0) !important; + white-space: nowrap !important; + border-width: 0 !important; + } + + .\32xl\:focus\:not-sr-only:focus { + position: static !important; + width: auto !important; + height: auto !important; + padding: 0 !important; + margin: 0 !important; + overflow: visible !important; + clip: auto !important; + white-space: normal !important; + } + + .\32xl\:appearance-none { + -webkit-appearance: none !important; + -moz-appearance: none !important; + appearance: none !important; + } + + .\32xl\:bg-fixed { + background-attachment: fixed !important; + } + + .\32xl\:bg-local { + background-attachment: local !important; + } + + .\32xl\:bg-scroll { + background-attachment: scroll !important; + } + + .\32xl\:bg-clip-border { + background-clip: border-box !important; + } + + .\32xl\:bg-clip-padding { + background-clip: padding-box !important; + } + + .\32xl\:bg-clip-content { + background-clip: content-box !important; + } + + .\32xl\:bg-clip-text { + -webkit-background-clip: text !important; + background-clip: text !important; + } + + .\32xl\:bg-transparent { + background-color: transparent !important; + } + + .\32xl\:bg-current { + background-color: currentColor !important; + } + + .\32xl\:bg-black { + --tw-bg-opacity: 1 !important; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important; + } + + .\32xl\:bg-white { + --tw-bg-opacity: 1 !important; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important; + } + + .\32xl\:bg-gray-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)) !important; + } + + .\32xl\:bg-gray-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)) !important; + } + + .\32xl\:bg-gray-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)) !important; + } + + .\32xl\:bg-gray-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)) !important; + } + + .\32xl\:bg-gray-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)) !important; + } + + .\32xl\:bg-gray-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)) !important; + } + + .\32xl\:bg-gray-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)) !important; + } + + .\32xl\:bg-gray-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)) !important; + } + + .\32xl\:bg-gray-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)) !important; + } + + .\32xl\:bg-gray-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)) !important; + } + + .\32xl\:bg-red-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 242, 242, var(--tw-bg-opacity)) !important; + } + + .\32xl\:bg-red-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 226, 226, var(--tw-bg-opacity)) !important; + } + + .\32xl\:bg-red-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 202, 202, var(--tw-bg-opacity)) !important; + } + + .\32xl\:bg-red-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 165, 165, var(--tw-bg-opacity)) !important; + } + + .\32xl\:bg-red-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(248, 113, 113, var(--tw-bg-opacity)) !important; + } + + .\32xl\:bg-red-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(239, 68, 68, var(--tw-bg-opacity)) !important; + } + + .\32xl\:bg-red-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(220, 38, 38, var(--tw-bg-opacity)) !important; + } + + .\32xl\:bg-red-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(185, 28, 28, var(--tw-bg-opacity)) !important; + } + + .\32xl\:bg-red-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(153, 27, 27, var(--tw-bg-opacity)) !important; + } + + .\32xl\:bg-red-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(127, 29, 29, var(--tw-bg-opacity)) !important; + } + + .\32xl\:bg-yellow-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(255, 251, 235, var(--tw-bg-opacity)) !important; + } + + .\32xl\:bg-yellow-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 243, 199, var(--tw-bg-opacity)) !important; + } + + .\32xl\:bg-yellow-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(253, 230, 138, var(--tw-bg-opacity)) !important; + } + + .\32xl\:bg-yellow-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 211, 77, var(--tw-bg-opacity)) !important; + } + + .\32xl\:bg-yellow-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(251, 191, 36, var(--tw-bg-opacity)) !important; + } + + .\32xl\:bg-yellow-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)) !important; + } + + .\32xl\:bg-yellow-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(217, 119, 6, var(--tw-bg-opacity)) !important; + } + + .\32xl\:bg-yellow-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(180, 83, 9, var(--tw-bg-opacity)) !important; + } + + .\32xl\:bg-yellow-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(146, 64, 14, var(--tw-bg-opacity)) !important; + } + + .\32xl\:bg-yellow-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(120, 53, 15, var(--tw-bg-opacity)) !important; + } + + .\32xl\:bg-green-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(236, 253, 245, var(--tw-bg-opacity)) !important; + } + + .\32xl\:bg-green-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(209, 250, 229, var(--tw-bg-opacity)) !important; + } + + .\32xl\:bg-green-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(167, 243, 208, var(--tw-bg-opacity)) !important; + } + + .\32xl\:bg-green-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(110, 231, 183, var(--tw-bg-opacity)) !important; + } + + .\32xl\:bg-green-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(52, 211, 153, var(--tw-bg-opacity)) !important; + } + + .\32xl\:bg-green-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(16, 185, 129, var(--tw-bg-opacity)) !important; + } + + .\32xl\:bg-green-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(5, 150, 105, var(--tw-bg-opacity)) !important; + } + + .\32xl\:bg-green-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(4, 120, 87, var(--tw-bg-opacity)) !important; + } + + .\32xl\:bg-green-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(6, 95, 70, var(--tw-bg-opacity)) !important; + } + + .\32xl\:bg-green-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(6, 78, 59, var(--tw-bg-opacity)) !important; + } + + .\32xl\:bg-blue-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(239, 246, 255, var(--tw-bg-opacity)) !important; + } + + .\32xl\:bg-blue-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(219, 234, 254, var(--tw-bg-opacity)) !important; + } + + .\32xl\:bg-blue-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(191, 219, 254, var(--tw-bg-opacity)) !important; + } + + .\32xl\:bg-blue-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(147, 197, 253, var(--tw-bg-opacity)) !important; + } + + .\32xl\:bg-blue-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(96, 165, 250, var(--tw-bg-opacity)) !important; + } + + .\32xl\:bg-blue-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)) !important; + } + + .\32xl\:bg-blue-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(37, 99, 235, var(--tw-bg-opacity)) !important; + } + + .\32xl\:bg-blue-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(29, 78, 216, var(--tw-bg-opacity)) !important; + } + + .\32xl\:bg-blue-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(30, 64, 175, var(--tw-bg-opacity)) !important; + } + + .\32xl\:bg-blue-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(30, 58, 138, var(--tw-bg-opacity)) !important; + } + + .\32xl\:bg-indigo-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(238, 242, 255, var(--tw-bg-opacity)) !important; + } + + .\32xl\:bg-indigo-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(224, 231, 255, var(--tw-bg-opacity)) !important; + } + + .\32xl\:bg-indigo-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(199, 210, 254, var(--tw-bg-opacity)) !important; + } + + .\32xl\:bg-indigo-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(165, 180, 252, var(--tw-bg-opacity)) !important; + } + + .\32xl\:bg-indigo-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(129, 140, 248, var(--tw-bg-opacity)) !important; + } + + .\32xl\:bg-indigo-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(99, 102, 241, var(--tw-bg-opacity)) !important; + } + + .\32xl\:bg-indigo-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(79, 70, 229, var(--tw-bg-opacity)) !important; + } + + .\32xl\:bg-indigo-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(67, 56, 202, var(--tw-bg-opacity)) !important; + } + + .\32xl\:bg-indigo-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(55, 48, 163, var(--tw-bg-opacity)) !important; + } + + .\32xl\:bg-indigo-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(49, 46, 129, var(--tw-bg-opacity)) !important; + } + + .\32xl\:bg-purple-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(245, 243, 255, var(--tw-bg-opacity)) !important; + } + + .\32xl\:bg-purple-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(237, 233, 254, var(--tw-bg-opacity)) !important; + } + + .\32xl\:bg-purple-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(221, 214, 254, var(--tw-bg-opacity)) !important; + } + + .\32xl\:bg-purple-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(196, 181, 253, var(--tw-bg-opacity)) !important; + } + + .\32xl\:bg-purple-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(167, 139, 250, var(--tw-bg-opacity)) !important; + } + + .\32xl\:bg-purple-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(139, 92, 246, var(--tw-bg-opacity)) !important; + } + + .\32xl\:bg-purple-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(124, 58, 237, var(--tw-bg-opacity)) !important; + } + + .\32xl\:bg-purple-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(109, 40, 217, var(--tw-bg-opacity)) !important; + } + + .\32xl\:bg-purple-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(91, 33, 182, var(--tw-bg-opacity)) !important; + } + + .\32xl\:bg-purple-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(76, 29, 149, var(--tw-bg-opacity)) !important; + } + + .\32xl\:bg-pink-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(253, 242, 248, var(--tw-bg-opacity)) !important; + } + + .\32xl\:bg-pink-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 231, 243, var(--tw-bg-opacity)) !important; + } + + .\32xl\:bg-pink-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(251, 207, 232, var(--tw-bg-opacity)) !important; + } + + .\32xl\:bg-pink-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(249, 168, 212, var(--tw-bg-opacity)) !important; + } + + .\32xl\:bg-pink-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(244, 114, 182, var(--tw-bg-opacity)) !important; + } + + .\32xl\:bg-pink-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(236, 72, 153, var(--tw-bg-opacity)) !important; + } + + .\32xl\:bg-pink-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(219, 39, 119, var(--tw-bg-opacity)) !important; + } + + .\32xl\:bg-pink-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(190, 24, 93, var(--tw-bg-opacity)) !important; + } + + .\32xl\:bg-pink-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(157, 23, 77, var(--tw-bg-opacity)) !important; + } + + .\32xl\:bg-pink-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(131, 24, 67, var(--tw-bg-opacity)) !important; + } + + .\32xl\:bg-primary { + --tw-bg-opacity: 1 !important; + background-color: rgba(0, 49, 151, var(--tw-bg-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:bg-transparent { + background-color: transparent !important; + } + + .group:hover .\32xl\:group-hover\:bg-current { + background-color: currentColor !important; + } + + .group:hover .\32xl\:group-hover\:bg-black { + --tw-bg-opacity: 1 !important; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:bg-white { + --tw-bg-opacity: 1 !important; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:bg-gray-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:bg-gray-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:bg-gray-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:bg-gray-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:bg-gray-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:bg-gray-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:bg-gray-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:bg-gray-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:bg-gray-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:bg-gray-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:bg-red-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 242, 242, var(--tw-bg-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:bg-red-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 226, 226, var(--tw-bg-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:bg-red-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 202, 202, var(--tw-bg-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:bg-red-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 165, 165, var(--tw-bg-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:bg-red-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(248, 113, 113, var(--tw-bg-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:bg-red-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(239, 68, 68, var(--tw-bg-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:bg-red-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(220, 38, 38, var(--tw-bg-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:bg-red-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(185, 28, 28, var(--tw-bg-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:bg-red-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(153, 27, 27, var(--tw-bg-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:bg-red-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(127, 29, 29, var(--tw-bg-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:bg-yellow-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(255, 251, 235, var(--tw-bg-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:bg-yellow-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 243, 199, var(--tw-bg-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:bg-yellow-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(253, 230, 138, var(--tw-bg-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:bg-yellow-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 211, 77, var(--tw-bg-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:bg-yellow-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(251, 191, 36, var(--tw-bg-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:bg-yellow-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:bg-yellow-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(217, 119, 6, var(--tw-bg-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:bg-yellow-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(180, 83, 9, var(--tw-bg-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:bg-yellow-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(146, 64, 14, var(--tw-bg-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:bg-yellow-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(120, 53, 15, var(--tw-bg-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:bg-green-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(236, 253, 245, var(--tw-bg-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:bg-green-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(209, 250, 229, var(--tw-bg-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:bg-green-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(167, 243, 208, var(--tw-bg-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:bg-green-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(110, 231, 183, var(--tw-bg-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:bg-green-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(52, 211, 153, var(--tw-bg-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:bg-green-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(16, 185, 129, var(--tw-bg-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:bg-green-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(5, 150, 105, var(--tw-bg-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:bg-green-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(4, 120, 87, var(--tw-bg-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:bg-green-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(6, 95, 70, var(--tw-bg-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:bg-green-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(6, 78, 59, var(--tw-bg-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:bg-blue-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(239, 246, 255, var(--tw-bg-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:bg-blue-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(219, 234, 254, var(--tw-bg-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:bg-blue-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(191, 219, 254, var(--tw-bg-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:bg-blue-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(147, 197, 253, var(--tw-bg-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:bg-blue-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(96, 165, 250, var(--tw-bg-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:bg-blue-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:bg-blue-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(37, 99, 235, var(--tw-bg-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:bg-blue-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(29, 78, 216, var(--tw-bg-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:bg-blue-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(30, 64, 175, var(--tw-bg-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:bg-blue-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(30, 58, 138, var(--tw-bg-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:bg-indigo-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(238, 242, 255, var(--tw-bg-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:bg-indigo-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(224, 231, 255, var(--tw-bg-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:bg-indigo-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(199, 210, 254, var(--tw-bg-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:bg-indigo-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(165, 180, 252, var(--tw-bg-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:bg-indigo-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(129, 140, 248, var(--tw-bg-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:bg-indigo-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(99, 102, 241, var(--tw-bg-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:bg-indigo-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(79, 70, 229, var(--tw-bg-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:bg-indigo-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(67, 56, 202, var(--tw-bg-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:bg-indigo-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(55, 48, 163, var(--tw-bg-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:bg-indigo-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(49, 46, 129, var(--tw-bg-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:bg-purple-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(245, 243, 255, var(--tw-bg-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:bg-purple-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(237, 233, 254, var(--tw-bg-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:bg-purple-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(221, 214, 254, var(--tw-bg-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:bg-purple-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(196, 181, 253, var(--tw-bg-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:bg-purple-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(167, 139, 250, var(--tw-bg-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:bg-purple-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(139, 92, 246, var(--tw-bg-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:bg-purple-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(124, 58, 237, var(--tw-bg-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:bg-purple-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(109, 40, 217, var(--tw-bg-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:bg-purple-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(91, 33, 182, var(--tw-bg-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:bg-purple-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(76, 29, 149, var(--tw-bg-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:bg-pink-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(253, 242, 248, var(--tw-bg-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:bg-pink-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 231, 243, var(--tw-bg-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:bg-pink-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(251, 207, 232, var(--tw-bg-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:bg-pink-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(249, 168, 212, var(--tw-bg-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:bg-pink-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(244, 114, 182, var(--tw-bg-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:bg-pink-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(236, 72, 153, var(--tw-bg-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:bg-pink-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(219, 39, 119, var(--tw-bg-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:bg-pink-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(190, 24, 93, var(--tw-bg-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:bg-pink-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(157, 23, 77, var(--tw-bg-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:bg-pink-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(131, 24, 67, var(--tw-bg-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:bg-primary { + --tw-bg-opacity: 1 !important; + background-color: rgba(0, 49, 151, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus-within\:bg-transparent:focus-within { + background-color: transparent !important; + } + + .\32xl\:focus-within\:bg-current:focus-within { + background-color: currentColor !important; + } + + .\32xl\:focus-within\:bg-black:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus-within\:bg-white:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus-within\:bg-gray-50:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus-within\:bg-gray-100:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus-within\:bg-gray-200:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus-within\:bg-gray-300:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus-within\:bg-gray-400:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus-within\:bg-gray-500:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus-within\:bg-gray-600:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus-within\:bg-gray-700:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus-within\:bg-gray-800:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus-within\:bg-gray-900:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus-within\:bg-red-50:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 242, 242, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus-within\:bg-red-100:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 226, 226, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus-within\:bg-red-200:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 202, 202, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus-within\:bg-red-300:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 165, 165, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus-within\:bg-red-400:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(248, 113, 113, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus-within\:bg-red-500:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(239, 68, 68, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus-within\:bg-red-600:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(220, 38, 38, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus-within\:bg-red-700:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(185, 28, 28, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus-within\:bg-red-800:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(153, 27, 27, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus-within\:bg-red-900:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(127, 29, 29, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus-within\:bg-yellow-50:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(255, 251, 235, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus-within\:bg-yellow-100:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 243, 199, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus-within\:bg-yellow-200:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(253, 230, 138, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus-within\:bg-yellow-300:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 211, 77, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus-within\:bg-yellow-400:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(251, 191, 36, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus-within\:bg-yellow-500:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus-within\:bg-yellow-600:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(217, 119, 6, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus-within\:bg-yellow-700:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(180, 83, 9, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus-within\:bg-yellow-800:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(146, 64, 14, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus-within\:bg-yellow-900:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(120, 53, 15, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus-within\:bg-green-50:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(236, 253, 245, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus-within\:bg-green-100:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(209, 250, 229, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus-within\:bg-green-200:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(167, 243, 208, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus-within\:bg-green-300:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(110, 231, 183, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus-within\:bg-green-400:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(52, 211, 153, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus-within\:bg-green-500:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(16, 185, 129, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus-within\:bg-green-600:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(5, 150, 105, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus-within\:bg-green-700:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(4, 120, 87, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus-within\:bg-green-800:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(6, 95, 70, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus-within\:bg-green-900:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(6, 78, 59, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus-within\:bg-blue-50:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(239, 246, 255, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus-within\:bg-blue-100:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(219, 234, 254, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus-within\:bg-blue-200:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(191, 219, 254, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus-within\:bg-blue-300:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(147, 197, 253, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus-within\:bg-blue-400:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(96, 165, 250, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus-within\:bg-blue-500:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus-within\:bg-blue-600:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(37, 99, 235, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus-within\:bg-blue-700:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(29, 78, 216, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus-within\:bg-blue-800:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(30, 64, 175, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus-within\:bg-blue-900:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(30, 58, 138, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus-within\:bg-indigo-50:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(238, 242, 255, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus-within\:bg-indigo-100:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(224, 231, 255, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus-within\:bg-indigo-200:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(199, 210, 254, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus-within\:bg-indigo-300:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(165, 180, 252, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus-within\:bg-indigo-400:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(129, 140, 248, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus-within\:bg-indigo-500:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(99, 102, 241, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus-within\:bg-indigo-600:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(79, 70, 229, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus-within\:bg-indigo-700:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(67, 56, 202, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus-within\:bg-indigo-800:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(55, 48, 163, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus-within\:bg-indigo-900:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(49, 46, 129, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus-within\:bg-purple-50:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(245, 243, 255, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus-within\:bg-purple-100:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(237, 233, 254, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus-within\:bg-purple-200:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(221, 214, 254, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus-within\:bg-purple-300:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(196, 181, 253, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus-within\:bg-purple-400:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(167, 139, 250, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus-within\:bg-purple-500:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(139, 92, 246, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus-within\:bg-purple-600:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(124, 58, 237, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus-within\:bg-purple-700:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(109, 40, 217, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus-within\:bg-purple-800:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(91, 33, 182, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus-within\:bg-purple-900:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(76, 29, 149, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus-within\:bg-pink-50:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(253, 242, 248, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus-within\:bg-pink-100:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 231, 243, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus-within\:bg-pink-200:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(251, 207, 232, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus-within\:bg-pink-300:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(249, 168, 212, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus-within\:bg-pink-400:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(244, 114, 182, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus-within\:bg-pink-500:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(236, 72, 153, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus-within\:bg-pink-600:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(219, 39, 119, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus-within\:bg-pink-700:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(190, 24, 93, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus-within\:bg-pink-800:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(157, 23, 77, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus-within\:bg-pink-900:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(131, 24, 67, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus-within\:bg-primary:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(0, 49, 151, var(--tw-bg-opacity)) !important; + } + + .\32xl\:hover\:bg-transparent:hover { + background-color: transparent !important; + } + + .\32xl\:hover\:bg-current:hover { + background-color: currentColor !important; + } + + .\32xl\:hover\:bg-black:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important; + } + + .\32xl\:hover\:bg-white:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important; + } + + .\32xl\:hover\:bg-gray-50:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)) !important; + } + + .\32xl\:hover\:bg-gray-100:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)) !important; + } + + .\32xl\:hover\:bg-gray-200:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)) !important; + } + + .\32xl\:hover\:bg-gray-300:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)) !important; + } + + .\32xl\:hover\:bg-gray-400:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)) !important; + } + + .\32xl\:hover\:bg-gray-500:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)) !important; + } + + .\32xl\:hover\:bg-gray-600:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)) !important; + } + + .\32xl\:hover\:bg-gray-700:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)) !important; + } + + .\32xl\:hover\:bg-gray-800:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)) !important; + } + + .\32xl\:hover\:bg-gray-900:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)) !important; + } + + .\32xl\:hover\:bg-red-50:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 242, 242, var(--tw-bg-opacity)) !important; + } + + .\32xl\:hover\:bg-red-100:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 226, 226, var(--tw-bg-opacity)) !important; + } + + .\32xl\:hover\:bg-red-200:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 202, 202, var(--tw-bg-opacity)) !important; + } + + .\32xl\:hover\:bg-red-300:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 165, 165, var(--tw-bg-opacity)) !important; + } + + .\32xl\:hover\:bg-red-400:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(248, 113, 113, var(--tw-bg-opacity)) !important; + } + + .\32xl\:hover\:bg-red-500:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(239, 68, 68, var(--tw-bg-opacity)) !important; + } + + .\32xl\:hover\:bg-red-600:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(220, 38, 38, var(--tw-bg-opacity)) !important; + } + + .\32xl\:hover\:bg-red-700:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(185, 28, 28, var(--tw-bg-opacity)) !important; + } + + .\32xl\:hover\:bg-red-800:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(153, 27, 27, var(--tw-bg-opacity)) !important; + } + + .\32xl\:hover\:bg-red-900:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(127, 29, 29, var(--tw-bg-opacity)) !important; + } + + .\32xl\:hover\:bg-yellow-50:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(255, 251, 235, var(--tw-bg-opacity)) !important; + } + + .\32xl\:hover\:bg-yellow-100:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 243, 199, var(--tw-bg-opacity)) !important; + } + + .\32xl\:hover\:bg-yellow-200:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(253, 230, 138, var(--tw-bg-opacity)) !important; + } + + .\32xl\:hover\:bg-yellow-300:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 211, 77, var(--tw-bg-opacity)) !important; + } + + .\32xl\:hover\:bg-yellow-400:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(251, 191, 36, var(--tw-bg-opacity)) !important; + } + + .\32xl\:hover\:bg-yellow-500:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)) !important; + } + + .\32xl\:hover\:bg-yellow-600:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(217, 119, 6, var(--tw-bg-opacity)) !important; + } + + .\32xl\:hover\:bg-yellow-700:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(180, 83, 9, var(--tw-bg-opacity)) !important; + } + + .\32xl\:hover\:bg-yellow-800:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(146, 64, 14, var(--tw-bg-opacity)) !important; + } + + .\32xl\:hover\:bg-yellow-900:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(120, 53, 15, var(--tw-bg-opacity)) !important; + } + + .\32xl\:hover\:bg-green-50:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(236, 253, 245, var(--tw-bg-opacity)) !important; + } + + .\32xl\:hover\:bg-green-100:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(209, 250, 229, var(--tw-bg-opacity)) !important; + } + + .\32xl\:hover\:bg-green-200:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(167, 243, 208, var(--tw-bg-opacity)) !important; + } + + .\32xl\:hover\:bg-green-300:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(110, 231, 183, var(--tw-bg-opacity)) !important; + } + + .\32xl\:hover\:bg-green-400:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(52, 211, 153, var(--tw-bg-opacity)) !important; + } + + .\32xl\:hover\:bg-green-500:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(16, 185, 129, var(--tw-bg-opacity)) !important; + } + + .\32xl\:hover\:bg-green-600:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(5, 150, 105, var(--tw-bg-opacity)) !important; + } + + .\32xl\:hover\:bg-green-700:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(4, 120, 87, var(--tw-bg-opacity)) !important; + } + + .\32xl\:hover\:bg-green-800:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(6, 95, 70, var(--tw-bg-opacity)) !important; + } + + .\32xl\:hover\:bg-green-900:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(6, 78, 59, var(--tw-bg-opacity)) !important; + } + + .\32xl\:hover\:bg-blue-50:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(239, 246, 255, var(--tw-bg-opacity)) !important; + } + + .\32xl\:hover\:bg-blue-100:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(219, 234, 254, var(--tw-bg-opacity)) !important; + } + + .\32xl\:hover\:bg-blue-200:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(191, 219, 254, var(--tw-bg-opacity)) !important; + } + + .\32xl\:hover\:bg-blue-300:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(147, 197, 253, var(--tw-bg-opacity)) !important; + } + + .\32xl\:hover\:bg-blue-400:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(96, 165, 250, var(--tw-bg-opacity)) !important; + } + + .\32xl\:hover\:bg-blue-500:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)) !important; + } + + .\32xl\:hover\:bg-blue-600:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(37, 99, 235, var(--tw-bg-opacity)) !important; + } + + .\32xl\:hover\:bg-blue-700:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(29, 78, 216, var(--tw-bg-opacity)) !important; + } + + .\32xl\:hover\:bg-blue-800:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(30, 64, 175, var(--tw-bg-opacity)) !important; + } + + .\32xl\:hover\:bg-blue-900:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(30, 58, 138, var(--tw-bg-opacity)) !important; + } + + .\32xl\:hover\:bg-indigo-50:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(238, 242, 255, var(--tw-bg-opacity)) !important; + } + + .\32xl\:hover\:bg-indigo-100:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(224, 231, 255, var(--tw-bg-opacity)) !important; + } + + .\32xl\:hover\:bg-indigo-200:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(199, 210, 254, var(--tw-bg-opacity)) !important; + } + + .\32xl\:hover\:bg-indigo-300:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(165, 180, 252, var(--tw-bg-opacity)) !important; + } + + .\32xl\:hover\:bg-indigo-400:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(129, 140, 248, var(--tw-bg-opacity)) !important; + } + + .\32xl\:hover\:bg-indigo-500:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(99, 102, 241, var(--tw-bg-opacity)) !important; + } + + .\32xl\:hover\:bg-indigo-600:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(79, 70, 229, var(--tw-bg-opacity)) !important; + } + + .\32xl\:hover\:bg-indigo-700:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(67, 56, 202, var(--tw-bg-opacity)) !important; + } + + .\32xl\:hover\:bg-indigo-800:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(55, 48, 163, var(--tw-bg-opacity)) !important; + } + + .\32xl\:hover\:bg-indigo-900:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(49, 46, 129, var(--tw-bg-opacity)) !important; + } + + .\32xl\:hover\:bg-purple-50:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(245, 243, 255, var(--tw-bg-opacity)) !important; + } + + .\32xl\:hover\:bg-purple-100:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(237, 233, 254, var(--tw-bg-opacity)) !important; + } + + .\32xl\:hover\:bg-purple-200:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(221, 214, 254, var(--tw-bg-opacity)) !important; + } + + .\32xl\:hover\:bg-purple-300:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(196, 181, 253, var(--tw-bg-opacity)) !important; + } + + .\32xl\:hover\:bg-purple-400:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(167, 139, 250, var(--tw-bg-opacity)) !important; + } + + .\32xl\:hover\:bg-purple-500:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(139, 92, 246, var(--tw-bg-opacity)) !important; + } + + .\32xl\:hover\:bg-purple-600:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(124, 58, 237, var(--tw-bg-opacity)) !important; + } + + .\32xl\:hover\:bg-purple-700:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(109, 40, 217, var(--tw-bg-opacity)) !important; + } + + .\32xl\:hover\:bg-purple-800:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(91, 33, 182, var(--tw-bg-opacity)) !important; + } + + .\32xl\:hover\:bg-purple-900:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(76, 29, 149, var(--tw-bg-opacity)) !important; + } + + .\32xl\:hover\:bg-pink-50:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(253, 242, 248, var(--tw-bg-opacity)) !important; + } + + .\32xl\:hover\:bg-pink-100:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 231, 243, var(--tw-bg-opacity)) !important; + } + + .\32xl\:hover\:bg-pink-200:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(251, 207, 232, var(--tw-bg-opacity)) !important; + } + + .\32xl\:hover\:bg-pink-300:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(249, 168, 212, var(--tw-bg-opacity)) !important; + } + + .\32xl\:hover\:bg-pink-400:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(244, 114, 182, var(--tw-bg-opacity)) !important; + } + + .\32xl\:hover\:bg-pink-500:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(236, 72, 153, var(--tw-bg-opacity)) !important; + } + + .\32xl\:hover\:bg-pink-600:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(219, 39, 119, var(--tw-bg-opacity)) !important; + } + + .\32xl\:hover\:bg-pink-700:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(190, 24, 93, var(--tw-bg-opacity)) !important; + } + + .\32xl\:hover\:bg-pink-800:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(157, 23, 77, var(--tw-bg-opacity)) !important; + } + + .\32xl\:hover\:bg-pink-900:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(131, 24, 67, var(--tw-bg-opacity)) !important; + } + + .\32xl\:hover\:bg-primary:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(0, 49, 151, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus\:bg-transparent:focus { + background-color: transparent !important; + } + + .\32xl\:focus\:bg-current:focus { + background-color: currentColor !important; + } + + .\32xl\:focus\:bg-black:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus\:bg-white:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus\:bg-gray-50:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus\:bg-gray-100:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus\:bg-gray-200:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus\:bg-gray-300:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus\:bg-gray-400:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus\:bg-gray-500:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus\:bg-gray-600:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus\:bg-gray-700:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus\:bg-gray-800:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus\:bg-gray-900:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus\:bg-red-50:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 242, 242, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus\:bg-red-100:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 226, 226, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus\:bg-red-200:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 202, 202, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus\:bg-red-300:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 165, 165, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus\:bg-red-400:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(248, 113, 113, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus\:bg-red-500:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(239, 68, 68, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus\:bg-red-600:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(220, 38, 38, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus\:bg-red-700:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(185, 28, 28, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus\:bg-red-800:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(153, 27, 27, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus\:bg-red-900:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(127, 29, 29, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus\:bg-yellow-50:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(255, 251, 235, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus\:bg-yellow-100:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 243, 199, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus\:bg-yellow-200:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(253, 230, 138, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus\:bg-yellow-300:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 211, 77, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus\:bg-yellow-400:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(251, 191, 36, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus\:bg-yellow-500:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus\:bg-yellow-600:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(217, 119, 6, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus\:bg-yellow-700:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(180, 83, 9, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus\:bg-yellow-800:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(146, 64, 14, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus\:bg-yellow-900:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(120, 53, 15, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus\:bg-green-50:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(236, 253, 245, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus\:bg-green-100:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(209, 250, 229, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus\:bg-green-200:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(167, 243, 208, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus\:bg-green-300:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(110, 231, 183, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus\:bg-green-400:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(52, 211, 153, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus\:bg-green-500:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(16, 185, 129, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus\:bg-green-600:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(5, 150, 105, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus\:bg-green-700:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(4, 120, 87, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus\:bg-green-800:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(6, 95, 70, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus\:bg-green-900:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(6, 78, 59, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus\:bg-blue-50:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(239, 246, 255, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus\:bg-blue-100:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(219, 234, 254, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus\:bg-blue-200:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(191, 219, 254, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus\:bg-blue-300:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(147, 197, 253, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus\:bg-blue-400:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(96, 165, 250, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus\:bg-blue-500:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus\:bg-blue-600:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(37, 99, 235, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus\:bg-blue-700:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(29, 78, 216, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus\:bg-blue-800:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(30, 64, 175, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus\:bg-blue-900:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(30, 58, 138, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus\:bg-indigo-50:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(238, 242, 255, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus\:bg-indigo-100:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(224, 231, 255, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus\:bg-indigo-200:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(199, 210, 254, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus\:bg-indigo-300:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(165, 180, 252, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus\:bg-indigo-400:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(129, 140, 248, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus\:bg-indigo-500:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(99, 102, 241, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus\:bg-indigo-600:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(79, 70, 229, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus\:bg-indigo-700:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(67, 56, 202, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus\:bg-indigo-800:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(55, 48, 163, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus\:bg-indigo-900:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(49, 46, 129, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus\:bg-purple-50:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(245, 243, 255, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus\:bg-purple-100:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(237, 233, 254, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus\:bg-purple-200:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(221, 214, 254, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus\:bg-purple-300:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(196, 181, 253, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus\:bg-purple-400:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(167, 139, 250, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus\:bg-purple-500:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(139, 92, 246, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus\:bg-purple-600:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(124, 58, 237, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus\:bg-purple-700:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(109, 40, 217, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus\:bg-purple-800:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(91, 33, 182, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus\:bg-purple-900:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(76, 29, 149, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus\:bg-pink-50:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(253, 242, 248, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus\:bg-pink-100:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 231, 243, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus\:bg-pink-200:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(251, 207, 232, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus\:bg-pink-300:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(249, 168, 212, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus\:bg-pink-400:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(244, 114, 182, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus\:bg-pink-500:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(236, 72, 153, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus\:bg-pink-600:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(219, 39, 119, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus\:bg-pink-700:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(190, 24, 93, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus\:bg-pink-800:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(157, 23, 77, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus\:bg-pink-900:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(131, 24, 67, var(--tw-bg-opacity)) !important; + } + + .\32xl\:focus\:bg-primary:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(0, 49, 151, var(--tw-bg-opacity)) !important; + } + + .\32xl\:bg-none { + background-image: none !important; + } + + .\32xl\:bg-gradient-to-t { + background-image: linear-gradient(to top, var(--tw-gradient-stops)) !important; + } + + .\32xl\:bg-gradient-to-tr { + background-image: linear-gradient(to top right, var(--tw-gradient-stops)) !important; + } + + .\32xl\:bg-gradient-to-r { + background-image: linear-gradient(to right, var(--tw-gradient-stops)) !important; + } + + .\32xl\:bg-gradient-to-br { + background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)) !important; + } + + .\32xl\:bg-gradient-to-b { + background-image: linear-gradient(to bottom, var(--tw-gradient-stops)) !important; + } + + .\32xl\:bg-gradient-to-bl { + background-image: linear-gradient(to bottom left, var(--tw-gradient-stops)) !important; + } + + .\32xl\:bg-gradient-to-l { + background-image: linear-gradient(to left, var(--tw-gradient-stops)) !important; + } + + .\32xl\:bg-gradient-to-tl { + background-image: linear-gradient(to top left, var(--tw-gradient-stops)) !important; + } + + .\32xl\:from-transparent { + --tw-gradient-from: transparent !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; + } + + .\32xl\:from-current { + --tw-gradient-from: currentColor !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; + } + + .\32xl\:from-black { + --tw-gradient-from: #000 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; + } + + .\32xl\:from-white { + --tw-gradient-from: #fff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; + } + + .\32xl\:from-gray-50 { + --tw-gradient-from: #f9fafb !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)) !important; + } + + .\32xl\:from-gray-100 { + --tw-gradient-from: #f3f4f6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)) !important; + } + + .\32xl\:from-gray-200 { + --tw-gradient-from: #e5e7eb !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)) !important; + } + + .\32xl\:from-gray-300 { + --tw-gradient-from: #d1d5db !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)) !important; + } + + .\32xl\:from-gray-400 { + --tw-gradient-from: #9ca3af !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)) !important; + } + + .\32xl\:from-gray-500 { + --tw-gradient-from: #6b7280 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)) !important; + } + + .\32xl\:from-gray-600 { + --tw-gradient-from: #4b5563 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)) !important; + } + + .\32xl\:from-gray-700 { + --tw-gradient-from: #374151 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)) !important; + } + + .\32xl\:from-gray-800 { + --tw-gradient-from: #1f2937 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)) !important; + } + + .\32xl\:from-gray-900 { + --tw-gradient-from: #111827 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)) !important; + } + + .\32xl\:from-red-50 { + --tw-gradient-from: #fef2f2 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)) !important; + } + + .\32xl\:from-red-100 { + --tw-gradient-from: #fee2e2 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)) !important; + } + + .\32xl\:from-red-200 { + --tw-gradient-from: #fecaca !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)) !important; + } + + .\32xl\:from-red-300 { + --tw-gradient-from: #fca5a5 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)) !important; + } + + .\32xl\:from-red-400 { + --tw-gradient-from: #f87171 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)) !important; + } + + .\32xl\:from-red-500 { + --tw-gradient-from: #ef4444 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)) !important; + } + + .\32xl\:from-red-600 { + --tw-gradient-from: #dc2626 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)) !important; + } + + .\32xl\:from-red-700 { + --tw-gradient-from: #b91c1c !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)) !important; + } + + .\32xl\:from-red-800 { + --tw-gradient-from: #991b1b !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)) !important; + } + + .\32xl\:from-red-900 { + --tw-gradient-from: #7f1d1d !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important; + } + + .\32xl\:from-yellow-50 { + --tw-gradient-from: #fffbeb !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)) !important; + } + + .\32xl\:from-yellow-100 { + --tw-gradient-from: #fef3c7 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)) !important; + } + + .\32xl\:from-yellow-200 { + --tw-gradient-from: #fde68a !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)) !important; + } + + .\32xl\:from-yellow-300 { + --tw-gradient-from: #fcd34d !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)) !important; + } + + .\32xl\:from-yellow-400 { + --tw-gradient-from: #fbbf24 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)) !important; + } + + .\32xl\:from-yellow-500 { + --tw-gradient-from: #f59e0b !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)) !important; + } + + .\32xl\:from-yellow-600 { + --tw-gradient-from: #d97706 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)) !important; + } + + .\32xl\:from-yellow-700 { + --tw-gradient-from: #b45309 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)) !important; + } + + .\32xl\:from-yellow-800 { + --tw-gradient-from: #92400e !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)) !important; + } + + .\32xl\:from-yellow-900 { + --tw-gradient-from: #78350f !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)) !important; + } + + .\32xl\:from-green-50 { + --tw-gradient-from: #ecfdf5 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)) !important; + } + + .\32xl\:from-green-100 { + --tw-gradient-from: #d1fae5 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)) !important; + } + + .\32xl\:from-green-200 { + --tw-gradient-from: #a7f3d0 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)) !important; + } + + .\32xl\:from-green-300 { + --tw-gradient-from: #6ee7b7 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)) !important; + } + + .\32xl\:from-green-400 { + --tw-gradient-from: #34d399 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)) !important; + } + + .\32xl\:from-green-500 { + --tw-gradient-from: #10b981 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)) !important; + } + + .\32xl\:from-green-600 { + --tw-gradient-from: #059669 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)) !important; + } + + .\32xl\:from-green-700 { + --tw-gradient-from: #047857 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)) !important; + } + + .\32xl\:from-green-800 { + --tw-gradient-from: #065f46 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)) !important; + } + + .\32xl\:from-green-900 { + --tw-gradient-from: #064e3b !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)) !important; + } + + .\32xl\:from-blue-50 { + --tw-gradient-from: #eff6ff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)) !important; + } + + .\32xl\:from-blue-100 { + --tw-gradient-from: #dbeafe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)) !important; + } + + .\32xl\:from-blue-200 { + --tw-gradient-from: #bfdbfe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)) !important; + } + + .\32xl\:from-blue-300 { + --tw-gradient-from: #93c5fd !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)) !important; + } + + .\32xl\:from-blue-400 { + --tw-gradient-from: #60a5fa !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)) !important; + } + + .\32xl\:from-blue-500 { + --tw-gradient-from: #3b82f6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)) !important; + } + + .\32xl\:from-blue-600 { + --tw-gradient-from: #2563eb !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)) !important; + } + + .\32xl\:from-blue-700 { + --tw-gradient-from: #1d4ed8 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)) !important; + } + + .\32xl\:from-blue-800 { + --tw-gradient-from: #1e40af !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)) !important; + } + + .\32xl\:from-blue-900 { + --tw-gradient-from: #1e3a8a !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)) !important; + } + + .\32xl\:from-indigo-50 { + --tw-gradient-from: #eef2ff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)) !important; + } + + .\32xl\:from-indigo-100 { + --tw-gradient-from: #e0e7ff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)) !important; + } + + .\32xl\:from-indigo-200 { + --tw-gradient-from: #c7d2fe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)) !important; + } + + .\32xl\:from-indigo-300 { + --tw-gradient-from: #a5b4fc !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)) !important; + } + + .\32xl\:from-indigo-400 { + --tw-gradient-from: #818cf8 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)) !important; + } + + .\32xl\:from-indigo-500 { + --tw-gradient-from: #6366f1 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)) !important; + } + + .\32xl\:from-indigo-600 { + --tw-gradient-from: #4f46e5 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)) !important; + } + + .\32xl\:from-indigo-700 { + --tw-gradient-from: #4338ca !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)) !important; + } + + .\32xl\:from-indigo-800 { + --tw-gradient-from: #3730a3 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)) !important; + } + + .\32xl\:from-indigo-900 { + --tw-gradient-from: #312e81 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)) !important; + } + + .\32xl\:from-purple-50 { + --tw-gradient-from: #f5f3ff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)) !important; + } + + .\32xl\:from-purple-100 { + --tw-gradient-from: #ede9fe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)) !important; + } + + .\32xl\:from-purple-200 { + --tw-gradient-from: #ddd6fe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)) !important; + } + + .\32xl\:from-purple-300 { + --tw-gradient-from: #c4b5fd !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)) !important; + } + + .\32xl\:from-purple-400 { + --tw-gradient-from: #a78bfa !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)) !important; + } + + .\32xl\:from-purple-500 { + --tw-gradient-from: #8b5cf6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)) !important; + } + + .\32xl\:from-purple-600 { + --tw-gradient-from: #7c3aed !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)) !important; + } + + .\32xl\:from-purple-700 { + --tw-gradient-from: #6d28d9 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)) !important; + } + + .\32xl\:from-purple-800 { + --tw-gradient-from: #5b21b6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)) !important; + } + + .\32xl\:from-purple-900 { + --tw-gradient-from: #4c1d95 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)) !important; + } + + .\32xl\:from-pink-50 { + --tw-gradient-from: #fdf2f8 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)) !important; + } + + .\32xl\:from-pink-100 { + --tw-gradient-from: #fce7f3 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)) !important; + } + + .\32xl\:from-pink-200 { + --tw-gradient-from: #fbcfe8 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)) !important; + } + + .\32xl\:from-pink-300 { + --tw-gradient-from: #f9a8d4 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)) !important; + } + + .\32xl\:from-pink-400 { + --tw-gradient-from: #f472b6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)) !important; + } + + .\32xl\:from-pink-500 { + --tw-gradient-from: #ec4899 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)) !important; + } + + .\32xl\:from-pink-600 { + --tw-gradient-from: #db2777 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)) !important; + } + + .\32xl\:from-pink-700 { + --tw-gradient-from: #be185d !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)) !important; + } + + .\32xl\:from-pink-800 { + --tw-gradient-from: #9d174d !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)) !important; + } + + .\32xl\:from-pink-900 { + --tw-gradient-from: #831843 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)) !important; + } + + .\32xl\:from-primary { + --tw-gradient-from: #003197 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 49, 151, 0)) !important; + } + + .\32xl\:via-transparent { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; + } + + .\32xl\:via-current { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; + } + + .\32xl\:via-black { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; + } + + .\32xl\:via-white { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; + } + + .\32xl\:via-gray-50 { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)) !important; + } + + .\32xl\:via-gray-100 { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)) !important; + } + + .\32xl\:via-gray-200 { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)) !important; + } + + .\32xl\:via-gray-300 { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)) !important; + } + + .\32xl\:via-gray-400 { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)) !important; + } + + .\32xl\:via-gray-500 { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)) !important; + } + + .\32xl\:via-gray-600 { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)) !important; + } + + .\32xl\:via-gray-700 { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)) !important; + } + + .\32xl\:via-gray-800 { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)) !important; + } + + .\32xl\:via-gray-900 { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)) !important; + } + + .\32xl\:via-red-50 { + --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)) !important; + } + + .\32xl\:via-red-100 { + --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)) !important; + } + + .\32xl\:via-red-200 { + --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)) !important; + } + + .\32xl\:via-red-300 { + --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)) !important; + } + + .\32xl\:via-red-400 { + --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)) !important; + } + + .\32xl\:via-red-500 { + --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)) !important; + } + + .\32xl\:via-red-600 { + --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)) !important; + } + + .\32xl\:via-red-700 { + --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)) !important; + } + + .\32xl\:via-red-800 { + --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)) !important; + } + + .\32xl\:via-red-900 { + --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important; + } + + .\32xl\:via-yellow-50 { + --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)) !important; + } + + .\32xl\:via-yellow-100 { + --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)) !important; + } + + .\32xl\:via-yellow-200 { + --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)) !important; + } + + .\32xl\:via-yellow-300 { + --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)) !important; + } + + .\32xl\:via-yellow-400 { + --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)) !important; + } + + .\32xl\:via-yellow-500 { + --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)) !important; + } + + .\32xl\:via-yellow-600 { + --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)) !important; + } + + .\32xl\:via-yellow-700 { + --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)) !important; + } + + .\32xl\:via-yellow-800 { + --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)) !important; + } + + .\32xl\:via-yellow-900 { + --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)) !important; + } + + .\32xl\:via-green-50 { + --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)) !important; + } + + .\32xl\:via-green-100 { + --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)) !important; + } + + .\32xl\:via-green-200 { + --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)) !important; + } + + .\32xl\:via-green-300 { + --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)) !important; + } + + .\32xl\:via-green-400 { + --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)) !important; + } + + .\32xl\:via-green-500 { + --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)) !important; + } + + .\32xl\:via-green-600 { + --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)) !important; + } + + .\32xl\:via-green-700 { + --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)) !important; + } + + .\32xl\:via-green-800 { + --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)) !important; + } + + .\32xl\:via-green-900 { + --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)) !important; + } + + .\32xl\:via-blue-50 { + --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)) !important; + } + + .\32xl\:via-blue-100 { + --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)) !important; + } + + .\32xl\:via-blue-200 { + --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)) !important; + } + + .\32xl\:via-blue-300 { + --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)) !important; + } + + .\32xl\:via-blue-400 { + --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)) !important; + } + + .\32xl\:via-blue-500 { + --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)) !important; + } + + .\32xl\:via-blue-600 { + --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)) !important; + } + + .\32xl\:via-blue-700 { + --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)) !important; + } + + .\32xl\:via-blue-800 { + --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)) !important; + } + + .\32xl\:via-blue-900 { + --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)) !important; + } + + .\32xl\:via-indigo-50 { + --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)) !important; + } + + .\32xl\:via-indigo-100 { + --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)) !important; + } + + .\32xl\:via-indigo-200 { + --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)) !important; + } + + .\32xl\:via-indigo-300 { + --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)) !important; + } + + .\32xl\:via-indigo-400 { + --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)) !important; + } + + .\32xl\:via-indigo-500 { + --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)) !important; + } + + .\32xl\:via-indigo-600 { + --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)) !important; + } + + .\32xl\:via-indigo-700 { + --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)) !important; + } + + .\32xl\:via-indigo-800 { + --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)) !important; + } + + .\32xl\:via-indigo-900 { + --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)) !important; + } + + .\32xl\:via-purple-50 { + --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)) !important; + } + + .\32xl\:via-purple-100 { + --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)) !important; + } + + .\32xl\:via-purple-200 { + --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)) !important; + } + + .\32xl\:via-purple-300 { + --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)) !important; + } + + .\32xl\:via-purple-400 { + --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)) !important; + } + + .\32xl\:via-purple-500 { + --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)) !important; + } + + .\32xl\:via-purple-600 { + --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)) !important; + } + + .\32xl\:via-purple-700 { + --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)) !important; + } + + .\32xl\:via-purple-800 { + --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)) !important; + } + + .\32xl\:via-purple-900 { + --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)) !important; + } + + .\32xl\:via-pink-50 { + --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)) !important; + } + + .\32xl\:via-pink-100 { + --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)) !important; + } + + .\32xl\:via-pink-200 { + --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)) !important; + } + + .\32xl\:via-pink-300 { + --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)) !important; + } + + .\32xl\:via-pink-400 { + --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)) !important; + } + + .\32xl\:via-pink-500 { + --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)) !important; + } + + .\32xl\:via-pink-600 { + --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)) !important; + } + + .\32xl\:via-pink-700 { + --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)) !important; + } + + .\32xl\:via-pink-800 { + --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)) !important; + } + + .\32xl\:via-pink-900 { + --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)) !important; + } + + .\32xl\:via-primary { + --tw-gradient-stops: var(--tw-gradient-from), #003197, var(--tw-gradient-to, rgba(0, 49, 151, 0)) !important; + } + + .\32xl\:to-transparent { + --tw-gradient-to: transparent !important; + } + + .\32xl\:to-current { + --tw-gradient-to: currentColor !important; + } + + .\32xl\:to-black { + --tw-gradient-to: #000 !important; + } + + .\32xl\:to-white { + --tw-gradient-to: #fff !important; + } + + .\32xl\:to-gray-50 { + --tw-gradient-to: #f9fafb !important; + } + + .\32xl\:to-gray-100 { + --tw-gradient-to: #f3f4f6 !important; + } + + .\32xl\:to-gray-200 { + --tw-gradient-to: #e5e7eb !important; + } + + .\32xl\:to-gray-300 { + --tw-gradient-to: #d1d5db !important; + } + + .\32xl\:to-gray-400 { + --tw-gradient-to: #9ca3af !important; + } + + .\32xl\:to-gray-500 { + --tw-gradient-to: #6b7280 !important; + } + + .\32xl\:to-gray-600 { + --tw-gradient-to: #4b5563 !important; + } + + .\32xl\:to-gray-700 { + --tw-gradient-to: #374151 !important; + } + + .\32xl\:to-gray-800 { + --tw-gradient-to: #1f2937 !important; + } + + .\32xl\:to-gray-900 { + --tw-gradient-to: #111827 !important; + } + + .\32xl\:to-red-50 { + --tw-gradient-to: #fef2f2 !important; + } + + .\32xl\:to-red-100 { + --tw-gradient-to: #fee2e2 !important; + } + + .\32xl\:to-red-200 { + --tw-gradient-to: #fecaca !important; + } + + .\32xl\:to-red-300 { + --tw-gradient-to: #fca5a5 !important; + } + + .\32xl\:to-red-400 { + --tw-gradient-to: #f87171 !important; + } + + .\32xl\:to-red-500 { + --tw-gradient-to: #ef4444 !important; + } + + .\32xl\:to-red-600 { + --tw-gradient-to: #dc2626 !important; + } + + .\32xl\:to-red-700 { + --tw-gradient-to: #b91c1c !important; + } + + .\32xl\:to-red-800 { + --tw-gradient-to: #991b1b !important; + } + + .\32xl\:to-red-900 { + --tw-gradient-to: #7f1d1d !important; + } + + .\32xl\:to-yellow-50 { + --tw-gradient-to: #fffbeb !important; + } + + .\32xl\:to-yellow-100 { + --tw-gradient-to: #fef3c7 !important; + } + + .\32xl\:to-yellow-200 { + --tw-gradient-to: #fde68a !important; + } + + .\32xl\:to-yellow-300 { + --tw-gradient-to: #fcd34d !important; + } + + .\32xl\:to-yellow-400 { + --tw-gradient-to: #fbbf24 !important; + } + + .\32xl\:to-yellow-500 { + --tw-gradient-to: #f59e0b !important; + } + + .\32xl\:to-yellow-600 { + --tw-gradient-to: #d97706 !important; + } + + .\32xl\:to-yellow-700 { + --tw-gradient-to: #b45309 !important; + } + + .\32xl\:to-yellow-800 { + --tw-gradient-to: #92400e !important; + } + + .\32xl\:to-yellow-900 { + --tw-gradient-to: #78350f !important; + } + + .\32xl\:to-green-50 { + --tw-gradient-to: #ecfdf5 !important; + } + + .\32xl\:to-green-100 { + --tw-gradient-to: #d1fae5 !important; + } + + .\32xl\:to-green-200 { + --tw-gradient-to: #a7f3d0 !important; + } + + .\32xl\:to-green-300 { + --tw-gradient-to: #6ee7b7 !important; + } + + .\32xl\:to-green-400 { + --tw-gradient-to: #34d399 !important; + } + + .\32xl\:to-green-500 { + --tw-gradient-to: #10b981 !important; + } + + .\32xl\:to-green-600 { + --tw-gradient-to: #059669 !important; + } + + .\32xl\:to-green-700 { + --tw-gradient-to: #047857 !important; + } + + .\32xl\:to-green-800 { + --tw-gradient-to: #065f46 !important; + } + + .\32xl\:to-green-900 { + --tw-gradient-to: #064e3b !important; + } + + .\32xl\:to-blue-50 { + --tw-gradient-to: #eff6ff !important; + } + + .\32xl\:to-blue-100 { + --tw-gradient-to: #dbeafe !important; + } + + .\32xl\:to-blue-200 { + --tw-gradient-to: #bfdbfe !important; + } + + .\32xl\:to-blue-300 { + --tw-gradient-to: #93c5fd !important; + } + + .\32xl\:to-blue-400 { + --tw-gradient-to: #60a5fa !important; + } + + .\32xl\:to-blue-500 { + --tw-gradient-to: #3b82f6 !important; + } + + .\32xl\:to-blue-600 { + --tw-gradient-to: #2563eb !important; + } + + .\32xl\:to-blue-700 { + --tw-gradient-to: #1d4ed8 !important; + } + + .\32xl\:to-blue-800 { + --tw-gradient-to: #1e40af !important; + } + + .\32xl\:to-blue-900 { + --tw-gradient-to: #1e3a8a !important; + } + + .\32xl\:to-indigo-50 { + --tw-gradient-to: #eef2ff !important; + } + + .\32xl\:to-indigo-100 { + --tw-gradient-to: #e0e7ff !important; + } + + .\32xl\:to-indigo-200 { + --tw-gradient-to: #c7d2fe !important; + } + + .\32xl\:to-indigo-300 { + --tw-gradient-to: #a5b4fc !important; + } + + .\32xl\:to-indigo-400 { + --tw-gradient-to: #818cf8 !important; + } + + .\32xl\:to-indigo-500 { + --tw-gradient-to: #6366f1 !important; + } + + .\32xl\:to-indigo-600 { + --tw-gradient-to: #4f46e5 !important; + } + + .\32xl\:to-indigo-700 { + --tw-gradient-to: #4338ca !important; + } + + .\32xl\:to-indigo-800 { + --tw-gradient-to: #3730a3 !important; + } + + .\32xl\:to-indigo-900 { + --tw-gradient-to: #312e81 !important; + } + + .\32xl\:to-purple-50 { + --tw-gradient-to: #f5f3ff !important; + } + + .\32xl\:to-purple-100 { + --tw-gradient-to: #ede9fe !important; + } + + .\32xl\:to-purple-200 { + --tw-gradient-to: #ddd6fe !important; + } + + .\32xl\:to-purple-300 { + --tw-gradient-to: #c4b5fd !important; + } + + .\32xl\:to-purple-400 { + --tw-gradient-to: #a78bfa !important; + } + + .\32xl\:to-purple-500 { + --tw-gradient-to: #8b5cf6 !important; + } + + .\32xl\:to-purple-600 { + --tw-gradient-to: #7c3aed !important; + } + + .\32xl\:to-purple-700 { + --tw-gradient-to: #6d28d9 !important; + } + + .\32xl\:to-purple-800 { + --tw-gradient-to: #5b21b6 !important; + } + + .\32xl\:to-purple-900 { + --tw-gradient-to: #4c1d95 !important; + } + + .\32xl\:to-pink-50 { + --tw-gradient-to: #fdf2f8 !important; + } + + .\32xl\:to-pink-100 { + --tw-gradient-to: #fce7f3 !important; + } + + .\32xl\:to-pink-200 { + --tw-gradient-to: #fbcfe8 !important; + } + + .\32xl\:to-pink-300 { + --tw-gradient-to: #f9a8d4 !important; + } + + .\32xl\:to-pink-400 { + --tw-gradient-to: #f472b6 !important; + } + + .\32xl\:to-pink-500 { + --tw-gradient-to: #ec4899 !important; + } + + .\32xl\:to-pink-600 { + --tw-gradient-to: #db2777 !important; + } + + .\32xl\:to-pink-700 { + --tw-gradient-to: #be185d !important; + } + + .\32xl\:to-pink-800 { + --tw-gradient-to: #9d174d !important; + } + + .\32xl\:to-pink-900 { + --tw-gradient-to: #831843 !important; + } + + .\32xl\:to-primary { + --tw-gradient-to: #003197 !important; + } + + .\32xl\:hover\:from-transparent:hover { + --tw-gradient-from: transparent !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; + } + + .\32xl\:hover\:from-current:hover { + --tw-gradient-from: currentColor !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; + } + + .\32xl\:hover\:from-black:hover { + --tw-gradient-from: #000 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; + } + + .\32xl\:hover\:from-white:hover { + --tw-gradient-from: #fff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; + } + + .\32xl\:hover\:from-gray-50:hover { + --tw-gradient-from: #f9fafb !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)) !important; + } + + .\32xl\:hover\:from-gray-100:hover { + --tw-gradient-from: #f3f4f6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)) !important; + } + + .\32xl\:hover\:from-gray-200:hover { + --tw-gradient-from: #e5e7eb !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)) !important; + } + + .\32xl\:hover\:from-gray-300:hover { + --tw-gradient-from: #d1d5db !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)) !important; + } + + .\32xl\:hover\:from-gray-400:hover { + --tw-gradient-from: #9ca3af !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)) !important; + } + + .\32xl\:hover\:from-gray-500:hover { + --tw-gradient-from: #6b7280 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)) !important; + } + + .\32xl\:hover\:from-gray-600:hover { + --tw-gradient-from: #4b5563 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)) !important; + } + + .\32xl\:hover\:from-gray-700:hover { + --tw-gradient-from: #374151 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)) !important; + } + + .\32xl\:hover\:from-gray-800:hover { + --tw-gradient-from: #1f2937 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)) !important; + } + + .\32xl\:hover\:from-gray-900:hover { + --tw-gradient-from: #111827 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)) !important; + } + + .\32xl\:hover\:from-red-50:hover { + --tw-gradient-from: #fef2f2 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)) !important; + } + + .\32xl\:hover\:from-red-100:hover { + --tw-gradient-from: #fee2e2 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)) !important; + } + + .\32xl\:hover\:from-red-200:hover { + --tw-gradient-from: #fecaca !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)) !important; + } + + .\32xl\:hover\:from-red-300:hover { + --tw-gradient-from: #fca5a5 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)) !important; + } + + .\32xl\:hover\:from-red-400:hover { + --tw-gradient-from: #f87171 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)) !important; + } + + .\32xl\:hover\:from-red-500:hover { + --tw-gradient-from: #ef4444 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)) !important; + } + + .\32xl\:hover\:from-red-600:hover { + --tw-gradient-from: #dc2626 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)) !important; + } + + .\32xl\:hover\:from-red-700:hover { + --tw-gradient-from: #b91c1c !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)) !important; + } + + .\32xl\:hover\:from-red-800:hover { + --tw-gradient-from: #991b1b !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)) !important; + } + + .\32xl\:hover\:from-red-900:hover { + --tw-gradient-from: #7f1d1d !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important; + } + + .\32xl\:hover\:from-yellow-50:hover { + --tw-gradient-from: #fffbeb !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)) !important; + } + + .\32xl\:hover\:from-yellow-100:hover { + --tw-gradient-from: #fef3c7 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)) !important; + } + + .\32xl\:hover\:from-yellow-200:hover { + --tw-gradient-from: #fde68a !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)) !important; + } + + .\32xl\:hover\:from-yellow-300:hover { + --tw-gradient-from: #fcd34d !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)) !important; + } + + .\32xl\:hover\:from-yellow-400:hover { + --tw-gradient-from: #fbbf24 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)) !important; + } + + .\32xl\:hover\:from-yellow-500:hover { + --tw-gradient-from: #f59e0b !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)) !important; + } + + .\32xl\:hover\:from-yellow-600:hover { + --tw-gradient-from: #d97706 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)) !important; + } + + .\32xl\:hover\:from-yellow-700:hover { + --tw-gradient-from: #b45309 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)) !important; + } + + .\32xl\:hover\:from-yellow-800:hover { + --tw-gradient-from: #92400e !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)) !important; + } + + .\32xl\:hover\:from-yellow-900:hover { + --tw-gradient-from: #78350f !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)) !important; + } + + .\32xl\:hover\:from-green-50:hover { + --tw-gradient-from: #ecfdf5 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)) !important; + } + + .\32xl\:hover\:from-green-100:hover { + --tw-gradient-from: #d1fae5 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)) !important; + } + + .\32xl\:hover\:from-green-200:hover { + --tw-gradient-from: #a7f3d0 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)) !important; + } + + .\32xl\:hover\:from-green-300:hover { + --tw-gradient-from: #6ee7b7 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)) !important; + } + + .\32xl\:hover\:from-green-400:hover { + --tw-gradient-from: #34d399 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)) !important; + } + + .\32xl\:hover\:from-green-500:hover { + --tw-gradient-from: #10b981 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)) !important; + } + + .\32xl\:hover\:from-green-600:hover { + --tw-gradient-from: #059669 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)) !important; + } + + .\32xl\:hover\:from-green-700:hover { + --tw-gradient-from: #047857 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)) !important; + } + + .\32xl\:hover\:from-green-800:hover { + --tw-gradient-from: #065f46 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)) !important; + } + + .\32xl\:hover\:from-green-900:hover { + --tw-gradient-from: #064e3b !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)) !important; + } + + .\32xl\:hover\:from-blue-50:hover { + --tw-gradient-from: #eff6ff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)) !important; + } + + .\32xl\:hover\:from-blue-100:hover { + --tw-gradient-from: #dbeafe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)) !important; + } + + .\32xl\:hover\:from-blue-200:hover { + --tw-gradient-from: #bfdbfe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)) !important; + } + + .\32xl\:hover\:from-blue-300:hover { + --tw-gradient-from: #93c5fd !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)) !important; + } + + .\32xl\:hover\:from-blue-400:hover { + --tw-gradient-from: #60a5fa !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)) !important; + } + + .\32xl\:hover\:from-blue-500:hover { + --tw-gradient-from: #3b82f6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)) !important; + } + + .\32xl\:hover\:from-blue-600:hover { + --tw-gradient-from: #2563eb !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)) !important; + } + + .\32xl\:hover\:from-blue-700:hover { + --tw-gradient-from: #1d4ed8 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)) !important; + } + + .\32xl\:hover\:from-blue-800:hover { + --tw-gradient-from: #1e40af !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)) !important; + } + + .\32xl\:hover\:from-blue-900:hover { + --tw-gradient-from: #1e3a8a !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)) !important; + } + + .\32xl\:hover\:from-indigo-50:hover { + --tw-gradient-from: #eef2ff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)) !important; + } + + .\32xl\:hover\:from-indigo-100:hover { + --tw-gradient-from: #e0e7ff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)) !important; + } + + .\32xl\:hover\:from-indigo-200:hover { + --tw-gradient-from: #c7d2fe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)) !important; + } + + .\32xl\:hover\:from-indigo-300:hover { + --tw-gradient-from: #a5b4fc !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)) !important; + } + + .\32xl\:hover\:from-indigo-400:hover { + --tw-gradient-from: #818cf8 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)) !important; + } + + .\32xl\:hover\:from-indigo-500:hover { + --tw-gradient-from: #6366f1 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)) !important; + } + + .\32xl\:hover\:from-indigo-600:hover { + --tw-gradient-from: #4f46e5 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)) !important; + } + + .\32xl\:hover\:from-indigo-700:hover { + --tw-gradient-from: #4338ca !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)) !important; + } + + .\32xl\:hover\:from-indigo-800:hover { + --tw-gradient-from: #3730a3 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)) !important; + } + + .\32xl\:hover\:from-indigo-900:hover { + --tw-gradient-from: #312e81 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)) !important; + } + + .\32xl\:hover\:from-purple-50:hover { + --tw-gradient-from: #f5f3ff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)) !important; + } + + .\32xl\:hover\:from-purple-100:hover { + --tw-gradient-from: #ede9fe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)) !important; + } + + .\32xl\:hover\:from-purple-200:hover { + --tw-gradient-from: #ddd6fe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)) !important; + } + + .\32xl\:hover\:from-purple-300:hover { + --tw-gradient-from: #c4b5fd !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)) !important; + } + + .\32xl\:hover\:from-purple-400:hover { + --tw-gradient-from: #a78bfa !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)) !important; + } + + .\32xl\:hover\:from-purple-500:hover { + --tw-gradient-from: #8b5cf6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)) !important; + } + + .\32xl\:hover\:from-purple-600:hover { + --tw-gradient-from: #7c3aed !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)) !important; + } + + .\32xl\:hover\:from-purple-700:hover { + --tw-gradient-from: #6d28d9 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)) !important; + } + + .\32xl\:hover\:from-purple-800:hover { + --tw-gradient-from: #5b21b6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)) !important; + } + + .\32xl\:hover\:from-purple-900:hover { + --tw-gradient-from: #4c1d95 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)) !important; + } + + .\32xl\:hover\:from-pink-50:hover { + --tw-gradient-from: #fdf2f8 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)) !important; + } + + .\32xl\:hover\:from-pink-100:hover { + --tw-gradient-from: #fce7f3 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)) !important; + } + + .\32xl\:hover\:from-pink-200:hover { + --tw-gradient-from: #fbcfe8 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)) !important; + } + + .\32xl\:hover\:from-pink-300:hover { + --tw-gradient-from: #f9a8d4 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)) !important; + } + + .\32xl\:hover\:from-pink-400:hover { + --tw-gradient-from: #f472b6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)) !important; + } + + .\32xl\:hover\:from-pink-500:hover { + --tw-gradient-from: #ec4899 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)) !important; + } + + .\32xl\:hover\:from-pink-600:hover { + --tw-gradient-from: #db2777 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)) !important; + } + + .\32xl\:hover\:from-pink-700:hover { + --tw-gradient-from: #be185d !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)) !important; + } + + .\32xl\:hover\:from-pink-800:hover { + --tw-gradient-from: #9d174d !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)) !important; + } + + .\32xl\:hover\:from-pink-900:hover { + --tw-gradient-from: #831843 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)) !important; + } + + .\32xl\:hover\:from-primary:hover { + --tw-gradient-from: #003197 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 49, 151, 0)) !important; + } + + .\32xl\:hover\:via-transparent:hover { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; + } + + .\32xl\:hover\:via-current:hover { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; + } + + .\32xl\:hover\:via-black:hover { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; + } + + .\32xl\:hover\:via-white:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; + } + + .\32xl\:hover\:via-gray-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)) !important; + } + + .\32xl\:hover\:via-gray-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)) !important; + } + + .\32xl\:hover\:via-gray-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)) !important; + } + + .\32xl\:hover\:via-gray-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)) !important; + } + + .\32xl\:hover\:via-gray-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)) !important; + } + + .\32xl\:hover\:via-gray-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)) !important; + } + + .\32xl\:hover\:via-gray-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)) !important; + } + + .\32xl\:hover\:via-gray-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)) !important; + } + + .\32xl\:hover\:via-gray-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)) !important; + } + + .\32xl\:hover\:via-gray-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)) !important; + } + + .\32xl\:hover\:via-red-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)) !important; + } + + .\32xl\:hover\:via-red-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)) !important; + } + + .\32xl\:hover\:via-red-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)) !important; + } + + .\32xl\:hover\:via-red-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)) !important; + } + + .\32xl\:hover\:via-red-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)) !important; + } + + .\32xl\:hover\:via-red-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)) !important; + } + + .\32xl\:hover\:via-red-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)) !important; + } + + .\32xl\:hover\:via-red-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)) !important; + } + + .\32xl\:hover\:via-red-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)) !important; + } + + .\32xl\:hover\:via-red-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important; + } + + .\32xl\:hover\:via-yellow-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)) !important; + } + + .\32xl\:hover\:via-yellow-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)) !important; + } + + .\32xl\:hover\:via-yellow-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)) !important; + } + + .\32xl\:hover\:via-yellow-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)) !important; + } + + .\32xl\:hover\:via-yellow-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)) !important; + } + + .\32xl\:hover\:via-yellow-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)) !important; + } + + .\32xl\:hover\:via-yellow-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)) !important; + } + + .\32xl\:hover\:via-yellow-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)) !important; + } + + .\32xl\:hover\:via-yellow-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)) !important; + } + + .\32xl\:hover\:via-yellow-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)) !important; + } + + .\32xl\:hover\:via-green-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)) !important; + } + + .\32xl\:hover\:via-green-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)) !important; + } + + .\32xl\:hover\:via-green-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)) !important; + } + + .\32xl\:hover\:via-green-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)) !important; + } + + .\32xl\:hover\:via-green-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)) !important; + } + + .\32xl\:hover\:via-green-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)) !important; + } + + .\32xl\:hover\:via-green-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)) !important; + } + + .\32xl\:hover\:via-green-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)) !important; + } + + .\32xl\:hover\:via-green-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)) !important; + } + + .\32xl\:hover\:via-green-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)) !important; + } + + .\32xl\:hover\:via-blue-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)) !important; + } + + .\32xl\:hover\:via-blue-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)) !important; + } + + .\32xl\:hover\:via-blue-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)) !important; + } + + .\32xl\:hover\:via-blue-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)) !important; + } + + .\32xl\:hover\:via-blue-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)) !important; + } + + .\32xl\:hover\:via-blue-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)) !important; + } + + .\32xl\:hover\:via-blue-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)) !important; + } + + .\32xl\:hover\:via-blue-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)) !important; + } + + .\32xl\:hover\:via-blue-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)) !important; + } + + .\32xl\:hover\:via-blue-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)) !important; + } + + .\32xl\:hover\:via-indigo-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)) !important; + } + + .\32xl\:hover\:via-indigo-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)) !important; + } + + .\32xl\:hover\:via-indigo-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)) !important; + } + + .\32xl\:hover\:via-indigo-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)) !important; + } + + .\32xl\:hover\:via-indigo-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)) !important; + } + + .\32xl\:hover\:via-indigo-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)) !important; + } + + .\32xl\:hover\:via-indigo-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)) !important; + } + + .\32xl\:hover\:via-indigo-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)) !important; + } + + .\32xl\:hover\:via-indigo-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)) !important; + } + + .\32xl\:hover\:via-indigo-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)) !important; + } + + .\32xl\:hover\:via-purple-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)) !important; + } + + .\32xl\:hover\:via-purple-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)) !important; + } + + .\32xl\:hover\:via-purple-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)) !important; + } + + .\32xl\:hover\:via-purple-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)) !important; + } + + .\32xl\:hover\:via-purple-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)) !important; + } + + .\32xl\:hover\:via-purple-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)) !important; + } + + .\32xl\:hover\:via-purple-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)) !important; + } + + .\32xl\:hover\:via-purple-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)) !important; + } + + .\32xl\:hover\:via-purple-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)) !important; + } + + .\32xl\:hover\:via-purple-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)) !important; + } + + .\32xl\:hover\:via-pink-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)) !important; + } + + .\32xl\:hover\:via-pink-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)) !important; + } + + .\32xl\:hover\:via-pink-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)) !important; + } + + .\32xl\:hover\:via-pink-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)) !important; + } + + .\32xl\:hover\:via-pink-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)) !important; + } + + .\32xl\:hover\:via-pink-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)) !important; + } + + .\32xl\:hover\:via-pink-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)) !important; + } + + .\32xl\:hover\:via-pink-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)) !important; + } + + .\32xl\:hover\:via-pink-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)) !important; + } + + .\32xl\:hover\:via-pink-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)) !important; + } + + .\32xl\:hover\:via-primary:hover { + --tw-gradient-stops: var(--tw-gradient-from), #003197, var(--tw-gradient-to, rgba(0, 49, 151, 0)) !important; + } + + .\32xl\:hover\:to-transparent:hover { + --tw-gradient-to: transparent !important; + } + + .\32xl\:hover\:to-current:hover { + --tw-gradient-to: currentColor !important; + } + + .\32xl\:hover\:to-black:hover { + --tw-gradient-to: #000 !important; + } + + .\32xl\:hover\:to-white:hover { + --tw-gradient-to: #fff !important; + } + + .\32xl\:hover\:to-gray-50:hover { + --tw-gradient-to: #f9fafb !important; + } + + .\32xl\:hover\:to-gray-100:hover { + --tw-gradient-to: #f3f4f6 !important; + } + + .\32xl\:hover\:to-gray-200:hover { + --tw-gradient-to: #e5e7eb !important; + } + + .\32xl\:hover\:to-gray-300:hover { + --tw-gradient-to: #d1d5db !important; + } + + .\32xl\:hover\:to-gray-400:hover { + --tw-gradient-to: #9ca3af !important; + } + + .\32xl\:hover\:to-gray-500:hover { + --tw-gradient-to: #6b7280 !important; + } + + .\32xl\:hover\:to-gray-600:hover { + --tw-gradient-to: #4b5563 !important; + } + + .\32xl\:hover\:to-gray-700:hover { + --tw-gradient-to: #374151 !important; + } + + .\32xl\:hover\:to-gray-800:hover { + --tw-gradient-to: #1f2937 !important; + } + + .\32xl\:hover\:to-gray-900:hover { + --tw-gradient-to: #111827 !important; + } + + .\32xl\:hover\:to-red-50:hover { + --tw-gradient-to: #fef2f2 !important; + } + + .\32xl\:hover\:to-red-100:hover { + --tw-gradient-to: #fee2e2 !important; + } + + .\32xl\:hover\:to-red-200:hover { + --tw-gradient-to: #fecaca !important; + } + + .\32xl\:hover\:to-red-300:hover { + --tw-gradient-to: #fca5a5 !important; + } + + .\32xl\:hover\:to-red-400:hover { + --tw-gradient-to: #f87171 !important; + } + + .\32xl\:hover\:to-red-500:hover { + --tw-gradient-to: #ef4444 !important; + } + + .\32xl\:hover\:to-red-600:hover { + --tw-gradient-to: #dc2626 !important; + } + + .\32xl\:hover\:to-red-700:hover { + --tw-gradient-to: #b91c1c !important; + } + + .\32xl\:hover\:to-red-800:hover { + --tw-gradient-to: #991b1b !important; + } + + .\32xl\:hover\:to-red-900:hover { + --tw-gradient-to: #7f1d1d !important; + } + + .\32xl\:hover\:to-yellow-50:hover { + --tw-gradient-to: #fffbeb !important; + } + + .\32xl\:hover\:to-yellow-100:hover { + --tw-gradient-to: #fef3c7 !important; + } + + .\32xl\:hover\:to-yellow-200:hover { + --tw-gradient-to: #fde68a !important; + } + + .\32xl\:hover\:to-yellow-300:hover { + --tw-gradient-to: #fcd34d !important; + } + + .\32xl\:hover\:to-yellow-400:hover { + --tw-gradient-to: #fbbf24 !important; + } + + .\32xl\:hover\:to-yellow-500:hover { + --tw-gradient-to: #f59e0b !important; + } + + .\32xl\:hover\:to-yellow-600:hover { + --tw-gradient-to: #d97706 !important; + } + + .\32xl\:hover\:to-yellow-700:hover { + --tw-gradient-to: #b45309 !important; + } + + .\32xl\:hover\:to-yellow-800:hover { + --tw-gradient-to: #92400e !important; + } + + .\32xl\:hover\:to-yellow-900:hover { + --tw-gradient-to: #78350f !important; + } + + .\32xl\:hover\:to-green-50:hover { + --tw-gradient-to: #ecfdf5 !important; + } + + .\32xl\:hover\:to-green-100:hover { + --tw-gradient-to: #d1fae5 !important; + } + + .\32xl\:hover\:to-green-200:hover { + --tw-gradient-to: #a7f3d0 !important; + } + + .\32xl\:hover\:to-green-300:hover { + --tw-gradient-to: #6ee7b7 !important; + } + + .\32xl\:hover\:to-green-400:hover { + --tw-gradient-to: #34d399 !important; + } + + .\32xl\:hover\:to-green-500:hover { + --tw-gradient-to: #10b981 !important; + } + + .\32xl\:hover\:to-green-600:hover { + --tw-gradient-to: #059669 !important; + } + + .\32xl\:hover\:to-green-700:hover { + --tw-gradient-to: #047857 !important; + } + + .\32xl\:hover\:to-green-800:hover { + --tw-gradient-to: #065f46 !important; + } + + .\32xl\:hover\:to-green-900:hover { + --tw-gradient-to: #064e3b !important; + } + + .\32xl\:hover\:to-blue-50:hover { + --tw-gradient-to: #eff6ff !important; + } + + .\32xl\:hover\:to-blue-100:hover { + --tw-gradient-to: #dbeafe !important; + } + + .\32xl\:hover\:to-blue-200:hover { + --tw-gradient-to: #bfdbfe !important; + } + + .\32xl\:hover\:to-blue-300:hover { + --tw-gradient-to: #93c5fd !important; + } + + .\32xl\:hover\:to-blue-400:hover { + --tw-gradient-to: #60a5fa !important; + } + + .\32xl\:hover\:to-blue-500:hover { + --tw-gradient-to: #3b82f6 !important; + } + + .\32xl\:hover\:to-blue-600:hover { + --tw-gradient-to: #2563eb !important; + } + + .\32xl\:hover\:to-blue-700:hover { + --tw-gradient-to: #1d4ed8 !important; + } + + .\32xl\:hover\:to-blue-800:hover { + --tw-gradient-to: #1e40af !important; + } + + .\32xl\:hover\:to-blue-900:hover { + --tw-gradient-to: #1e3a8a !important; + } + + .\32xl\:hover\:to-indigo-50:hover { + --tw-gradient-to: #eef2ff !important; + } + + .\32xl\:hover\:to-indigo-100:hover { + --tw-gradient-to: #e0e7ff !important; + } + + .\32xl\:hover\:to-indigo-200:hover { + --tw-gradient-to: #c7d2fe !important; + } + + .\32xl\:hover\:to-indigo-300:hover { + --tw-gradient-to: #a5b4fc !important; + } + + .\32xl\:hover\:to-indigo-400:hover { + --tw-gradient-to: #818cf8 !important; + } + + .\32xl\:hover\:to-indigo-500:hover { + --tw-gradient-to: #6366f1 !important; + } + + .\32xl\:hover\:to-indigo-600:hover { + --tw-gradient-to: #4f46e5 !important; + } + + .\32xl\:hover\:to-indigo-700:hover { + --tw-gradient-to: #4338ca !important; + } + + .\32xl\:hover\:to-indigo-800:hover { + --tw-gradient-to: #3730a3 !important; + } + + .\32xl\:hover\:to-indigo-900:hover { + --tw-gradient-to: #312e81 !important; + } + + .\32xl\:hover\:to-purple-50:hover { + --tw-gradient-to: #f5f3ff !important; + } + + .\32xl\:hover\:to-purple-100:hover { + --tw-gradient-to: #ede9fe !important; + } + + .\32xl\:hover\:to-purple-200:hover { + --tw-gradient-to: #ddd6fe !important; + } + + .\32xl\:hover\:to-purple-300:hover { + --tw-gradient-to: #c4b5fd !important; + } + + .\32xl\:hover\:to-purple-400:hover { + --tw-gradient-to: #a78bfa !important; + } + + .\32xl\:hover\:to-purple-500:hover { + --tw-gradient-to: #8b5cf6 !important; + } + + .\32xl\:hover\:to-purple-600:hover { + --tw-gradient-to: #7c3aed !important; + } + + .\32xl\:hover\:to-purple-700:hover { + --tw-gradient-to: #6d28d9 !important; + } + + .\32xl\:hover\:to-purple-800:hover { + --tw-gradient-to: #5b21b6 !important; + } + + .\32xl\:hover\:to-purple-900:hover { + --tw-gradient-to: #4c1d95 !important; + } + + .\32xl\:hover\:to-pink-50:hover { + --tw-gradient-to: #fdf2f8 !important; + } + + .\32xl\:hover\:to-pink-100:hover { + --tw-gradient-to: #fce7f3 !important; + } + + .\32xl\:hover\:to-pink-200:hover { + --tw-gradient-to: #fbcfe8 !important; + } + + .\32xl\:hover\:to-pink-300:hover { + --tw-gradient-to: #f9a8d4 !important; + } + + .\32xl\:hover\:to-pink-400:hover { + --tw-gradient-to: #f472b6 !important; + } + + .\32xl\:hover\:to-pink-500:hover { + --tw-gradient-to: #ec4899 !important; + } + + .\32xl\:hover\:to-pink-600:hover { + --tw-gradient-to: #db2777 !important; + } + + .\32xl\:hover\:to-pink-700:hover { + --tw-gradient-to: #be185d !important; + } + + .\32xl\:hover\:to-pink-800:hover { + --tw-gradient-to: #9d174d !important; + } + + .\32xl\:hover\:to-pink-900:hover { + --tw-gradient-to: #831843 !important; + } + + .\32xl\:hover\:to-primary:hover { + --tw-gradient-to: #003197 !important; + } + + .\32xl\:focus\:from-transparent:focus { + --tw-gradient-from: transparent !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; + } + + .\32xl\:focus\:from-current:focus { + --tw-gradient-from: currentColor !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; + } + + .\32xl\:focus\:from-black:focus { + --tw-gradient-from: #000 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; + } + + .\32xl\:focus\:from-white:focus { + --tw-gradient-from: #fff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; + } + + .\32xl\:focus\:from-gray-50:focus { + --tw-gradient-from: #f9fafb !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)) !important; + } + + .\32xl\:focus\:from-gray-100:focus { + --tw-gradient-from: #f3f4f6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)) !important; + } + + .\32xl\:focus\:from-gray-200:focus { + --tw-gradient-from: #e5e7eb !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)) !important; + } + + .\32xl\:focus\:from-gray-300:focus { + --tw-gradient-from: #d1d5db !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)) !important; + } + + .\32xl\:focus\:from-gray-400:focus { + --tw-gradient-from: #9ca3af !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)) !important; + } + + .\32xl\:focus\:from-gray-500:focus { + --tw-gradient-from: #6b7280 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)) !important; + } + + .\32xl\:focus\:from-gray-600:focus { + --tw-gradient-from: #4b5563 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)) !important; + } + + .\32xl\:focus\:from-gray-700:focus { + --tw-gradient-from: #374151 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)) !important; + } + + .\32xl\:focus\:from-gray-800:focus { + --tw-gradient-from: #1f2937 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)) !important; + } + + .\32xl\:focus\:from-gray-900:focus { + --tw-gradient-from: #111827 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)) !important; + } + + .\32xl\:focus\:from-red-50:focus { + --tw-gradient-from: #fef2f2 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)) !important; + } + + .\32xl\:focus\:from-red-100:focus { + --tw-gradient-from: #fee2e2 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)) !important; + } + + .\32xl\:focus\:from-red-200:focus { + --tw-gradient-from: #fecaca !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)) !important; + } + + .\32xl\:focus\:from-red-300:focus { + --tw-gradient-from: #fca5a5 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)) !important; + } + + .\32xl\:focus\:from-red-400:focus { + --tw-gradient-from: #f87171 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)) !important; + } + + .\32xl\:focus\:from-red-500:focus { + --tw-gradient-from: #ef4444 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)) !important; + } + + .\32xl\:focus\:from-red-600:focus { + --tw-gradient-from: #dc2626 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)) !important; + } + + .\32xl\:focus\:from-red-700:focus { + --tw-gradient-from: #b91c1c !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)) !important; + } + + .\32xl\:focus\:from-red-800:focus { + --tw-gradient-from: #991b1b !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)) !important; + } + + .\32xl\:focus\:from-red-900:focus { + --tw-gradient-from: #7f1d1d !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important; + } + + .\32xl\:focus\:from-yellow-50:focus { + --tw-gradient-from: #fffbeb !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)) !important; + } + + .\32xl\:focus\:from-yellow-100:focus { + --tw-gradient-from: #fef3c7 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)) !important; + } + + .\32xl\:focus\:from-yellow-200:focus { + --tw-gradient-from: #fde68a !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)) !important; + } + + .\32xl\:focus\:from-yellow-300:focus { + --tw-gradient-from: #fcd34d !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)) !important; + } + + .\32xl\:focus\:from-yellow-400:focus { + --tw-gradient-from: #fbbf24 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)) !important; + } + + .\32xl\:focus\:from-yellow-500:focus { + --tw-gradient-from: #f59e0b !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)) !important; + } + + .\32xl\:focus\:from-yellow-600:focus { + --tw-gradient-from: #d97706 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)) !important; + } + + .\32xl\:focus\:from-yellow-700:focus { + --tw-gradient-from: #b45309 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)) !important; + } + + .\32xl\:focus\:from-yellow-800:focus { + --tw-gradient-from: #92400e !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)) !important; + } + + .\32xl\:focus\:from-yellow-900:focus { + --tw-gradient-from: #78350f !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)) !important; + } + + .\32xl\:focus\:from-green-50:focus { + --tw-gradient-from: #ecfdf5 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)) !important; + } + + .\32xl\:focus\:from-green-100:focus { + --tw-gradient-from: #d1fae5 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)) !important; + } + + .\32xl\:focus\:from-green-200:focus { + --tw-gradient-from: #a7f3d0 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)) !important; + } + + .\32xl\:focus\:from-green-300:focus { + --tw-gradient-from: #6ee7b7 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)) !important; + } + + .\32xl\:focus\:from-green-400:focus { + --tw-gradient-from: #34d399 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)) !important; + } + + .\32xl\:focus\:from-green-500:focus { + --tw-gradient-from: #10b981 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)) !important; + } + + .\32xl\:focus\:from-green-600:focus { + --tw-gradient-from: #059669 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)) !important; + } + + .\32xl\:focus\:from-green-700:focus { + --tw-gradient-from: #047857 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)) !important; + } + + .\32xl\:focus\:from-green-800:focus { + --tw-gradient-from: #065f46 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)) !important; + } + + .\32xl\:focus\:from-green-900:focus { + --tw-gradient-from: #064e3b !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)) !important; + } + + .\32xl\:focus\:from-blue-50:focus { + --tw-gradient-from: #eff6ff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)) !important; + } + + .\32xl\:focus\:from-blue-100:focus { + --tw-gradient-from: #dbeafe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)) !important; + } + + .\32xl\:focus\:from-blue-200:focus { + --tw-gradient-from: #bfdbfe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)) !important; + } + + .\32xl\:focus\:from-blue-300:focus { + --tw-gradient-from: #93c5fd !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)) !important; + } + + .\32xl\:focus\:from-blue-400:focus { + --tw-gradient-from: #60a5fa !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)) !important; + } + + .\32xl\:focus\:from-blue-500:focus { + --tw-gradient-from: #3b82f6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)) !important; + } + + .\32xl\:focus\:from-blue-600:focus { + --tw-gradient-from: #2563eb !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)) !important; + } + + .\32xl\:focus\:from-blue-700:focus { + --tw-gradient-from: #1d4ed8 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)) !important; + } + + .\32xl\:focus\:from-blue-800:focus { + --tw-gradient-from: #1e40af !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)) !important; + } + + .\32xl\:focus\:from-blue-900:focus { + --tw-gradient-from: #1e3a8a !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)) !important; + } + + .\32xl\:focus\:from-indigo-50:focus { + --tw-gradient-from: #eef2ff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)) !important; + } + + .\32xl\:focus\:from-indigo-100:focus { + --tw-gradient-from: #e0e7ff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)) !important; + } + + .\32xl\:focus\:from-indigo-200:focus { + --tw-gradient-from: #c7d2fe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)) !important; + } + + .\32xl\:focus\:from-indigo-300:focus { + --tw-gradient-from: #a5b4fc !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)) !important; + } + + .\32xl\:focus\:from-indigo-400:focus { + --tw-gradient-from: #818cf8 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)) !important; + } + + .\32xl\:focus\:from-indigo-500:focus { + --tw-gradient-from: #6366f1 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)) !important; + } + + .\32xl\:focus\:from-indigo-600:focus { + --tw-gradient-from: #4f46e5 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)) !important; + } + + .\32xl\:focus\:from-indigo-700:focus { + --tw-gradient-from: #4338ca !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)) !important; + } + + .\32xl\:focus\:from-indigo-800:focus { + --tw-gradient-from: #3730a3 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)) !important; + } + + .\32xl\:focus\:from-indigo-900:focus { + --tw-gradient-from: #312e81 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)) !important; + } + + .\32xl\:focus\:from-purple-50:focus { + --tw-gradient-from: #f5f3ff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)) !important; + } + + .\32xl\:focus\:from-purple-100:focus { + --tw-gradient-from: #ede9fe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)) !important; + } + + .\32xl\:focus\:from-purple-200:focus { + --tw-gradient-from: #ddd6fe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)) !important; + } + + .\32xl\:focus\:from-purple-300:focus { + --tw-gradient-from: #c4b5fd !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)) !important; + } + + .\32xl\:focus\:from-purple-400:focus { + --tw-gradient-from: #a78bfa !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)) !important; + } + + .\32xl\:focus\:from-purple-500:focus { + --tw-gradient-from: #8b5cf6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)) !important; + } + + .\32xl\:focus\:from-purple-600:focus { + --tw-gradient-from: #7c3aed !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)) !important; + } + + .\32xl\:focus\:from-purple-700:focus { + --tw-gradient-from: #6d28d9 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)) !important; + } + + .\32xl\:focus\:from-purple-800:focus { + --tw-gradient-from: #5b21b6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)) !important; + } + + .\32xl\:focus\:from-purple-900:focus { + --tw-gradient-from: #4c1d95 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)) !important; + } + + .\32xl\:focus\:from-pink-50:focus { + --tw-gradient-from: #fdf2f8 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)) !important; + } + + .\32xl\:focus\:from-pink-100:focus { + --tw-gradient-from: #fce7f3 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)) !important; + } + + .\32xl\:focus\:from-pink-200:focus { + --tw-gradient-from: #fbcfe8 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)) !important; + } + + .\32xl\:focus\:from-pink-300:focus { + --tw-gradient-from: #f9a8d4 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)) !important; + } + + .\32xl\:focus\:from-pink-400:focus { + --tw-gradient-from: #f472b6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)) !important; + } + + .\32xl\:focus\:from-pink-500:focus { + --tw-gradient-from: #ec4899 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)) !important; + } + + .\32xl\:focus\:from-pink-600:focus { + --tw-gradient-from: #db2777 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)) !important; + } + + .\32xl\:focus\:from-pink-700:focus { + --tw-gradient-from: #be185d !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)) !important; + } + + .\32xl\:focus\:from-pink-800:focus { + --tw-gradient-from: #9d174d !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)) !important; + } + + .\32xl\:focus\:from-pink-900:focus { + --tw-gradient-from: #831843 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)) !important; + } + + .\32xl\:focus\:from-primary:focus { + --tw-gradient-from: #003197 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 49, 151, 0)) !important; + } + + .\32xl\:focus\:via-transparent:focus { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; + } + + .\32xl\:focus\:via-current:focus { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; + } + + .\32xl\:focus\:via-black:focus { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; + } + + .\32xl\:focus\:via-white:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; + } + + .\32xl\:focus\:via-gray-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)) !important; + } + + .\32xl\:focus\:via-gray-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)) !important; + } + + .\32xl\:focus\:via-gray-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)) !important; + } + + .\32xl\:focus\:via-gray-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)) !important; + } + + .\32xl\:focus\:via-gray-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)) !important; + } + + .\32xl\:focus\:via-gray-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)) !important; + } + + .\32xl\:focus\:via-gray-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)) !important; + } + + .\32xl\:focus\:via-gray-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)) !important; + } + + .\32xl\:focus\:via-gray-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)) !important; + } + + .\32xl\:focus\:via-gray-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)) !important; + } + + .\32xl\:focus\:via-red-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)) !important; + } + + .\32xl\:focus\:via-red-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)) !important; + } + + .\32xl\:focus\:via-red-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)) !important; + } + + .\32xl\:focus\:via-red-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)) !important; + } + + .\32xl\:focus\:via-red-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)) !important; + } + + .\32xl\:focus\:via-red-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)) !important; + } + + .\32xl\:focus\:via-red-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)) !important; + } + + .\32xl\:focus\:via-red-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)) !important; + } + + .\32xl\:focus\:via-red-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)) !important; + } + + .\32xl\:focus\:via-red-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important; + } + + .\32xl\:focus\:via-yellow-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)) !important; + } + + .\32xl\:focus\:via-yellow-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)) !important; + } + + .\32xl\:focus\:via-yellow-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)) !important; + } + + .\32xl\:focus\:via-yellow-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)) !important; + } + + .\32xl\:focus\:via-yellow-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)) !important; + } + + .\32xl\:focus\:via-yellow-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)) !important; + } + + .\32xl\:focus\:via-yellow-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)) !important; + } + + .\32xl\:focus\:via-yellow-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)) !important; + } + + .\32xl\:focus\:via-yellow-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)) !important; + } + + .\32xl\:focus\:via-yellow-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)) !important; + } + + .\32xl\:focus\:via-green-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)) !important; + } + + .\32xl\:focus\:via-green-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)) !important; + } + + .\32xl\:focus\:via-green-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)) !important; + } + + .\32xl\:focus\:via-green-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)) !important; + } + + .\32xl\:focus\:via-green-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)) !important; + } + + .\32xl\:focus\:via-green-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)) !important; + } + + .\32xl\:focus\:via-green-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)) !important; + } + + .\32xl\:focus\:via-green-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)) !important; + } + + .\32xl\:focus\:via-green-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)) !important; + } + + .\32xl\:focus\:via-green-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)) !important; + } + + .\32xl\:focus\:via-blue-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)) !important; + } + + .\32xl\:focus\:via-blue-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)) !important; + } + + .\32xl\:focus\:via-blue-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)) !important; + } + + .\32xl\:focus\:via-blue-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)) !important; + } + + .\32xl\:focus\:via-blue-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)) !important; + } + + .\32xl\:focus\:via-blue-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)) !important; + } + + .\32xl\:focus\:via-blue-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)) !important; + } + + .\32xl\:focus\:via-blue-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)) !important; + } + + .\32xl\:focus\:via-blue-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)) !important; + } + + .\32xl\:focus\:via-blue-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)) !important; + } + + .\32xl\:focus\:via-indigo-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)) !important; + } + + .\32xl\:focus\:via-indigo-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)) !important; + } + + .\32xl\:focus\:via-indigo-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)) !important; + } + + .\32xl\:focus\:via-indigo-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)) !important; + } + + .\32xl\:focus\:via-indigo-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)) !important; + } + + .\32xl\:focus\:via-indigo-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)) !important; + } + + .\32xl\:focus\:via-indigo-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)) !important; + } + + .\32xl\:focus\:via-indigo-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)) !important; + } + + .\32xl\:focus\:via-indigo-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)) !important; + } + + .\32xl\:focus\:via-indigo-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)) !important; + } + + .\32xl\:focus\:via-purple-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)) !important; + } + + .\32xl\:focus\:via-purple-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)) !important; + } + + .\32xl\:focus\:via-purple-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)) !important; + } + + .\32xl\:focus\:via-purple-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)) !important; + } + + .\32xl\:focus\:via-purple-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)) !important; + } + + .\32xl\:focus\:via-purple-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)) !important; + } + + .\32xl\:focus\:via-purple-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)) !important; + } + + .\32xl\:focus\:via-purple-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)) !important; + } + + .\32xl\:focus\:via-purple-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)) !important; + } + + .\32xl\:focus\:via-purple-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)) !important; + } + + .\32xl\:focus\:via-pink-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)) !important; + } + + .\32xl\:focus\:via-pink-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)) !important; + } + + .\32xl\:focus\:via-pink-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)) !important; + } + + .\32xl\:focus\:via-pink-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)) !important; + } + + .\32xl\:focus\:via-pink-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)) !important; + } + + .\32xl\:focus\:via-pink-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)) !important; + } + + .\32xl\:focus\:via-pink-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)) !important; + } + + .\32xl\:focus\:via-pink-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)) !important; + } + + .\32xl\:focus\:via-pink-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)) !important; + } + + .\32xl\:focus\:via-pink-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)) !important; + } + + .\32xl\:focus\:via-primary:focus { + --tw-gradient-stops: var(--tw-gradient-from), #003197, var(--tw-gradient-to, rgba(0, 49, 151, 0)) !important; + } + + .\32xl\:focus\:to-transparent:focus { + --tw-gradient-to: transparent !important; + } + + .\32xl\:focus\:to-current:focus { + --tw-gradient-to: currentColor !important; + } + + .\32xl\:focus\:to-black:focus { + --tw-gradient-to: #000 !important; + } + + .\32xl\:focus\:to-white:focus { + --tw-gradient-to: #fff !important; + } + + .\32xl\:focus\:to-gray-50:focus { + --tw-gradient-to: #f9fafb !important; + } + + .\32xl\:focus\:to-gray-100:focus { + --tw-gradient-to: #f3f4f6 !important; + } + + .\32xl\:focus\:to-gray-200:focus { + --tw-gradient-to: #e5e7eb !important; + } + + .\32xl\:focus\:to-gray-300:focus { + --tw-gradient-to: #d1d5db !important; + } + + .\32xl\:focus\:to-gray-400:focus { + --tw-gradient-to: #9ca3af !important; + } + + .\32xl\:focus\:to-gray-500:focus { + --tw-gradient-to: #6b7280 !important; + } + + .\32xl\:focus\:to-gray-600:focus { + --tw-gradient-to: #4b5563 !important; + } + + .\32xl\:focus\:to-gray-700:focus { + --tw-gradient-to: #374151 !important; + } + + .\32xl\:focus\:to-gray-800:focus { + --tw-gradient-to: #1f2937 !important; + } + + .\32xl\:focus\:to-gray-900:focus { + --tw-gradient-to: #111827 !important; + } + + .\32xl\:focus\:to-red-50:focus { + --tw-gradient-to: #fef2f2 !important; + } + + .\32xl\:focus\:to-red-100:focus { + --tw-gradient-to: #fee2e2 !important; + } + + .\32xl\:focus\:to-red-200:focus { + --tw-gradient-to: #fecaca !important; + } + + .\32xl\:focus\:to-red-300:focus { + --tw-gradient-to: #fca5a5 !important; + } + + .\32xl\:focus\:to-red-400:focus { + --tw-gradient-to: #f87171 !important; + } + + .\32xl\:focus\:to-red-500:focus { + --tw-gradient-to: #ef4444 !important; + } + + .\32xl\:focus\:to-red-600:focus { + --tw-gradient-to: #dc2626 !important; + } + + .\32xl\:focus\:to-red-700:focus { + --tw-gradient-to: #b91c1c !important; + } + + .\32xl\:focus\:to-red-800:focus { + --tw-gradient-to: #991b1b !important; + } + + .\32xl\:focus\:to-red-900:focus { + --tw-gradient-to: #7f1d1d !important; + } + + .\32xl\:focus\:to-yellow-50:focus { + --tw-gradient-to: #fffbeb !important; + } + + .\32xl\:focus\:to-yellow-100:focus { + --tw-gradient-to: #fef3c7 !important; + } + + .\32xl\:focus\:to-yellow-200:focus { + --tw-gradient-to: #fde68a !important; + } + + .\32xl\:focus\:to-yellow-300:focus { + --tw-gradient-to: #fcd34d !important; + } + + .\32xl\:focus\:to-yellow-400:focus { + --tw-gradient-to: #fbbf24 !important; + } + + .\32xl\:focus\:to-yellow-500:focus { + --tw-gradient-to: #f59e0b !important; + } + + .\32xl\:focus\:to-yellow-600:focus { + --tw-gradient-to: #d97706 !important; + } + + .\32xl\:focus\:to-yellow-700:focus { + --tw-gradient-to: #b45309 !important; + } + + .\32xl\:focus\:to-yellow-800:focus { + --tw-gradient-to: #92400e !important; + } + + .\32xl\:focus\:to-yellow-900:focus { + --tw-gradient-to: #78350f !important; + } + + .\32xl\:focus\:to-green-50:focus { + --tw-gradient-to: #ecfdf5 !important; + } + + .\32xl\:focus\:to-green-100:focus { + --tw-gradient-to: #d1fae5 !important; + } + + .\32xl\:focus\:to-green-200:focus { + --tw-gradient-to: #a7f3d0 !important; + } + + .\32xl\:focus\:to-green-300:focus { + --tw-gradient-to: #6ee7b7 !important; + } + + .\32xl\:focus\:to-green-400:focus { + --tw-gradient-to: #34d399 !important; + } + + .\32xl\:focus\:to-green-500:focus { + --tw-gradient-to: #10b981 !important; + } + + .\32xl\:focus\:to-green-600:focus { + --tw-gradient-to: #059669 !important; + } + + .\32xl\:focus\:to-green-700:focus { + --tw-gradient-to: #047857 !important; + } + + .\32xl\:focus\:to-green-800:focus { + --tw-gradient-to: #065f46 !important; + } + + .\32xl\:focus\:to-green-900:focus { + --tw-gradient-to: #064e3b !important; + } + + .\32xl\:focus\:to-blue-50:focus { + --tw-gradient-to: #eff6ff !important; + } + + .\32xl\:focus\:to-blue-100:focus { + --tw-gradient-to: #dbeafe !important; + } + + .\32xl\:focus\:to-blue-200:focus { + --tw-gradient-to: #bfdbfe !important; + } + + .\32xl\:focus\:to-blue-300:focus { + --tw-gradient-to: #93c5fd !important; + } + + .\32xl\:focus\:to-blue-400:focus { + --tw-gradient-to: #60a5fa !important; + } + + .\32xl\:focus\:to-blue-500:focus { + --tw-gradient-to: #3b82f6 !important; + } + + .\32xl\:focus\:to-blue-600:focus { + --tw-gradient-to: #2563eb !important; + } + + .\32xl\:focus\:to-blue-700:focus { + --tw-gradient-to: #1d4ed8 !important; + } + + .\32xl\:focus\:to-blue-800:focus { + --tw-gradient-to: #1e40af !important; + } + + .\32xl\:focus\:to-blue-900:focus { + --tw-gradient-to: #1e3a8a !important; + } + + .\32xl\:focus\:to-indigo-50:focus { + --tw-gradient-to: #eef2ff !important; + } + + .\32xl\:focus\:to-indigo-100:focus { + --tw-gradient-to: #e0e7ff !important; + } + + .\32xl\:focus\:to-indigo-200:focus { + --tw-gradient-to: #c7d2fe !important; + } + + .\32xl\:focus\:to-indigo-300:focus { + --tw-gradient-to: #a5b4fc !important; + } + + .\32xl\:focus\:to-indigo-400:focus { + --tw-gradient-to: #818cf8 !important; + } + + .\32xl\:focus\:to-indigo-500:focus { + --tw-gradient-to: #6366f1 !important; + } + + .\32xl\:focus\:to-indigo-600:focus { + --tw-gradient-to: #4f46e5 !important; + } + + .\32xl\:focus\:to-indigo-700:focus { + --tw-gradient-to: #4338ca !important; + } + + .\32xl\:focus\:to-indigo-800:focus { + --tw-gradient-to: #3730a3 !important; + } + + .\32xl\:focus\:to-indigo-900:focus { + --tw-gradient-to: #312e81 !important; + } + + .\32xl\:focus\:to-purple-50:focus { + --tw-gradient-to: #f5f3ff !important; + } + + .\32xl\:focus\:to-purple-100:focus { + --tw-gradient-to: #ede9fe !important; + } + + .\32xl\:focus\:to-purple-200:focus { + --tw-gradient-to: #ddd6fe !important; + } + + .\32xl\:focus\:to-purple-300:focus { + --tw-gradient-to: #c4b5fd !important; + } + + .\32xl\:focus\:to-purple-400:focus { + --tw-gradient-to: #a78bfa !important; + } + + .\32xl\:focus\:to-purple-500:focus { + --tw-gradient-to: #8b5cf6 !important; + } + + .\32xl\:focus\:to-purple-600:focus { + --tw-gradient-to: #7c3aed !important; + } + + .\32xl\:focus\:to-purple-700:focus { + --tw-gradient-to: #6d28d9 !important; + } + + .\32xl\:focus\:to-purple-800:focus { + --tw-gradient-to: #5b21b6 !important; + } + + .\32xl\:focus\:to-purple-900:focus { + --tw-gradient-to: #4c1d95 !important; + } + + .\32xl\:focus\:to-pink-50:focus { + --tw-gradient-to: #fdf2f8 !important; + } + + .\32xl\:focus\:to-pink-100:focus { + --tw-gradient-to: #fce7f3 !important; + } + + .\32xl\:focus\:to-pink-200:focus { + --tw-gradient-to: #fbcfe8 !important; + } + + .\32xl\:focus\:to-pink-300:focus { + --tw-gradient-to: #f9a8d4 !important; + } + + .\32xl\:focus\:to-pink-400:focus { + --tw-gradient-to: #f472b6 !important; + } + + .\32xl\:focus\:to-pink-500:focus { + --tw-gradient-to: #ec4899 !important; + } + + .\32xl\:focus\:to-pink-600:focus { + --tw-gradient-to: #db2777 !important; + } + + .\32xl\:focus\:to-pink-700:focus { + --tw-gradient-to: #be185d !important; + } + + .\32xl\:focus\:to-pink-800:focus { + --tw-gradient-to: #9d174d !important; + } + + .\32xl\:focus\:to-pink-900:focus { + --tw-gradient-to: #831843 !important; + } + + .\32xl\:focus\:to-primary:focus { + --tw-gradient-to: #003197 !important; + } + + .\32xl\:bg-opacity-0 { + --tw-bg-opacity: 0 !important; + } + + .\32xl\:bg-opacity-5 { + --tw-bg-opacity: 0.05 !important; + } + + .\32xl\:bg-opacity-10 { + --tw-bg-opacity: 0.1 !important; + } + + .\32xl\:bg-opacity-20 { + --tw-bg-opacity: 0.2 !important; + } + + .\32xl\:bg-opacity-25 { + --tw-bg-opacity: 0.25 !important; + } + + .\32xl\:bg-opacity-30 { + --tw-bg-opacity: 0.3 !important; + } + + .\32xl\:bg-opacity-40 { + --tw-bg-opacity: 0.4 !important; + } + + .\32xl\:bg-opacity-50 { + --tw-bg-opacity: 0.5 !important; + } + + .\32xl\:bg-opacity-60 { + --tw-bg-opacity: 0.6 !important; + } + + .\32xl\:bg-opacity-70 { + --tw-bg-opacity: 0.7 !important; + } + + .\32xl\:bg-opacity-75 { + --tw-bg-opacity: 0.75 !important; + } + + .\32xl\:bg-opacity-80 { + --tw-bg-opacity: 0.8 !important; + } + + .\32xl\:bg-opacity-90 { + --tw-bg-opacity: 0.9 !important; + } + + .\32xl\:bg-opacity-95 { + --tw-bg-opacity: 0.95 !important; + } + + .\32xl\:bg-opacity-100 { + --tw-bg-opacity: 1 !important; + } + + .group:hover .\32xl\:group-hover\:bg-opacity-0 { + --tw-bg-opacity: 0 !important; + } + + .group:hover .\32xl\:group-hover\:bg-opacity-5 { + --tw-bg-opacity: 0.05 !important; + } + + .group:hover .\32xl\:group-hover\:bg-opacity-10 { + --tw-bg-opacity: 0.1 !important; + } + + .group:hover .\32xl\:group-hover\:bg-opacity-20 { + --tw-bg-opacity: 0.2 !important; + } + + .group:hover .\32xl\:group-hover\:bg-opacity-25 { + --tw-bg-opacity: 0.25 !important; + } + + .group:hover .\32xl\:group-hover\:bg-opacity-30 { + --tw-bg-opacity: 0.3 !important; + } + + .group:hover .\32xl\:group-hover\:bg-opacity-40 { + --tw-bg-opacity: 0.4 !important; + } + + .group:hover .\32xl\:group-hover\:bg-opacity-50 { + --tw-bg-opacity: 0.5 !important; + } + + .group:hover .\32xl\:group-hover\:bg-opacity-60 { + --tw-bg-opacity: 0.6 !important; + } + + .group:hover .\32xl\:group-hover\:bg-opacity-70 { + --tw-bg-opacity: 0.7 !important; + } + + .group:hover .\32xl\:group-hover\:bg-opacity-75 { + --tw-bg-opacity: 0.75 !important; + } + + .group:hover .\32xl\:group-hover\:bg-opacity-80 { + --tw-bg-opacity: 0.8 !important; + } + + .group:hover .\32xl\:group-hover\:bg-opacity-90 { + --tw-bg-opacity: 0.9 !important; + } + + .group:hover .\32xl\:group-hover\:bg-opacity-95 { + --tw-bg-opacity: 0.95 !important; + } + + .group:hover .\32xl\:group-hover\:bg-opacity-100 { + --tw-bg-opacity: 1 !important; + } + + .\32xl\:focus-within\:bg-opacity-0:focus-within { + --tw-bg-opacity: 0 !important; + } + + .\32xl\:focus-within\:bg-opacity-5:focus-within { + --tw-bg-opacity: 0.05 !important; + } + + .\32xl\:focus-within\:bg-opacity-10:focus-within { + --tw-bg-opacity: 0.1 !important; + } + + .\32xl\:focus-within\:bg-opacity-20:focus-within { + --tw-bg-opacity: 0.2 !important; + } + + .\32xl\:focus-within\:bg-opacity-25:focus-within { + --tw-bg-opacity: 0.25 !important; + } + + .\32xl\:focus-within\:bg-opacity-30:focus-within { + --tw-bg-opacity: 0.3 !important; + } + + .\32xl\:focus-within\:bg-opacity-40:focus-within { + --tw-bg-opacity: 0.4 !important; + } + + .\32xl\:focus-within\:bg-opacity-50:focus-within { + --tw-bg-opacity: 0.5 !important; + } + + .\32xl\:focus-within\:bg-opacity-60:focus-within { + --tw-bg-opacity: 0.6 !important; + } + + .\32xl\:focus-within\:bg-opacity-70:focus-within { + --tw-bg-opacity: 0.7 !important; + } + + .\32xl\:focus-within\:bg-opacity-75:focus-within { + --tw-bg-opacity: 0.75 !important; + } + + .\32xl\:focus-within\:bg-opacity-80:focus-within { + --tw-bg-opacity: 0.8 !important; + } + + .\32xl\:focus-within\:bg-opacity-90:focus-within { + --tw-bg-opacity: 0.9 !important; + } + + .\32xl\:focus-within\:bg-opacity-95:focus-within { + --tw-bg-opacity: 0.95 !important; + } + + .\32xl\:focus-within\:bg-opacity-100:focus-within { + --tw-bg-opacity: 1 !important; + } + + .\32xl\:hover\:bg-opacity-0:hover { + --tw-bg-opacity: 0 !important; + } + + .\32xl\:hover\:bg-opacity-5:hover { + --tw-bg-opacity: 0.05 !important; + } + + .\32xl\:hover\:bg-opacity-10:hover { + --tw-bg-opacity: 0.1 !important; + } + + .\32xl\:hover\:bg-opacity-20:hover { + --tw-bg-opacity: 0.2 !important; + } + + .\32xl\:hover\:bg-opacity-25:hover { + --tw-bg-opacity: 0.25 !important; + } + + .\32xl\:hover\:bg-opacity-30:hover { + --tw-bg-opacity: 0.3 !important; + } + + .\32xl\:hover\:bg-opacity-40:hover { + --tw-bg-opacity: 0.4 !important; + } + + .\32xl\:hover\:bg-opacity-50:hover { + --tw-bg-opacity: 0.5 !important; + } + + .\32xl\:hover\:bg-opacity-60:hover { + --tw-bg-opacity: 0.6 !important; + } + + .\32xl\:hover\:bg-opacity-70:hover { + --tw-bg-opacity: 0.7 !important; + } + + .\32xl\:hover\:bg-opacity-75:hover { + --tw-bg-opacity: 0.75 !important; + } + + .\32xl\:hover\:bg-opacity-80:hover { + --tw-bg-opacity: 0.8 !important; + } + + .\32xl\:hover\:bg-opacity-90:hover { + --tw-bg-opacity: 0.9 !important; + } + + .\32xl\:hover\:bg-opacity-95:hover { + --tw-bg-opacity: 0.95 !important; + } + + .\32xl\:hover\:bg-opacity-100:hover { + --tw-bg-opacity: 1 !important; + } + + .\32xl\:focus\:bg-opacity-0:focus { + --tw-bg-opacity: 0 !important; + } + + .\32xl\:focus\:bg-opacity-5:focus { + --tw-bg-opacity: 0.05 !important; + } + + .\32xl\:focus\:bg-opacity-10:focus { + --tw-bg-opacity: 0.1 !important; + } + + .\32xl\:focus\:bg-opacity-20:focus { + --tw-bg-opacity: 0.2 !important; + } + + .\32xl\:focus\:bg-opacity-25:focus { + --tw-bg-opacity: 0.25 !important; + } + + .\32xl\:focus\:bg-opacity-30:focus { + --tw-bg-opacity: 0.3 !important; + } + + .\32xl\:focus\:bg-opacity-40:focus { + --tw-bg-opacity: 0.4 !important; + } + + .\32xl\:focus\:bg-opacity-50:focus { + --tw-bg-opacity: 0.5 !important; + } + + .\32xl\:focus\:bg-opacity-60:focus { + --tw-bg-opacity: 0.6 !important; + } + + .\32xl\:focus\:bg-opacity-70:focus { + --tw-bg-opacity: 0.7 !important; + } + + .\32xl\:focus\:bg-opacity-75:focus { + --tw-bg-opacity: 0.75 !important; + } + + .\32xl\:focus\:bg-opacity-80:focus { + --tw-bg-opacity: 0.8 !important; + } + + .\32xl\:focus\:bg-opacity-90:focus { + --tw-bg-opacity: 0.9 !important; + } + + .\32xl\:focus\:bg-opacity-95:focus { + --tw-bg-opacity: 0.95 !important; + } + + .\32xl\:focus\:bg-opacity-100:focus { + --tw-bg-opacity: 1 !important; + } + + .\32xl\:bg-bottom { + background-position: bottom !important; + } + + .\32xl\:bg-center { + background-position: center !important; + } + + .\32xl\:bg-left { + background-position: left !important; + } + + .\32xl\:bg-left-bottom { + background-position: left bottom !important; + } + + .\32xl\:bg-left-top { + background-position: left top !important; + } + + .\32xl\:bg-right { + background-position: right !important; + } + + .\32xl\:bg-right-bottom { + background-position: right bottom !important; + } + + .\32xl\:bg-right-top { + background-position: right top !important; + } + + .\32xl\:bg-top { + background-position: top !important; + } + + .\32xl\:bg-repeat { + background-repeat: repeat !important; + } + + .\32xl\:bg-no-repeat { + background-repeat: no-repeat !important; + } + + .\32xl\:bg-repeat-x { + background-repeat: repeat-x !important; + } + + .\32xl\:bg-repeat-y { + background-repeat: repeat-y !important; + } + + .\32xl\:bg-repeat-round { + background-repeat: round !important; + } + + .\32xl\:bg-repeat-space { + background-repeat: space !important; + } + + .\32xl\:bg-auto { + background-size: auto !important; + } + + .\32xl\:bg-cover { + background-size: cover !important; + } + + .\32xl\:bg-contain { + background-size: contain !important; + } + + .\32xl\:border-collapse { + border-collapse: collapse !important; + } + + .\32xl\:border-separate { + border-collapse: separate !important; + } + + .\32xl\:border-transparent { + border-color: transparent !important; + } + + .\32xl\:border-current { + border-color: currentColor !important; + } + + .\32xl\:border-black { + --tw-border-opacity: 1 !important; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important; + } + + .\32xl\:border-white { + --tw-border-opacity: 1 !important; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important; + } + + .\32xl\:border-gray-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)) !important; + } + + .\32xl\:border-gray-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)) !important; + } + + .\32xl\:border-gray-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)) !important; + } + + .\32xl\:border-gray-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)) !important; + } + + .\32xl\:border-gray-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)) !important; + } + + .\32xl\:border-gray-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)) !important; + } + + .\32xl\:border-gray-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)) !important; + } + + .\32xl\:border-gray-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)) !important; + } + + .\32xl\:border-gray-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)) !important; + } + + .\32xl\:border-gray-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)) !important; + } + + .\32xl\:border-red-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 242, 242, var(--tw-border-opacity)) !important; + } + + .\32xl\:border-red-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 226, 226, var(--tw-border-opacity)) !important; + } + + .\32xl\:border-red-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 202, 202, var(--tw-border-opacity)) !important; + } + + .\32xl\:border-red-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 165, 165, var(--tw-border-opacity)) !important; + } + + .\32xl\:border-red-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(248, 113, 113, var(--tw-border-opacity)) !important; + } + + .\32xl\:border-red-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(239, 68, 68, var(--tw-border-opacity)) !important; + } + + .\32xl\:border-red-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(220, 38, 38, var(--tw-border-opacity)) !important; + } + + .\32xl\:border-red-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(185, 28, 28, var(--tw-border-opacity)) !important; + } + + .\32xl\:border-red-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(153, 27, 27, var(--tw-border-opacity)) !important; + } + + .\32xl\:border-red-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(127, 29, 29, var(--tw-border-opacity)) !important; + } + + .\32xl\:border-yellow-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(255, 251, 235, var(--tw-border-opacity)) !important; + } + + .\32xl\:border-yellow-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 243, 199, var(--tw-border-opacity)) !important; + } + + .\32xl\:border-yellow-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(253, 230, 138, var(--tw-border-opacity)) !important; + } + + .\32xl\:border-yellow-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 211, 77, var(--tw-border-opacity)) !important; + } + + .\32xl\:border-yellow-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(251, 191, 36, var(--tw-border-opacity)) !important; + } + + .\32xl\:border-yellow-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)) !important; + } + + .\32xl\:border-yellow-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(217, 119, 6, var(--tw-border-opacity)) !important; + } + + .\32xl\:border-yellow-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(180, 83, 9, var(--tw-border-opacity)) !important; + } + + .\32xl\:border-yellow-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(146, 64, 14, var(--tw-border-opacity)) !important; + } + + .\32xl\:border-yellow-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(120, 53, 15, var(--tw-border-opacity)) !important; + } + + .\32xl\:border-green-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(236, 253, 245, var(--tw-border-opacity)) !important; + } + + .\32xl\:border-green-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(209, 250, 229, var(--tw-border-opacity)) !important; + } + + .\32xl\:border-green-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(167, 243, 208, var(--tw-border-opacity)) !important; + } + + .\32xl\:border-green-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(110, 231, 183, var(--tw-border-opacity)) !important; + } + + .\32xl\:border-green-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(52, 211, 153, var(--tw-border-opacity)) !important; + } + + .\32xl\:border-green-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(16, 185, 129, var(--tw-border-opacity)) !important; + } + + .\32xl\:border-green-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(5, 150, 105, var(--tw-border-opacity)) !important; + } + + .\32xl\:border-green-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(4, 120, 87, var(--tw-border-opacity)) !important; + } + + .\32xl\:border-green-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(6, 95, 70, var(--tw-border-opacity)) !important; + } + + .\32xl\:border-green-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(6, 78, 59, var(--tw-border-opacity)) !important; + } + + .\32xl\:border-blue-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(239, 246, 255, var(--tw-border-opacity)) !important; + } + + .\32xl\:border-blue-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(219, 234, 254, var(--tw-border-opacity)) !important; + } + + .\32xl\:border-blue-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(191, 219, 254, var(--tw-border-opacity)) !important; + } + + .\32xl\:border-blue-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(147, 197, 253, var(--tw-border-opacity)) !important; + } + + .\32xl\:border-blue-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(96, 165, 250, var(--tw-border-opacity)) !important; + } + + .\32xl\:border-blue-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)) !important; + } + + .\32xl\:border-blue-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(37, 99, 235, var(--tw-border-opacity)) !important; + } + + .\32xl\:border-blue-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(29, 78, 216, var(--tw-border-opacity)) !important; + } + + .\32xl\:border-blue-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(30, 64, 175, var(--tw-border-opacity)) !important; + } + + .\32xl\:border-blue-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(30, 58, 138, var(--tw-border-opacity)) !important; + } + + .\32xl\:border-indigo-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(238, 242, 255, var(--tw-border-opacity)) !important; + } + + .\32xl\:border-indigo-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(224, 231, 255, var(--tw-border-opacity)) !important; + } + + .\32xl\:border-indigo-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(199, 210, 254, var(--tw-border-opacity)) !important; + } + + .\32xl\:border-indigo-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(165, 180, 252, var(--tw-border-opacity)) !important; + } + + .\32xl\:border-indigo-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(129, 140, 248, var(--tw-border-opacity)) !important; + } + + .\32xl\:border-indigo-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(99, 102, 241, var(--tw-border-opacity)) !important; + } + + .\32xl\:border-indigo-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(79, 70, 229, var(--tw-border-opacity)) !important; + } + + .\32xl\:border-indigo-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(67, 56, 202, var(--tw-border-opacity)) !important; + } + + .\32xl\:border-indigo-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(55, 48, 163, var(--tw-border-opacity)) !important; + } + + .\32xl\:border-indigo-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(49, 46, 129, var(--tw-border-opacity)) !important; + } + + .\32xl\:border-purple-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(245, 243, 255, var(--tw-border-opacity)) !important; + } + + .\32xl\:border-purple-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(237, 233, 254, var(--tw-border-opacity)) !important; + } + + .\32xl\:border-purple-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(221, 214, 254, var(--tw-border-opacity)) !important; + } + + .\32xl\:border-purple-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(196, 181, 253, var(--tw-border-opacity)) !important; + } + + .\32xl\:border-purple-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(167, 139, 250, var(--tw-border-opacity)) !important; + } + + .\32xl\:border-purple-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(139, 92, 246, var(--tw-border-opacity)) !important; + } + + .\32xl\:border-purple-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(124, 58, 237, var(--tw-border-opacity)) !important; + } + + .\32xl\:border-purple-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(109, 40, 217, var(--tw-border-opacity)) !important; + } + + .\32xl\:border-purple-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(91, 33, 182, var(--tw-border-opacity)) !important; + } + + .\32xl\:border-purple-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(76, 29, 149, var(--tw-border-opacity)) !important; + } + + .\32xl\:border-pink-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(253, 242, 248, var(--tw-border-opacity)) !important; + } + + .\32xl\:border-pink-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 231, 243, var(--tw-border-opacity)) !important; + } + + .\32xl\:border-pink-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(251, 207, 232, var(--tw-border-opacity)) !important; + } + + .\32xl\:border-pink-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(249, 168, 212, var(--tw-border-opacity)) !important; + } + + .\32xl\:border-pink-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(244, 114, 182, var(--tw-border-opacity)) !important; + } + + .\32xl\:border-pink-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(236, 72, 153, var(--tw-border-opacity)) !important; + } + + .\32xl\:border-pink-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(219, 39, 119, var(--tw-border-opacity)) !important; + } + + .\32xl\:border-pink-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(190, 24, 93, var(--tw-border-opacity)) !important; + } + + .\32xl\:border-pink-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(157, 23, 77, var(--tw-border-opacity)) !important; + } + + .\32xl\:border-pink-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(131, 24, 67, var(--tw-border-opacity)) !important; + } + + .\32xl\:border-primary { + --tw-border-opacity: 1 !important; + border-color: rgba(0, 49, 151, var(--tw-border-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:border-transparent { + border-color: transparent !important; + } + + .group:hover .\32xl\:group-hover\:border-current { + border-color: currentColor !important; + } + + .group:hover .\32xl\:group-hover\:border-black { + --tw-border-opacity: 1 !important; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:border-white { + --tw-border-opacity: 1 !important; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:border-gray-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:border-gray-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:border-gray-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:border-gray-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:border-gray-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:border-gray-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:border-gray-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:border-gray-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:border-gray-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:border-gray-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:border-red-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 242, 242, var(--tw-border-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:border-red-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 226, 226, var(--tw-border-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:border-red-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 202, 202, var(--tw-border-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:border-red-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 165, 165, var(--tw-border-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:border-red-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(248, 113, 113, var(--tw-border-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:border-red-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(239, 68, 68, var(--tw-border-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:border-red-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(220, 38, 38, var(--tw-border-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:border-red-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(185, 28, 28, var(--tw-border-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:border-red-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(153, 27, 27, var(--tw-border-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:border-red-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(127, 29, 29, var(--tw-border-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:border-yellow-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(255, 251, 235, var(--tw-border-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:border-yellow-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 243, 199, var(--tw-border-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:border-yellow-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(253, 230, 138, var(--tw-border-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:border-yellow-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 211, 77, var(--tw-border-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:border-yellow-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(251, 191, 36, var(--tw-border-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:border-yellow-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:border-yellow-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(217, 119, 6, var(--tw-border-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:border-yellow-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(180, 83, 9, var(--tw-border-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:border-yellow-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(146, 64, 14, var(--tw-border-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:border-yellow-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(120, 53, 15, var(--tw-border-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:border-green-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(236, 253, 245, var(--tw-border-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:border-green-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(209, 250, 229, var(--tw-border-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:border-green-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(167, 243, 208, var(--tw-border-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:border-green-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(110, 231, 183, var(--tw-border-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:border-green-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(52, 211, 153, var(--tw-border-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:border-green-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(16, 185, 129, var(--tw-border-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:border-green-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(5, 150, 105, var(--tw-border-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:border-green-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(4, 120, 87, var(--tw-border-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:border-green-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(6, 95, 70, var(--tw-border-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:border-green-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(6, 78, 59, var(--tw-border-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:border-blue-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(239, 246, 255, var(--tw-border-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:border-blue-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(219, 234, 254, var(--tw-border-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:border-blue-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(191, 219, 254, var(--tw-border-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:border-blue-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(147, 197, 253, var(--tw-border-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:border-blue-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(96, 165, 250, var(--tw-border-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:border-blue-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:border-blue-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(37, 99, 235, var(--tw-border-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:border-blue-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(29, 78, 216, var(--tw-border-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:border-blue-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(30, 64, 175, var(--tw-border-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:border-blue-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(30, 58, 138, var(--tw-border-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:border-indigo-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(238, 242, 255, var(--tw-border-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:border-indigo-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(224, 231, 255, var(--tw-border-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:border-indigo-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(199, 210, 254, var(--tw-border-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:border-indigo-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(165, 180, 252, var(--tw-border-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:border-indigo-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(129, 140, 248, var(--tw-border-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:border-indigo-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(99, 102, 241, var(--tw-border-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:border-indigo-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(79, 70, 229, var(--tw-border-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:border-indigo-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(67, 56, 202, var(--tw-border-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:border-indigo-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(55, 48, 163, var(--tw-border-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:border-indigo-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(49, 46, 129, var(--tw-border-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:border-purple-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(245, 243, 255, var(--tw-border-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:border-purple-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(237, 233, 254, var(--tw-border-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:border-purple-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(221, 214, 254, var(--tw-border-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:border-purple-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(196, 181, 253, var(--tw-border-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:border-purple-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(167, 139, 250, var(--tw-border-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:border-purple-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(139, 92, 246, var(--tw-border-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:border-purple-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(124, 58, 237, var(--tw-border-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:border-purple-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(109, 40, 217, var(--tw-border-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:border-purple-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(91, 33, 182, var(--tw-border-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:border-purple-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(76, 29, 149, var(--tw-border-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:border-pink-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(253, 242, 248, var(--tw-border-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:border-pink-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 231, 243, var(--tw-border-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:border-pink-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(251, 207, 232, var(--tw-border-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:border-pink-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(249, 168, 212, var(--tw-border-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:border-pink-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(244, 114, 182, var(--tw-border-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:border-pink-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(236, 72, 153, var(--tw-border-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:border-pink-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(219, 39, 119, var(--tw-border-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:border-pink-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(190, 24, 93, var(--tw-border-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:border-pink-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(157, 23, 77, var(--tw-border-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:border-pink-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(131, 24, 67, var(--tw-border-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:border-primary { + --tw-border-opacity: 1 !important; + border-color: rgba(0, 49, 151, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus-within\:border-transparent:focus-within { + border-color: transparent !important; + } + + .\32xl\:focus-within\:border-current:focus-within { + border-color: currentColor !important; + } + + .\32xl\:focus-within\:border-black:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus-within\:border-white:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus-within\:border-gray-50:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus-within\:border-gray-100:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus-within\:border-gray-200:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus-within\:border-gray-300:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus-within\:border-gray-400:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus-within\:border-gray-500:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus-within\:border-gray-600:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus-within\:border-gray-700:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus-within\:border-gray-800:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus-within\:border-gray-900:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus-within\:border-red-50:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 242, 242, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus-within\:border-red-100:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 226, 226, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus-within\:border-red-200:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 202, 202, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus-within\:border-red-300:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 165, 165, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus-within\:border-red-400:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(248, 113, 113, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus-within\:border-red-500:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(239, 68, 68, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus-within\:border-red-600:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(220, 38, 38, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus-within\:border-red-700:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(185, 28, 28, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus-within\:border-red-800:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(153, 27, 27, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus-within\:border-red-900:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(127, 29, 29, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus-within\:border-yellow-50:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(255, 251, 235, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus-within\:border-yellow-100:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 243, 199, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus-within\:border-yellow-200:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(253, 230, 138, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus-within\:border-yellow-300:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 211, 77, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus-within\:border-yellow-400:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(251, 191, 36, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus-within\:border-yellow-500:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus-within\:border-yellow-600:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(217, 119, 6, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus-within\:border-yellow-700:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(180, 83, 9, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus-within\:border-yellow-800:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(146, 64, 14, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus-within\:border-yellow-900:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(120, 53, 15, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus-within\:border-green-50:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(236, 253, 245, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus-within\:border-green-100:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(209, 250, 229, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus-within\:border-green-200:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(167, 243, 208, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus-within\:border-green-300:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(110, 231, 183, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus-within\:border-green-400:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(52, 211, 153, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus-within\:border-green-500:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(16, 185, 129, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus-within\:border-green-600:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(5, 150, 105, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus-within\:border-green-700:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(4, 120, 87, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus-within\:border-green-800:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(6, 95, 70, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus-within\:border-green-900:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(6, 78, 59, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus-within\:border-blue-50:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(239, 246, 255, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus-within\:border-blue-100:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(219, 234, 254, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus-within\:border-blue-200:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(191, 219, 254, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus-within\:border-blue-300:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(147, 197, 253, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus-within\:border-blue-400:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(96, 165, 250, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus-within\:border-blue-500:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus-within\:border-blue-600:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(37, 99, 235, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus-within\:border-blue-700:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(29, 78, 216, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus-within\:border-blue-800:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(30, 64, 175, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus-within\:border-blue-900:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(30, 58, 138, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus-within\:border-indigo-50:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(238, 242, 255, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus-within\:border-indigo-100:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(224, 231, 255, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus-within\:border-indigo-200:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(199, 210, 254, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus-within\:border-indigo-300:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(165, 180, 252, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus-within\:border-indigo-400:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(129, 140, 248, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus-within\:border-indigo-500:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(99, 102, 241, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus-within\:border-indigo-600:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(79, 70, 229, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus-within\:border-indigo-700:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(67, 56, 202, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus-within\:border-indigo-800:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(55, 48, 163, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus-within\:border-indigo-900:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(49, 46, 129, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus-within\:border-purple-50:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(245, 243, 255, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus-within\:border-purple-100:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(237, 233, 254, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus-within\:border-purple-200:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(221, 214, 254, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus-within\:border-purple-300:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(196, 181, 253, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus-within\:border-purple-400:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(167, 139, 250, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus-within\:border-purple-500:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(139, 92, 246, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus-within\:border-purple-600:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(124, 58, 237, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus-within\:border-purple-700:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(109, 40, 217, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus-within\:border-purple-800:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(91, 33, 182, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus-within\:border-purple-900:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(76, 29, 149, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus-within\:border-pink-50:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(253, 242, 248, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus-within\:border-pink-100:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 231, 243, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus-within\:border-pink-200:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(251, 207, 232, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus-within\:border-pink-300:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(249, 168, 212, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus-within\:border-pink-400:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(244, 114, 182, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus-within\:border-pink-500:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(236, 72, 153, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus-within\:border-pink-600:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(219, 39, 119, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus-within\:border-pink-700:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(190, 24, 93, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus-within\:border-pink-800:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(157, 23, 77, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus-within\:border-pink-900:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(131, 24, 67, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus-within\:border-primary:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(0, 49, 151, var(--tw-border-opacity)) !important; + } + + .\32xl\:hover\:border-transparent:hover { + border-color: transparent !important; + } + + .\32xl\:hover\:border-current:hover { + border-color: currentColor !important; + } + + .\32xl\:hover\:border-black:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important; + } + + .\32xl\:hover\:border-white:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important; + } + + .\32xl\:hover\:border-gray-50:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)) !important; + } + + .\32xl\:hover\:border-gray-100:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)) !important; + } + + .\32xl\:hover\:border-gray-200:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)) !important; + } + + .\32xl\:hover\:border-gray-300:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)) !important; + } + + .\32xl\:hover\:border-gray-400:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)) !important; + } + + .\32xl\:hover\:border-gray-500:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)) !important; + } + + .\32xl\:hover\:border-gray-600:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)) !important; + } + + .\32xl\:hover\:border-gray-700:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)) !important; + } + + .\32xl\:hover\:border-gray-800:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)) !important; + } + + .\32xl\:hover\:border-gray-900:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)) !important; + } + + .\32xl\:hover\:border-red-50:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 242, 242, var(--tw-border-opacity)) !important; + } + + .\32xl\:hover\:border-red-100:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 226, 226, var(--tw-border-opacity)) !important; + } + + .\32xl\:hover\:border-red-200:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 202, 202, var(--tw-border-opacity)) !important; + } + + .\32xl\:hover\:border-red-300:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 165, 165, var(--tw-border-opacity)) !important; + } + + .\32xl\:hover\:border-red-400:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(248, 113, 113, var(--tw-border-opacity)) !important; + } + + .\32xl\:hover\:border-red-500:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(239, 68, 68, var(--tw-border-opacity)) !important; + } + + .\32xl\:hover\:border-red-600:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(220, 38, 38, var(--tw-border-opacity)) !important; + } + + .\32xl\:hover\:border-red-700:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(185, 28, 28, var(--tw-border-opacity)) !important; + } + + .\32xl\:hover\:border-red-800:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(153, 27, 27, var(--tw-border-opacity)) !important; + } + + .\32xl\:hover\:border-red-900:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(127, 29, 29, var(--tw-border-opacity)) !important; + } + + .\32xl\:hover\:border-yellow-50:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(255, 251, 235, var(--tw-border-opacity)) !important; + } + + .\32xl\:hover\:border-yellow-100:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 243, 199, var(--tw-border-opacity)) !important; + } + + .\32xl\:hover\:border-yellow-200:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(253, 230, 138, var(--tw-border-opacity)) !important; + } + + .\32xl\:hover\:border-yellow-300:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 211, 77, var(--tw-border-opacity)) !important; + } + + .\32xl\:hover\:border-yellow-400:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(251, 191, 36, var(--tw-border-opacity)) !important; + } + + .\32xl\:hover\:border-yellow-500:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)) !important; + } + + .\32xl\:hover\:border-yellow-600:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(217, 119, 6, var(--tw-border-opacity)) !important; + } + + .\32xl\:hover\:border-yellow-700:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(180, 83, 9, var(--tw-border-opacity)) !important; + } + + .\32xl\:hover\:border-yellow-800:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(146, 64, 14, var(--tw-border-opacity)) !important; + } + + .\32xl\:hover\:border-yellow-900:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(120, 53, 15, var(--tw-border-opacity)) !important; + } + + .\32xl\:hover\:border-green-50:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(236, 253, 245, var(--tw-border-opacity)) !important; + } + + .\32xl\:hover\:border-green-100:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(209, 250, 229, var(--tw-border-opacity)) !important; + } + + .\32xl\:hover\:border-green-200:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(167, 243, 208, var(--tw-border-opacity)) !important; + } + + .\32xl\:hover\:border-green-300:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(110, 231, 183, var(--tw-border-opacity)) !important; + } + + .\32xl\:hover\:border-green-400:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(52, 211, 153, var(--tw-border-opacity)) !important; + } + + .\32xl\:hover\:border-green-500:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(16, 185, 129, var(--tw-border-opacity)) !important; + } + + .\32xl\:hover\:border-green-600:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(5, 150, 105, var(--tw-border-opacity)) !important; + } + + .\32xl\:hover\:border-green-700:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(4, 120, 87, var(--tw-border-opacity)) !important; + } + + .\32xl\:hover\:border-green-800:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(6, 95, 70, var(--tw-border-opacity)) !important; + } + + .\32xl\:hover\:border-green-900:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(6, 78, 59, var(--tw-border-opacity)) !important; + } + + .\32xl\:hover\:border-blue-50:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(239, 246, 255, var(--tw-border-opacity)) !important; + } + + .\32xl\:hover\:border-blue-100:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(219, 234, 254, var(--tw-border-opacity)) !important; + } + + .\32xl\:hover\:border-blue-200:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(191, 219, 254, var(--tw-border-opacity)) !important; + } + + .\32xl\:hover\:border-blue-300:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(147, 197, 253, var(--tw-border-opacity)) !important; + } + + .\32xl\:hover\:border-blue-400:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(96, 165, 250, var(--tw-border-opacity)) !important; + } + + .\32xl\:hover\:border-blue-500:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)) !important; + } + + .\32xl\:hover\:border-blue-600:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(37, 99, 235, var(--tw-border-opacity)) !important; + } + + .\32xl\:hover\:border-blue-700:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(29, 78, 216, var(--tw-border-opacity)) !important; + } + + .\32xl\:hover\:border-blue-800:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(30, 64, 175, var(--tw-border-opacity)) !important; + } + + .\32xl\:hover\:border-blue-900:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(30, 58, 138, var(--tw-border-opacity)) !important; + } + + .\32xl\:hover\:border-indigo-50:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(238, 242, 255, var(--tw-border-opacity)) !important; + } + + .\32xl\:hover\:border-indigo-100:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(224, 231, 255, var(--tw-border-opacity)) !important; + } + + .\32xl\:hover\:border-indigo-200:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(199, 210, 254, var(--tw-border-opacity)) !important; + } + + .\32xl\:hover\:border-indigo-300:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(165, 180, 252, var(--tw-border-opacity)) !important; + } + + .\32xl\:hover\:border-indigo-400:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(129, 140, 248, var(--tw-border-opacity)) !important; + } + + .\32xl\:hover\:border-indigo-500:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(99, 102, 241, var(--tw-border-opacity)) !important; + } + + .\32xl\:hover\:border-indigo-600:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(79, 70, 229, var(--tw-border-opacity)) !important; + } + + .\32xl\:hover\:border-indigo-700:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(67, 56, 202, var(--tw-border-opacity)) !important; + } + + .\32xl\:hover\:border-indigo-800:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(55, 48, 163, var(--tw-border-opacity)) !important; + } + + .\32xl\:hover\:border-indigo-900:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(49, 46, 129, var(--tw-border-opacity)) !important; + } + + .\32xl\:hover\:border-purple-50:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(245, 243, 255, var(--tw-border-opacity)) !important; + } + + .\32xl\:hover\:border-purple-100:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(237, 233, 254, var(--tw-border-opacity)) !important; + } + + .\32xl\:hover\:border-purple-200:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(221, 214, 254, var(--tw-border-opacity)) !important; + } + + .\32xl\:hover\:border-purple-300:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(196, 181, 253, var(--tw-border-opacity)) !important; + } + + .\32xl\:hover\:border-purple-400:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(167, 139, 250, var(--tw-border-opacity)) !important; + } + + .\32xl\:hover\:border-purple-500:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(139, 92, 246, var(--tw-border-opacity)) !important; + } + + .\32xl\:hover\:border-purple-600:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(124, 58, 237, var(--tw-border-opacity)) !important; + } + + .\32xl\:hover\:border-purple-700:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(109, 40, 217, var(--tw-border-opacity)) !important; + } + + .\32xl\:hover\:border-purple-800:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(91, 33, 182, var(--tw-border-opacity)) !important; + } + + .\32xl\:hover\:border-purple-900:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(76, 29, 149, var(--tw-border-opacity)) !important; + } + + .\32xl\:hover\:border-pink-50:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(253, 242, 248, var(--tw-border-opacity)) !important; + } + + .\32xl\:hover\:border-pink-100:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 231, 243, var(--tw-border-opacity)) !important; + } + + .\32xl\:hover\:border-pink-200:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(251, 207, 232, var(--tw-border-opacity)) !important; + } + + .\32xl\:hover\:border-pink-300:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(249, 168, 212, var(--tw-border-opacity)) !important; + } + + .\32xl\:hover\:border-pink-400:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(244, 114, 182, var(--tw-border-opacity)) !important; + } + + .\32xl\:hover\:border-pink-500:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(236, 72, 153, var(--tw-border-opacity)) !important; + } + + .\32xl\:hover\:border-pink-600:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(219, 39, 119, var(--tw-border-opacity)) !important; + } + + .\32xl\:hover\:border-pink-700:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(190, 24, 93, var(--tw-border-opacity)) !important; + } + + .\32xl\:hover\:border-pink-800:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(157, 23, 77, var(--tw-border-opacity)) !important; + } + + .\32xl\:hover\:border-pink-900:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(131, 24, 67, var(--tw-border-opacity)) !important; + } + + .\32xl\:hover\:border-primary:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(0, 49, 151, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus\:border-transparent:focus { + border-color: transparent !important; + } + + .\32xl\:focus\:border-current:focus { + border-color: currentColor !important; + } + + .\32xl\:focus\:border-black:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus\:border-white:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus\:border-gray-50:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus\:border-gray-100:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus\:border-gray-200:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus\:border-gray-300:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus\:border-gray-400:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus\:border-gray-500:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus\:border-gray-600:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus\:border-gray-700:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus\:border-gray-800:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus\:border-gray-900:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus\:border-red-50:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 242, 242, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus\:border-red-100:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 226, 226, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus\:border-red-200:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 202, 202, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus\:border-red-300:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 165, 165, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus\:border-red-400:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(248, 113, 113, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus\:border-red-500:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(239, 68, 68, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus\:border-red-600:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(220, 38, 38, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus\:border-red-700:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(185, 28, 28, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus\:border-red-800:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(153, 27, 27, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus\:border-red-900:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(127, 29, 29, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus\:border-yellow-50:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(255, 251, 235, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus\:border-yellow-100:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 243, 199, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus\:border-yellow-200:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(253, 230, 138, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus\:border-yellow-300:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 211, 77, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus\:border-yellow-400:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(251, 191, 36, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus\:border-yellow-500:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus\:border-yellow-600:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(217, 119, 6, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus\:border-yellow-700:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(180, 83, 9, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus\:border-yellow-800:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(146, 64, 14, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus\:border-yellow-900:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(120, 53, 15, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus\:border-green-50:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(236, 253, 245, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus\:border-green-100:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(209, 250, 229, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus\:border-green-200:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(167, 243, 208, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus\:border-green-300:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(110, 231, 183, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus\:border-green-400:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(52, 211, 153, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus\:border-green-500:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(16, 185, 129, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus\:border-green-600:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(5, 150, 105, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus\:border-green-700:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(4, 120, 87, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus\:border-green-800:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(6, 95, 70, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus\:border-green-900:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(6, 78, 59, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus\:border-blue-50:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(239, 246, 255, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus\:border-blue-100:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(219, 234, 254, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus\:border-blue-200:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(191, 219, 254, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus\:border-blue-300:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(147, 197, 253, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus\:border-blue-400:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(96, 165, 250, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus\:border-blue-500:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus\:border-blue-600:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(37, 99, 235, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus\:border-blue-700:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(29, 78, 216, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus\:border-blue-800:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(30, 64, 175, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus\:border-blue-900:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(30, 58, 138, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus\:border-indigo-50:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(238, 242, 255, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus\:border-indigo-100:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(224, 231, 255, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus\:border-indigo-200:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(199, 210, 254, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus\:border-indigo-300:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(165, 180, 252, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus\:border-indigo-400:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(129, 140, 248, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus\:border-indigo-500:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(99, 102, 241, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus\:border-indigo-600:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(79, 70, 229, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus\:border-indigo-700:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(67, 56, 202, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus\:border-indigo-800:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(55, 48, 163, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus\:border-indigo-900:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(49, 46, 129, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus\:border-purple-50:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(245, 243, 255, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus\:border-purple-100:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(237, 233, 254, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus\:border-purple-200:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(221, 214, 254, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus\:border-purple-300:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(196, 181, 253, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus\:border-purple-400:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(167, 139, 250, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus\:border-purple-500:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(139, 92, 246, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus\:border-purple-600:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(124, 58, 237, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus\:border-purple-700:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(109, 40, 217, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus\:border-purple-800:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(91, 33, 182, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus\:border-purple-900:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(76, 29, 149, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus\:border-pink-50:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(253, 242, 248, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus\:border-pink-100:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 231, 243, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus\:border-pink-200:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(251, 207, 232, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus\:border-pink-300:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(249, 168, 212, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus\:border-pink-400:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(244, 114, 182, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus\:border-pink-500:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(236, 72, 153, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus\:border-pink-600:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(219, 39, 119, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus\:border-pink-700:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(190, 24, 93, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus\:border-pink-800:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(157, 23, 77, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus\:border-pink-900:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(131, 24, 67, var(--tw-border-opacity)) !important; + } + + .\32xl\:focus\:border-primary:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(0, 49, 151, var(--tw-border-opacity)) !important; + } + + .\32xl\:border-opacity-0 { + --tw-border-opacity: 0 !important; + } + + .\32xl\:border-opacity-5 { + --tw-border-opacity: 0.05 !important; + } + + .\32xl\:border-opacity-10 { + --tw-border-opacity: 0.1 !important; + } + + .\32xl\:border-opacity-20 { + --tw-border-opacity: 0.2 !important; + } + + .\32xl\:border-opacity-25 { + --tw-border-opacity: 0.25 !important; + } + + .\32xl\:border-opacity-30 { + --tw-border-opacity: 0.3 !important; + } + + .\32xl\:border-opacity-40 { + --tw-border-opacity: 0.4 !important; + } + + .\32xl\:border-opacity-50 { + --tw-border-opacity: 0.5 !important; + } + + .\32xl\:border-opacity-60 { + --tw-border-opacity: 0.6 !important; + } + + .\32xl\:border-opacity-70 { + --tw-border-opacity: 0.7 !important; + } + + .\32xl\:border-opacity-75 { + --tw-border-opacity: 0.75 !important; + } + + .\32xl\:border-opacity-80 { + --tw-border-opacity: 0.8 !important; + } + + .\32xl\:border-opacity-90 { + --tw-border-opacity: 0.9 !important; + } + + .\32xl\:border-opacity-95 { + --tw-border-opacity: 0.95 !important; + } + + .\32xl\:border-opacity-100 { + --tw-border-opacity: 1 !important; + } + + .group:hover .\32xl\:group-hover\:border-opacity-0 { + --tw-border-opacity: 0 !important; + } + + .group:hover .\32xl\:group-hover\:border-opacity-5 { + --tw-border-opacity: 0.05 !important; + } + + .group:hover .\32xl\:group-hover\:border-opacity-10 { + --tw-border-opacity: 0.1 !important; + } + + .group:hover .\32xl\:group-hover\:border-opacity-20 { + --tw-border-opacity: 0.2 !important; + } + + .group:hover .\32xl\:group-hover\:border-opacity-25 { + --tw-border-opacity: 0.25 !important; + } + + .group:hover .\32xl\:group-hover\:border-opacity-30 { + --tw-border-opacity: 0.3 !important; + } + + .group:hover .\32xl\:group-hover\:border-opacity-40 { + --tw-border-opacity: 0.4 !important; + } + + .group:hover .\32xl\:group-hover\:border-opacity-50 { + --tw-border-opacity: 0.5 !important; + } + + .group:hover .\32xl\:group-hover\:border-opacity-60 { + --tw-border-opacity: 0.6 !important; + } + + .group:hover .\32xl\:group-hover\:border-opacity-70 { + --tw-border-opacity: 0.7 !important; + } + + .group:hover .\32xl\:group-hover\:border-opacity-75 { + --tw-border-opacity: 0.75 !important; + } + + .group:hover .\32xl\:group-hover\:border-opacity-80 { + --tw-border-opacity: 0.8 !important; + } + + .group:hover .\32xl\:group-hover\:border-opacity-90 { + --tw-border-opacity: 0.9 !important; + } + + .group:hover .\32xl\:group-hover\:border-opacity-95 { + --tw-border-opacity: 0.95 !important; + } + + .group:hover .\32xl\:group-hover\:border-opacity-100 { + --tw-border-opacity: 1 !important; + } + + .\32xl\:focus-within\:border-opacity-0:focus-within { + --tw-border-opacity: 0 !important; + } + + .\32xl\:focus-within\:border-opacity-5:focus-within { + --tw-border-opacity: 0.05 !important; + } + + .\32xl\:focus-within\:border-opacity-10:focus-within { + --tw-border-opacity: 0.1 !important; + } + + .\32xl\:focus-within\:border-opacity-20:focus-within { + --tw-border-opacity: 0.2 !important; + } + + .\32xl\:focus-within\:border-opacity-25:focus-within { + --tw-border-opacity: 0.25 !important; + } + + .\32xl\:focus-within\:border-opacity-30:focus-within { + --tw-border-opacity: 0.3 !important; + } + + .\32xl\:focus-within\:border-opacity-40:focus-within { + --tw-border-opacity: 0.4 !important; + } + + .\32xl\:focus-within\:border-opacity-50:focus-within { + --tw-border-opacity: 0.5 !important; + } + + .\32xl\:focus-within\:border-opacity-60:focus-within { + --tw-border-opacity: 0.6 !important; + } + + .\32xl\:focus-within\:border-opacity-70:focus-within { + --tw-border-opacity: 0.7 !important; + } + + .\32xl\:focus-within\:border-opacity-75:focus-within { + --tw-border-opacity: 0.75 !important; + } + + .\32xl\:focus-within\:border-opacity-80:focus-within { + --tw-border-opacity: 0.8 !important; + } + + .\32xl\:focus-within\:border-opacity-90:focus-within { + --tw-border-opacity: 0.9 !important; + } + + .\32xl\:focus-within\:border-opacity-95:focus-within { + --tw-border-opacity: 0.95 !important; + } + + .\32xl\:focus-within\:border-opacity-100:focus-within { + --tw-border-opacity: 1 !important; + } + + .\32xl\:hover\:border-opacity-0:hover { + --tw-border-opacity: 0 !important; + } + + .\32xl\:hover\:border-opacity-5:hover { + --tw-border-opacity: 0.05 !important; + } + + .\32xl\:hover\:border-opacity-10:hover { + --tw-border-opacity: 0.1 !important; + } + + .\32xl\:hover\:border-opacity-20:hover { + --tw-border-opacity: 0.2 !important; + } + + .\32xl\:hover\:border-opacity-25:hover { + --tw-border-opacity: 0.25 !important; + } + + .\32xl\:hover\:border-opacity-30:hover { + --tw-border-opacity: 0.3 !important; + } + + .\32xl\:hover\:border-opacity-40:hover { + --tw-border-opacity: 0.4 !important; + } + + .\32xl\:hover\:border-opacity-50:hover { + --tw-border-opacity: 0.5 !important; + } + + .\32xl\:hover\:border-opacity-60:hover { + --tw-border-opacity: 0.6 !important; + } + + .\32xl\:hover\:border-opacity-70:hover { + --tw-border-opacity: 0.7 !important; + } + + .\32xl\:hover\:border-opacity-75:hover { + --tw-border-opacity: 0.75 !important; + } + + .\32xl\:hover\:border-opacity-80:hover { + --tw-border-opacity: 0.8 !important; + } + + .\32xl\:hover\:border-opacity-90:hover { + --tw-border-opacity: 0.9 !important; + } + + .\32xl\:hover\:border-opacity-95:hover { + --tw-border-opacity: 0.95 !important; + } + + .\32xl\:hover\:border-opacity-100:hover { + --tw-border-opacity: 1 !important; + } + + .\32xl\:focus\:border-opacity-0:focus { + --tw-border-opacity: 0 !important; + } + + .\32xl\:focus\:border-opacity-5:focus { + --tw-border-opacity: 0.05 !important; + } + + .\32xl\:focus\:border-opacity-10:focus { + --tw-border-opacity: 0.1 !important; + } + + .\32xl\:focus\:border-opacity-20:focus { + --tw-border-opacity: 0.2 !important; + } + + .\32xl\:focus\:border-opacity-25:focus { + --tw-border-opacity: 0.25 !important; + } + + .\32xl\:focus\:border-opacity-30:focus { + --tw-border-opacity: 0.3 !important; + } + + .\32xl\:focus\:border-opacity-40:focus { + --tw-border-opacity: 0.4 !important; + } + + .\32xl\:focus\:border-opacity-50:focus { + --tw-border-opacity: 0.5 !important; + } + + .\32xl\:focus\:border-opacity-60:focus { + --tw-border-opacity: 0.6 !important; + } + + .\32xl\:focus\:border-opacity-70:focus { + --tw-border-opacity: 0.7 !important; + } + + .\32xl\:focus\:border-opacity-75:focus { + --tw-border-opacity: 0.75 !important; + } + + .\32xl\:focus\:border-opacity-80:focus { + --tw-border-opacity: 0.8 !important; + } + + .\32xl\:focus\:border-opacity-90:focus { + --tw-border-opacity: 0.9 !important; + } + + .\32xl\:focus\:border-opacity-95:focus { + --tw-border-opacity: 0.95 !important; + } + + .\32xl\:focus\:border-opacity-100:focus { + --tw-border-opacity: 1 !important; + } + + .\32xl\:rounded-none { + border-radius: 0px !important; + } + + .\32xl\:rounded-sm { + border-radius: 0.125rem !important; + } + + .\32xl\:rounded { + border-radius: 0.25rem !important; + } + + .\32xl\:rounded-md { + border-radius: 0.375rem !important; + } + + .\32xl\:rounded-lg { + border-radius: 0.5rem !important; + } + + .\32xl\:rounded-xl { + border-radius: 0.75rem !important; + } + + .\32xl\:rounded-2xl { + border-radius: 1rem !important; + } + + .\32xl\:rounded-3xl { + border-radius: 1.5rem !important; + } + + .\32xl\:rounded-full { + border-radius: 9999px !important; + } + + .\32xl\:rounded-t-none { + border-top-left-radius: 0px !important; + border-top-right-radius: 0px !important; + } + + .\32xl\:rounded-r-none { + border-top-right-radius: 0px !important; + border-bottom-right-radius: 0px !important; + } + + .\32xl\:rounded-b-none { + border-bottom-right-radius: 0px !important; + border-bottom-left-radius: 0px !important; + } + + .\32xl\:rounded-l-none { + border-top-left-radius: 0px !important; + border-bottom-left-radius: 0px !important; + } + + .\32xl\:rounded-t-sm { + border-top-left-radius: 0.125rem !important; + border-top-right-radius: 0.125rem !important; + } + + .\32xl\:rounded-r-sm { + border-top-right-radius: 0.125rem !important; + border-bottom-right-radius: 0.125rem !important; + } + + .\32xl\:rounded-b-sm { + border-bottom-right-radius: 0.125rem !important; + border-bottom-left-radius: 0.125rem !important; + } + + .\32xl\:rounded-l-sm { + border-top-left-radius: 0.125rem !important; + border-bottom-left-radius: 0.125rem !important; + } + + .\32xl\:rounded-t { + border-top-left-radius: 0.25rem !important; + border-top-right-radius: 0.25rem !important; + } + + .\32xl\:rounded-r { + border-top-right-radius: 0.25rem !important; + border-bottom-right-radius: 0.25rem !important; + } + + .\32xl\:rounded-b { + border-bottom-right-radius: 0.25rem !important; + border-bottom-left-radius: 0.25rem !important; + } + + .\32xl\:rounded-l { + border-top-left-radius: 0.25rem !important; + border-bottom-left-radius: 0.25rem !important; + } + + .\32xl\:rounded-t-md { + border-top-left-radius: 0.375rem !important; + border-top-right-radius: 0.375rem !important; + } + + .\32xl\:rounded-r-md { + border-top-right-radius: 0.375rem !important; + border-bottom-right-radius: 0.375rem !important; + } + + .\32xl\:rounded-b-md { + border-bottom-right-radius: 0.375rem !important; + border-bottom-left-radius: 0.375rem !important; + } + + .\32xl\:rounded-l-md { + border-top-left-radius: 0.375rem !important; + border-bottom-left-radius: 0.375rem !important; + } + + .\32xl\:rounded-t-lg { + border-top-left-radius: 0.5rem !important; + border-top-right-radius: 0.5rem !important; + } + + .\32xl\:rounded-r-lg { + border-top-right-radius: 0.5rem !important; + border-bottom-right-radius: 0.5rem !important; + } + + .\32xl\:rounded-b-lg { + border-bottom-right-radius: 0.5rem !important; + border-bottom-left-radius: 0.5rem !important; + } + + .\32xl\:rounded-l-lg { + border-top-left-radius: 0.5rem !important; + border-bottom-left-radius: 0.5rem !important; + } + + .\32xl\:rounded-t-xl { + border-top-left-radius: 0.75rem !important; + border-top-right-radius: 0.75rem !important; + } + + .\32xl\:rounded-r-xl { + border-top-right-radius: 0.75rem !important; + border-bottom-right-radius: 0.75rem !important; + } + + .\32xl\:rounded-b-xl { + border-bottom-right-radius: 0.75rem !important; + border-bottom-left-radius: 0.75rem !important; + } + + .\32xl\:rounded-l-xl { + border-top-left-radius: 0.75rem !important; + border-bottom-left-radius: 0.75rem !important; + } + + .\32xl\:rounded-t-2xl { + border-top-left-radius: 1rem !important; + border-top-right-radius: 1rem !important; + } + + .\32xl\:rounded-r-2xl { + border-top-right-radius: 1rem !important; + border-bottom-right-radius: 1rem !important; + } + + .\32xl\:rounded-b-2xl { + border-bottom-right-radius: 1rem !important; + border-bottom-left-radius: 1rem !important; + } + + .\32xl\:rounded-l-2xl { + border-top-left-radius: 1rem !important; + border-bottom-left-radius: 1rem !important; + } + + .\32xl\:rounded-t-3xl { + border-top-left-radius: 1.5rem !important; + border-top-right-radius: 1.5rem !important; + } + + .\32xl\:rounded-r-3xl { + border-top-right-radius: 1.5rem !important; + border-bottom-right-radius: 1.5rem !important; + } + + .\32xl\:rounded-b-3xl { + border-bottom-right-radius: 1.5rem !important; + border-bottom-left-radius: 1.5rem !important; + } + + .\32xl\:rounded-l-3xl { + border-top-left-radius: 1.5rem !important; + border-bottom-left-radius: 1.5rem !important; + } + + .\32xl\:rounded-t-full { + border-top-left-radius: 9999px !important; + border-top-right-radius: 9999px !important; + } + + .\32xl\:rounded-r-full { + border-top-right-radius: 9999px !important; + border-bottom-right-radius: 9999px !important; + } + + .\32xl\:rounded-b-full { + border-bottom-right-radius: 9999px !important; + border-bottom-left-radius: 9999px !important; + } + + .\32xl\:rounded-l-full { + border-top-left-radius: 9999px !important; + border-bottom-left-radius: 9999px !important; + } + + .\32xl\:rounded-tl-none { + border-top-left-radius: 0px !important; + } + + .\32xl\:rounded-tr-none { + border-top-right-radius: 0px !important; + } + + .\32xl\:rounded-br-none { + border-bottom-right-radius: 0px !important; + } + + .\32xl\:rounded-bl-none { + border-bottom-left-radius: 0px !important; + } + + .\32xl\:rounded-tl-sm { + border-top-left-radius: 0.125rem !important; + } + + .\32xl\:rounded-tr-sm { + border-top-right-radius: 0.125rem !important; + } + + .\32xl\:rounded-br-sm { + border-bottom-right-radius: 0.125rem !important; + } + + .\32xl\:rounded-bl-sm { + border-bottom-left-radius: 0.125rem !important; + } + + .\32xl\:rounded-tl { + border-top-left-radius: 0.25rem !important; + } + + .\32xl\:rounded-tr { + border-top-right-radius: 0.25rem !important; + } + + .\32xl\:rounded-br { + border-bottom-right-radius: 0.25rem !important; + } + + .\32xl\:rounded-bl { + border-bottom-left-radius: 0.25rem !important; + } + + .\32xl\:rounded-tl-md { + border-top-left-radius: 0.375rem !important; + } + + .\32xl\:rounded-tr-md { + border-top-right-radius: 0.375rem !important; + } + + .\32xl\:rounded-br-md { + border-bottom-right-radius: 0.375rem !important; + } + + .\32xl\:rounded-bl-md { + border-bottom-left-radius: 0.375rem !important; + } + + .\32xl\:rounded-tl-lg { + border-top-left-radius: 0.5rem !important; + } + + .\32xl\:rounded-tr-lg { + border-top-right-radius: 0.5rem !important; + } + + .\32xl\:rounded-br-lg { + border-bottom-right-radius: 0.5rem !important; + } + + .\32xl\:rounded-bl-lg { + border-bottom-left-radius: 0.5rem !important; + } + + .\32xl\:rounded-tl-xl { + border-top-left-radius: 0.75rem !important; + } + + .\32xl\:rounded-tr-xl { + border-top-right-radius: 0.75rem !important; + } + + .\32xl\:rounded-br-xl { + border-bottom-right-radius: 0.75rem !important; + } + + .\32xl\:rounded-bl-xl { + border-bottom-left-radius: 0.75rem !important; + } + + .\32xl\:rounded-tl-2xl { + border-top-left-radius: 1rem !important; + } + + .\32xl\:rounded-tr-2xl { + border-top-right-radius: 1rem !important; + } + + .\32xl\:rounded-br-2xl { + border-bottom-right-radius: 1rem !important; + } + + .\32xl\:rounded-bl-2xl { + border-bottom-left-radius: 1rem !important; + } + + .\32xl\:rounded-tl-3xl { + border-top-left-radius: 1.5rem !important; + } + + .\32xl\:rounded-tr-3xl { + border-top-right-radius: 1.5rem !important; + } + + .\32xl\:rounded-br-3xl { + border-bottom-right-radius: 1.5rem !important; + } + + .\32xl\:rounded-bl-3xl { + border-bottom-left-radius: 1.5rem !important; + } + + .\32xl\:rounded-tl-full { + border-top-left-radius: 9999px !important; + } + + .\32xl\:rounded-tr-full { + border-top-right-radius: 9999px !important; + } + + .\32xl\:rounded-br-full { + border-bottom-right-radius: 9999px !important; + } + + .\32xl\:rounded-bl-full { + border-bottom-left-radius: 9999px !important; + } + + .\32xl\:border-solid { + border-style: solid !important; + } + + .\32xl\:border-dashed { + border-style: dashed !important; + } + + .\32xl\:border-dotted { + border-style: dotted !important; + } + + .\32xl\:border-double { + border-style: double !important; + } + + .\32xl\:border-none { + border-style: none !important; + } + + .\32xl\:border-0 { + border-width: 0px !important; + } + + .\32xl\:border-2 { + border-width: 2px !important; + } + + .\32xl\:border-4 { + border-width: 4px !important; + } + + .\32xl\:border-8 { + border-width: 8px !important; + } + + .\32xl\:border { + border-width: 1px !important; + } + + .\32xl\:border-t-0 { + border-top-width: 0px !important; + } + + .\32xl\:border-r-0 { + border-right-width: 0px !important; + } + + .\32xl\:border-b-0 { + border-bottom-width: 0px !important; + } + + .\32xl\:border-l-0 { + border-left-width: 0px !important; + } + + .\32xl\:border-t-2 { + border-top-width: 2px !important; + } + + .\32xl\:border-r-2 { + border-right-width: 2px !important; + } + + .\32xl\:border-b-2 { + border-bottom-width: 2px !important; + } + + .\32xl\:border-l-2 { + border-left-width: 2px !important; + } + + .\32xl\:border-t-4 { + border-top-width: 4px !important; + } + + .\32xl\:border-r-4 { + border-right-width: 4px !important; + } + + .\32xl\:border-b-4 { + border-bottom-width: 4px !important; + } + + .\32xl\:border-l-4 { + border-left-width: 4px !important; + } + + .\32xl\:border-t-8 { + border-top-width: 8px !important; + } + + .\32xl\:border-r-8 { + border-right-width: 8px !important; + } + + .\32xl\:border-b-8 { + border-bottom-width: 8px !important; + } + + .\32xl\:border-l-8 { + border-left-width: 8px !important; + } + + .\32xl\:border-t { + border-top-width: 1px !important; + } + + .\32xl\:border-r { + border-right-width: 1px !important; + } + + .\32xl\:border-b { + border-bottom-width: 1px !important; + } + + .\32xl\:border-l { + border-left-width: 1px !important; + } + + .\32xl\:decoration-slice { + -webkit-box-decoration-break: slice !important; + box-decoration-break: slice !important; + } + + .\32xl\:decoration-clone { + -webkit-box-decoration-break: clone !important; + box-decoration-break: clone !important; + } + + .\32xl\:box-border { + box-sizing: border-box !important; + } + + .\32xl\:box-content { + box-sizing: content-box !important; + } + + .\32xl\:cursor-auto { + cursor: auto !important; + } + + .\32xl\:cursor-default { + cursor: default !important; + } + + .\32xl\:cursor-pointer { + cursor: pointer !important; + } + + .\32xl\:cursor-wait { + cursor: wait !important; + } + + .\32xl\:cursor-text { + cursor: text !important; + } + + .\32xl\:cursor-move { + cursor: move !important; + } + + .\32xl\:cursor-help { + cursor: help !important; + } + + .\32xl\:cursor-not-allowed { + cursor: not-allowed !important; + } + + .\32xl\:block { + display: block !important; + } + + .\32xl\:inline-block { + display: inline-block !important; + } + + .\32xl\:inline { + display: inline !important; + } + + .\32xl\:flex { + display: flex !important; + } + + .\32xl\:inline-flex { + display: inline-flex !important; + } + + .\32xl\:table { + display: table !important; + } + + .\32xl\:inline-table { + display: inline-table !important; + } + + .\32xl\:table-caption { + display: table-caption !important; + } + + .\32xl\:table-cell { + display: table-cell !important; + } + + .\32xl\:table-column { + display: table-column !important; + } + + .\32xl\:table-column-group { + display: table-column-group !important; + } + + .\32xl\:table-footer-group { + display: table-footer-group !important; + } + + .\32xl\:table-header-group { + display: table-header-group !important; + } + + .\32xl\:table-row-group { + display: table-row-group !important; + } + + .\32xl\:table-row { + display: table-row !important; + } + + .\32xl\:flow-root { + display: flow-root !important; + } + + .\32xl\:grid { + display: grid !important; + } + + .\32xl\:inline-grid { + display: inline-grid !important; + } + + .\32xl\:contents { + display: contents !important; + } + + .\32xl\:list-item { + display: list-item !important; + } + + .\32xl\:hidden { + display: none !important; + } + + .\32xl\:flex-row { + flex-direction: row !important; + } + + .\32xl\:flex-row-reverse { + flex-direction: row-reverse !important; + } + + .\32xl\:flex-col { + flex-direction: column !important; + } + + .\32xl\:flex-col-reverse { + flex-direction: column-reverse !important; + } + + .\32xl\:flex-wrap { + flex-wrap: wrap !important; + } + + .\32xl\:flex-wrap-reverse { + flex-wrap: wrap-reverse !important; + } + + .\32xl\:flex-nowrap { + flex-wrap: nowrap !important; + } + + .\32xl\:place-items-start { + place-items: start !important; + } + + .\32xl\:place-items-end { + place-items: end !important; + } + + .\32xl\:place-items-center { + place-items: center !important; + } + + .\32xl\:place-items-stretch { + place-items: stretch !important; + } + + .\32xl\:place-content-center { + place-content: center !important; + } + + .\32xl\:place-content-start { + place-content: start !important; + } + + .\32xl\:place-content-end { + place-content: end !important; + } + + .\32xl\:place-content-between { + place-content: space-between !important; + } + + .\32xl\:place-content-around { + place-content: space-around !important; + } + + .\32xl\:place-content-evenly { + place-content: space-evenly !important; + } + + .\32xl\:place-content-stretch { + place-content: stretch !important; + } + + .\32xl\:place-self-auto { + place-self: auto !important; + } + + .\32xl\:place-self-start { + place-self: start !important; + } + + .\32xl\:place-self-end { + place-self: end !important; + } + + .\32xl\:place-self-center { + place-self: center !important; + } + + .\32xl\:place-self-stretch { + place-self: stretch !important; + } + + .\32xl\:items-start { + align-items: flex-start !important; + } + + .\32xl\:items-end { + align-items: flex-end !important; + } + + .\32xl\:items-center { + align-items: center !important; + } + + .\32xl\:items-baseline { + align-items: baseline !important; + } + + .\32xl\:items-stretch { + align-items: stretch !important; + } + + .\32xl\:content-center { + align-content: center !important; + } + + .\32xl\:content-start { + align-content: flex-start !important; + } + + .\32xl\:content-end { + align-content: flex-end !important; + } + + .\32xl\:content-between { + align-content: space-between !important; + } + + .\32xl\:content-around { + align-content: space-around !important; + } + + .\32xl\:content-evenly { + align-content: space-evenly !important; + } + + .\32xl\:self-auto { + align-self: auto !important; + } + + .\32xl\:self-start { + align-self: flex-start !important; + } + + .\32xl\:self-end { + align-self: flex-end !important; + } + + .\32xl\:self-center { + align-self: center !important; + } + + .\32xl\:self-stretch { + align-self: stretch !important; + } + + .\32xl\:justify-items-start { + justify-items: start !important; + } + + .\32xl\:justify-items-end { + justify-items: end !important; + } + + .\32xl\:justify-items-center { + justify-items: center !important; + } + + .\32xl\:justify-items-stretch { + justify-items: stretch !important; + } + + .\32xl\:justify-start { + justify-content: flex-start !important; + } + + .\32xl\:justify-end { + justify-content: flex-end !important; + } + + .\32xl\:justify-center { + justify-content: center !important; + } + + .\32xl\:justify-between { + justify-content: space-between !important; + } + + .\32xl\:justify-around { + justify-content: space-around !important; + } + + .\32xl\:justify-evenly { + justify-content: space-evenly !important; + } + + .\32xl\:justify-self-auto { + justify-self: auto !important; + } + + .\32xl\:justify-self-start { + justify-self: start !important; + } + + .\32xl\:justify-self-end { + justify-self: end !important; + } + + .\32xl\:justify-self-center { + justify-self: center !important; + } + + .\32xl\:justify-self-stretch { + justify-self: stretch !important; + } + + .\32xl\:flex-1 { + flex: 1 1 0% !important; + } + + .\32xl\:flex-auto { + flex: 1 1 auto !important; + } + + .\32xl\:flex-initial { + flex: 0 1 auto !important; + } + + .\32xl\:flex-none { + flex: none !important; + } + + .\32xl\:flex-grow-0 { + flex-grow: 0 !important; + } + + .\32xl\:flex-grow { + flex-grow: 1 !important; + } + + .\32xl\:flex-shrink-0 { + flex-shrink: 0 !important; + } + + .\32xl\:flex-shrink { + flex-shrink: 1 !important; + } + + .\32xl\:order-1 { + order: 1 !important; + } + + .\32xl\:order-2 { + order: 2 !important; + } + + .\32xl\:order-3 { + order: 3 !important; + } + + .\32xl\:order-4 { + order: 4 !important; + } + + .\32xl\:order-5 { + order: 5 !important; + } + + .\32xl\:order-6 { + order: 6 !important; + } + + .\32xl\:order-7 { + order: 7 !important; + } + + .\32xl\:order-8 { + order: 8 !important; + } + + .\32xl\:order-9 { + order: 9 !important; + } + + .\32xl\:order-10 { + order: 10 !important; + } + + .\32xl\:order-11 { + order: 11 !important; + } + + .\32xl\:order-12 { + order: 12 !important; + } + + .\32xl\:order-first { + order: -9999 !important; + } + + .\32xl\:order-last { + order: 9999 !important; + } + + .\32xl\:order-none { + order: 0 !important; + } + + .\32xl\:float-right { + float: right !important; + } + + .\32xl\:float-left { + float: left !important; + } + + .\32xl\:float-none { + float: none !important; + } + + .\32xl\:clear-left { + clear: left !important; + } + + .\32xl\:clear-right { + clear: right !important; + } + + .\32xl\:clear-both { + clear: both !important; + } + + .\32xl\:clear-none { + clear: none !important; + } + + .\32xl\:font-sans { + font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important; + } + + .\32xl\:font-serif { + font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif !important; + } + + .\32xl\:font-mono { + font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important; + } + + .\32xl\:font-thin { + font-weight: 100 !important; + } + + .\32xl\:font-extralight { + font-weight: 200 !important; + } + + .\32xl\:font-light { + font-weight: 300 !important; + } + + .\32xl\:font-normal { + font-weight: 400 !important; + } + + .\32xl\:font-medium { + font-weight: 500 !important; + } + + .\32xl\:font-semibold { + font-weight: 600 !important; + } + + .\32xl\:font-bold { + font-weight: 700 !important; + } + + .\32xl\:font-extrabold { + font-weight: 800 !important; + } + + .\32xl\:font-black { + font-weight: 900 !important; + } + + .\32xl\:h-0 { + height: 0px !important; + } + + .\32xl\:h-1 { + height: 0.25rem !important; + } + + .\32xl\:h-2 { + height: 0.5rem !important; + } + + .\32xl\:h-3 { + height: 0.75rem !important; + } + + .\32xl\:h-4 { + height: 1rem !important; + } + + .\32xl\:h-5 { + height: 1.25rem !important; + } + + .\32xl\:h-6 { + height: 1.5rem !important; + } + + .\32xl\:h-7 { + height: 1.75rem !important; + } + + .\32xl\:h-8 { + height: 2rem !important; + } + + .\32xl\:h-9 { + height: 2.25rem !important; + } + + .\32xl\:h-10 { + height: 2.5rem !important; + } + + .\32xl\:h-11 { + height: 2.75rem !important; + } + + .\32xl\:h-12 { + height: 3rem !important; + } + + .\32xl\:h-14 { + height: 3.5rem !important; + } + + .\32xl\:h-16 { + height: 4rem !important; + } + + .\32xl\:h-20 { + height: 5rem !important; + } + + .\32xl\:h-24 { + height: 6rem !important; + } + + .\32xl\:h-28 { + height: 7rem !important; + } + + .\32xl\:h-32 { + height: 8rem !important; + } + + .\32xl\:h-36 { + height: 9rem !important; + } + + .\32xl\:h-40 { + height: 10rem !important; + } + + .\32xl\:h-44 { + height: 11rem !important; + } + + .\32xl\:h-48 { + height: 12rem !important; + } + + .\32xl\:h-52 { + height: 13rem !important; + } + + .\32xl\:h-56 { + height: 14rem !important; + } + + .\32xl\:h-60 { + height: 15rem !important; + } + + .\32xl\:h-64 { + height: 16rem !important; + } + + .\32xl\:h-72 { + height: 18rem !important; + } + + .\32xl\:h-80 { + height: 20rem !important; + } + + .\32xl\:h-96 { + height: 24rem !important; + } + + .\32xl\:h-auto { + height: auto !important; + } + + .\32xl\:h-px { + height: 1px !important; + } + + .\32xl\:h-0\.5 { + height: 0.125rem !important; + } + + .\32xl\:h-1\.5 { + height: 0.375rem !important; + } + + .\32xl\:h-2\.5 { + height: 0.625rem !important; + } + + .\32xl\:h-3\.5 { + height: 0.875rem !important; + } + + .\32xl\:h-1\/2 { + height: 50% !important; + } + + .\32xl\:h-1\/3 { + height: 33.333333% !important; + } + + .\32xl\:h-2\/3 { + height: 66.666667% !important; + } + + .\32xl\:h-1\/4 { + height: 25% !important; + } + + .\32xl\:h-2\/4 { + height: 50% !important; + } + + .\32xl\:h-3\/4 { + height: 75% !important; + } + + .\32xl\:h-1\/5 { + height: 20% !important; + } + + .\32xl\:h-2\/5 { + height: 40% !important; + } + + .\32xl\:h-3\/5 { + height: 60% !important; + } + + .\32xl\:h-4\/5 { + height: 80% !important; + } + + .\32xl\:h-1\/6 { + height: 16.666667% !important; + } + + .\32xl\:h-2\/6 { + height: 33.333333% !important; + } + + .\32xl\:h-3\/6 { + height: 50% !important; + } + + .\32xl\:h-4\/6 { + height: 66.666667% !important; + } + + .\32xl\:h-5\/6 { + height: 83.333333% !important; + } + + .\32xl\:h-full { + height: 100% !important; + } + + .\32xl\:h-screen { + height: 100vh !important; + } + + .\32xl\:text-xs { + font-size: 0.75rem !important; + line-height: 1rem !important; + } + + .\32xl\:text-sm { + font-size: 0.875rem !important; + line-height: 1.25rem !important; + } + + .\32xl\:text-base { + font-size: 1rem !important; + line-height: 1.5rem !important; + } + + .\32xl\:text-lg { + font-size: 1.125rem !important; + line-height: 1.75rem !important; + } + + .\32xl\:text-xl { + font-size: 1.25rem !important; + line-height: 1.75rem !important; + } + + .\32xl\:text-2xl { + font-size: 1.5rem !important; + line-height: 2rem !important; + } + + .\32xl\:text-3xl { + font-size: 1.875rem !important; + line-height: 2.25rem !important; + } + + .\32xl\:text-4xl { + font-size: 2.25rem !important; + line-height: 2.5rem !important; + } + + .\32xl\:text-5xl { + font-size: 3rem !important; + line-height: 1 !important; + } + + .\32xl\:text-6xl { + font-size: 3.75rem !important; + line-height: 1 !important; + } + + .\32xl\:text-7xl { + font-size: 4.5rem !important; + line-height: 1 !important; + } + + .\32xl\:text-8xl { + font-size: 6rem !important; + line-height: 1 !important; + } + + .\32xl\:text-9xl { + font-size: 8rem !important; + line-height: 1 !important; + } + + .\32xl\:leading-3 { + line-height: .75rem !important; + } + + .\32xl\:leading-4 { + line-height: 1rem !important; + } + + .\32xl\:leading-5 { + line-height: 1.25rem !important; + } + + .\32xl\:leading-6 { + line-height: 1.5rem !important; + } + + .\32xl\:leading-7 { + line-height: 1.75rem !important; + } + + .\32xl\:leading-8 { + line-height: 2rem !important; + } + + .\32xl\:leading-9 { + line-height: 2.25rem !important; + } + + .\32xl\:leading-10 { + line-height: 2.5rem !important; + } + + .\32xl\:leading-none { + line-height: 1 !important; + } + + .\32xl\:leading-tight { + line-height: 1.25 !important; + } + + .\32xl\:leading-snug { + line-height: 1.375 !important; + } + + .\32xl\:leading-normal { + line-height: 1.5 !important; + } + + .\32xl\:leading-relaxed { + line-height: 1.625 !important; + } + + .\32xl\:leading-loose { + line-height: 2 !important; + } + + .\32xl\:list-inside { + list-style-position: inside !important; + } + + .\32xl\:list-outside { + list-style-position: outside !important; + } + + .\32xl\:list-none { + list-style-type: none !important; + } + + .\32xl\:list-disc { + list-style-type: disc !important; + } + + .\32xl\:list-decimal { + list-style-type: decimal !important; + } + + .\32xl\:m-0 { + margin: 0px !important; + } + + .\32xl\:m-1 { + margin: 0.25rem !important; + } + + .\32xl\:m-2 { + margin: 0.5rem !important; + } + + .\32xl\:m-3 { + margin: 0.75rem !important; + } + + .\32xl\:m-4 { + margin: 1rem !important; + } + + .\32xl\:m-5 { + margin: 1.25rem !important; + } + + .\32xl\:m-6 { + margin: 1.5rem !important; + } + + .\32xl\:m-7 { + margin: 1.75rem !important; + } + + .\32xl\:m-8 { + margin: 2rem !important; + } + + .\32xl\:m-9 { + margin: 2.25rem !important; + } + + .\32xl\:m-10 { + margin: 2.5rem !important; + } + + .\32xl\:m-11 { + margin: 2.75rem !important; + } + + .\32xl\:m-12 { + margin: 3rem !important; + } + + .\32xl\:m-14 { + margin: 3.5rem !important; + } + + .\32xl\:m-16 { + margin: 4rem !important; + } + + .\32xl\:m-20 { + margin: 5rem !important; + } + + .\32xl\:m-24 { + margin: 6rem !important; + } + + .\32xl\:m-28 { + margin: 7rem !important; + } + + .\32xl\:m-32 { + margin: 8rem !important; + } + + .\32xl\:m-36 { + margin: 9rem !important; + } + + .\32xl\:m-40 { + margin: 10rem !important; + } + + .\32xl\:m-44 { + margin: 11rem !important; + } + + .\32xl\:m-48 { + margin: 12rem !important; + } + + .\32xl\:m-52 { + margin: 13rem !important; + } + + .\32xl\:m-56 { + margin: 14rem !important; + } + + .\32xl\:m-60 { + margin: 15rem !important; + } + + .\32xl\:m-64 { + margin: 16rem !important; + } + + .\32xl\:m-72 { + margin: 18rem !important; + } + + .\32xl\:m-80 { + margin: 20rem !important; + } + + .\32xl\:m-96 { + margin: 24rem !important; + } + + .\32xl\:m-auto { + margin: auto !important; + } + + .\32xl\:m-px { + margin: 1px !important; + } + + .\32xl\:m-0\.5 { + margin: 0.125rem !important; + } + + .\32xl\:m-1\.5 { + margin: 0.375rem !important; + } + + .\32xl\:m-2\.5 { + margin: 0.625rem !important; + } + + .\32xl\:m-3\.5 { + margin: 0.875rem !important; + } + + .\32xl\:-m-0 { + margin: 0px !important; + } + + .\32xl\:-m-1 { + margin: -0.25rem !important; + } + + .\32xl\:-m-2 { + margin: -0.5rem !important; + } + + .\32xl\:-m-3 { + margin: -0.75rem !important; + } + + .\32xl\:-m-4 { + margin: -1rem !important; + } + + .\32xl\:-m-5 { + margin: -1.25rem !important; + } + + .\32xl\:-m-6 { + margin: -1.5rem !important; + } + + .\32xl\:-m-7 { + margin: -1.75rem !important; + } + + .\32xl\:-m-8 { + margin: -2rem !important; + } + + .\32xl\:-m-9 { + margin: -2.25rem !important; + } + + .\32xl\:-m-10 { + margin: -2.5rem !important; + } + + .\32xl\:-m-11 { + margin: -2.75rem !important; + } + + .\32xl\:-m-12 { + margin: -3rem !important; + } + + .\32xl\:-m-14 { + margin: -3.5rem !important; + } + + .\32xl\:-m-16 { + margin: -4rem !important; + } + + .\32xl\:-m-20 { + margin: -5rem !important; + } + + .\32xl\:-m-24 { + margin: -6rem !important; + } + + .\32xl\:-m-28 { + margin: -7rem !important; + } + + .\32xl\:-m-32 { + margin: -8rem !important; + } + + .\32xl\:-m-36 { + margin: -9rem !important; + } + + .\32xl\:-m-40 { + margin: -10rem !important; + } + + .\32xl\:-m-44 { + margin: -11rem !important; + } + + .\32xl\:-m-48 { + margin: -12rem !important; + } + + .\32xl\:-m-52 { + margin: -13rem !important; + } + + .\32xl\:-m-56 { + margin: -14rem !important; + } + + .\32xl\:-m-60 { + margin: -15rem !important; + } + + .\32xl\:-m-64 { + margin: -16rem !important; + } + + .\32xl\:-m-72 { + margin: -18rem !important; + } + + .\32xl\:-m-80 { + margin: -20rem !important; + } + + .\32xl\:-m-96 { + margin: -24rem !important; + } + + .\32xl\:-m-px { + margin: -1px !important; + } + + .\32xl\:-m-0\.5 { + margin: -0.125rem !important; + } + + .\32xl\:-m-1\.5 { + margin: -0.375rem !important; + } + + .\32xl\:-m-2\.5 { + margin: -0.625rem !important; + } + + .\32xl\:-m-3\.5 { + margin: -0.875rem !important; + } + + .\32xl\:my-0 { + margin-top: 0px !important; + margin-bottom: 0px !important; + } + + .\32xl\:mx-0 { + margin-left: 0px !important; + margin-right: 0px !important; + } + + .\32xl\:my-1 { + margin-top: 0.25rem !important; + margin-bottom: 0.25rem !important; + } + + .\32xl\:mx-1 { + margin-left: 0.25rem !important; + margin-right: 0.25rem !important; + } + + .\32xl\:my-2 { + margin-top: 0.5rem !important; + margin-bottom: 0.5rem !important; + } + + .\32xl\:mx-2 { + margin-left: 0.5rem !important; + margin-right: 0.5rem !important; + } + + .\32xl\:my-3 { + margin-top: 0.75rem !important; + margin-bottom: 0.75rem !important; + } + + .\32xl\:mx-3 { + margin-left: 0.75rem !important; + margin-right: 0.75rem !important; + } + + .\32xl\:my-4 { + margin-top: 1rem !important; + margin-bottom: 1rem !important; + } + + .\32xl\:mx-4 { + margin-left: 1rem !important; + margin-right: 1rem !important; + } + + .\32xl\:my-5 { + margin-top: 1.25rem !important; + margin-bottom: 1.25rem !important; + } + + .\32xl\:mx-5 { + margin-left: 1.25rem !important; + margin-right: 1.25rem !important; + } + + .\32xl\:my-6 { + margin-top: 1.5rem !important; + margin-bottom: 1.5rem !important; + } + + .\32xl\:mx-6 { + margin-left: 1.5rem !important; + margin-right: 1.5rem !important; + } + + .\32xl\:my-7 { + margin-top: 1.75rem !important; + margin-bottom: 1.75rem !important; + } + + .\32xl\:mx-7 { + margin-left: 1.75rem !important; + margin-right: 1.75rem !important; + } + + .\32xl\:my-8 { + margin-top: 2rem !important; + margin-bottom: 2rem !important; + } + + .\32xl\:mx-8 { + margin-left: 2rem !important; + margin-right: 2rem !important; + } + + .\32xl\:my-9 { + margin-top: 2.25rem !important; + margin-bottom: 2.25rem !important; + } + + .\32xl\:mx-9 { + margin-left: 2.25rem !important; + margin-right: 2.25rem !important; + } + + .\32xl\:my-10 { + margin-top: 2.5rem !important; + margin-bottom: 2.5rem !important; + } + + .\32xl\:mx-10 { + margin-left: 2.5rem !important; + margin-right: 2.5rem !important; + } + + .\32xl\:my-11 { + margin-top: 2.75rem !important; + margin-bottom: 2.75rem !important; + } + + .\32xl\:mx-11 { + margin-left: 2.75rem !important; + margin-right: 2.75rem !important; + } + + .\32xl\:my-12 { + margin-top: 3rem !important; + margin-bottom: 3rem !important; + } + + .\32xl\:mx-12 { + margin-left: 3rem !important; + margin-right: 3rem !important; + } + + .\32xl\:my-14 { + margin-top: 3.5rem !important; + margin-bottom: 3.5rem !important; + } + + .\32xl\:mx-14 { + margin-left: 3.5rem !important; + margin-right: 3.5rem !important; + } + + .\32xl\:my-16 { + margin-top: 4rem !important; + margin-bottom: 4rem !important; + } + + .\32xl\:mx-16 { + margin-left: 4rem !important; + margin-right: 4rem !important; + } + + .\32xl\:my-20 { + margin-top: 5rem !important; + margin-bottom: 5rem !important; + } + + .\32xl\:mx-20 { + margin-left: 5rem !important; + margin-right: 5rem !important; + } + + .\32xl\:my-24 { + margin-top: 6rem !important; + margin-bottom: 6rem !important; + } + + .\32xl\:mx-24 { + margin-left: 6rem !important; + margin-right: 6rem !important; + } + + .\32xl\:my-28 { + margin-top: 7rem !important; + margin-bottom: 7rem !important; + } + + .\32xl\:mx-28 { + margin-left: 7rem !important; + margin-right: 7rem !important; + } + + .\32xl\:my-32 { + margin-top: 8rem !important; + margin-bottom: 8rem !important; + } + + .\32xl\:mx-32 { + margin-left: 8rem !important; + margin-right: 8rem !important; + } + + .\32xl\:my-36 { + margin-top: 9rem !important; + margin-bottom: 9rem !important; + } + + .\32xl\:mx-36 { + margin-left: 9rem !important; + margin-right: 9rem !important; + } + + .\32xl\:my-40 { + margin-top: 10rem !important; + margin-bottom: 10rem !important; + } + + .\32xl\:mx-40 { + margin-left: 10rem !important; + margin-right: 10rem !important; + } + + .\32xl\:my-44 { + margin-top: 11rem !important; + margin-bottom: 11rem !important; + } + + .\32xl\:mx-44 { + margin-left: 11rem !important; + margin-right: 11rem !important; + } + + .\32xl\:my-48 { + margin-top: 12rem !important; + margin-bottom: 12rem !important; + } + + .\32xl\:mx-48 { + margin-left: 12rem !important; + margin-right: 12rem !important; + } + + .\32xl\:my-52 { + margin-top: 13rem !important; + margin-bottom: 13rem !important; + } + + .\32xl\:mx-52 { + margin-left: 13rem !important; + margin-right: 13rem !important; + } + + .\32xl\:my-56 { + margin-top: 14rem !important; + margin-bottom: 14rem !important; + } + + .\32xl\:mx-56 { + margin-left: 14rem !important; + margin-right: 14rem !important; + } + + .\32xl\:my-60 { + margin-top: 15rem !important; + margin-bottom: 15rem !important; + } + + .\32xl\:mx-60 { + margin-left: 15rem !important; + margin-right: 15rem !important; + } + + .\32xl\:my-64 { + margin-top: 16rem !important; + margin-bottom: 16rem !important; + } + + .\32xl\:mx-64 { + margin-left: 16rem !important; + margin-right: 16rem !important; + } + + .\32xl\:my-72 { + margin-top: 18rem !important; + margin-bottom: 18rem !important; + } + + .\32xl\:mx-72 { + margin-left: 18rem !important; + margin-right: 18rem !important; + } + + .\32xl\:my-80 { + margin-top: 20rem !important; + margin-bottom: 20rem !important; + } + + .\32xl\:mx-80 { + margin-left: 20rem !important; + margin-right: 20rem !important; + } + + .\32xl\:my-96 { + margin-top: 24rem !important; + margin-bottom: 24rem !important; + } + + .\32xl\:mx-96 { + margin-left: 24rem !important; + margin-right: 24rem !important; + } + + .\32xl\:my-auto { + margin-top: auto !important; + margin-bottom: auto !important; + } + + .\32xl\:mx-auto { + margin-left: auto !important; + margin-right: auto !important; + } + + .\32xl\:my-px { + margin-top: 1px !important; + margin-bottom: 1px !important; + } + + .\32xl\:mx-px { + margin-left: 1px !important; + margin-right: 1px !important; + } + + .\32xl\:my-0\.5 { + margin-top: 0.125rem !important; + margin-bottom: 0.125rem !important; + } + + .\32xl\:mx-0\.5 { + margin-left: 0.125rem !important; + margin-right: 0.125rem !important; + } + + .\32xl\:my-1\.5 { + margin-top: 0.375rem !important; + margin-bottom: 0.375rem !important; + } + + .\32xl\:mx-1\.5 { + margin-left: 0.375rem !important; + margin-right: 0.375rem !important; + } + + .\32xl\:my-2\.5 { + margin-top: 0.625rem !important; + margin-bottom: 0.625rem !important; + } + + .\32xl\:mx-2\.5 { + margin-left: 0.625rem !important; + margin-right: 0.625rem !important; + } + + .\32xl\:my-3\.5 { + margin-top: 0.875rem !important; + margin-bottom: 0.875rem !important; + } + + .\32xl\:mx-3\.5 { + margin-left: 0.875rem !important; + margin-right: 0.875rem !important; + } + + .\32xl\:-my-0 { + margin-top: 0px !important; + margin-bottom: 0px !important; + } + + .\32xl\:-mx-0 { + margin-left: 0px !important; + margin-right: 0px !important; + } + + .\32xl\:-my-1 { + margin-top: -0.25rem !important; + margin-bottom: -0.25rem !important; + } + + .\32xl\:-mx-1 { + margin-left: -0.25rem !important; + margin-right: -0.25rem !important; + } + + .\32xl\:-my-2 { + margin-top: -0.5rem !important; + margin-bottom: -0.5rem !important; + } + + .\32xl\:-mx-2 { + margin-left: -0.5rem !important; + margin-right: -0.5rem !important; + } + + .\32xl\:-my-3 { + margin-top: -0.75rem !important; + margin-bottom: -0.75rem !important; + } + + .\32xl\:-mx-3 { + margin-left: -0.75rem !important; + margin-right: -0.75rem !important; + } + + .\32xl\:-my-4 { + margin-top: -1rem !important; + margin-bottom: -1rem !important; + } + + .\32xl\:-mx-4 { + margin-left: -1rem !important; + margin-right: -1rem !important; + } + + .\32xl\:-my-5 { + margin-top: -1.25rem !important; + margin-bottom: -1.25rem !important; + } + + .\32xl\:-mx-5 { + margin-left: -1.25rem !important; + margin-right: -1.25rem !important; + } + + .\32xl\:-my-6 { + margin-top: -1.5rem !important; + margin-bottom: -1.5rem !important; + } + + .\32xl\:-mx-6 { + margin-left: -1.5rem !important; + margin-right: -1.5rem !important; + } + + .\32xl\:-my-7 { + margin-top: -1.75rem !important; + margin-bottom: -1.75rem !important; + } + + .\32xl\:-mx-7 { + margin-left: -1.75rem !important; + margin-right: -1.75rem !important; + } + + .\32xl\:-my-8 { + margin-top: -2rem !important; + margin-bottom: -2rem !important; + } + + .\32xl\:-mx-8 { + margin-left: -2rem !important; + margin-right: -2rem !important; + } + + .\32xl\:-my-9 { + margin-top: -2.25rem !important; + margin-bottom: -2.25rem !important; + } + + .\32xl\:-mx-9 { + margin-left: -2.25rem !important; + margin-right: -2.25rem !important; + } + + .\32xl\:-my-10 { + margin-top: -2.5rem !important; + margin-bottom: -2.5rem !important; + } + + .\32xl\:-mx-10 { + margin-left: -2.5rem !important; + margin-right: -2.5rem !important; + } + + .\32xl\:-my-11 { + margin-top: -2.75rem !important; + margin-bottom: -2.75rem !important; + } + + .\32xl\:-mx-11 { + margin-left: -2.75rem !important; + margin-right: -2.75rem !important; + } + + .\32xl\:-my-12 { + margin-top: -3rem !important; + margin-bottom: -3rem !important; + } + + .\32xl\:-mx-12 { + margin-left: -3rem !important; + margin-right: -3rem !important; + } + + .\32xl\:-my-14 { + margin-top: -3.5rem !important; + margin-bottom: -3.5rem !important; + } + + .\32xl\:-mx-14 { + margin-left: -3.5rem !important; + margin-right: -3.5rem !important; + } + + .\32xl\:-my-16 { + margin-top: -4rem !important; + margin-bottom: -4rem !important; + } + + .\32xl\:-mx-16 { + margin-left: -4rem !important; + margin-right: -4rem !important; + } + + .\32xl\:-my-20 { + margin-top: -5rem !important; + margin-bottom: -5rem !important; + } + + .\32xl\:-mx-20 { + margin-left: -5rem !important; + margin-right: -5rem !important; + } + + .\32xl\:-my-24 { + margin-top: -6rem !important; + margin-bottom: -6rem !important; + } + + .\32xl\:-mx-24 { + margin-left: -6rem !important; + margin-right: -6rem !important; + } + + .\32xl\:-my-28 { + margin-top: -7rem !important; + margin-bottom: -7rem !important; + } + + .\32xl\:-mx-28 { + margin-left: -7rem !important; + margin-right: -7rem !important; + } + + .\32xl\:-my-32 { + margin-top: -8rem !important; + margin-bottom: -8rem !important; + } + + .\32xl\:-mx-32 { + margin-left: -8rem !important; + margin-right: -8rem !important; + } + + .\32xl\:-my-36 { + margin-top: -9rem !important; + margin-bottom: -9rem !important; + } + + .\32xl\:-mx-36 { + margin-left: -9rem !important; + margin-right: -9rem !important; + } + + .\32xl\:-my-40 { + margin-top: -10rem !important; + margin-bottom: -10rem !important; + } + + .\32xl\:-mx-40 { + margin-left: -10rem !important; + margin-right: -10rem !important; + } + + .\32xl\:-my-44 { + margin-top: -11rem !important; + margin-bottom: -11rem !important; + } + + .\32xl\:-mx-44 { + margin-left: -11rem !important; + margin-right: -11rem !important; + } + + .\32xl\:-my-48 { + margin-top: -12rem !important; + margin-bottom: -12rem !important; + } + + .\32xl\:-mx-48 { + margin-left: -12rem !important; + margin-right: -12rem !important; + } + + .\32xl\:-my-52 { + margin-top: -13rem !important; + margin-bottom: -13rem !important; + } + + .\32xl\:-mx-52 { + margin-left: -13rem !important; + margin-right: -13rem !important; + } + + .\32xl\:-my-56 { + margin-top: -14rem !important; + margin-bottom: -14rem !important; + } + + .\32xl\:-mx-56 { + margin-left: -14rem !important; + margin-right: -14rem !important; + } + + .\32xl\:-my-60 { + margin-top: -15rem !important; + margin-bottom: -15rem !important; + } + + .\32xl\:-mx-60 { + margin-left: -15rem !important; + margin-right: -15rem !important; + } + + .\32xl\:-my-64 { + margin-top: -16rem !important; + margin-bottom: -16rem !important; + } + + .\32xl\:-mx-64 { + margin-left: -16rem !important; + margin-right: -16rem !important; + } + + .\32xl\:-my-72 { + margin-top: -18rem !important; + margin-bottom: -18rem !important; + } + + .\32xl\:-mx-72 { + margin-left: -18rem !important; + margin-right: -18rem !important; + } + + .\32xl\:-my-80 { + margin-top: -20rem !important; + margin-bottom: -20rem !important; + } + + .\32xl\:-mx-80 { + margin-left: -20rem !important; + margin-right: -20rem !important; + } + + .\32xl\:-my-96 { + margin-top: -24rem !important; + margin-bottom: -24rem !important; + } + + .\32xl\:-mx-96 { + margin-left: -24rem !important; + margin-right: -24rem !important; + } + + .\32xl\:-my-px { + margin-top: -1px !important; + margin-bottom: -1px !important; + } + + .\32xl\:-mx-px { + margin-left: -1px !important; + margin-right: -1px !important; + } + + .\32xl\:-my-0\.5 { + margin-top: -0.125rem !important; + margin-bottom: -0.125rem !important; + } + + .\32xl\:-mx-0\.5 { + margin-left: -0.125rem !important; + margin-right: -0.125rem !important; + } + + .\32xl\:-my-1\.5 { + margin-top: -0.375rem !important; + margin-bottom: -0.375rem !important; + } + + .\32xl\:-mx-1\.5 { + margin-left: -0.375rem !important; + margin-right: -0.375rem !important; + } + + .\32xl\:-my-2\.5 { + margin-top: -0.625rem !important; + margin-bottom: -0.625rem !important; + } + + .\32xl\:-mx-2\.5 { + margin-left: -0.625rem !important; + margin-right: -0.625rem !important; + } + + .\32xl\:-my-3\.5 { + margin-top: -0.875rem !important; + margin-bottom: -0.875rem !important; + } + + .\32xl\:-mx-3\.5 { + margin-left: -0.875rem !important; + margin-right: -0.875rem !important; + } + + .\32xl\:mt-0 { + margin-top: 0px !important; + } + + .\32xl\:mr-0 { + margin-right: 0px !important; + } + + .\32xl\:mb-0 { + margin-bottom: 0px !important; + } + + .\32xl\:ml-0 { + margin-left: 0px !important; + } + + .\32xl\:mt-1 { + margin-top: 0.25rem !important; + } + + .\32xl\:mr-1 { + margin-right: 0.25rem !important; + } + + .\32xl\:mb-1 { + margin-bottom: 0.25rem !important; + } + + .\32xl\:ml-1 { + margin-left: 0.25rem !important; + } + + .\32xl\:mt-2 { + margin-top: 0.5rem !important; + } + + .\32xl\:mr-2 { + margin-right: 0.5rem !important; + } + + .\32xl\:mb-2 { + margin-bottom: 0.5rem !important; + } + + .\32xl\:ml-2 { + margin-left: 0.5rem !important; + } + + .\32xl\:mt-3 { + margin-top: 0.75rem !important; + } + + .\32xl\:mr-3 { + margin-right: 0.75rem !important; + } + + .\32xl\:mb-3 { + margin-bottom: 0.75rem !important; + } + + .\32xl\:ml-3 { + margin-left: 0.75rem !important; + } + + .\32xl\:mt-4 { + margin-top: 1rem !important; + } + + .\32xl\:mr-4 { + margin-right: 1rem !important; + } + + .\32xl\:mb-4 { + margin-bottom: 1rem !important; + } + + .\32xl\:ml-4 { + margin-left: 1rem !important; + } + + .\32xl\:mt-5 { + margin-top: 1.25rem !important; + } + + .\32xl\:mr-5 { + margin-right: 1.25rem !important; + } + + .\32xl\:mb-5 { + margin-bottom: 1.25rem !important; + } + + .\32xl\:ml-5 { + margin-left: 1.25rem !important; + } + + .\32xl\:mt-6 { + margin-top: 1.5rem !important; + } + + .\32xl\:mr-6 { + margin-right: 1.5rem !important; + } + + .\32xl\:mb-6 { + margin-bottom: 1.5rem !important; + } + + .\32xl\:ml-6 { + margin-left: 1.5rem !important; + } + + .\32xl\:mt-7 { + margin-top: 1.75rem !important; + } + + .\32xl\:mr-7 { + margin-right: 1.75rem !important; + } + + .\32xl\:mb-7 { + margin-bottom: 1.75rem !important; + } + + .\32xl\:ml-7 { + margin-left: 1.75rem !important; + } + + .\32xl\:mt-8 { + margin-top: 2rem !important; + } + + .\32xl\:mr-8 { + margin-right: 2rem !important; + } + + .\32xl\:mb-8 { + margin-bottom: 2rem !important; + } + + .\32xl\:ml-8 { + margin-left: 2rem !important; + } + + .\32xl\:mt-9 { + margin-top: 2.25rem !important; + } + + .\32xl\:mr-9 { + margin-right: 2.25rem !important; + } + + .\32xl\:mb-9 { + margin-bottom: 2.25rem !important; + } + + .\32xl\:ml-9 { + margin-left: 2.25rem !important; + } + + .\32xl\:mt-10 { + margin-top: 2.5rem !important; + } + + .\32xl\:mr-10 { + margin-right: 2.5rem !important; + } + + .\32xl\:mb-10 { + margin-bottom: 2.5rem !important; + } + + .\32xl\:ml-10 { + margin-left: 2.5rem !important; + } + + .\32xl\:mt-11 { + margin-top: 2.75rem !important; + } + + .\32xl\:mr-11 { + margin-right: 2.75rem !important; + } + + .\32xl\:mb-11 { + margin-bottom: 2.75rem !important; + } + + .\32xl\:ml-11 { + margin-left: 2.75rem !important; + } + + .\32xl\:mt-12 { + margin-top: 3rem !important; + } + + .\32xl\:mr-12 { + margin-right: 3rem !important; + } + + .\32xl\:mb-12 { + margin-bottom: 3rem !important; + } + + .\32xl\:ml-12 { + margin-left: 3rem !important; + } + + .\32xl\:mt-14 { + margin-top: 3.5rem !important; + } + + .\32xl\:mr-14 { + margin-right: 3.5rem !important; + } + + .\32xl\:mb-14 { + margin-bottom: 3.5rem !important; + } + + .\32xl\:ml-14 { + margin-left: 3.5rem !important; + } + + .\32xl\:mt-16 { + margin-top: 4rem !important; + } + + .\32xl\:mr-16 { + margin-right: 4rem !important; + } + + .\32xl\:mb-16 { + margin-bottom: 4rem !important; + } + + .\32xl\:ml-16 { + margin-left: 4rem !important; + } + + .\32xl\:mt-20 { + margin-top: 5rem !important; + } + + .\32xl\:mr-20 { + margin-right: 5rem !important; + } + + .\32xl\:mb-20 { + margin-bottom: 5rem !important; + } + + .\32xl\:ml-20 { + margin-left: 5rem !important; + } + + .\32xl\:mt-24 { + margin-top: 6rem !important; + } + + .\32xl\:mr-24 { + margin-right: 6rem !important; + } + + .\32xl\:mb-24 { + margin-bottom: 6rem !important; + } + + .\32xl\:ml-24 { + margin-left: 6rem !important; + } + + .\32xl\:mt-28 { + margin-top: 7rem !important; + } + + .\32xl\:mr-28 { + margin-right: 7rem !important; + } + + .\32xl\:mb-28 { + margin-bottom: 7rem !important; + } + + .\32xl\:ml-28 { + margin-left: 7rem !important; + } + + .\32xl\:mt-32 { + margin-top: 8rem !important; + } + + .\32xl\:mr-32 { + margin-right: 8rem !important; + } + + .\32xl\:mb-32 { + margin-bottom: 8rem !important; + } + + .\32xl\:ml-32 { + margin-left: 8rem !important; + } + + .\32xl\:mt-36 { + margin-top: 9rem !important; + } + + .\32xl\:mr-36 { + margin-right: 9rem !important; + } + + .\32xl\:mb-36 { + margin-bottom: 9rem !important; + } + + .\32xl\:ml-36 { + margin-left: 9rem !important; + } + + .\32xl\:mt-40 { + margin-top: 10rem !important; + } + + .\32xl\:mr-40 { + margin-right: 10rem !important; + } + + .\32xl\:mb-40 { + margin-bottom: 10rem !important; + } + + .\32xl\:ml-40 { + margin-left: 10rem !important; + } + + .\32xl\:mt-44 { + margin-top: 11rem !important; + } + + .\32xl\:mr-44 { + margin-right: 11rem !important; + } + + .\32xl\:mb-44 { + margin-bottom: 11rem !important; + } + + .\32xl\:ml-44 { + margin-left: 11rem !important; + } + + .\32xl\:mt-48 { + margin-top: 12rem !important; + } + + .\32xl\:mr-48 { + margin-right: 12rem !important; + } + + .\32xl\:mb-48 { + margin-bottom: 12rem !important; + } + + .\32xl\:ml-48 { + margin-left: 12rem !important; + } + + .\32xl\:mt-52 { + margin-top: 13rem !important; + } + + .\32xl\:mr-52 { + margin-right: 13rem !important; + } + + .\32xl\:mb-52 { + margin-bottom: 13rem !important; + } + + .\32xl\:ml-52 { + margin-left: 13rem !important; + } + + .\32xl\:mt-56 { + margin-top: 14rem !important; + } + + .\32xl\:mr-56 { + margin-right: 14rem !important; + } + + .\32xl\:mb-56 { + margin-bottom: 14rem !important; + } + + .\32xl\:ml-56 { + margin-left: 14rem !important; + } + + .\32xl\:mt-60 { + margin-top: 15rem !important; + } + + .\32xl\:mr-60 { + margin-right: 15rem !important; + } + + .\32xl\:mb-60 { + margin-bottom: 15rem !important; + } + + .\32xl\:ml-60 { + margin-left: 15rem !important; + } + + .\32xl\:mt-64 { + margin-top: 16rem !important; + } + + .\32xl\:mr-64 { + margin-right: 16rem !important; + } + + .\32xl\:mb-64 { + margin-bottom: 16rem !important; + } + + .\32xl\:ml-64 { + margin-left: 16rem !important; + } + + .\32xl\:mt-72 { + margin-top: 18rem !important; + } + + .\32xl\:mr-72 { + margin-right: 18rem !important; + } + + .\32xl\:mb-72 { + margin-bottom: 18rem !important; + } + + .\32xl\:ml-72 { + margin-left: 18rem !important; + } + + .\32xl\:mt-80 { + margin-top: 20rem !important; + } + + .\32xl\:mr-80 { + margin-right: 20rem !important; + } + + .\32xl\:mb-80 { + margin-bottom: 20rem !important; + } + + .\32xl\:ml-80 { + margin-left: 20rem !important; + } + + .\32xl\:mt-96 { + margin-top: 24rem !important; + } + + .\32xl\:mr-96 { + margin-right: 24rem !important; + } + + .\32xl\:mb-96 { + margin-bottom: 24rem !important; + } + + .\32xl\:ml-96 { + margin-left: 24rem !important; + } + + .\32xl\:mt-auto { + margin-top: auto !important; + } + + .\32xl\:mr-auto { + margin-right: auto !important; + } + + .\32xl\:mb-auto { + margin-bottom: auto !important; + } + + .\32xl\:ml-auto { + margin-left: auto !important; + } + + .\32xl\:mt-px { + margin-top: 1px !important; + } + + .\32xl\:mr-px { + margin-right: 1px !important; + } + + .\32xl\:mb-px { + margin-bottom: 1px !important; + } + + .\32xl\:ml-px { + margin-left: 1px !important; + } + + .\32xl\:mt-0\.5 { + margin-top: 0.125rem !important; + } + + .\32xl\:mr-0\.5 { + margin-right: 0.125rem !important; + } + + .\32xl\:mb-0\.5 { + margin-bottom: 0.125rem !important; + } + + .\32xl\:ml-0\.5 { + margin-left: 0.125rem !important; + } + + .\32xl\:mt-1\.5 { + margin-top: 0.375rem !important; + } + + .\32xl\:mr-1\.5 { + margin-right: 0.375rem !important; + } + + .\32xl\:mb-1\.5 { + margin-bottom: 0.375rem !important; + } + + .\32xl\:ml-1\.5 { + margin-left: 0.375rem !important; + } + + .\32xl\:mt-2\.5 { + margin-top: 0.625rem !important; + } + + .\32xl\:mr-2\.5 { + margin-right: 0.625rem !important; + } + + .\32xl\:mb-2\.5 { + margin-bottom: 0.625rem !important; + } + + .\32xl\:ml-2\.5 { + margin-left: 0.625rem !important; + } + + .\32xl\:mt-3\.5 { + margin-top: 0.875rem !important; + } + + .\32xl\:mr-3\.5 { + margin-right: 0.875rem !important; + } + + .\32xl\:mb-3\.5 { + margin-bottom: 0.875rem !important; + } + + .\32xl\:ml-3\.5 { + margin-left: 0.875rem !important; + } + + .\32xl\:-mt-0 { + margin-top: 0px !important; + } + + .\32xl\:-mr-0 { + margin-right: 0px !important; + } + + .\32xl\:-mb-0 { + margin-bottom: 0px !important; + } + + .\32xl\:-ml-0 { + margin-left: 0px !important; + } + + .\32xl\:-mt-1 { + margin-top: -0.25rem !important; + } + + .\32xl\:-mr-1 { + margin-right: -0.25rem !important; + } + + .\32xl\:-mb-1 { + margin-bottom: -0.25rem !important; + } + + .\32xl\:-ml-1 { + margin-left: -0.25rem !important; + } + + .\32xl\:-mt-2 { + margin-top: -0.5rem !important; + } + + .\32xl\:-mr-2 { + margin-right: -0.5rem !important; + } + + .\32xl\:-mb-2 { + margin-bottom: -0.5rem !important; + } + + .\32xl\:-ml-2 { + margin-left: -0.5rem !important; + } + + .\32xl\:-mt-3 { + margin-top: -0.75rem !important; + } + + .\32xl\:-mr-3 { + margin-right: -0.75rem !important; + } + + .\32xl\:-mb-3 { + margin-bottom: -0.75rem !important; + } + + .\32xl\:-ml-3 { + margin-left: -0.75rem !important; + } + + .\32xl\:-mt-4 { + margin-top: -1rem !important; + } + + .\32xl\:-mr-4 { + margin-right: -1rem !important; + } + + .\32xl\:-mb-4 { + margin-bottom: -1rem !important; + } + + .\32xl\:-ml-4 { + margin-left: -1rem !important; + } + + .\32xl\:-mt-5 { + margin-top: -1.25rem !important; + } + + .\32xl\:-mr-5 { + margin-right: -1.25rem !important; + } + + .\32xl\:-mb-5 { + margin-bottom: -1.25rem !important; + } + + .\32xl\:-ml-5 { + margin-left: -1.25rem !important; + } + + .\32xl\:-mt-6 { + margin-top: -1.5rem !important; + } + + .\32xl\:-mr-6 { + margin-right: -1.5rem !important; + } + + .\32xl\:-mb-6 { + margin-bottom: -1.5rem !important; + } + + .\32xl\:-ml-6 { + margin-left: -1.5rem !important; + } + + .\32xl\:-mt-7 { + margin-top: -1.75rem !important; + } + + .\32xl\:-mr-7 { + margin-right: -1.75rem !important; + } + + .\32xl\:-mb-7 { + margin-bottom: -1.75rem !important; + } + + .\32xl\:-ml-7 { + margin-left: -1.75rem !important; + } + + .\32xl\:-mt-8 { + margin-top: -2rem !important; + } + + .\32xl\:-mr-8 { + margin-right: -2rem !important; + } + + .\32xl\:-mb-8 { + margin-bottom: -2rem !important; + } + + .\32xl\:-ml-8 { + margin-left: -2rem !important; + } + + .\32xl\:-mt-9 { + margin-top: -2.25rem !important; + } + + .\32xl\:-mr-9 { + margin-right: -2.25rem !important; + } + + .\32xl\:-mb-9 { + margin-bottom: -2.25rem !important; + } + + .\32xl\:-ml-9 { + margin-left: -2.25rem !important; + } + + .\32xl\:-mt-10 { + margin-top: -2.5rem !important; + } + + .\32xl\:-mr-10 { + margin-right: -2.5rem !important; + } + + .\32xl\:-mb-10 { + margin-bottom: -2.5rem !important; + } + + .\32xl\:-ml-10 { + margin-left: -2.5rem !important; + } + + .\32xl\:-mt-11 { + margin-top: -2.75rem !important; + } + + .\32xl\:-mr-11 { + margin-right: -2.75rem !important; + } + + .\32xl\:-mb-11 { + margin-bottom: -2.75rem !important; + } + + .\32xl\:-ml-11 { + margin-left: -2.75rem !important; + } + + .\32xl\:-mt-12 { + margin-top: -3rem !important; + } + + .\32xl\:-mr-12 { + margin-right: -3rem !important; + } + + .\32xl\:-mb-12 { + margin-bottom: -3rem !important; + } + + .\32xl\:-ml-12 { + margin-left: -3rem !important; + } + + .\32xl\:-mt-14 { + margin-top: -3.5rem !important; + } + + .\32xl\:-mr-14 { + margin-right: -3.5rem !important; + } + + .\32xl\:-mb-14 { + margin-bottom: -3.5rem !important; + } + + .\32xl\:-ml-14 { + margin-left: -3.5rem !important; + } + + .\32xl\:-mt-16 { + margin-top: -4rem !important; + } + + .\32xl\:-mr-16 { + margin-right: -4rem !important; + } + + .\32xl\:-mb-16 { + margin-bottom: -4rem !important; + } + + .\32xl\:-ml-16 { + margin-left: -4rem !important; + } + + .\32xl\:-mt-20 { + margin-top: -5rem !important; + } + + .\32xl\:-mr-20 { + margin-right: -5rem !important; + } + + .\32xl\:-mb-20 { + margin-bottom: -5rem !important; + } + + .\32xl\:-ml-20 { + margin-left: -5rem !important; + } + + .\32xl\:-mt-24 { + margin-top: -6rem !important; + } + + .\32xl\:-mr-24 { + margin-right: -6rem !important; + } + + .\32xl\:-mb-24 { + margin-bottom: -6rem !important; + } + + .\32xl\:-ml-24 { + margin-left: -6rem !important; + } + + .\32xl\:-mt-28 { + margin-top: -7rem !important; + } + + .\32xl\:-mr-28 { + margin-right: -7rem !important; + } + + .\32xl\:-mb-28 { + margin-bottom: -7rem !important; + } + + .\32xl\:-ml-28 { + margin-left: -7rem !important; + } + + .\32xl\:-mt-32 { + margin-top: -8rem !important; + } + + .\32xl\:-mr-32 { + margin-right: -8rem !important; + } + + .\32xl\:-mb-32 { + margin-bottom: -8rem !important; + } + + .\32xl\:-ml-32 { + margin-left: -8rem !important; + } + + .\32xl\:-mt-36 { + margin-top: -9rem !important; + } + + .\32xl\:-mr-36 { + margin-right: -9rem !important; + } + + .\32xl\:-mb-36 { + margin-bottom: -9rem !important; + } + + .\32xl\:-ml-36 { + margin-left: -9rem !important; + } + + .\32xl\:-mt-40 { + margin-top: -10rem !important; + } + + .\32xl\:-mr-40 { + margin-right: -10rem !important; + } + + .\32xl\:-mb-40 { + margin-bottom: -10rem !important; + } + + .\32xl\:-ml-40 { + margin-left: -10rem !important; + } + + .\32xl\:-mt-44 { + margin-top: -11rem !important; + } + + .\32xl\:-mr-44 { + margin-right: -11rem !important; + } + + .\32xl\:-mb-44 { + margin-bottom: -11rem !important; + } + + .\32xl\:-ml-44 { + margin-left: -11rem !important; + } + + .\32xl\:-mt-48 { + margin-top: -12rem !important; + } + + .\32xl\:-mr-48 { + margin-right: -12rem !important; + } + + .\32xl\:-mb-48 { + margin-bottom: -12rem !important; + } + + .\32xl\:-ml-48 { + margin-left: -12rem !important; + } + + .\32xl\:-mt-52 { + margin-top: -13rem !important; + } + + .\32xl\:-mr-52 { + margin-right: -13rem !important; + } + + .\32xl\:-mb-52 { + margin-bottom: -13rem !important; + } + + .\32xl\:-ml-52 { + margin-left: -13rem !important; + } + + .\32xl\:-mt-56 { + margin-top: -14rem !important; + } + + .\32xl\:-mr-56 { + margin-right: -14rem !important; + } + + .\32xl\:-mb-56 { + margin-bottom: -14rem !important; + } + + .\32xl\:-ml-56 { + margin-left: -14rem !important; + } + + .\32xl\:-mt-60 { + margin-top: -15rem !important; + } + + .\32xl\:-mr-60 { + margin-right: -15rem !important; + } + + .\32xl\:-mb-60 { + margin-bottom: -15rem !important; + } + + .\32xl\:-ml-60 { + margin-left: -15rem !important; + } + + .\32xl\:-mt-64 { + margin-top: -16rem !important; + } + + .\32xl\:-mr-64 { + margin-right: -16rem !important; + } + + .\32xl\:-mb-64 { + margin-bottom: -16rem !important; + } + + .\32xl\:-ml-64 { + margin-left: -16rem !important; + } + + .\32xl\:-mt-72 { + margin-top: -18rem !important; + } + + .\32xl\:-mr-72 { + margin-right: -18rem !important; + } + + .\32xl\:-mb-72 { + margin-bottom: -18rem !important; + } + + .\32xl\:-ml-72 { + margin-left: -18rem !important; + } + + .\32xl\:-mt-80 { + margin-top: -20rem !important; + } + + .\32xl\:-mr-80 { + margin-right: -20rem !important; + } + + .\32xl\:-mb-80 { + margin-bottom: -20rem !important; + } + + .\32xl\:-ml-80 { + margin-left: -20rem !important; + } + + .\32xl\:-mt-96 { + margin-top: -24rem !important; + } + + .\32xl\:-mr-96 { + margin-right: -24rem !important; + } + + .\32xl\:-mb-96 { + margin-bottom: -24rem !important; + } + + .\32xl\:-ml-96 { + margin-left: -24rem !important; + } + + .\32xl\:-mt-px { + margin-top: -1px !important; + } + + .\32xl\:-mr-px { + margin-right: -1px !important; + } + + .\32xl\:-mb-px { + margin-bottom: -1px !important; + } + + .\32xl\:-ml-px { + margin-left: -1px !important; + } + + .\32xl\:-mt-0\.5 { + margin-top: -0.125rem !important; + } + + .\32xl\:-mr-0\.5 { + margin-right: -0.125rem !important; + } + + .\32xl\:-mb-0\.5 { + margin-bottom: -0.125rem !important; + } + + .\32xl\:-ml-0\.5 { + margin-left: -0.125rem !important; + } + + .\32xl\:-mt-1\.5 { + margin-top: -0.375rem !important; + } + + .\32xl\:-mr-1\.5 { + margin-right: -0.375rem !important; + } + + .\32xl\:-mb-1\.5 { + margin-bottom: -0.375rem !important; + } + + .\32xl\:-ml-1\.5 { + margin-left: -0.375rem !important; + } + + .\32xl\:-mt-2\.5 { + margin-top: -0.625rem !important; + } + + .\32xl\:-mr-2\.5 { + margin-right: -0.625rem !important; + } + + .\32xl\:-mb-2\.5 { + margin-bottom: -0.625rem !important; + } + + .\32xl\:-ml-2\.5 { + margin-left: -0.625rem !important; + } + + .\32xl\:-mt-3\.5 { + margin-top: -0.875rem !important; + } + + .\32xl\:-mr-3\.5 { + margin-right: -0.875rem !important; + } + + .\32xl\:-mb-3\.5 { + margin-bottom: -0.875rem !important; + } + + .\32xl\:-ml-3\.5 { + margin-left: -0.875rem !important; + } + + .\32xl\:max-h-0 { + max-height: 0px !important; + } + + .\32xl\:max-h-1 { + max-height: 0.25rem !important; + } + + .\32xl\:max-h-2 { + max-height: 0.5rem !important; + } + + .\32xl\:max-h-3 { + max-height: 0.75rem !important; + } + + .\32xl\:max-h-4 { + max-height: 1rem !important; + } + + .\32xl\:max-h-5 { + max-height: 1.25rem !important; + } + + .\32xl\:max-h-6 { + max-height: 1.5rem !important; + } + + .\32xl\:max-h-7 { + max-height: 1.75rem !important; + } + + .\32xl\:max-h-8 { + max-height: 2rem !important; + } + + .\32xl\:max-h-9 { + max-height: 2.25rem !important; + } + + .\32xl\:max-h-10 { + max-height: 2.5rem !important; + } + + .\32xl\:max-h-11 { + max-height: 2.75rem !important; + } + + .\32xl\:max-h-12 { + max-height: 3rem !important; + } + + .\32xl\:max-h-14 { + max-height: 3.5rem !important; + } + + .\32xl\:max-h-16 { + max-height: 4rem !important; + } + + .\32xl\:max-h-20 { + max-height: 5rem !important; + } + + .\32xl\:max-h-24 { + max-height: 6rem !important; + } + + .\32xl\:max-h-28 { + max-height: 7rem !important; + } + + .\32xl\:max-h-32 { + max-height: 8rem !important; + } + + .\32xl\:max-h-36 { + max-height: 9rem !important; + } + + .\32xl\:max-h-40 { + max-height: 10rem !important; + } + + .\32xl\:max-h-44 { + max-height: 11rem !important; + } + + .\32xl\:max-h-48 { + max-height: 12rem !important; + } + + .\32xl\:max-h-52 { + max-height: 13rem !important; + } + + .\32xl\:max-h-56 { + max-height: 14rem !important; + } + + .\32xl\:max-h-60 { + max-height: 15rem !important; + } + + .\32xl\:max-h-64 { + max-height: 16rem !important; + } + + .\32xl\:max-h-72 { + max-height: 18rem !important; + } + + .\32xl\:max-h-80 { + max-height: 20rem !important; + } + + .\32xl\:max-h-96 { + max-height: 24rem !important; + } + + .\32xl\:max-h-px { + max-height: 1px !important; + } + + .\32xl\:max-h-0\.5 { + max-height: 0.125rem !important; + } + + .\32xl\:max-h-1\.5 { + max-height: 0.375rem !important; + } + + .\32xl\:max-h-2\.5 { + max-height: 0.625rem !important; + } + + .\32xl\:max-h-3\.5 { + max-height: 0.875rem !important; + } + + .\32xl\:max-h-full { + max-height: 100% !important; + } + + .\32xl\:max-h-screen { + max-height: 100vh !important; + } + + .\32xl\:max-w-0 { + max-width: 0rem !important; + } + + .\32xl\:max-w-none { + max-width: none !important; + } + + .\32xl\:max-w-xs { + max-width: 20rem !important; + } + + .\32xl\:max-w-sm { + max-width: 24rem !important; + } + + .\32xl\:max-w-md { + max-width: 28rem !important; + } + + .\32xl\:max-w-lg { + max-width: 32rem !important; + } + + .\32xl\:max-w-xl { + max-width: 36rem !important; + } + + .\32xl\:max-w-2xl { + max-width: 42rem !important; + } + + .\32xl\:max-w-3xl { + max-width: 48rem !important; + } + + .\32xl\:max-w-4xl { + max-width: 56rem !important; + } + + .\32xl\:max-w-5xl { + max-width: 64rem !important; + } + + .\32xl\:max-w-6xl { + max-width: 72rem !important; + } + + .\32xl\:max-w-7xl { + max-width: 80rem !important; + } + + .\32xl\:max-w-full { + max-width: 100% !important; + } + + .\32xl\:max-w-min { + max-width: -webkit-min-content !important; + max-width: -moz-min-content !important; + max-width: min-content !important; + } + + .\32xl\:max-w-max { + max-width: -webkit-max-content !important; + max-width: -moz-max-content !important; + max-width: max-content !important; + } + + .\32xl\:max-w-prose { + max-width: 65ch !important; + } + + .\32xl\:max-w-screen-sm { + max-width: 640px !important; + } + + .\32xl\:max-w-screen-md { + max-width: 768px !important; + } + + .\32xl\:max-w-screen-lg { + max-width: 1024px !important; + } + + .\32xl\:max-w-screen-xl { + max-width: 1280px !important; + } + + .\32xl\:max-w-screen-2xl { + max-width: 1536px !important; + } + + .\32xl\:min-h-0 { + min-height: 0px !important; + } + + .\32xl\:min-h-full { + min-height: 100% !important; + } + + .\32xl\:min-h-screen { + min-height: 100vh !important; + } + + .\32xl\:min-w-0 { + min-width: 0px !important; + } + + .\32xl\:min-w-full { + min-width: 100% !important; + } + + .\32xl\:min-w-min { + min-width: -webkit-min-content !important; + min-width: -moz-min-content !important; + min-width: min-content !important; + } + + .\32xl\:min-w-max { + min-width: -webkit-max-content !important; + min-width: -moz-max-content !important; + min-width: max-content !important; + } + + .\32xl\:object-contain { + -o-object-fit: contain !important; + object-fit: contain !important; + } + + .\32xl\:object-cover { + -o-object-fit: cover !important; + object-fit: cover !important; + } + + .\32xl\:object-fill { + -o-object-fit: fill !important; + object-fit: fill !important; + } + + .\32xl\:object-none { + -o-object-fit: none !important; + object-fit: none !important; + } + + .\32xl\:object-scale-down { + -o-object-fit: scale-down !important; + object-fit: scale-down !important; + } + + .\32xl\:object-bottom { + -o-object-position: bottom !important; + object-position: bottom !important; + } + + .\32xl\:object-center { + -o-object-position: center !important; + object-position: center !important; + } + + .\32xl\:object-left { + -o-object-position: left !important; + object-position: left !important; + } + + .\32xl\:object-left-bottom { + -o-object-position: left bottom !important; + object-position: left bottom !important; + } + + .\32xl\:object-left-top { + -o-object-position: left top !important; + object-position: left top !important; + } + + .\32xl\:object-right { + -o-object-position: right !important; + object-position: right !important; + } + + .\32xl\:object-right-bottom { + -o-object-position: right bottom !important; + object-position: right bottom !important; + } + + .\32xl\:object-right-top { + -o-object-position: right top !important; + object-position: right top !important; + } + + .\32xl\:object-top { + -o-object-position: top !important; + object-position: top !important; + } + + .\32xl\:opacity-0 { + opacity: 0 !important; + } + + .\32xl\:opacity-5 { + opacity: 0.05 !important; + } + + .\32xl\:opacity-10 { + opacity: 0.1 !important; + } + + .\32xl\:opacity-20 { + opacity: 0.2 !important; + } + + .\32xl\:opacity-25 { + opacity: 0.25 !important; + } + + .\32xl\:opacity-30 { + opacity: 0.3 !important; + } + + .\32xl\:opacity-40 { + opacity: 0.4 !important; + } + + .\32xl\:opacity-50 { + opacity: 0.5 !important; + } + + .\32xl\:opacity-60 { + opacity: 0.6 !important; + } + + .\32xl\:opacity-70 { + opacity: 0.7 !important; + } + + .\32xl\:opacity-75 { + opacity: 0.75 !important; + } + + .\32xl\:opacity-80 { + opacity: 0.8 !important; + } + + .\32xl\:opacity-90 { + opacity: 0.9 !important; + } + + .\32xl\:opacity-95 { + opacity: 0.95 !important; + } + + .\32xl\:opacity-100 { + opacity: 1 !important; + } + + .group:hover .\32xl\:group-hover\:opacity-0 { + opacity: 0 !important; + } + + .group:hover .\32xl\:group-hover\:opacity-5 { + opacity: 0.05 !important; + } + + .group:hover .\32xl\:group-hover\:opacity-10 { + opacity: 0.1 !important; + } + + .group:hover .\32xl\:group-hover\:opacity-20 { + opacity: 0.2 !important; + } + + .group:hover .\32xl\:group-hover\:opacity-25 { + opacity: 0.25 !important; + } + + .group:hover .\32xl\:group-hover\:opacity-30 { + opacity: 0.3 !important; + } + + .group:hover .\32xl\:group-hover\:opacity-40 { + opacity: 0.4 !important; + } + + .group:hover .\32xl\:group-hover\:opacity-50 { + opacity: 0.5 !important; + } + + .group:hover .\32xl\:group-hover\:opacity-60 { + opacity: 0.6 !important; + } + + .group:hover .\32xl\:group-hover\:opacity-70 { + opacity: 0.7 !important; + } + + .group:hover .\32xl\:group-hover\:opacity-75 { + opacity: 0.75 !important; + } + + .group:hover .\32xl\:group-hover\:opacity-80 { + opacity: 0.8 !important; + } + + .group:hover .\32xl\:group-hover\:opacity-90 { + opacity: 0.9 !important; + } + + .group:hover .\32xl\:group-hover\:opacity-95 { + opacity: 0.95 !important; + } + + .group:hover .\32xl\:group-hover\:opacity-100 { + opacity: 1 !important; + } + + .\32xl\:focus-within\:opacity-0:focus-within { + opacity: 0 !important; + } + + .\32xl\:focus-within\:opacity-5:focus-within { + opacity: 0.05 !important; + } + + .\32xl\:focus-within\:opacity-10:focus-within { + opacity: 0.1 !important; + } + + .\32xl\:focus-within\:opacity-20:focus-within { + opacity: 0.2 !important; + } + + .\32xl\:focus-within\:opacity-25:focus-within { + opacity: 0.25 !important; + } + + .\32xl\:focus-within\:opacity-30:focus-within { + opacity: 0.3 !important; + } + + .\32xl\:focus-within\:opacity-40:focus-within { + opacity: 0.4 !important; + } + + .\32xl\:focus-within\:opacity-50:focus-within { + opacity: 0.5 !important; + } + + .\32xl\:focus-within\:opacity-60:focus-within { + opacity: 0.6 !important; + } + + .\32xl\:focus-within\:opacity-70:focus-within { + opacity: 0.7 !important; + } + + .\32xl\:focus-within\:opacity-75:focus-within { + opacity: 0.75 !important; + } + + .\32xl\:focus-within\:opacity-80:focus-within { + opacity: 0.8 !important; + } + + .\32xl\:focus-within\:opacity-90:focus-within { + opacity: 0.9 !important; + } + + .\32xl\:focus-within\:opacity-95:focus-within { + opacity: 0.95 !important; + } + + .\32xl\:focus-within\:opacity-100:focus-within { + opacity: 1 !important; + } + + .\32xl\:hover\:opacity-0:hover { + opacity: 0 !important; + } + + .\32xl\:hover\:opacity-5:hover { + opacity: 0.05 !important; + } + + .\32xl\:hover\:opacity-10:hover { + opacity: 0.1 !important; + } + + .\32xl\:hover\:opacity-20:hover { + opacity: 0.2 !important; + } + + .\32xl\:hover\:opacity-25:hover { + opacity: 0.25 !important; + } + + .\32xl\:hover\:opacity-30:hover { + opacity: 0.3 !important; + } + + .\32xl\:hover\:opacity-40:hover { + opacity: 0.4 !important; + } + + .\32xl\:hover\:opacity-50:hover { + opacity: 0.5 !important; + } + + .\32xl\:hover\:opacity-60:hover { + opacity: 0.6 !important; + } + + .\32xl\:hover\:opacity-70:hover { + opacity: 0.7 !important; + } + + .\32xl\:hover\:opacity-75:hover { + opacity: 0.75 !important; + } + + .\32xl\:hover\:opacity-80:hover { + opacity: 0.8 !important; + } + + .\32xl\:hover\:opacity-90:hover { + opacity: 0.9 !important; + } + + .\32xl\:hover\:opacity-95:hover { + opacity: 0.95 !important; + } + + .\32xl\:hover\:opacity-100:hover { + opacity: 1 !important; + } + + .\32xl\:focus\:opacity-0:focus { + opacity: 0 !important; + } + + .\32xl\:focus\:opacity-5:focus { + opacity: 0.05 !important; + } + + .\32xl\:focus\:opacity-10:focus { + opacity: 0.1 !important; + } + + .\32xl\:focus\:opacity-20:focus { + opacity: 0.2 !important; + } + + .\32xl\:focus\:opacity-25:focus { + opacity: 0.25 !important; + } + + .\32xl\:focus\:opacity-30:focus { + opacity: 0.3 !important; + } + + .\32xl\:focus\:opacity-40:focus { + opacity: 0.4 !important; + } + + .\32xl\:focus\:opacity-50:focus { + opacity: 0.5 !important; + } + + .\32xl\:focus\:opacity-60:focus { + opacity: 0.6 !important; + } + + .\32xl\:focus\:opacity-70:focus { + opacity: 0.7 !important; + } + + .\32xl\:focus\:opacity-75:focus { + opacity: 0.75 !important; + } + + .\32xl\:focus\:opacity-80:focus { + opacity: 0.8 !important; + } + + .\32xl\:focus\:opacity-90:focus { + opacity: 0.9 !important; + } + + .\32xl\:focus\:opacity-95:focus { + opacity: 0.95 !important; + } + + .\32xl\:focus\:opacity-100:focus { + opacity: 1 !important; + } + + .\32xl\:disabled\:opacity-0:disabled { + opacity: 0 !important; + } + + .\32xl\:disabled\:opacity-5:disabled { + opacity: 0.05 !important; + } + + .\32xl\:disabled\:opacity-10:disabled { + opacity: 0.1 !important; + } + + .\32xl\:disabled\:opacity-20:disabled { + opacity: 0.2 !important; + } + + .\32xl\:disabled\:opacity-25:disabled { + opacity: 0.25 !important; + } + + .\32xl\:disabled\:opacity-30:disabled { + opacity: 0.3 !important; + } + + .\32xl\:disabled\:opacity-40:disabled { + opacity: 0.4 !important; + } + + .\32xl\:disabled\:opacity-50:disabled { + opacity: 0.5 !important; + } + + .\32xl\:disabled\:opacity-60:disabled { + opacity: 0.6 !important; + } + + .\32xl\:disabled\:opacity-70:disabled { + opacity: 0.7 !important; + } + + .\32xl\:disabled\:opacity-75:disabled { + opacity: 0.75 !important; + } + + .\32xl\:disabled\:opacity-80:disabled { + opacity: 0.8 !important; + } + + .\32xl\:disabled\:opacity-90:disabled { + opacity: 0.9 !important; + } + + .\32xl\:disabled\:opacity-95:disabled { + opacity: 0.95 !important; + } + + .\32xl\:disabled\:opacity-100:disabled { + opacity: 1 !important; + } + + .\32xl\:outline-none { + outline: 2px solid transparent !important; + outline-offset: 2px !important; + } + + .\32xl\:outline-white { + outline: 2px dotted white !important; + outline-offset: 2px !important; + } + + .\32xl\:outline-black { + outline: 2px dotted black !important; + outline-offset: 2px !important; + } + + .\32xl\:focus-within\:outline-none:focus-within { + outline: 2px solid transparent !important; + outline-offset: 2px !important; + } + + .\32xl\:focus-within\:outline-white:focus-within { + outline: 2px dotted white !important; + outline-offset: 2px !important; + } + + .\32xl\:focus-within\:outline-black:focus-within { + outline: 2px dotted black !important; + outline-offset: 2px !important; + } + + .\32xl\:focus\:outline-none:focus { + outline: 2px solid transparent !important; + outline-offset: 2px !important; + } + + .\32xl\:focus\:outline-white:focus { + outline: 2px dotted white !important; + outline-offset: 2px !important; + } + + .\32xl\:focus\:outline-black:focus { + outline: 2px dotted black !important; + outline-offset: 2px !important; + } + + .\32xl\:overflow-auto { + overflow: auto !important; + } + + .\32xl\:overflow-hidden { + overflow: hidden !important; + } + + .\32xl\:overflow-visible { + overflow: visible !important; + } + + .\32xl\:overflow-scroll { + overflow: scroll !important; + } + + .\32xl\:overflow-x-auto { + overflow-x: auto !important; + } + + .\32xl\:overflow-y-auto { + overflow-y: auto !important; + } + + .\32xl\:overflow-x-hidden { + overflow-x: hidden !important; + } + + .\32xl\:overflow-y-hidden { + overflow-y: hidden !important; + } + + .\32xl\:overflow-x-visible { + overflow-x: visible !important; + } + + .\32xl\:overflow-y-visible { + overflow-y: visible !important; + } + + .\32xl\:overflow-x-scroll { + overflow-x: scroll !important; + } + + .\32xl\:overflow-y-scroll { + overflow-y: scroll !important; + } + + .\32xl\:overscroll-auto { + -ms-scroll-chaining: chained !important; + overscroll-behavior: auto !important; + } + + .\32xl\:overscroll-contain { + -ms-scroll-chaining: none !important; + overscroll-behavior: contain !important; + } + + .\32xl\:overscroll-none { + -ms-scroll-chaining: none !important; + overscroll-behavior: none !important; + } + + .\32xl\:overscroll-y-auto { + overscroll-behavior-y: auto !important; + } + + .\32xl\:overscroll-y-contain { + overscroll-behavior-y: contain !important; + } + + .\32xl\:overscroll-y-none { + overscroll-behavior-y: none !important; + } + + .\32xl\:overscroll-x-auto { + overscroll-behavior-x: auto !important; + } + + .\32xl\:overscroll-x-contain { + overscroll-behavior-x: contain !important; + } + + .\32xl\:overscroll-x-none { + overscroll-behavior-x: none !important; + } + + .\32xl\:p-0 { + padding: 0px !important; + } + + .\32xl\:p-1 { + padding: 0.25rem !important; + } + + .\32xl\:p-2 { + padding: 0.5rem !important; + } + + .\32xl\:p-3 { + padding: 0.75rem !important; + } + + .\32xl\:p-4 { + padding: 1rem !important; + } + + .\32xl\:p-5 { + padding: 1.25rem !important; + } + + .\32xl\:p-6 { + padding: 1.5rem !important; + } + + .\32xl\:p-7 { + padding: 1.75rem !important; + } + + .\32xl\:p-8 { + padding: 2rem !important; + } + + .\32xl\:p-9 { + padding: 2.25rem !important; + } + + .\32xl\:p-10 { + padding: 2.5rem !important; + } + + .\32xl\:p-11 { + padding: 2.75rem !important; + } + + .\32xl\:p-12 { + padding: 3rem !important; + } + + .\32xl\:p-14 { + padding: 3.5rem !important; + } + + .\32xl\:p-16 { + padding: 4rem !important; + } + + .\32xl\:p-20 { + padding: 5rem !important; + } + + .\32xl\:p-24 { + padding: 6rem !important; + } + + .\32xl\:p-28 { + padding: 7rem !important; + } + + .\32xl\:p-32 { + padding: 8rem !important; + } + + .\32xl\:p-36 { + padding: 9rem !important; + } + + .\32xl\:p-40 { + padding: 10rem !important; + } + + .\32xl\:p-44 { + padding: 11rem !important; + } + + .\32xl\:p-48 { + padding: 12rem !important; + } + + .\32xl\:p-52 { + padding: 13rem !important; + } + + .\32xl\:p-56 { + padding: 14rem !important; + } + + .\32xl\:p-60 { + padding: 15rem !important; + } + + .\32xl\:p-64 { + padding: 16rem !important; + } + + .\32xl\:p-72 { + padding: 18rem !important; + } + + .\32xl\:p-80 { + padding: 20rem !important; + } + + .\32xl\:p-96 { + padding: 24rem !important; + } + + .\32xl\:p-px { + padding: 1px !important; + } + + .\32xl\:p-0\.5 { + padding: 0.125rem !important; + } + + .\32xl\:p-1\.5 { + padding: 0.375rem !important; + } + + .\32xl\:p-2\.5 { + padding: 0.625rem !important; + } + + .\32xl\:p-3\.5 { + padding: 0.875rem !important; + } + + .\32xl\:py-0 { + padding-top: 0px !important; + padding-bottom: 0px !important; + } + + .\32xl\:px-0 { + padding-left: 0px !important; + padding-right: 0px !important; + } + + .\32xl\:py-1 { + padding-top: 0.25rem !important; + padding-bottom: 0.25rem !important; + } + + .\32xl\:px-1 { + padding-left: 0.25rem !important; + padding-right: 0.25rem !important; + } + + .\32xl\:py-2 { + padding-top: 0.5rem !important; + padding-bottom: 0.5rem !important; + } + + .\32xl\:px-2 { + padding-left: 0.5rem !important; + padding-right: 0.5rem !important; + } + + .\32xl\:py-3 { + padding-top: 0.75rem !important; + padding-bottom: 0.75rem !important; + } + + .\32xl\:px-3 { + padding-left: 0.75rem !important; + padding-right: 0.75rem !important; + } + + .\32xl\:py-4 { + padding-top: 1rem !important; + padding-bottom: 1rem !important; + } + + .\32xl\:px-4 { + padding-left: 1rem !important; + padding-right: 1rem !important; + } + + .\32xl\:py-5 { + padding-top: 1.25rem !important; + padding-bottom: 1.25rem !important; + } + + .\32xl\:px-5 { + padding-left: 1.25rem !important; + padding-right: 1.25rem !important; + } + + .\32xl\:py-6 { + padding-top: 1.5rem !important; + padding-bottom: 1.5rem !important; + } + + .\32xl\:px-6 { + padding-left: 1.5rem !important; + padding-right: 1.5rem !important; + } + + .\32xl\:py-7 { + padding-top: 1.75rem !important; + padding-bottom: 1.75rem !important; + } + + .\32xl\:px-7 { + padding-left: 1.75rem !important; + padding-right: 1.75rem !important; + } + + .\32xl\:py-8 { + padding-top: 2rem !important; + padding-bottom: 2rem !important; + } + + .\32xl\:px-8 { + padding-left: 2rem !important; + padding-right: 2rem !important; + } + + .\32xl\:py-9 { + padding-top: 2.25rem !important; + padding-bottom: 2.25rem !important; + } + + .\32xl\:px-9 { + padding-left: 2.25rem !important; + padding-right: 2.25rem !important; + } + + .\32xl\:py-10 { + padding-top: 2.5rem !important; + padding-bottom: 2.5rem !important; + } + + .\32xl\:px-10 { + padding-left: 2.5rem !important; + padding-right: 2.5rem !important; + } + + .\32xl\:py-11 { + padding-top: 2.75rem !important; + padding-bottom: 2.75rem !important; + } + + .\32xl\:px-11 { + padding-left: 2.75rem !important; + padding-right: 2.75rem !important; + } + + .\32xl\:py-12 { + padding-top: 3rem !important; + padding-bottom: 3rem !important; + } + + .\32xl\:px-12 { + padding-left: 3rem !important; + padding-right: 3rem !important; + } + + .\32xl\:py-14 { + padding-top: 3.5rem !important; + padding-bottom: 3.5rem !important; + } + + .\32xl\:px-14 { + padding-left: 3.5rem !important; + padding-right: 3.5rem !important; + } + + .\32xl\:py-16 { + padding-top: 4rem !important; + padding-bottom: 4rem !important; + } + + .\32xl\:px-16 { + padding-left: 4rem !important; + padding-right: 4rem !important; + } + + .\32xl\:py-20 { + padding-top: 5rem !important; + padding-bottom: 5rem !important; + } + + .\32xl\:px-20 { + padding-left: 5rem !important; + padding-right: 5rem !important; + } + + .\32xl\:py-24 { + padding-top: 6rem !important; + padding-bottom: 6rem !important; + } + + .\32xl\:px-24 { + padding-left: 6rem !important; + padding-right: 6rem !important; + } + + .\32xl\:py-28 { + padding-top: 7rem !important; + padding-bottom: 7rem !important; + } + + .\32xl\:px-28 { + padding-left: 7rem !important; + padding-right: 7rem !important; + } + + .\32xl\:py-32 { + padding-top: 8rem !important; + padding-bottom: 8rem !important; + } + + .\32xl\:px-32 { + padding-left: 8rem !important; + padding-right: 8rem !important; + } + + .\32xl\:py-36 { + padding-top: 9rem !important; + padding-bottom: 9rem !important; + } + + .\32xl\:px-36 { + padding-left: 9rem !important; + padding-right: 9rem !important; + } + + .\32xl\:py-40 { + padding-top: 10rem !important; + padding-bottom: 10rem !important; + } + + .\32xl\:px-40 { + padding-left: 10rem !important; + padding-right: 10rem !important; + } + + .\32xl\:py-44 { + padding-top: 11rem !important; + padding-bottom: 11rem !important; + } + + .\32xl\:px-44 { + padding-left: 11rem !important; + padding-right: 11rem !important; + } + + .\32xl\:py-48 { + padding-top: 12rem !important; + padding-bottom: 12rem !important; + } + + .\32xl\:px-48 { + padding-left: 12rem !important; + padding-right: 12rem !important; + } + + .\32xl\:py-52 { + padding-top: 13rem !important; + padding-bottom: 13rem !important; + } + + .\32xl\:px-52 { + padding-left: 13rem !important; + padding-right: 13rem !important; + } + + .\32xl\:py-56 { + padding-top: 14rem !important; + padding-bottom: 14rem !important; + } + + .\32xl\:px-56 { + padding-left: 14rem !important; + padding-right: 14rem !important; + } + + .\32xl\:py-60 { + padding-top: 15rem !important; + padding-bottom: 15rem !important; + } + + .\32xl\:px-60 { + padding-left: 15rem !important; + padding-right: 15rem !important; + } + + .\32xl\:py-64 { + padding-top: 16rem !important; + padding-bottom: 16rem !important; + } + + .\32xl\:px-64 { + padding-left: 16rem !important; + padding-right: 16rem !important; + } + + .\32xl\:py-72 { + padding-top: 18rem !important; + padding-bottom: 18rem !important; + } + + .\32xl\:px-72 { + padding-left: 18rem !important; + padding-right: 18rem !important; + } + + .\32xl\:py-80 { + padding-top: 20rem !important; + padding-bottom: 20rem !important; + } + + .\32xl\:px-80 { + padding-left: 20rem !important; + padding-right: 20rem !important; + } + + .\32xl\:py-96 { + padding-top: 24rem !important; + padding-bottom: 24rem !important; + } + + .\32xl\:px-96 { + padding-left: 24rem !important; + padding-right: 24rem !important; + } + + .\32xl\:py-px { + padding-top: 1px !important; + padding-bottom: 1px !important; + } + + .\32xl\:px-px { + padding-left: 1px !important; + padding-right: 1px !important; + } + + .\32xl\:py-0\.5 { + padding-top: 0.125rem !important; + padding-bottom: 0.125rem !important; + } + + .\32xl\:px-0\.5 { + padding-left: 0.125rem !important; + padding-right: 0.125rem !important; + } + + .\32xl\:py-1\.5 { + padding-top: 0.375rem !important; + padding-bottom: 0.375rem !important; + } + + .\32xl\:px-1\.5 { + padding-left: 0.375rem !important; + padding-right: 0.375rem !important; + } + + .\32xl\:py-2\.5 { + padding-top: 0.625rem !important; + padding-bottom: 0.625rem !important; + } + + .\32xl\:px-2\.5 { + padding-left: 0.625rem !important; + padding-right: 0.625rem !important; + } + + .\32xl\:py-3\.5 { + padding-top: 0.875rem !important; + padding-bottom: 0.875rem !important; + } + + .\32xl\:px-3\.5 { + padding-left: 0.875rem !important; + padding-right: 0.875rem !important; + } + + .\32xl\:pt-0 { + padding-top: 0px !important; + } + + .\32xl\:pr-0 { + padding-right: 0px !important; + } + + .\32xl\:pb-0 { + padding-bottom: 0px !important; + } + + .\32xl\:pl-0 { + padding-left: 0px !important; + } + + .\32xl\:pt-1 { + padding-top: 0.25rem !important; + } + + .\32xl\:pr-1 { + padding-right: 0.25rem !important; + } + + .\32xl\:pb-1 { + padding-bottom: 0.25rem !important; + } + + .\32xl\:pl-1 { + padding-left: 0.25rem !important; + } + + .\32xl\:pt-2 { + padding-top: 0.5rem !important; + } + + .\32xl\:pr-2 { + padding-right: 0.5rem !important; + } + + .\32xl\:pb-2 { + padding-bottom: 0.5rem !important; + } + + .\32xl\:pl-2 { + padding-left: 0.5rem !important; + } + + .\32xl\:pt-3 { + padding-top: 0.75rem !important; + } + + .\32xl\:pr-3 { + padding-right: 0.75rem !important; + } + + .\32xl\:pb-3 { + padding-bottom: 0.75rem !important; + } + + .\32xl\:pl-3 { + padding-left: 0.75rem !important; + } + + .\32xl\:pt-4 { + padding-top: 1rem !important; + } + + .\32xl\:pr-4 { + padding-right: 1rem !important; + } + + .\32xl\:pb-4 { + padding-bottom: 1rem !important; + } + + .\32xl\:pl-4 { + padding-left: 1rem !important; + } + + .\32xl\:pt-5 { + padding-top: 1.25rem !important; + } + + .\32xl\:pr-5 { + padding-right: 1.25rem !important; + } + + .\32xl\:pb-5 { + padding-bottom: 1.25rem !important; + } + + .\32xl\:pl-5 { + padding-left: 1.25rem !important; + } + + .\32xl\:pt-6 { + padding-top: 1.5rem !important; + } + + .\32xl\:pr-6 { + padding-right: 1.5rem !important; + } + + .\32xl\:pb-6 { + padding-bottom: 1.5rem !important; + } + + .\32xl\:pl-6 { + padding-left: 1.5rem !important; + } + + .\32xl\:pt-7 { + padding-top: 1.75rem !important; + } + + .\32xl\:pr-7 { + padding-right: 1.75rem !important; + } + + .\32xl\:pb-7 { + padding-bottom: 1.75rem !important; + } + + .\32xl\:pl-7 { + padding-left: 1.75rem !important; + } + + .\32xl\:pt-8 { + padding-top: 2rem !important; + } + + .\32xl\:pr-8 { + padding-right: 2rem !important; + } + + .\32xl\:pb-8 { + padding-bottom: 2rem !important; + } + + .\32xl\:pl-8 { + padding-left: 2rem !important; + } + + .\32xl\:pt-9 { + padding-top: 2.25rem !important; + } + + .\32xl\:pr-9 { + padding-right: 2.25rem !important; + } + + .\32xl\:pb-9 { + padding-bottom: 2.25rem !important; + } + + .\32xl\:pl-9 { + padding-left: 2.25rem !important; + } + + .\32xl\:pt-10 { + padding-top: 2.5rem !important; + } + + .\32xl\:pr-10 { + padding-right: 2.5rem !important; + } + + .\32xl\:pb-10 { + padding-bottom: 2.5rem !important; + } + + .\32xl\:pl-10 { + padding-left: 2.5rem !important; + } + + .\32xl\:pt-11 { + padding-top: 2.75rem !important; + } + + .\32xl\:pr-11 { + padding-right: 2.75rem !important; + } + + .\32xl\:pb-11 { + padding-bottom: 2.75rem !important; + } + + .\32xl\:pl-11 { + padding-left: 2.75rem !important; + } + + .\32xl\:pt-12 { + padding-top: 3rem !important; + } + + .\32xl\:pr-12 { + padding-right: 3rem !important; + } + + .\32xl\:pb-12 { + padding-bottom: 3rem !important; + } + + .\32xl\:pl-12 { + padding-left: 3rem !important; + } + + .\32xl\:pt-14 { + padding-top: 3.5rem !important; + } + + .\32xl\:pr-14 { + padding-right: 3.5rem !important; + } + + .\32xl\:pb-14 { + padding-bottom: 3.5rem !important; + } + + .\32xl\:pl-14 { + padding-left: 3.5rem !important; + } + + .\32xl\:pt-16 { + padding-top: 4rem !important; + } + + .\32xl\:pr-16 { + padding-right: 4rem !important; + } + + .\32xl\:pb-16 { + padding-bottom: 4rem !important; + } + + .\32xl\:pl-16 { + padding-left: 4rem !important; + } + + .\32xl\:pt-20 { + padding-top: 5rem !important; + } + + .\32xl\:pr-20 { + padding-right: 5rem !important; + } + + .\32xl\:pb-20 { + padding-bottom: 5rem !important; + } + + .\32xl\:pl-20 { + padding-left: 5rem !important; + } + + .\32xl\:pt-24 { + padding-top: 6rem !important; + } + + .\32xl\:pr-24 { + padding-right: 6rem !important; + } + + .\32xl\:pb-24 { + padding-bottom: 6rem !important; + } + + .\32xl\:pl-24 { + padding-left: 6rem !important; + } + + .\32xl\:pt-28 { + padding-top: 7rem !important; + } + + .\32xl\:pr-28 { + padding-right: 7rem !important; + } + + .\32xl\:pb-28 { + padding-bottom: 7rem !important; + } + + .\32xl\:pl-28 { + padding-left: 7rem !important; + } + + .\32xl\:pt-32 { + padding-top: 8rem !important; + } + + .\32xl\:pr-32 { + padding-right: 8rem !important; + } + + .\32xl\:pb-32 { + padding-bottom: 8rem !important; + } + + .\32xl\:pl-32 { + padding-left: 8rem !important; + } + + .\32xl\:pt-36 { + padding-top: 9rem !important; + } + + .\32xl\:pr-36 { + padding-right: 9rem !important; + } + + .\32xl\:pb-36 { + padding-bottom: 9rem !important; + } + + .\32xl\:pl-36 { + padding-left: 9rem !important; + } + + .\32xl\:pt-40 { + padding-top: 10rem !important; + } + + .\32xl\:pr-40 { + padding-right: 10rem !important; + } + + .\32xl\:pb-40 { + padding-bottom: 10rem !important; + } + + .\32xl\:pl-40 { + padding-left: 10rem !important; + } + + .\32xl\:pt-44 { + padding-top: 11rem !important; + } + + .\32xl\:pr-44 { + padding-right: 11rem !important; + } + + .\32xl\:pb-44 { + padding-bottom: 11rem !important; + } + + .\32xl\:pl-44 { + padding-left: 11rem !important; + } + + .\32xl\:pt-48 { + padding-top: 12rem !important; + } + + .\32xl\:pr-48 { + padding-right: 12rem !important; + } + + .\32xl\:pb-48 { + padding-bottom: 12rem !important; + } + + .\32xl\:pl-48 { + padding-left: 12rem !important; + } + + .\32xl\:pt-52 { + padding-top: 13rem !important; + } + + .\32xl\:pr-52 { + padding-right: 13rem !important; + } + + .\32xl\:pb-52 { + padding-bottom: 13rem !important; + } + + .\32xl\:pl-52 { + padding-left: 13rem !important; + } + + .\32xl\:pt-56 { + padding-top: 14rem !important; + } + + .\32xl\:pr-56 { + padding-right: 14rem !important; + } + + .\32xl\:pb-56 { + padding-bottom: 14rem !important; + } + + .\32xl\:pl-56 { + padding-left: 14rem !important; + } + + .\32xl\:pt-60 { + padding-top: 15rem !important; + } + + .\32xl\:pr-60 { + padding-right: 15rem !important; + } + + .\32xl\:pb-60 { + padding-bottom: 15rem !important; + } + + .\32xl\:pl-60 { + padding-left: 15rem !important; + } + + .\32xl\:pt-64 { + padding-top: 16rem !important; + } + + .\32xl\:pr-64 { + padding-right: 16rem !important; + } + + .\32xl\:pb-64 { + padding-bottom: 16rem !important; + } + + .\32xl\:pl-64 { + padding-left: 16rem !important; + } + + .\32xl\:pt-72 { + padding-top: 18rem !important; + } + + .\32xl\:pr-72 { + padding-right: 18rem !important; + } + + .\32xl\:pb-72 { + padding-bottom: 18rem !important; + } + + .\32xl\:pl-72 { + padding-left: 18rem !important; + } + + .\32xl\:pt-80 { + padding-top: 20rem !important; + } + + .\32xl\:pr-80 { + padding-right: 20rem !important; + } + + .\32xl\:pb-80 { + padding-bottom: 20rem !important; + } + + .\32xl\:pl-80 { + padding-left: 20rem !important; + } + + .\32xl\:pt-96 { + padding-top: 24rem !important; + } + + .\32xl\:pr-96 { + padding-right: 24rem !important; + } + + .\32xl\:pb-96 { + padding-bottom: 24rem !important; + } + + .\32xl\:pl-96 { + padding-left: 24rem !important; + } + + .\32xl\:pt-px { + padding-top: 1px !important; + } + + .\32xl\:pr-px { + padding-right: 1px !important; + } + + .\32xl\:pb-px { + padding-bottom: 1px !important; + } + + .\32xl\:pl-px { + padding-left: 1px !important; + } + + .\32xl\:pt-0\.5 { + padding-top: 0.125rem !important; + } + + .\32xl\:pr-0\.5 { + padding-right: 0.125rem !important; + } + + .\32xl\:pb-0\.5 { + padding-bottom: 0.125rem !important; + } + + .\32xl\:pl-0\.5 { + padding-left: 0.125rem !important; + } + + .\32xl\:pt-1\.5 { + padding-top: 0.375rem !important; + } + + .\32xl\:pr-1\.5 { + padding-right: 0.375rem !important; + } + + .\32xl\:pb-1\.5 { + padding-bottom: 0.375rem !important; + } + + .\32xl\:pl-1\.5 { + padding-left: 0.375rem !important; + } + + .\32xl\:pt-2\.5 { + padding-top: 0.625rem !important; + } + + .\32xl\:pr-2\.5 { + padding-right: 0.625rem !important; + } + + .\32xl\:pb-2\.5 { + padding-bottom: 0.625rem !important; + } + + .\32xl\:pl-2\.5 { + padding-left: 0.625rem !important; + } + + .\32xl\:pt-3\.5 { + padding-top: 0.875rem !important; + } + + .\32xl\:pr-3\.5 { + padding-right: 0.875rem !important; + } + + .\32xl\:pb-3\.5 { + padding-bottom: 0.875rem !important; + } + + .\32xl\:pl-3\.5 { + padding-left: 0.875rem !important; + } + + .\32xl\:placeholder-transparent::-moz-placeholder { + color: transparent !important; + } + + .\32xl\:placeholder-transparent:-ms-input-placeholder { + color: transparent !important; + } + + .\32xl\:placeholder-transparent::placeholder { + color: transparent !important; + } + + .\32xl\:placeholder-current::-moz-placeholder { + color: currentColor !important; + } + + .\32xl\:placeholder-current:-ms-input-placeholder { + color: currentColor !important; + } + + .\32xl\:placeholder-current::placeholder { + color: currentColor !important; + } + + .\32xl\:placeholder-black::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-black:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-black::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-white::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-white:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-white::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-gray-50::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-gray-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-gray-50::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-gray-100::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-gray-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-gray-100::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-gray-200::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-gray-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-gray-200::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-gray-300::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-gray-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-gray-300::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-gray-400::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-gray-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-gray-400::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-gray-500::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-gray-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-gray-500::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-gray-600::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-gray-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-gray-600::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-gray-700::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-gray-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-gray-700::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-gray-800::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-gray-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-gray-800::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-gray-900::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-gray-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-gray-900::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-red-50::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 242, 242, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-red-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 242, 242, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-red-50::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 242, 242, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-red-100::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 226, 226, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-red-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 226, 226, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-red-100::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 226, 226, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-red-200::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 202, 202, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-red-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 202, 202, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-red-200::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 202, 202, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-red-300::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 165, 165, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-red-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 165, 165, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-red-300::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 165, 165, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-red-400::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(248, 113, 113, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-red-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(248, 113, 113, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-red-400::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(248, 113, 113, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-red-500::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(239, 68, 68, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-red-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(239, 68, 68, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-red-500::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(239, 68, 68, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-red-600::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(220, 38, 38, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-red-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(220, 38, 38, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-red-600::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(220, 38, 38, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-red-700::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(185, 28, 28, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-red-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(185, 28, 28, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-red-700::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(185, 28, 28, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-red-800::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(153, 27, 27, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-red-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(153, 27, 27, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-red-800::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(153, 27, 27, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-red-900::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(127, 29, 29, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-red-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(127, 29, 29, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-red-900::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(127, 29, 29, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-yellow-50::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(255, 251, 235, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-yellow-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(255, 251, 235, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-yellow-50::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(255, 251, 235, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-yellow-100::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 243, 199, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-yellow-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 243, 199, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-yellow-100::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 243, 199, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-yellow-200::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(253, 230, 138, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-yellow-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(253, 230, 138, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-yellow-200::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(253, 230, 138, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-yellow-300::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 211, 77, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-yellow-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 211, 77, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-yellow-300::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 211, 77, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-yellow-400::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(251, 191, 36, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-yellow-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(251, 191, 36, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-yellow-400::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(251, 191, 36, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-yellow-500::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-yellow-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-yellow-500::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-yellow-600::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(217, 119, 6, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-yellow-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(217, 119, 6, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-yellow-600::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(217, 119, 6, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-yellow-700::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(180, 83, 9, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-yellow-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(180, 83, 9, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-yellow-700::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(180, 83, 9, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-yellow-800::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(146, 64, 14, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-yellow-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(146, 64, 14, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-yellow-800::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(146, 64, 14, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-yellow-900::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(120, 53, 15, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-yellow-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(120, 53, 15, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-yellow-900::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(120, 53, 15, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-green-50::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(236, 253, 245, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-green-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(236, 253, 245, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-green-50::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(236, 253, 245, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-green-100::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(209, 250, 229, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-green-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(209, 250, 229, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-green-100::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(209, 250, 229, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-green-200::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(167, 243, 208, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-green-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(167, 243, 208, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-green-200::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(167, 243, 208, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-green-300::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(110, 231, 183, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-green-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(110, 231, 183, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-green-300::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(110, 231, 183, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-green-400::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(52, 211, 153, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-green-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(52, 211, 153, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-green-400::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(52, 211, 153, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-green-500::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(16, 185, 129, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-green-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(16, 185, 129, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-green-500::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(16, 185, 129, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-green-600::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(5, 150, 105, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-green-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(5, 150, 105, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-green-600::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(5, 150, 105, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-green-700::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(4, 120, 87, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-green-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(4, 120, 87, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-green-700::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(4, 120, 87, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-green-800::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(6, 95, 70, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-green-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(6, 95, 70, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-green-800::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(6, 95, 70, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-green-900::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(6, 78, 59, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-green-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(6, 78, 59, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-green-900::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(6, 78, 59, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-blue-50::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(239, 246, 255, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-blue-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(239, 246, 255, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-blue-50::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(239, 246, 255, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-blue-100::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(219, 234, 254, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-blue-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(219, 234, 254, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-blue-100::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(219, 234, 254, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-blue-200::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(191, 219, 254, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-blue-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(191, 219, 254, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-blue-200::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(191, 219, 254, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-blue-300::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(147, 197, 253, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-blue-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(147, 197, 253, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-blue-300::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(147, 197, 253, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-blue-400::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(96, 165, 250, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-blue-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(96, 165, 250, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-blue-400::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(96, 165, 250, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-blue-500::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-blue-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-blue-500::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-blue-600::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(37, 99, 235, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-blue-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(37, 99, 235, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-blue-600::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(37, 99, 235, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-blue-700::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(29, 78, 216, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-blue-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(29, 78, 216, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-blue-700::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(29, 78, 216, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-blue-800::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(30, 64, 175, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-blue-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(30, 64, 175, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-blue-800::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(30, 64, 175, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-blue-900::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(30, 58, 138, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-blue-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(30, 58, 138, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-blue-900::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(30, 58, 138, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-indigo-50::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(238, 242, 255, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-indigo-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(238, 242, 255, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-indigo-50::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(238, 242, 255, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-indigo-100::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(224, 231, 255, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-indigo-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(224, 231, 255, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-indigo-100::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(224, 231, 255, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-indigo-200::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(199, 210, 254, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-indigo-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(199, 210, 254, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-indigo-200::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(199, 210, 254, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-indigo-300::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(165, 180, 252, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-indigo-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(165, 180, 252, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-indigo-300::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(165, 180, 252, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-indigo-400::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(129, 140, 248, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-indigo-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(129, 140, 248, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-indigo-400::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(129, 140, 248, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-indigo-500::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(99, 102, 241, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-indigo-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(99, 102, 241, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-indigo-500::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(99, 102, 241, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-indigo-600::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(79, 70, 229, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-indigo-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(79, 70, 229, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-indigo-600::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(79, 70, 229, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-indigo-700::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(67, 56, 202, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-indigo-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(67, 56, 202, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-indigo-700::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(67, 56, 202, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-indigo-800::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(55, 48, 163, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-indigo-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(55, 48, 163, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-indigo-800::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(55, 48, 163, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-indigo-900::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(49, 46, 129, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-indigo-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(49, 46, 129, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-indigo-900::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(49, 46, 129, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-purple-50::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(245, 243, 255, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-purple-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(245, 243, 255, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-purple-50::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(245, 243, 255, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-purple-100::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(237, 233, 254, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-purple-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(237, 233, 254, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-purple-100::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(237, 233, 254, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-purple-200::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(221, 214, 254, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-purple-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(221, 214, 254, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-purple-200::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(221, 214, 254, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-purple-300::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(196, 181, 253, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-purple-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(196, 181, 253, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-purple-300::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(196, 181, 253, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-purple-400::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(167, 139, 250, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-purple-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(167, 139, 250, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-purple-400::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(167, 139, 250, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-purple-500::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(139, 92, 246, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-purple-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(139, 92, 246, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-purple-500::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(139, 92, 246, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-purple-600::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(124, 58, 237, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-purple-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(124, 58, 237, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-purple-600::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(124, 58, 237, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-purple-700::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(109, 40, 217, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-purple-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(109, 40, 217, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-purple-700::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(109, 40, 217, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-purple-800::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(91, 33, 182, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-purple-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(91, 33, 182, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-purple-800::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(91, 33, 182, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-purple-900::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(76, 29, 149, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-purple-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(76, 29, 149, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-purple-900::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(76, 29, 149, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-pink-50::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(253, 242, 248, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-pink-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(253, 242, 248, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-pink-50::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(253, 242, 248, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-pink-100::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 231, 243, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-pink-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 231, 243, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-pink-100::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 231, 243, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-pink-200::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(251, 207, 232, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-pink-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(251, 207, 232, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-pink-200::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(251, 207, 232, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-pink-300::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(249, 168, 212, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-pink-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(249, 168, 212, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-pink-300::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(249, 168, 212, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-pink-400::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(244, 114, 182, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-pink-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(244, 114, 182, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-pink-400::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(244, 114, 182, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-pink-500::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(236, 72, 153, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-pink-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(236, 72, 153, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-pink-500::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(236, 72, 153, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-pink-600::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(219, 39, 119, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-pink-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(219, 39, 119, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-pink-600::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(219, 39, 119, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-pink-700::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(190, 24, 93, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-pink-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(190, 24, 93, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-pink-700::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(190, 24, 93, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-pink-800::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(157, 23, 77, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-pink-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(157, 23, 77, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-pink-800::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(157, 23, 77, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-pink-900::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(131, 24, 67, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-pink-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(131, 24, 67, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-pink-900::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(131, 24, 67, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-primary::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(0, 49, 151, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-primary:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(0, 49, 151, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-primary::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(0, 49, 151, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-transparent:focus::-moz-placeholder { + color: transparent !important; + } + + .\32xl\:focus\:placeholder-transparent:focus:-ms-input-placeholder { + color: transparent !important; + } + + .\32xl\:focus\:placeholder-transparent:focus::placeholder { + color: transparent !important; + } + + .\32xl\:focus\:placeholder-current:focus::-moz-placeholder { + color: currentColor !important; + } + + .\32xl\:focus\:placeholder-current:focus:-ms-input-placeholder { + color: currentColor !important; + } + + .\32xl\:focus\:placeholder-current:focus::placeholder { + color: currentColor !important; + } + + .\32xl\:focus\:placeholder-black:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-black:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-black:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-white:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-white:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-white:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-gray-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-gray-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-gray-50:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-gray-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-gray-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-gray-100:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-gray-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-gray-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-gray-200:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-gray-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-gray-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-gray-300:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-gray-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-gray-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-gray-400:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-gray-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-gray-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-gray-500:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-gray-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-gray-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-gray-600:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-gray-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-gray-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-gray-700:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-gray-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-gray-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-gray-800:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-gray-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-gray-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-gray-900:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-red-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 242, 242, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-red-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 242, 242, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-red-50:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 242, 242, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-red-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 226, 226, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-red-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 226, 226, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-red-100:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 226, 226, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-red-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 202, 202, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-red-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 202, 202, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-red-200:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 202, 202, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-red-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 165, 165, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-red-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 165, 165, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-red-300:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 165, 165, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-red-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(248, 113, 113, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-red-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(248, 113, 113, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-red-400:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(248, 113, 113, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-red-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(239, 68, 68, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-red-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(239, 68, 68, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-red-500:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(239, 68, 68, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-red-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(220, 38, 38, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-red-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(220, 38, 38, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-red-600:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(220, 38, 38, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-red-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(185, 28, 28, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-red-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(185, 28, 28, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-red-700:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(185, 28, 28, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-red-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(153, 27, 27, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-red-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(153, 27, 27, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-red-800:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(153, 27, 27, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-red-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(127, 29, 29, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-red-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(127, 29, 29, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-red-900:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(127, 29, 29, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-yellow-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(255, 251, 235, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-yellow-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(255, 251, 235, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-yellow-50:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(255, 251, 235, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-yellow-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 243, 199, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-yellow-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 243, 199, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-yellow-100:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 243, 199, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-yellow-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(253, 230, 138, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-yellow-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(253, 230, 138, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-yellow-200:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(253, 230, 138, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-yellow-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 211, 77, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-yellow-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 211, 77, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-yellow-300:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 211, 77, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-yellow-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(251, 191, 36, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-yellow-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(251, 191, 36, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-yellow-400:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(251, 191, 36, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-yellow-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-yellow-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-yellow-500:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-yellow-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(217, 119, 6, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-yellow-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(217, 119, 6, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-yellow-600:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(217, 119, 6, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-yellow-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(180, 83, 9, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-yellow-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(180, 83, 9, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-yellow-700:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(180, 83, 9, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-yellow-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(146, 64, 14, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-yellow-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(146, 64, 14, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-yellow-800:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(146, 64, 14, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-yellow-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(120, 53, 15, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-yellow-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(120, 53, 15, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-yellow-900:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(120, 53, 15, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-green-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(236, 253, 245, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-green-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(236, 253, 245, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-green-50:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(236, 253, 245, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-green-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(209, 250, 229, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-green-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(209, 250, 229, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-green-100:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(209, 250, 229, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-green-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(167, 243, 208, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-green-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(167, 243, 208, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-green-200:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(167, 243, 208, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-green-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(110, 231, 183, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-green-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(110, 231, 183, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-green-300:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(110, 231, 183, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-green-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(52, 211, 153, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-green-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(52, 211, 153, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-green-400:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(52, 211, 153, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-green-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(16, 185, 129, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-green-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(16, 185, 129, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-green-500:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(16, 185, 129, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-green-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(5, 150, 105, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-green-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(5, 150, 105, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-green-600:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(5, 150, 105, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-green-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(4, 120, 87, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-green-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(4, 120, 87, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-green-700:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(4, 120, 87, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-green-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(6, 95, 70, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-green-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(6, 95, 70, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-green-800:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(6, 95, 70, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-green-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(6, 78, 59, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-green-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(6, 78, 59, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-green-900:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(6, 78, 59, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-blue-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(239, 246, 255, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-blue-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(239, 246, 255, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-blue-50:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(239, 246, 255, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-blue-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(219, 234, 254, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-blue-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(219, 234, 254, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-blue-100:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(219, 234, 254, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-blue-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(191, 219, 254, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-blue-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(191, 219, 254, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-blue-200:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(191, 219, 254, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-blue-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(147, 197, 253, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-blue-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(147, 197, 253, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-blue-300:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(147, 197, 253, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-blue-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(96, 165, 250, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-blue-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(96, 165, 250, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-blue-400:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(96, 165, 250, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-blue-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-blue-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-blue-500:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-blue-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(37, 99, 235, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-blue-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(37, 99, 235, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-blue-600:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(37, 99, 235, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-blue-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(29, 78, 216, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-blue-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(29, 78, 216, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-blue-700:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(29, 78, 216, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-blue-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(30, 64, 175, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-blue-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(30, 64, 175, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-blue-800:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(30, 64, 175, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-blue-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(30, 58, 138, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-blue-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(30, 58, 138, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-blue-900:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(30, 58, 138, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-indigo-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(238, 242, 255, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-indigo-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(238, 242, 255, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-indigo-50:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(238, 242, 255, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-indigo-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(224, 231, 255, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-indigo-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(224, 231, 255, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-indigo-100:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(224, 231, 255, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-indigo-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(199, 210, 254, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-indigo-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(199, 210, 254, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-indigo-200:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(199, 210, 254, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-indigo-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(165, 180, 252, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-indigo-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(165, 180, 252, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-indigo-300:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(165, 180, 252, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-indigo-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(129, 140, 248, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-indigo-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(129, 140, 248, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-indigo-400:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(129, 140, 248, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-indigo-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(99, 102, 241, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-indigo-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(99, 102, 241, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-indigo-500:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(99, 102, 241, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-indigo-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(79, 70, 229, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-indigo-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(79, 70, 229, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-indigo-600:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(79, 70, 229, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-indigo-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(67, 56, 202, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-indigo-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(67, 56, 202, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-indigo-700:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(67, 56, 202, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-indigo-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(55, 48, 163, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-indigo-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(55, 48, 163, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-indigo-800:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(55, 48, 163, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-indigo-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(49, 46, 129, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-indigo-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(49, 46, 129, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-indigo-900:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(49, 46, 129, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-purple-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(245, 243, 255, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-purple-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(245, 243, 255, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-purple-50:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(245, 243, 255, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-purple-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(237, 233, 254, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-purple-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(237, 233, 254, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-purple-100:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(237, 233, 254, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-purple-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(221, 214, 254, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-purple-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(221, 214, 254, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-purple-200:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(221, 214, 254, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-purple-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(196, 181, 253, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-purple-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(196, 181, 253, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-purple-300:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(196, 181, 253, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-purple-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(167, 139, 250, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-purple-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(167, 139, 250, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-purple-400:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(167, 139, 250, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-purple-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(139, 92, 246, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-purple-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(139, 92, 246, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-purple-500:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(139, 92, 246, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-purple-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(124, 58, 237, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-purple-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(124, 58, 237, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-purple-600:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(124, 58, 237, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-purple-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(109, 40, 217, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-purple-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(109, 40, 217, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-purple-700:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(109, 40, 217, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-purple-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(91, 33, 182, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-purple-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(91, 33, 182, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-purple-800:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(91, 33, 182, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-purple-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(76, 29, 149, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-purple-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(76, 29, 149, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-purple-900:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(76, 29, 149, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-pink-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(253, 242, 248, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-pink-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(253, 242, 248, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-pink-50:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(253, 242, 248, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-pink-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 231, 243, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-pink-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 231, 243, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-pink-100:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 231, 243, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-pink-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(251, 207, 232, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-pink-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(251, 207, 232, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-pink-200:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(251, 207, 232, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-pink-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(249, 168, 212, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-pink-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(249, 168, 212, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-pink-300:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(249, 168, 212, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-pink-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(244, 114, 182, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-pink-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(244, 114, 182, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-pink-400:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(244, 114, 182, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-pink-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(236, 72, 153, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-pink-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(236, 72, 153, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-pink-500:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(236, 72, 153, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-pink-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(219, 39, 119, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-pink-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(219, 39, 119, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-pink-600:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(219, 39, 119, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-pink-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(190, 24, 93, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-pink-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(190, 24, 93, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-pink-700:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(190, 24, 93, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-pink-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(157, 23, 77, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-pink-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(157, 23, 77, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-pink-800:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(157, 23, 77, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-pink-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(131, 24, 67, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-pink-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(131, 24, 67, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-pink-900:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(131, 24, 67, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-primary:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(0, 49, 151, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-primary:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(0, 49, 151, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:focus\:placeholder-primary:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(0, 49, 151, var(--tw-placeholder-opacity)) !important; + } + + .\32xl\:placeholder-opacity-0::-moz-placeholder { + --tw-placeholder-opacity: 0 !important; + } + + .\32xl\:placeholder-opacity-0:-ms-input-placeholder { + --tw-placeholder-opacity: 0 !important; + } + + .\32xl\:placeholder-opacity-0::placeholder { + --tw-placeholder-opacity: 0 !important; + } + + .\32xl\:placeholder-opacity-5::-moz-placeholder { + --tw-placeholder-opacity: 0.05 !important; + } + + .\32xl\:placeholder-opacity-5:-ms-input-placeholder { + --tw-placeholder-opacity: 0.05 !important; + } + + .\32xl\:placeholder-opacity-5::placeholder { + --tw-placeholder-opacity: 0.05 !important; + } + + .\32xl\:placeholder-opacity-10::-moz-placeholder { + --tw-placeholder-opacity: 0.1 !important; + } + + .\32xl\:placeholder-opacity-10:-ms-input-placeholder { + --tw-placeholder-opacity: 0.1 !important; + } + + .\32xl\:placeholder-opacity-10::placeholder { + --tw-placeholder-opacity: 0.1 !important; + } + + .\32xl\:placeholder-opacity-20::-moz-placeholder { + --tw-placeholder-opacity: 0.2 !important; + } + + .\32xl\:placeholder-opacity-20:-ms-input-placeholder { + --tw-placeholder-opacity: 0.2 !important; + } + + .\32xl\:placeholder-opacity-20::placeholder { + --tw-placeholder-opacity: 0.2 !important; + } + + .\32xl\:placeholder-opacity-25::-moz-placeholder { + --tw-placeholder-opacity: 0.25 !important; + } + + .\32xl\:placeholder-opacity-25:-ms-input-placeholder { + --tw-placeholder-opacity: 0.25 !important; + } + + .\32xl\:placeholder-opacity-25::placeholder { + --tw-placeholder-opacity: 0.25 !important; + } + + .\32xl\:placeholder-opacity-30::-moz-placeholder { + --tw-placeholder-opacity: 0.3 !important; + } + + .\32xl\:placeholder-opacity-30:-ms-input-placeholder { + --tw-placeholder-opacity: 0.3 !important; + } + + .\32xl\:placeholder-opacity-30::placeholder { + --tw-placeholder-opacity: 0.3 !important; + } + + .\32xl\:placeholder-opacity-40::-moz-placeholder { + --tw-placeholder-opacity: 0.4 !important; + } + + .\32xl\:placeholder-opacity-40:-ms-input-placeholder { + --tw-placeholder-opacity: 0.4 !important; + } + + .\32xl\:placeholder-opacity-40::placeholder { + --tw-placeholder-opacity: 0.4 !important; + } + + .\32xl\:placeholder-opacity-50::-moz-placeholder { + --tw-placeholder-opacity: 0.5 !important; + } + + .\32xl\:placeholder-opacity-50:-ms-input-placeholder { + --tw-placeholder-opacity: 0.5 !important; + } + + .\32xl\:placeholder-opacity-50::placeholder { + --tw-placeholder-opacity: 0.5 !important; + } + + .\32xl\:placeholder-opacity-60::-moz-placeholder { + --tw-placeholder-opacity: 0.6 !important; + } + + .\32xl\:placeholder-opacity-60:-ms-input-placeholder { + --tw-placeholder-opacity: 0.6 !important; + } + + .\32xl\:placeholder-opacity-60::placeholder { + --tw-placeholder-opacity: 0.6 !important; + } + + .\32xl\:placeholder-opacity-70::-moz-placeholder { + --tw-placeholder-opacity: 0.7 !important; + } + + .\32xl\:placeholder-opacity-70:-ms-input-placeholder { + --tw-placeholder-opacity: 0.7 !important; + } + + .\32xl\:placeholder-opacity-70::placeholder { + --tw-placeholder-opacity: 0.7 !important; + } + + .\32xl\:placeholder-opacity-75::-moz-placeholder { + --tw-placeholder-opacity: 0.75 !important; + } + + .\32xl\:placeholder-opacity-75:-ms-input-placeholder { + --tw-placeholder-opacity: 0.75 !important; + } + + .\32xl\:placeholder-opacity-75::placeholder { + --tw-placeholder-opacity: 0.75 !important; + } + + .\32xl\:placeholder-opacity-80::-moz-placeholder { + --tw-placeholder-opacity: 0.8 !important; + } + + .\32xl\:placeholder-opacity-80:-ms-input-placeholder { + --tw-placeholder-opacity: 0.8 !important; + } + + .\32xl\:placeholder-opacity-80::placeholder { + --tw-placeholder-opacity: 0.8 !important; + } + + .\32xl\:placeholder-opacity-90::-moz-placeholder { + --tw-placeholder-opacity: 0.9 !important; + } + + .\32xl\:placeholder-opacity-90:-ms-input-placeholder { + --tw-placeholder-opacity: 0.9 !important; + } + + .\32xl\:placeholder-opacity-90::placeholder { + --tw-placeholder-opacity: 0.9 !important; + } + + .\32xl\:placeholder-opacity-95::-moz-placeholder { + --tw-placeholder-opacity: 0.95 !important; + } + + .\32xl\:placeholder-opacity-95:-ms-input-placeholder { + --tw-placeholder-opacity: 0.95 !important; + } + + .\32xl\:placeholder-opacity-95::placeholder { + --tw-placeholder-opacity: 0.95 !important; + } + + .\32xl\:placeholder-opacity-100::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + } + + .\32xl\:placeholder-opacity-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + } + + .\32xl\:placeholder-opacity-100::placeholder { + --tw-placeholder-opacity: 1 !important; + } + + .\32xl\:focus\:placeholder-opacity-0:focus::-moz-placeholder { + --tw-placeholder-opacity: 0 !important; + } + + .\32xl\:focus\:placeholder-opacity-0:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0 !important; + } + + .\32xl\:focus\:placeholder-opacity-0:focus::placeholder { + --tw-placeholder-opacity: 0 !important; + } + + .\32xl\:focus\:placeholder-opacity-5:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.05 !important; + } + + .\32xl\:focus\:placeholder-opacity-5:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.05 !important; + } + + .\32xl\:focus\:placeholder-opacity-5:focus::placeholder { + --tw-placeholder-opacity: 0.05 !important; + } + + .\32xl\:focus\:placeholder-opacity-10:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.1 !important; + } + + .\32xl\:focus\:placeholder-opacity-10:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.1 !important; + } + + .\32xl\:focus\:placeholder-opacity-10:focus::placeholder { + --tw-placeholder-opacity: 0.1 !important; + } + + .\32xl\:focus\:placeholder-opacity-20:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.2 !important; + } + + .\32xl\:focus\:placeholder-opacity-20:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.2 !important; + } + + .\32xl\:focus\:placeholder-opacity-20:focus::placeholder { + --tw-placeholder-opacity: 0.2 !important; + } + + .\32xl\:focus\:placeholder-opacity-25:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.25 !important; + } + + .\32xl\:focus\:placeholder-opacity-25:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.25 !important; + } + + .\32xl\:focus\:placeholder-opacity-25:focus::placeholder { + --tw-placeholder-opacity: 0.25 !important; + } + + .\32xl\:focus\:placeholder-opacity-30:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.3 !important; + } + + .\32xl\:focus\:placeholder-opacity-30:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.3 !important; + } + + .\32xl\:focus\:placeholder-opacity-30:focus::placeholder { + --tw-placeholder-opacity: 0.3 !important; + } + + .\32xl\:focus\:placeholder-opacity-40:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.4 !important; + } + + .\32xl\:focus\:placeholder-opacity-40:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.4 !important; + } + + .\32xl\:focus\:placeholder-opacity-40:focus::placeholder { + --tw-placeholder-opacity: 0.4 !important; + } + + .\32xl\:focus\:placeholder-opacity-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.5 !important; + } + + .\32xl\:focus\:placeholder-opacity-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.5 !important; + } + + .\32xl\:focus\:placeholder-opacity-50:focus::placeholder { + --tw-placeholder-opacity: 0.5 !important; + } + + .\32xl\:focus\:placeholder-opacity-60:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.6 !important; + } + + .\32xl\:focus\:placeholder-opacity-60:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.6 !important; + } + + .\32xl\:focus\:placeholder-opacity-60:focus::placeholder { + --tw-placeholder-opacity: 0.6 !important; + } + + .\32xl\:focus\:placeholder-opacity-70:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.7 !important; + } + + .\32xl\:focus\:placeholder-opacity-70:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.7 !important; + } + + .\32xl\:focus\:placeholder-opacity-70:focus::placeholder { + --tw-placeholder-opacity: 0.7 !important; + } + + .\32xl\:focus\:placeholder-opacity-75:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.75 !important; + } + + .\32xl\:focus\:placeholder-opacity-75:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.75 !important; + } + + .\32xl\:focus\:placeholder-opacity-75:focus::placeholder { + --tw-placeholder-opacity: 0.75 !important; + } + + .\32xl\:focus\:placeholder-opacity-80:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.8 !important; + } + + .\32xl\:focus\:placeholder-opacity-80:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.8 !important; + } + + .\32xl\:focus\:placeholder-opacity-80:focus::placeholder { + --tw-placeholder-opacity: 0.8 !important; + } + + .\32xl\:focus\:placeholder-opacity-90:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.9 !important; + } + + .\32xl\:focus\:placeholder-opacity-90:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.9 !important; + } + + .\32xl\:focus\:placeholder-opacity-90:focus::placeholder { + --tw-placeholder-opacity: 0.9 !important; + } + + .\32xl\:focus\:placeholder-opacity-95:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.95 !important; + } + + .\32xl\:focus\:placeholder-opacity-95:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.95 !important; + } + + .\32xl\:focus\:placeholder-opacity-95:focus::placeholder { + --tw-placeholder-opacity: 0.95 !important; + } + + .\32xl\:focus\:placeholder-opacity-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1 !important; + } + + .\32xl\:focus\:placeholder-opacity-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1 !important; + } + + .\32xl\:focus\:placeholder-opacity-100:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + } + + .\32xl\:pointer-events-none { + pointer-events: none !important; + } + + .\32xl\:pointer-events-auto { + pointer-events: auto !important; + } + + .\32xl\:static { + position: static !important; + } + + .\32xl\:fixed { + position: fixed !important; + } + + .\32xl\:absolute { + position: absolute !important; + } + + .\32xl\:relative { + position: relative !important; + } + + .\32xl\:sticky { + position: sticky !important; + } + + .\32xl\:inset-0 { + top: 0px !important; + right: 0px !important; + bottom: 0px !important; + left: 0px !important; + } + + .\32xl\:inset-1 { + top: 0.25rem !important; + right: 0.25rem !important; + bottom: 0.25rem !important; + left: 0.25rem !important; + } + + .\32xl\:inset-2 { + top: 0.5rem !important; + right: 0.5rem !important; + bottom: 0.5rem !important; + left: 0.5rem !important; + } + + .\32xl\:inset-3 { + top: 0.75rem !important; + right: 0.75rem !important; + bottom: 0.75rem !important; + left: 0.75rem !important; + } + + .\32xl\:inset-4 { + top: 1rem !important; + right: 1rem !important; + bottom: 1rem !important; + left: 1rem !important; + } + + .\32xl\:inset-5 { + top: 1.25rem !important; + right: 1.25rem !important; + bottom: 1.25rem !important; + left: 1.25rem !important; + } + + .\32xl\:inset-6 { + top: 1.5rem !important; + right: 1.5rem !important; + bottom: 1.5rem !important; + left: 1.5rem !important; + } + + .\32xl\:inset-7 { + top: 1.75rem !important; + right: 1.75rem !important; + bottom: 1.75rem !important; + left: 1.75rem !important; + } + + .\32xl\:inset-8 { + top: 2rem !important; + right: 2rem !important; + bottom: 2rem !important; + left: 2rem !important; + } + + .\32xl\:inset-9 { + top: 2.25rem !important; + right: 2.25rem !important; + bottom: 2.25rem !important; + left: 2.25rem !important; + } + + .\32xl\:inset-10 { + top: 2.5rem !important; + right: 2.5rem !important; + bottom: 2.5rem !important; + left: 2.5rem !important; + } + + .\32xl\:inset-11 { + top: 2.75rem !important; + right: 2.75rem !important; + bottom: 2.75rem !important; + left: 2.75rem !important; + } + + .\32xl\:inset-12 { + top: 3rem !important; + right: 3rem !important; + bottom: 3rem !important; + left: 3rem !important; + } + + .\32xl\:inset-14 { + top: 3.5rem !important; + right: 3.5rem !important; + bottom: 3.5rem !important; + left: 3.5rem !important; + } + + .\32xl\:inset-16 { + top: 4rem !important; + right: 4rem !important; + bottom: 4rem !important; + left: 4rem !important; + } + + .\32xl\:inset-20 { + top: 5rem !important; + right: 5rem !important; + bottom: 5rem !important; + left: 5rem !important; + } + + .\32xl\:inset-24 { + top: 6rem !important; + right: 6rem !important; + bottom: 6rem !important; + left: 6rem !important; + } + + .\32xl\:inset-28 { + top: 7rem !important; + right: 7rem !important; + bottom: 7rem !important; + left: 7rem !important; + } + + .\32xl\:inset-32 { + top: 8rem !important; + right: 8rem !important; + bottom: 8rem !important; + left: 8rem !important; + } + + .\32xl\:inset-36 { + top: 9rem !important; + right: 9rem !important; + bottom: 9rem !important; + left: 9rem !important; + } + + .\32xl\:inset-40 { + top: 10rem !important; + right: 10rem !important; + bottom: 10rem !important; + left: 10rem !important; + } + + .\32xl\:inset-44 { + top: 11rem !important; + right: 11rem !important; + bottom: 11rem !important; + left: 11rem !important; + } + + .\32xl\:inset-48 { + top: 12rem !important; + right: 12rem !important; + bottom: 12rem !important; + left: 12rem !important; + } + + .\32xl\:inset-52 { + top: 13rem !important; + right: 13rem !important; + bottom: 13rem !important; + left: 13rem !important; + } + + .\32xl\:inset-56 { + top: 14rem !important; + right: 14rem !important; + bottom: 14rem !important; + left: 14rem !important; + } + + .\32xl\:inset-60 { + top: 15rem !important; + right: 15rem !important; + bottom: 15rem !important; + left: 15rem !important; + } + + .\32xl\:inset-64 { + top: 16rem !important; + right: 16rem !important; + bottom: 16rem !important; + left: 16rem !important; + } + + .\32xl\:inset-72 { + top: 18rem !important; + right: 18rem !important; + bottom: 18rem !important; + left: 18rem !important; + } + + .\32xl\:inset-80 { + top: 20rem !important; + right: 20rem !important; + bottom: 20rem !important; + left: 20rem !important; + } + + .\32xl\:inset-96 { + top: 24rem !important; + right: 24rem !important; + bottom: 24rem !important; + left: 24rem !important; + } + + .\32xl\:inset-auto { + top: auto !important; + right: auto !important; + bottom: auto !important; + left: auto !important; + } + + .\32xl\:inset-px { + top: 1px !important; + right: 1px !important; + bottom: 1px !important; + left: 1px !important; + } + + .\32xl\:inset-0\.5 { + top: 0.125rem !important; + right: 0.125rem !important; + bottom: 0.125rem !important; + left: 0.125rem !important; + } + + .\32xl\:inset-1\.5 { + top: 0.375rem !important; + right: 0.375rem !important; + bottom: 0.375rem !important; + left: 0.375rem !important; + } + + .\32xl\:inset-2\.5 { + top: 0.625rem !important; + right: 0.625rem !important; + bottom: 0.625rem !important; + left: 0.625rem !important; + } + + .\32xl\:inset-3\.5 { + top: 0.875rem !important; + right: 0.875rem !important; + bottom: 0.875rem !important; + left: 0.875rem !important; + } + + .\32xl\:-inset-0 { + top: 0px !important; + right: 0px !important; + bottom: 0px !important; + left: 0px !important; + } + + .\32xl\:-inset-1 { + top: -0.25rem !important; + right: -0.25rem !important; + bottom: -0.25rem !important; + left: -0.25rem !important; + } + + .\32xl\:-inset-2 { + top: -0.5rem !important; + right: -0.5rem !important; + bottom: -0.5rem !important; + left: -0.5rem !important; + } + + .\32xl\:-inset-3 { + top: -0.75rem !important; + right: -0.75rem !important; + bottom: -0.75rem !important; + left: -0.75rem !important; + } + + .\32xl\:-inset-4 { + top: -1rem !important; + right: -1rem !important; + bottom: -1rem !important; + left: -1rem !important; + } + + .\32xl\:-inset-5 { + top: -1.25rem !important; + right: -1.25rem !important; + bottom: -1.25rem !important; + left: -1.25rem !important; + } + + .\32xl\:-inset-6 { + top: -1.5rem !important; + right: -1.5rem !important; + bottom: -1.5rem !important; + left: -1.5rem !important; + } + + .\32xl\:-inset-7 { + top: -1.75rem !important; + right: -1.75rem !important; + bottom: -1.75rem !important; + left: -1.75rem !important; + } + + .\32xl\:-inset-8 { + top: -2rem !important; + right: -2rem !important; + bottom: -2rem !important; + left: -2rem !important; + } + + .\32xl\:-inset-9 { + top: -2.25rem !important; + right: -2.25rem !important; + bottom: -2.25rem !important; + left: -2.25rem !important; + } + + .\32xl\:-inset-10 { + top: -2.5rem !important; + right: -2.5rem !important; + bottom: -2.5rem !important; + left: -2.5rem !important; + } + + .\32xl\:-inset-11 { + top: -2.75rem !important; + right: -2.75rem !important; + bottom: -2.75rem !important; + left: -2.75rem !important; + } + + .\32xl\:-inset-12 { + top: -3rem !important; + right: -3rem !important; + bottom: -3rem !important; + left: -3rem !important; + } + + .\32xl\:-inset-14 { + top: -3.5rem !important; + right: -3.5rem !important; + bottom: -3.5rem !important; + left: -3.5rem !important; + } + + .\32xl\:-inset-16 { + top: -4rem !important; + right: -4rem !important; + bottom: -4rem !important; + left: -4rem !important; + } + + .\32xl\:-inset-20 { + top: -5rem !important; + right: -5rem !important; + bottom: -5rem !important; + left: -5rem !important; + } + + .\32xl\:-inset-24 { + top: -6rem !important; + right: -6rem !important; + bottom: -6rem !important; + left: -6rem !important; + } + + .\32xl\:-inset-28 { + top: -7rem !important; + right: -7rem !important; + bottom: -7rem !important; + left: -7rem !important; + } + + .\32xl\:-inset-32 { + top: -8rem !important; + right: -8rem !important; + bottom: -8rem !important; + left: -8rem !important; + } + + .\32xl\:-inset-36 { + top: -9rem !important; + right: -9rem !important; + bottom: -9rem !important; + left: -9rem !important; + } + + .\32xl\:-inset-40 { + top: -10rem !important; + right: -10rem !important; + bottom: -10rem !important; + left: -10rem !important; + } + + .\32xl\:-inset-44 { + top: -11rem !important; + right: -11rem !important; + bottom: -11rem !important; + left: -11rem !important; + } + + .\32xl\:-inset-48 { + top: -12rem !important; + right: -12rem !important; + bottom: -12rem !important; + left: -12rem !important; + } + + .\32xl\:-inset-52 { + top: -13rem !important; + right: -13rem !important; + bottom: -13rem !important; + left: -13rem !important; + } + + .\32xl\:-inset-56 { + top: -14rem !important; + right: -14rem !important; + bottom: -14rem !important; + left: -14rem !important; + } + + .\32xl\:-inset-60 { + top: -15rem !important; + right: -15rem !important; + bottom: -15rem !important; + left: -15rem !important; + } + + .\32xl\:-inset-64 { + top: -16rem !important; + right: -16rem !important; + bottom: -16rem !important; + left: -16rem !important; + } + + .\32xl\:-inset-72 { + top: -18rem !important; + right: -18rem !important; + bottom: -18rem !important; + left: -18rem !important; + } + + .\32xl\:-inset-80 { + top: -20rem !important; + right: -20rem !important; + bottom: -20rem !important; + left: -20rem !important; + } + + .\32xl\:-inset-96 { + top: -24rem !important; + right: -24rem !important; + bottom: -24rem !important; + left: -24rem !important; + } + + .\32xl\:-inset-px { + top: -1px !important; + right: -1px !important; + bottom: -1px !important; + left: -1px !important; + } + + .\32xl\:-inset-0\.5 { + top: -0.125rem !important; + right: -0.125rem !important; + bottom: -0.125rem !important; + left: -0.125rem !important; + } + + .\32xl\:-inset-1\.5 { + top: -0.375rem !important; + right: -0.375rem !important; + bottom: -0.375rem !important; + left: -0.375rem !important; + } + + .\32xl\:-inset-2\.5 { + top: -0.625rem !important; + right: -0.625rem !important; + bottom: -0.625rem !important; + left: -0.625rem !important; + } + + .\32xl\:-inset-3\.5 { + top: -0.875rem !important; + right: -0.875rem !important; + bottom: -0.875rem !important; + left: -0.875rem !important; + } + + .\32xl\:inset-1\/2 { + top: 50% !important; + right: 50% !important; + bottom: 50% !important; + left: 50% !important; + } + + .\32xl\:inset-1\/3 { + top: 33.333333% !important; + right: 33.333333% !important; + bottom: 33.333333% !important; + left: 33.333333% !important; + } + + .\32xl\:inset-2\/3 { + top: 66.666667% !important; + right: 66.666667% !important; + bottom: 66.666667% !important; + left: 66.666667% !important; + } + + .\32xl\:inset-1\/4 { + top: 25% !important; + right: 25% !important; + bottom: 25% !important; + left: 25% !important; + } + + .\32xl\:inset-2\/4 { + top: 50% !important; + right: 50% !important; + bottom: 50% !important; + left: 50% !important; + } + + .\32xl\:inset-3\/4 { + top: 75% !important; + right: 75% !important; + bottom: 75% !important; + left: 75% !important; + } + + .\32xl\:inset-full { + top: 100% !important; + right: 100% !important; + bottom: 100% !important; + left: 100% !important; + } + + .\32xl\:-inset-1\/2 { + top: -50% !important; + right: -50% !important; + bottom: -50% !important; + left: -50% !important; + } + + .\32xl\:-inset-1\/3 { + top: -33.333333% !important; + right: -33.333333% !important; + bottom: -33.333333% !important; + left: -33.333333% !important; + } + + .\32xl\:-inset-2\/3 { + top: -66.666667% !important; + right: -66.666667% !important; + bottom: -66.666667% !important; + left: -66.666667% !important; + } + + .\32xl\:-inset-1\/4 { + top: -25% !important; + right: -25% !important; + bottom: -25% !important; + left: -25% !important; + } + + .\32xl\:-inset-2\/4 { + top: -50% !important; + right: -50% !important; + bottom: -50% !important; + left: -50% !important; + } + + .\32xl\:-inset-3\/4 { + top: -75% !important; + right: -75% !important; + bottom: -75% !important; + left: -75% !important; + } + + .\32xl\:-inset-full { + top: -100% !important; + right: -100% !important; + bottom: -100% !important; + left: -100% !important; + } + + .\32xl\:inset-y-0 { + top: 0px !important; + bottom: 0px !important; + } + + .\32xl\:inset-x-0 { + right: 0px !important; + left: 0px !important; + } + + .\32xl\:inset-y-1 { + top: 0.25rem !important; + bottom: 0.25rem !important; + } + + .\32xl\:inset-x-1 { + right: 0.25rem !important; + left: 0.25rem !important; + } + + .\32xl\:inset-y-2 { + top: 0.5rem !important; + bottom: 0.5rem !important; + } + + .\32xl\:inset-x-2 { + right: 0.5rem !important; + left: 0.5rem !important; + } + + .\32xl\:inset-y-3 { + top: 0.75rem !important; + bottom: 0.75rem !important; + } + + .\32xl\:inset-x-3 { + right: 0.75rem !important; + left: 0.75rem !important; + } + + .\32xl\:inset-y-4 { + top: 1rem !important; + bottom: 1rem !important; + } + + .\32xl\:inset-x-4 { + right: 1rem !important; + left: 1rem !important; + } + + .\32xl\:inset-y-5 { + top: 1.25rem !important; + bottom: 1.25rem !important; + } + + .\32xl\:inset-x-5 { + right: 1.25rem !important; + left: 1.25rem !important; + } + + .\32xl\:inset-y-6 { + top: 1.5rem !important; + bottom: 1.5rem !important; + } + + .\32xl\:inset-x-6 { + right: 1.5rem !important; + left: 1.5rem !important; + } + + .\32xl\:inset-y-7 { + top: 1.75rem !important; + bottom: 1.75rem !important; + } + + .\32xl\:inset-x-7 { + right: 1.75rem !important; + left: 1.75rem !important; + } + + .\32xl\:inset-y-8 { + top: 2rem !important; + bottom: 2rem !important; + } + + .\32xl\:inset-x-8 { + right: 2rem !important; + left: 2rem !important; + } + + .\32xl\:inset-y-9 { + top: 2.25rem !important; + bottom: 2.25rem !important; + } + + .\32xl\:inset-x-9 { + right: 2.25rem !important; + left: 2.25rem !important; + } + + .\32xl\:inset-y-10 { + top: 2.5rem !important; + bottom: 2.5rem !important; + } + + .\32xl\:inset-x-10 { + right: 2.5rem !important; + left: 2.5rem !important; + } + + .\32xl\:inset-y-11 { + top: 2.75rem !important; + bottom: 2.75rem !important; + } + + .\32xl\:inset-x-11 { + right: 2.75rem !important; + left: 2.75rem !important; + } + + .\32xl\:inset-y-12 { + top: 3rem !important; + bottom: 3rem !important; + } + + .\32xl\:inset-x-12 { + right: 3rem !important; + left: 3rem !important; + } + + .\32xl\:inset-y-14 { + top: 3.5rem !important; + bottom: 3.5rem !important; + } + + .\32xl\:inset-x-14 { + right: 3.5rem !important; + left: 3.5rem !important; + } + + .\32xl\:inset-y-16 { + top: 4rem !important; + bottom: 4rem !important; + } + + .\32xl\:inset-x-16 { + right: 4rem !important; + left: 4rem !important; + } + + .\32xl\:inset-y-20 { + top: 5rem !important; + bottom: 5rem !important; + } + + .\32xl\:inset-x-20 { + right: 5rem !important; + left: 5rem !important; + } + + .\32xl\:inset-y-24 { + top: 6rem !important; + bottom: 6rem !important; + } + + .\32xl\:inset-x-24 { + right: 6rem !important; + left: 6rem !important; + } + + .\32xl\:inset-y-28 { + top: 7rem !important; + bottom: 7rem !important; + } + + .\32xl\:inset-x-28 { + right: 7rem !important; + left: 7rem !important; + } + + .\32xl\:inset-y-32 { + top: 8rem !important; + bottom: 8rem !important; + } + + .\32xl\:inset-x-32 { + right: 8rem !important; + left: 8rem !important; + } + + .\32xl\:inset-y-36 { + top: 9rem !important; + bottom: 9rem !important; + } + + .\32xl\:inset-x-36 { + right: 9rem !important; + left: 9rem !important; + } + + .\32xl\:inset-y-40 { + top: 10rem !important; + bottom: 10rem !important; + } + + .\32xl\:inset-x-40 { + right: 10rem !important; + left: 10rem !important; + } + + .\32xl\:inset-y-44 { + top: 11rem !important; + bottom: 11rem !important; + } + + .\32xl\:inset-x-44 { + right: 11rem !important; + left: 11rem !important; + } + + .\32xl\:inset-y-48 { + top: 12rem !important; + bottom: 12rem !important; + } + + .\32xl\:inset-x-48 { + right: 12rem !important; + left: 12rem !important; + } + + .\32xl\:inset-y-52 { + top: 13rem !important; + bottom: 13rem !important; + } + + .\32xl\:inset-x-52 { + right: 13rem !important; + left: 13rem !important; + } + + .\32xl\:inset-y-56 { + top: 14rem !important; + bottom: 14rem !important; + } + + .\32xl\:inset-x-56 { + right: 14rem !important; + left: 14rem !important; + } + + .\32xl\:inset-y-60 { + top: 15rem !important; + bottom: 15rem !important; + } + + .\32xl\:inset-x-60 { + right: 15rem !important; + left: 15rem !important; + } + + .\32xl\:inset-y-64 { + top: 16rem !important; + bottom: 16rem !important; + } + + .\32xl\:inset-x-64 { + right: 16rem !important; + left: 16rem !important; + } + + .\32xl\:inset-y-72 { + top: 18rem !important; + bottom: 18rem !important; + } + + .\32xl\:inset-x-72 { + right: 18rem !important; + left: 18rem !important; + } + + .\32xl\:inset-y-80 { + top: 20rem !important; + bottom: 20rem !important; + } + + .\32xl\:inset-x-80 { + right: 20rem !important; + left: 20rem !important; + } + + .\32xl\:inset-y-96 { + top: 24rem !important; + bottom: 24rem !important; + } + + .\32xl\:inset-x-96 { + right: 24rem !important; + left: 24rem !important; + } + + .\32xl\:inset-y-auto { + top: auto !important; + bottom: auto !important; + } + + .\32xl\:inset-x-auto { + right: auto !important; + left: auto !important; + } + + .\32xl\:inset-y-px { + top: 1px !important; + bottom: 1px !important; + } + + .\32xl\:inset-x-px { + right: 1px !important; + left: 1px !important; + } + + .\32xl\:inset-y-0\.5 { + top: 0.125rem !important; + bottom: 0.125rem !important; + } + + .\32xl\:inset-x-0\.5 { + right: 0.125rem !important; + left: 0.125rem !important; + } + + .\32xl\:inset-y-1\.5 { + top: 0.375rem !important; + bottom: 0.375rem !important; + } + + .\32xl\:inset-x-1\.5 { + right: 0.375rem !important; + left: 0.375rem !important; + } + + .\32xl\:inset-y-2\.5 { + top: 0.625rem !important; + bottom: 0.625rem !important; + } + + .\32xl\:inset-x-2\.5 { + right: 0.625rem !important; + left: 0.625rem !important; + } + + .\32xl\:inset-y-3\.5 { + top: 0.875rem !important; + bottom: 0.875rem !important; + } + + .\32xl\:inset-x-3\.5 { + right: 0.875rem !important; + left: 0.875rem !important; + } + + .\32xl\:-inset-y-0 { + top: 0px !important; + bottom: 0px !important; + } + + .\32xl\:-inset-x-0 { + right: 0px !important; + left: 0px !important; + } + + .\32xl\:-inset-y-1 { + top: -0.25rem !important; + bottom: -0.25rem !important; + } + + .\32xl\:-inset-x-1 { + right: -0.25rem !important; + left: -0.25rem !important; + } + + .\32xl\:-inset-y-2 { + top: -0.5rem !important; + bottom: -0.5rem !important; + } + + .\32xl\:-inset-x-2 { + right: -0.5rem !important; + left: -0.5rem !important; + } + + .\32xl\:-inset-y-3 { + top: -0.75rem !important; + bottom: -0.75rem !important; + } + + .\32xl\:-inset-x-3 { + right: -0.75rem !important; + left: -0.75rem !important; + } + + .\32xl\:-inset-y-4 { + top: -1rem !important; + bottom: -1rem !important; + } + + .\32xl\:-inset-x-4 { + right: -1rem !important; + left: -1rem !important; + } + + .\32xl\:-inset-y-5 { + top: -1.25rem !important; + bottom: -1.25rem !important; + } + + .\32xl\:-inset-x-5 { + right: -1.25rem !important; + left: -1.25rem !important; + } + + .\32xl\:-inset-y-6 { + top: -1.5rem !important; + bottom: -1.5rem !important; + } + + .\32xl\:-inset-x-6 { + right: -1.5rem !important; + left: -1.5rem !important; + } + + .\32xl\:-inset-y-7 { + top: -1.75rem !important; + bottom: -1.75rem !important; + } + + .\32xl\:-inset-x-7 { + right: -1.75rem !important; + left: -1.75rem !important; + } + + .\32xl\:-inset-y-8 { + top: -2rem !important; + bottom: -2rem !important; + } + + .\32xl\:-inset-x-8 { + right: -2rem !important; + left: -2rem !important; + } + + .\32xl\:-inset-y-9 { + top: -2.25rem !important; + bottom: -2.25rem !important; + } + + .\32xl\:-inset-x-9 { + right: -2.25rem !important; + left: -2.25rem !important; + } + + .\32xl\:-inset-y-10 { + top: -2.5rem !important; + bottom: -2.5rem !important; + } + + .\32xl\:-inset-x-10 { + right: -2.5rem !important; + left: -2.5rem !important; + } + + .\32xl\:-inset-y-11 { + top: -2.75rem !important; + bottom: -2.75rem !important; + } + + .\32xl\:-inset-x-11 { + right: -2.75rem !important; + left: -2.75rem !important; + } + + .\32xl\:-inset-y-12 { + top: -3rem !important; + bottom: -3rem !important; + } + + .\32xl\:-inset-x-12 { + right: -3rem !important; + left: -3rem !important; + } + + .\32xl\:-inset-y-14 { + top: -3.5rem !important; + bottom: -3.5rem !important; + } + + .\32xl\:-inset-x-14 { + right: -3.5rem !important; + left: -3.5rem !important; + } + + .\32xl\:-inset-y-16 { + top: -4rem !important; + bottom: -4rem !important; + } + + .\32xl\:-inset-x-16 { + right: -4rem !important; + left: -4rem !important; + } + + .\32xl\:-inset-y-20 { + top: -5rem !important; + bottom: -5rem !important; + } + + .\32xl\:-inset-x-20 { + right: -5rem !important; + left: -5rem !important; + } + + .\32xl\:-inset-y-24 { + top: -6rem !important; + bottom: -6rem !important; + } + + .\32xl\:-inset-x-24 { + right: -6rem !important; + left: -6rem !important; + } + + .\32xl\:-inset-y-28 { + top: -7rem !important; + bottom: -7rem !important; + } + + .\32xl\:-inset-x-28 { + right: -7rem !important; + left: -7rem !important; + } + + .\32xl\:-inset-y-32 { + top: -8rem !important; + bottom: -8rem !important; + } + + .\32xl\:-inset-x-32 { + right: -8rem !important; + left: -8rem !important; + } + + .\32xl\:-inset-y-36 { + top: -9rem !important; + bottom: -9rem !important; + } + + .\32xl\:-inset-x-36 { + right: -9rem !important; + left: -9rem !important; + } + + .\32xl\:-inset-y-40 { + top: -10rem !important; + bottom: -10rem !important; + } + + .\32xl\:-inset-x-40 { + right: -10rem !important; + left: -10rem !important; + } + + .\32xl\:-inset-y-44 { + top: -11rem !important; + bottom: -11rem !important; + } + + .\32xl\:-inset-x-44 { + right: -11rem !important; + left: -11rem !important; + } + + .\32xl\:-inset-y-48 { + top: -12rem !important; + bottom: -12rem !important; + } + + .\32xl\:-inset-x-48 { + right: -12rem !important; + left: -12rem !important; + } + + .\32xl\:-inset-y-52 { + top: -13rem !important; + bottom: -13rem !important; + } + + .\32xl\:-inset-x-52 { + right: -13rem !important; + left: -13rem !important; + } + + .\32xl\:-inset-y-56 { + top: -14rem !important; + bottom: -14rem !important; + } + + .\32xl\:-inset-x-56 { + right: -14rem !important; + left: -14rem !important; + } + + .\32xl\:-inset-y-60 { + top: -15rem !important; + bottom: -15rem !important; + } + + .\32xl\:-inset-x-60 { + right: -15rem !important; + left: -15rem !important; + } + + .\32xl\:-inset-y-64 { + top: -16rem !important; + bottom: -16rem !important; + } + + .\32xl\:-inset-x-64 { + right: -16rem !important; + left: -16rem !important; + } + + .\32xl\:-inset-y-72 { + top: -18rem !important; + bottom: -18rem !important; + } + + .\32xl\:-inset-x-72 { + right: -18rem !important; + left: -18rem !important; + } + + .\32xl\:-inset-y-80 { + top: -20rem !important; + bottom: -20rem !important; + } + + .\32xl\:-inset-x-80 { + right: -20rem !important; + left: -20rem !important; + } + + .\32xl\:-inset-y-96 { + top: -24rem !important; + bottom: -24rem !important; + } + + .\32xl\:-inset-x-96 { + right: -24rem !important; + left: -24rem !important; + } + + .\32xl\:-inset-y-px { + top: -1px !important; + bottom: -1px !important; + } + + .\32xl\:-inset-x-px { + right: -1px !important; + left: -1px !important; + } + + .\32xl\:-inset-y-0\.5 { + top: -0.125rem !important; + bottom: -0.125rem !important; + } + + .\32xl\:-inset-x-0\.5 { + right: -0.125rem !important; + left: -0.125rem !important; + } + + .\32xl\:-inset-y-1\.5 { + top: -0.375rem !important; + bottom: -0.375rem !important; + } + + .\32xl\:-inset-x-1\.5 { + right: -0.375rem !important; + left: -0.375rem !important; + } + + .\32xl\:-inset-y-2\.5 { + top: -0.625rem !important; + bottom: -0.625rem !important; + } + + .\32xl\:-inset-x-2\.5 { + right: -0.625rem !important; + left: -0.625rem !important; + } + + .\32xl\:-inset-y-3\.5 { + top: -0.875rem !important; + bottom: -0.875rem !important; + } + + .\32xl\:-inset-x-3\.5 { + right: -0.875rem !important; + left: -0.875rem !important; + } + + .\32xl\:inset-y-1\/2 { + top: 50% !important; + bottom: 50% !important; + } + + .\32xl\:inset-x-1\/2 { + right: 50% !important; + left: 50% !important; + } + + .\32xl\:inset-y-1\/3 { + top: 33.333333% !important; + bottom: 33.333333% !important; + } + + .\32xl\:inset-x-1\/3 { + right: 33.333333% !important; + left: 33.333333% !important; + } + + .\32xl\:inset-y-2\/3 { + top: 66.666667% !important; + bottom: 66.666667% !important; + } + + .\32xl\:inset-x-2\/3 { + right: 66.666667% !important; + left: 66.666667% !important; + } + + .\32xl\:inset-y-1\/4 { + top: 25% !important; + bottom: 25% !important; + } + + .\32xl\:inset-x-1\/4 { + right: 25% !important; + left: 25% !important; + } + + .\32xl\:inset-y-2\/4 { + top: 50% !important; + bottom: 50% !important; + } + + .\32xl\:inset-x-2\/4 { + right: 50% !important; + left: 50% !important; + } + + .\32xl\:inset-y-3\/4 { + top: 75% !important; + bottom: 75% !important; + } + + .\32xl\:inset-x-3\/4 { + right: 75% !important; + left: 75% !important; + } + + .\32xl\:inset-y-full { + top: 100% !important; + bottom: 100% !important; + } + + .\32xl\:inset-x-full { + right: 100% !important; + left: 100% !important; + } + + .\32xl\:-inset-y-1\/2 { + top: -50% !important; + bottom: -50% !important; + } + + .\32xl\:-inset-x-1\/2 { + right: -50% !important; + left: -50% !important; + } + + .\32xl\:-inset-y-1\/3 { + top: -33.333333% !important; + bottom: -33.333333% !important; + } + + .\32xl\:-inset-x-1\/3 { + right: -33.333333% !important; + left: -33.333333% !important; + } + + .\32xl\:-inset-y-2\/3 { + top: -66.666667% !important; + bottom: -66.666667% !important; + } + + .\32xl\:-inset-x-2\/3 { + right: -66.666667% !important; + left: -66.666667% !important; + } + + .\32xl\:-inset-y-1\/4 { + top: -25% !important; + bottom: -25% !important; + } + + .\32xl\:-inset-x-1\/4 { + right: -25% !important; + left: -25% !important; + } + + .\32xl\:-inset-y-2\/4 { + top: -50% !important; + bottom: -50% !important; + } + + .\32xl\:-inset-x-2\/4 { + right: -50% !important; + left: -50% !important; + } + + .\32xl\:-inset-y-3\/4 { + top: -75% !important; + bottom: -75% !important; + } + + .\32xl\:-inset-x-3\/4 { + right: -75% !important; + left: -75% !important; + } + + .\32xl\:-inset-y-full { + top: -100% !important; + bottom: -100% !important; + } + + .\32xl\:-inset-x-full { + right: -100% !important; + left: -100% !important; + } + + .\32xl\:top-0 { + top: 0px !important; + } + + .\32xl\:right-0 { + right: 0px !important; + } + + .\32xl\:bottom-0 { + bottom: 0px !important; + } + + .\32xl\:left-0 { + left: 0px !important; + } + + .\32xl\:top-1 { + top: 0.25rem !important; + } + + .\32xl\:right-1 { + right: 0.25rem !important; + } + + .\32xl\:bottom-1 { + bottom: 0.25rem !important; + } + + .\32xl\:left-1 { + left: 0.25rem !important; + } + + .\32xl\:top-2 { + top: 0.5rem !important; + } + + .\32xl\:right-2 { + right: 0.5rem !important; + } + + .\32xl\:bottom-2 { + bottom: 0.5rem !important; + } + + .\32xl\:left-2 { + left: 0.5rem !important; + } + + .\32xl\:top-3 { + top: 0.75rem !important; + } + + .\32xl\:right-3 { + right: 0.75rem !important; + } + + .\32xl\:bottom-3 { + bottom: 0.75rem !important; + } + + .\32xl\:left-3 { + left: 0.75rem !important; + } + + .\32xl\:top-4 { + top: 1rem !important; + } + + .\32xl\:right-4 { + right: 1rem !important; + } + + .\32xl\:bottom-4 { + bottom: 1rem !important; + } + + .\32xl\:left-4 { + left: 1rem !important; + } + + .\32xl\:top-5 { + top: 1.25rem !important; + } + + .\32xl\:right-5 { + right: 1.25rem !important; + } + + .\32xl\:bottom-5 { + bottom: 1.25rem !important; + } + + .\32xl\:left-5 { + left: 1.25rem !important; + } + + .\32xl\:top-6 { + top: 1.5rem !important; + } + + .\32xl\:right-6 { + right: 1.5rem !important; + } + + .\32xl\:bottom-6 { + bottom: 1.5rem !important; + } + + .\32xl\:left-6 { + left: 1.5rem !important; + } + + .\32xl\:top-7 { + top: 1.75rem !important; + } + + .\32xl\:right-7 { + right: 1.75rem !important; + } + + .\32xl\:bottom-7 { + bottom: 1.75rem !important; + } + + .\32xl\:left-7 { + left: 1.75rem !important; + } + + .\32xl\:top-8 { + top: 2rem !important; + } + + .\32xl\:right-8 { + right: 2rem !important; + } + + .\32xl\:bottom-8 { + bottom: 2rem !important; + } + + .\32xl\:left-8 { + left: 2rem !important; + } + + .\32xl\:top-9 { + top: 2.25rem !important; + } + + .\32xl\:right-9 { + right: 2.25rem !important; + } + + .\32xl\:bottom-9 { + bottom: 2.25rem !important; + } + + .\32xl\:left-9 { + left: 2.25rem !important; + } + + .\32xl\:top-10 { + top: 2.5rem !important; + } + + .\32xl\:right-10 { + right: 2.5rem !important; + } + + .\32xl\:bottom-10 { + bottom: 2.5rem !important; + } + + .\32xl\:left-10 { + left: 2.5rem !important; + } + + .\32xl\:top-11 { + top: 2.75rem !important; + } + + .\32xl\:right-11 { + right: 2.75rem !important; + } + + .\32xl\:bottom-11 { + bottom: 2.75rem !important; + } + + .\32xl\:left-11 { + left: 2.75rem !important; + } + + .\32xl\:top-12 { + top: 3rem !important; + } + + .\32xl\:right-12 { + right: 3rem !important; + } + + .\32xl\:bottom-12 { + bottom: 3rem !important; + } + + .\32xl\:left-12 { + left: 3rem !important; + } + + .\32xl\:top-14 { + top: 3.5rem !important; + } + + .\32xl\:right-14 { + right: 3.5rem !important; + } + + .\32xl\:bottom-14 { + bottom: 3.5rem !important; + } + + .\32xl\:left-14 { + left: 3.5rem !important; + } + + .\32xl\:top-16 { + top: 4rem !important; + } + + .\32xl\:right-16 { + right: 4rem !important; + } + + .\32xl\:bottom-16 { + bottom: 4rem !important; + } + + .\32xl\:left-16 { + left: 4rem !important; + } + + .\32xl\:top-20 { + top: 5rem !important; + } + + .\32xl\:right-20 { + right: 5rem !important; + } + + .\32xl\:bottom-20 { + bottom: 5rem !important; + } + + .\32xl\:left-20 { + left: 5rem !important; + } + + .\32xl\:top-24 { + top: 6rem !important; + } + + .\32xl\:right-24 { + right: 6rem !important; + } + + .\32xl\:bottom-24 { + bottom: 6rem !important; + } + + .\32xl\:left-24 { + left: 6rem !important; + } + + .\32xl\:top-28 { + top: 7rem !important; + } + + .\32xl\:right-28 { + right: 7rem !important; + } + + .\32xl\:bottom-28 { + bottom: 7rem !important; + } + + .\32xl\:left-28 { + left: 7rem !important; + } + + .\32xl\:top-32 { + top: 8rem !important; + } + + .\32xl\:right-32 { + right: 8rem !important; + } + + .\32xl\:bottom-32 { + bottom: 8rem !important; + } + + .\32xl\:left-32 { + left: 8rem !important; + } + + .\32xl\:top-36 { + top: 9rem !important; + } + + .\32xl\:right-36 { + right: 9rem !important; + } + + .\32xl\:bottom-36 { + bottom: 9rem !important; + } + + .\32xl\:left-36 { + left: 9rem !important; + } + + .\32xl\:top-40 { + top: 10rem !important; + } + + .\32xl\:right-40 { + right: 10rem !important; + } + + .\32xl\:bottom-40 { + bottom: 10rem !important; + } + + .\32xl\:left-40 { + left: 10rem !important; + } + + .\32xl\:top-44 { + top: 11rem !important; + } + + .\32xl\:right-44 { + right: 11rem !important; + } + + .\32xl\:bottom-44 { + bottom: 11rem !important; + } + + .\32xl\:left-44 { + left: 11rem !important; + } + + .\32xl\:top-48 { + top: 12rem !important; + } + + .\32xl\:right-48 { + right: 12rem !important; + } + + .\32xl\:bottom-48 { + bottom: 12rem !important; + } + + .\32xl\:left-48 { + left: 12rem !important; + } + + .\32xl\:top-52 { + top: 13rem !important; + } + + .\32xl\:right-52 { + right: 13rem !important; + } + + .\32xl\:bottom-52 { + bottom: 13rem !important; + } + + .\32xl\:left-52 { + left: 13rem !important; + } + + .\32xl\:top-56 { + top: 14rem !important; + } + + .\32xl\:right-56 { + right: 14rem !important; + } + + .\32xl\:bottom-56 { + bottom: 14rem !important; + } + + .\32xl\:left-56 { + left: 14rem !important; + } + + .\32xl\:top-60 { + top: 15rem !important; + } + + .\32xl\:right-60 { + right: 15rem !important; + } + + .\32xl\:bottom-60 { + bottom: 15rem !important; + } + + .\32xl\:left-60 { + left: 15rem !important; + } + + .\32xl\:top-64 { + top: 16rem !important; + } + + .\32xl\:right-64 { + right: 16rem !important; + } + + .\32xl\:bottom-64 { + bottom: 16rem !important; + } + + .\32xl\:left-64 { + left: 16rem !important; + } + + .\32xl\:top-72 { + top: 18rem !important; + } + + .\32xl\:right-72 { + right: 18rem !important; + } + + .\32xl\:bottom-72 { + bottom: 18rem !important; + } + + .\32xl\:left-72 { + left: 18rem !important; + } + + .\32xl\:top-80 { + top: 20rem !important; + } + + .\32xl\:right-80 { + right: 20rem !important; + } + + .\32xl\:bottom-80 { + bottom: 20rem !important; + } + + .\32xl\:left-80 { + left: 20rem !important; + } + + .\32xl\:top-96 { + top: 24rem !important; + } + + .\32xl\:right-96 { + right: 24rem !important; + } + + .\32xl\:bottom-96 { + bottom: 24rem !important; + } + + .\32xl\:left-96 { + left: 24rem !important; + } + + .\32xl\:top-auto { + top: auto !important; + } + + .\32xl\:right-auto { + right: auto !important; + } + + .\32xl\:bottom-auto { + bottom: auto !important; + } + + .\32xl\:left-auto { + left: auto !important; + } + + .\32xl\:top-px { + top: 1px !important; + } + + .\32xl\:right-px { + right: 1px !important; + } + + .\32xl\:bottom-px { + bottom: 1px !important; + } + + .\32xl\:left-px { + left: 1px !important; + } + + .\32xl\:top-0\.5 { + top: 0.125rem !important; + } + + .\32xl\:right-0\.5 { + right: 0.125rem !important; + } + + .\32xl\:bottom-0\.5 { + bottom: 0.125rem !important; + } + + .\32xl\:left-0\.5 { + left: 0.125rem !important; + } + + .\32xl\:top-1\.5 { + top: 0.375rem !important; + } + + .\32xl\:right-1\.5 { + right: 0.375rem !important; + } + + .\32xl\:bottom-1\.5 { + bottom: 0.375rem !important; + } + + .\32xl\:left-1\.5 { + left: 0.375rem !important; + } + + .\32xl\:top-2\.5 { + top: 0.625rem !important; + } + + .\32xl\:right-2\.5 { + right: 0.625rem !important; + } + + .\32xl\:bottom-2\.5 { + bottom: 0.625rem !important; + } + + .\32xl\:left-2\.5 { + left: 0.625rem !important; + } + + .\32xl\:top-3\.5 { + top: 0.875rem !important; + } + + .\32xl\:right-3\.5 { + right: 0.875rem !important; + } + + .\32xl\:bottom-3\.5 { + bottom: 0.875rem !important; + } + + .\32xl\:left-3\.5 { + left: 0.875rem !important; + } + + .\32xl\:-top-0 { + top: 0px !important; + } + + .\32xl\:-right-0 { + right: 0px !important; + } + + .\32xl\:-bottom-0 { + bottom: 0px !important; + } + + .\32xl\:-left-0 { + left: 0px !important; + } + + .\32xl\:-top-1 { + top: -0.25rem !important; + } + + .\32xl\:-right-1 { + right: -0.25rem !important; + } + + .\32xl\:-bottom-1 { + bottom: -0.25rem !important; + } + + .\32xl\:-left-1 { + left: -0.25rem !important; + } + + .\32xl\:-top-2 { + top: -0.5rem !important; + } + + .\32xl\:-right-2 { + right: -0.5rem !important; + } + + .\32xl\:-bottom-2 { + bottom: -0.5rem !important; + } + + .\32xl\:-left-2 { + left: -0.5rem !important; + } + + .\32xl\:-top-3 { + top: -0.75rem !important; + } + + .\32xl\:-right-3 { + right: -0.75rem !important; + } + + .\32xl\:-bottom-3 { + bottom: -0.75rem !important; + } + + .\32xl\:-left-3 { + left: -0.75rem !important; + } + + .\32xl\:-top-4 { + top: -1rem !important; + } + + .\32xl\:-right-4 { + right: -1rem !important; + } + + .\32xl\:-bottom-4 { + bottom: -1rem !important; + } + + .\32xl\:-left-4 { + left: -1rem !important; + } + + .\32xl\:-top-5 { + top: -1.25rem !important; + } + + .\32xl\:-right-5 { + right: -1.25rem !important; + } + + .\32xl\:-bottom-5 { + bottom: -1.25rem !important; + } + + .\32xl\:-left-5 { + left: -1.25rem !important; + } + + .\32xl\:-top-6 { + top: -1.5rem !important; + } + + .\32xl\:-right-6 { + right: -1.5rem !important; + } + + .\32xl\:-bottom-6 { + bottom: -1.5rem !important; + } + + .\32xl\:-left-6 { + left: -1.5rem !important; + } + + .\32xl\:-top-7 { + top: -1.75rem !important; + } + + .\32xl\:-right-7 { + right: -1.75rem !important; + } + + .\32xl\:-bottom-7 { + bottom: -1.75rem !important; + } + + .\32xl\:-left-7 { + left: -1.75rem !important; + } + + .\32xl\:-top-8 { + top: -2rem !important; + } + + .\32xl\:-right-8 { + right: -2rem !important; + } + + .\32xl\:-bottom-8 { + bottom: -2rem !important; + } + + .\32xl\:-left-8 { + left: -2rem !important; + } + + .\32xl\:-top-9 { + top: -2.25rem !important; + } + + .\32xl\:-right-9 { + right: -2.25rem !important; + } + + .\32xl\:-bottom-9 { + bottom: -2.25rem !important; + } + + .\32xl\:-left-9 { + left: -2.25rem !important; + } + + .\32xl\:-top-10 { + top: -2.5rem !important; + } + + .\32xl\:-right-10 { + right: -2.5rem !important; + } + + .\32xl\:-bottom-10 { + bottom: -2.5rem !important; + } + + .\32xl\:-left-10 { + left: -2.5rem !important; + } + + .\32xl\:-top-11 { + top: -2.75rem !important; + } + + .\32xl\:-right-11 { + right: -2.75rem !important; + } + + .\32xl\:-bottom-11 { + bottom: -2.75rem !important; + } + + .\32xl\:-left-11 { + left: -2.75rem !important; + } + + .\32xl\:-top-12 { + top: -3rem !important; + } + + .\32xl\:-right-12 { + right: -3rem !important; + } + + .\32xl\:-bottom-12 { + bottom: -3rem !important; + } + + .\32xl\:-left-12 { + left: -3rem !important; + } + + .\32xl\:-top-14 { + top: -3.5rem !important; + } + + .\32xl\:-right-14 { + right: -3.5rem !important; + } + + .\32xl\:-bottom-14 { + bottom: -3.5rem !important; + } + + .\32xl\:-left-14 { + left: -3.5rem !important; + } + + .\32xl\:-top-16 { + top: -4rem !important; + } + + .\32xl\:-right-16 { + right: -4rem !important; + } + + .\32xl\:-bottom-16 { + bottom: -4rem !important; + } + + .\32xl\:-left-16 { + left: -4rem !important; + } + + .\32xl\:-top-20 { + top: -5rem !important; + } + + .\32xl\:-right-20 { + right: -5rem !important; + } + + .\32xl\:-bottom-20 { + bottom: -5rem !important; + } + + .\32xl\:-left-20 { + left: -5rem !important; + } + + .\32xl\:-top-24 { + top: -6rem !important; + } + + .\32xl\:-right-24 { + right: -6rem !important; + } + + .\32xl\:-bottom-24 { + bottom: -6rem !important; + } + + .\32xl\:-left-24 { + left: -6rem !important; + } + + .\32xl\:-top-28 { + top: -7rem !important; + } + + .\32xl\:-right-28 { + right: -7rem !important; + } + + .\32xl\:-bottom-28 { + bottom: -7rem !important; + } + + .\32xl\:-left-28 { + left: -7rem !important; + } + + .\32xl\:-top-32 { + top: -8rem !important; + } + + .\32xl\:-right-32 { + right: -8rem !important; + } + + .\32xl\:-bottom-32 { + bottom: -8rem !important; + } + + .\32xl\:-left-32 { + left: -8rem !important; + } + + .\32xl\:-top-36 { + top: -9rem !important; + } + + .\32xl\:-right-36 { + right: -9rem !important; + } + + .\32xl\:-bottom-36 { + bottom: -9rem !important; + } + + .\32xl\:-left-36 { + left: -9rem !important; + } + + .\32xl\:-top-40 { + top: -10rem !important; + } + + .\32xl\:-right-40 { + right: -10rem !important; + } + + .\32xl\:-bottom-40 { + bottom: -10rem !important; + } + + .\32xl\:-left-40 { + left: -10rem !important; + } + + .\32xl\:-top-44 { + top: -11rem !important; + } + + .\32xl\:-right-44 { + right: -11rem !important; + } + + .\32xl\:-bottom-44 { + bottom: -11rem !important; + } + + .\32xl\:-left-44 { + left: -11rem !important; + } + + .\32xl\:-top-48 { + top: -12rem !important; + } + + .\32xl\:-right-48 { + right: -12rem !important; + } + + .\32xl\:-bottom-48 { + bottom: -12rem !important; + } + + .\32xl\:-left-48 { + left: -12rem !important; + } + + .\32xl\:-top-52 { + top: -13rem !important; + } + + .\32xl\:-right-52 { + right: -13rem !important; + } + + .\32xl\:-bottom-52 { + bottom: -13rem !important; + } + + .\32xl\:-left-52 { + left: -13rem !important; + } + + .\32xl\:-top-56 { + top: -14rem !important; + } + + .\32xl\:-right-56 { + right: -14rem !important; + } + + .\32xl\:-bottom-56 { + bottom: -14rem !important; + } + + .\32xl\:-left-56 { + left: -14rem !important; + } + + .\32xl\:-top-60 { + top: -15rem !important; + } + + .\32xl\:-right-60 { + right: -15rem !important; + } + + .\32xl\:-bottom-60 { + bottom: -15rem !important; + } + + .\32xl\:-left-60 { + left: -15rem !important; + } + + .\32xl\:-top-64 { + top: -16rem !important; + } + + .\32xl\:-right-64 { + right: -16rem !important; + } + + .\32xl\:-bottom-64 { + bottom: -16rem !important; + } + + .\32xl\:-left-64 { + left: -16rem !important; + } + + .\32xl\:-top-72 { + top: -18rem !important; + } + + .\32xl\:-right-72 { + right: -18rem !important; + } + + .\32xl\:-bottom-72 { + bottom: -18rem !important; + } + + .\32xl\:-left-72 { + left: -18rem !important; + } + + .\32xl\:-top-80 { + top: -20rem !important; + } + + .\32xl\:-right-80 { + right: -20rem !important; + } + + .\32xl\:-bottom-80 { + bottom: -20rem !important; + } + + .\32xl\:-left-80 { + left: -20rem !important; + } + + .\32xl\:-top-96 { + top: -24rem !important; + } + + .\32xl\:-right-96 { + right: -24rem !important; + } + + .\32xl\:-bottom-96 { + bottom: -24rem !important; + } + + .\32xl\:-left-96 { + left: -24rem !important; + } + + .\32xl\:-top-px { + top: -1px !important; + } + + .\32xl\:-right-px { + right: -1px !important; + } + + .\32xl\:-bottom-px { + bottom: -1px !important; + } + + .\32xl\:-left-px { + left: -1px !important; + } + + .\32xl\:-top-0\.5 { + top: -0.125rem !important; + } + + .\32xl\:-right-0\.5 { + right: -0.125rem !important; + } + + .\32xl\:-bottom-0\.5 { + bottom: -0.125rem !important; + } + + .\32xl\:-left-0\.5 { + left: -0.125rem !important; + } + + .\32xl\:-top-1\.5 { + top: -0.375rem !important; + } + + .\32xl\:-right-1\.5 { + right: -0.375rem !important; + } + + .\32xl\:-bottom-1\.5 { + bottom: -0.375rem !important; + } + + .\32xl\:-left-1\.5 { + left: -0.375rem !important; + } + + .\32xl\:-top-2\.5 { + top: -0.625rem !important; + } + + .\32xl\:-right-2\.5 { + right: -0.625rem !important; + } + + .\32xl\:-bottom-2\.5 { + bottom: -0.625rem !important; + } + + .\32xl\:-left-2\.5 { + left: -0.625rem !important; + } + + .\32xl\:-top-3\.5 { + top: -0.875rem !important; + } + + .\32xl\:-right-3\.5 { + right: -0.875rem !important; + } + + .\32xl\:-bottom-3\.5 { + bottom: -0.875rem !important; + } + + .\32xl\:-left-3\.5 { + left: -0.875rem !important; + } + + .\32xl\:top-1\/2 { + top: 50% !important; + } + + .\32xl\:right-1\/2 { + right: 50% !important; + } + + .\32xl\:bottom-1\/2 { + bottom: 50% !important; + } + + .\32xl\:left-1\/2 { + left: 50% !important; + } + + .\32xl\:top-1\/3 { + top: 33.333333% !important; + } + + .\32xl\:right-1\/3 { + right: 33.333333% !important; + } + + .\32xl\:bottom-1\/3 { + bottom: 33.333333% !important; + } + + .\32xl\:left-1\/3 { + left: 33.333333% !important; + } + + .\32xl\:top-2\/3 { + top: 66.666667% !important; + } + + .\32xl\:right-2\/3 { + right: 66.666667% !important; + } + + .\32xl\:bottom-2\/3 { + bottom: 66.666667% !important; + } + + .\32xl\:left-2\/3 { + left: 66.666667% !important; + } + + .\32xl\:top-1\/4 { + top: 25% !important; + } + + .\32xl\:right-1\/4 { + right: 25% !important; + } + + .\32xl\:bottom-1\/4 { + bottom: 25% !important; + } + + .\32xl\:left-1\/4 { + left: 25% !important; + } + + .\32xl\:top-2\/4 { + top: 50% !important; + } + + .\32xl\:right-2\/4 { + right: 50% !important; + } + + .\32xl\:bottom-2\/4 { + bottom: 50% !important; + } + + .\32xl\:left-2\/4 { + left: 50% !important; + } + + .\32xl\:top-3\/4 { + top: 75% !important; + } + + .\32xl\:right-3\/4 { + right: 75% !important; + } + + .\32xl\:bottom-3\/4 { + bottom: 75% !important; + } + + .\32xl\:left-3\/4 { + left: 75% !important; + } + + .\32xl\:top-full { + top: 100% !important; + } + + .\32xl\:right-full { + right: 100% !important; + } + + .\32xl\:bottom-full { + bottom: 100% !important; + } + + .\32xl\:left-full { + left: 100% !important; + } + + .\32xl\:-top-1\/2 { + top: -50% !important; + } + + .\32xl\:-right-1\/2 { + right: -50% !important; + } + + .\32xl\:-bottom-1\/2 { + bottom: -50% !important; + } + + .\32xl\:-left-1\/2 { + left: -50% !important; + } + + .\32xl\:-top-1\/3 { + top: -33.333333% !important; + } + + .\32xl\:-right-1\/3 { + right: -33.333333% !important; + } + + .\32xl\:-bottom-1\/3 { + bottom: -33.333333% !important; + } + + .\32xl\:-left-1\/3 { + left: -33.333333% !important; + } + + .\32xl\:-top-2\/3 { + top: -66.666667% !important; + } + + .\32xl\:-right-2\/3 { + right: -66.666667% !important; + } + + .\32xl\:-bottom-2\/3 { + bottom: -66.666667% !important; + } + + .\32xl\:-left-2\/3 { + left: -66.666667% !important; + } + + .\32xl\:-top-1\/4 { + top: -25% !important; + } + + .\32xl\:-right-1\/4 { + right: -25% !important; + } + + .\32xl\:-bottom-1\/4 { + bottom: -25% !important; + } + + .\32xl\:-left-1\/4 { + left: -25% !important; + } + + .\32xl\:-top-2\/4 { + top: -50% !important; + } + + .\32xl\:-right-2\/4 { + right: -50% !important; + } + + .\32xl\:-bottom-2\/4 { + bottom: -50% !important; + } + + .\32xl\:-left-2\/4 { + left: -50% !important; + } + + .\32xl\:-top-3\/4 { + top: -75% !important; + } + + .\32xl\:-right-3\/4 { + right: -75% !important; + } + + .\32xl\:-bottom-3\/4 { + bottom: -75% !important; + } + + .\32xl\:-left-3\/4 { + left: -75% !important; + } + + .\32xl\:-top-full { + top: -100% !important; + } + + .\32xl\:-right-full { + right: -100% !important; + } + + .\32xl\:-bottom-full { + bottom: -100% !important; + } + + .\32xl\:-left-full { + left: -100% !important; + } + + .\32xl\:resize-none { + resize: none !important; + } + + .\32xl\:resize-y { + resize: vertical !important; + } + + .\32xl\:resize-x { + resize: horizontal !important; + } + + .\32xl\:resize { + resize: both !important; + } + + .\32xl\:shadow-sm { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .\32xl\:shadow { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .\32xl\:shadow-md { + --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .\32xl\:shadow-lg { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .\32xl\:shadow-xl { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .\32xl\:shadow-2xl { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .\32xl\:shadow-inner { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .\32xl\:shadow-none { + --tw-shadow: 0 0 #0000 !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .group:hover .\32xl\:group-hover\:shadow-sm { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .group:hover .\32xl\:group-hover\:shadow { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .group:hover .\32xl\:group-hover\:shadow-md { + --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .group:hover .\32xl\:group-hover\:shadow-lg { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .group:hover .\32xl\:group-hover\:shadow-xl { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .group:hover .\32xl\:group-hover\:shadow-2xl { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .group:hover .\32xl\:group-hover\:shadow-inner { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .group:hover .\32xl\:group-hover\:shadow-none { + --tw-shadow: 0 0 #0000 !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .\32xl\:focus-within\:shadow-sm:focus-within { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .\32xl\:focus-within\:shadow:focus-within { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .\32xl\:focus-within\:shadow-md:focus-within { + --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .\32xl\:focus-within\:shadow-lg:focus-within { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .\32xl\:focus-within\:shadow-xl:focus-within { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .\32xl\:focus-within\:shadow-2xl:focus-within { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .\32xl\:focus-within\:shadow-inner:focus-within { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .\32xl\:focus-within\:shadow-none:focus-within { + --tw-shadow: 0 0 #0000 !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .\32xl\:hover\:shadow-sm:hover { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .\32xl\:hover\:shadow:hover { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .\32xl\:hover\:shadow-md:hover { + --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .\32xl\:hover\:shadow-lg:hover { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .\32xl\:hover\:shadow-xl:hover { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .\32xl\:hover\:shadow-2xl:hover { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .\32xl\:hover\:shadow-inner:hover { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .\32xl\:hover\:shadow-none:hover { + --tw-shadow: 0 0 #0000 !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .\32xl\:focus\:shadow-sm:focus { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .\32xl\:focus\:shadow:focus { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .\32xl\:focus\:shadow-md:focus { + --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .\32xl\:focus\:shadow-lg:focus { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .\32xl\:focus\:shadow-xl:focus { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .\32xl\:focus\:shadow-2xl:focus { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .\32xl\:focus\:shadow-inner:focus { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .\32xl\:focus\:shadow-none:focus { + --tw-shadow: 0 0 #0000 !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + } + + .\32xl\:ring-0 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; + } + + .\32xl\:ring-1 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; + } + + .\32xl\:ring-2 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; + } + + .\32xl\:ring-4 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; + } + + .\32xl\:ring-8 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; + } + + .\32xl\:ring { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; + } + + .\32xl\:ring-inset { + --tw-ring-inset: inset !important; + } + + .\32xl\:focus-within\:ring-0:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; + } + + .\32xl\:focus-within\:ring-1:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; + } + + .\32xl\: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) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; + } + + .\32xl\:focus-within\:ring-4:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; + } + + .\32xl\:focus-within\:ring-8:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; + } + + .\32xl\:focus-within\:ring:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; + } + + .\32xl\:focus-within\:ring-inset:focus-within { + --tw-ring-inset: inset !important; + } + + .\32xl\: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) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; + } + + .\32xl\: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) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; + } + + .\32xl\: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) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; + } + + .\32xl\:focus\:ring-4:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; + } + + .\32xl\:focus\:ring-8:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; + } + + .\32xl\:focus\:ring:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; + } + + .\32xl\:focus\:ring-inset:focus { + --tw-ring-inset: inset !important; + } + + .\32xl\:ring-offset-transparent { + --tw-ring-offset-color: transparent !important; + } + + .\32xl\:ring-offset-current { + --tw-ring-offset-color: currentColor !important; + } + + .\32xl\:ring-offset-black { + --tw-ring-offset-color: #000 !important; + } + + .\32xl\:ring-offset-white { + --tw-ring-offset-color: #fff !important; + } + + .\32xl\:ring-offset-gray-50 { + --tw-ring-offset-color: #f9fafb !important; + } + + .\32xl\:ring-offset-gray-100 { + --tw-ring-offset-color: #f3f4f6 !important; + } + + .\32xl\:ring-offset-gray-200 { + --tw-ring-offset-color: #e5e7eb !important; + } + + .\32xl\:ring-offset-gray-300 { + --tw-ring-offset-color: #d1d5db !important; + } + + .\32xl\:ring-offset-gray-400 { + --tw-ring-offset-color: #9ca3af !important; + } + + .\32xl\:ring-offset-gray-500 { + --tw-ring-offset-color: #6b7280 !important; + } + + .\32xl\:ring-offset-gray-600 { + --tw-ring-offset-color: #4b5563 !important; + } + + .\32xl\:ring-offset-gray-700 { + --tw-ring-offset-color: #374151 !important; + } + + .\32xl\:ring-offset-gray-800 { + --tw-ring-offset-color: #1f2937 !important; + } + + .\32xl\:ring-offset-gray-900 { + --tw-ring-offset-color: #111827 !important; + } + + .\32xl\:ring-offset-red-50 { + --tw-ring-offset-color: #fef2f2 !important; + } + + .\32xl\:ring-offset-red-100 { + --tw-ring-offset-color: #fee2e2 !important; + } + + .\32xl\:ring-offset-red-200 { + --tw-ring-offset-color: #fecaca !important; + } + + .\32xl\:ring-offset-red-300 { + --tw-ring-offset-color: #fca5a5 !important; + } + + .\32xl\:ring-offset-red-400 { + --tw-ring-offset-color: #f87171 !important; + } + + .\32xl\:ring-offset-red-500 { + --tw-ring-offset-color: #ef4444 !important; + } + + .\32xl\:ring-offset-red-600 { + --tw-ring-offset-color: #dc2626 !important; + } + + .\32xl\:ring-offset-red-700 { + --tw-ring-offset-color: #b91c1c !important; + } + + .\32xl\:ring-offset-red-800 { + --tw-ring-offset-color: #991b1b !important; + } + + .\32xl\:ring-offset-red-900 { + --tw-ring-offset-color: #7f1d1d !important; + } + + .\32xl\:ring-offset-yellow-50 { + --tw-ring-offset-color: #fffbeb !important; + } + + .\32xl\:ring-offset-yellow-100 { + --tw-ring-offset-color: #fef3c7 !important; + } + + .\32xl\:ring-offset-yellow-200 { + --tw-ring-offset-color: #fde68a !important; + } + + .\32xl\:ring-offset-yellow-300 { + --tw-ring-offset-color: #fcd34d !important; + } + + .\32xl\:ring-offset-yellow-400 { + --tw-ring-offset-color: #fbbf24 !important; + } + + .\32xl\:ring-offset-yellow-500 { + --tw-ring-offset-color: #f59e0b !important; + } + + .\32xl\:ring-offset-yellow-600 { + --tw-ring-offset-color: #d97706 !important; + } + + .\32xl\:ring-offset-yellow-700 { + --tw-ring-offset-color: #b45309 !important; + } + + .\32xl\:ring-offset-yellow-800 { + --tw-ring-offset-color: #92400e !important; + } + + .\32xl\:ring-offset-yellow-900 { + --tw-ring-offset-color: #78350f !important; + } + + .\32xl\:ring-offset-green-50 { + --tw-ring-offset-color: #ecfdf5 !important; + } + + .\32xl\:ring-offset-green-100 { + --tw-ring-offset-color: #d1fae5 !important; + } + + .\32xl\:ring-offset-green-200 { + --tw-ring-offset-color: #a7f3d0 !important; + } + + .\32xl\:ring-offset-green-300 { + --tw-ring-offset-color: #6ee7b7 !important; + } + + .\32xl\:ring-offset-green-400 { + --tw-ring-offset-color: #34d399 !important; + } + + .\32xl\:ring-offset-green-500 { + --tw-ring-offset-color: #10b981 !important; + } + + .\32xl\:ring-offset-green-600 { + --tw-ring-offset-color: #059669 !important; + } + + .\32xl\:ring-offset-green-700 { + --tw-ring-offset-color: #047857 !important; + } + + .\32xl\:ring-offset-green-800 { + --tw-ring-offset-color: #065f46 !important; + } + + .\32xl\:ring-offset-green-900 { + --tw-ring-offset-color: #064e3b !important; + } + + .\32xl\:ring-offset-blue-50 { + --tw-ring-offset-color: #eff6ff !important; + } + + .\32xl\:ring-offset-blue-100 { + --tw-ring-offset-color: #dbeafe !important; + } + + .\32xl\:ring-offset-blue-200 { + --tw-ring-offset-color: #bfdbfe !important; + } + + .\32xl\:ring-offset-blue-300 { + --tw-ring-offset-color: #93c5fd !important; + } + + .\32xl\:ring-offset-blue-400 { + --tw-ring-offset-color: #60a5fa !important; + } + + .\32xl\:ring-offset-blue-500 { + --tw-ring-offset-color: #3b82f6 !important; + } + + .\32xl\:ring-offset-blue-600 { + --tw-ring-offset-color: #2563eb !important; + } + + .\32xl\:ring-offset-blue-700 { + --tw-ring-offset-color: #1d4ed8 !important; + } + + .\32xl\:ring-offset-blue-800 { + --tw-ring-offset-color: #1e40af !important; + } + + .\32xl\:ring-offset-blue-900 { + --tw-ring-offset-color: #1e3a8a !important; + } + + .\32xl\:ring-offset-indigo-50 { + --tw-ring-offset-color: #eef2ff !important; + } + + .\32xl\:ring-offset-indigo-100 { + --tw-ring-offset-color: #e0e7ff !important; + } + + .\32xl\:ring-offset-indigo-200 { + --tw-ring-offset-color: #c7d2fe !important; + } + + .\32xl\:ring-offset-indigo-300 { + --tw-ring-offset-color: #a5b4fc !important; + } + + .\32xl\:ring-offset-indigo-400 { + --tw-ring-offset-color: #818cf8 !important; + } + + .\32xl\:ring-offset-indigo-500 { + --tw-ring-offset-color: #6366f1 !important; + } + + .\32xl\:ring-offset-indigo-600 { + --tw-ring-offset-color: #4f46e5 !important; + } + + .\32xl\:ring-offset-indigo-700 { + --tw-ring-offset-color: #4338ca !important; + } + + .\32xl\:ring-offset-indigo-800 { + --tw-ring-offset-color: #3730a3 !important; + } + + .\32xl\:ring-offset-indigo-900 { + --tw-ring-offset-color: #312e81 !important; + } + + .\32xl\:ring-offset-purple-50 { + --tw-ring-offset-color: #f5f3ff !important; + } + + .\32xl\:ring-offset-purple-100 { + --tw-ring-offset-color: #ede9fe !important; + } + + .\32xl\:ring-offset-purple-200 { + --tw-ring-offset-color: #ddd6fe !important; + } + + .\32xl\:ring-offset-purple-300 { + --tw-ring-offset-color: #c4b5fd !important; + } + + .\32xl\:ring-offset-purple-400 { + --tw-ring-offset-color: #a78bfa !important; + } + + .\32xl\:ring-offset-purple-500 { + --tw-ring-offset-color: #8b5cf6 !important; + } + + .\32xl\:ring-offset-purple-600 { + --tw-ring-offset-color: #7c3aed !important; + } + + .\32xl\:ring-offset-purple-700 { + --tw-ring-offset-color: #6d28d9 !important; + } + + .\32xl\:ring-offset-purple-800 { + --tw-ring-offset-color: #5b21b6 !important; + } + + .\32xl\:ring-offset-purple-900 { + --tw-ring-offset-color: #4c1d95 !important; + } + + .\32xl\:ring-offset-pink-50 { + --tw-ring-offset-color: #fdf2f8 !important; + } + + .\32xl\:ring-offset-pink-100 { + --tw-ring-offset-color: #fce7f3 !important; + } + + .\32xl\:ring-offset-pink-200 { + --tw-ring-offset-color: #fbcfe8 !important; + } + + .\32xl\:ring-offset-pink-300 { + --tw-ring-offset-color: #f9a8d4 !important; + } + + .\32xl\:ring-offset-pink-400 { + --tw-ring-offset-color: #f472b6 !important; + } + + .\32xl\:ring-offset-pink-500 { + --tw-ring-offset-color: #ec4899 !important; + } + + .\32xl\:ring-offset-pink-600 { + --tw-ring-offset-color: #db2777 !important; + } + + .\32xl\:ring-offset-pink-700 { + --tw-ring-offset-color: #be185d !important; + } + + .\32xl\:ring-offset-pink-800 { + --tw-ring-offset-color: #9d174d !important; + } + + .\32xl\:ring-offset-pink-900 { + --tw-ring-offset-color: #831843 !important; + } + + .\32xl\:ring-offset-primary { + --tw-ring-offset-color: #003197 !important; + } + + .\32xl\:focus-within\:ring-offset-transparent:focus-within { + --tw-ring-offset-color: transparent !important; + } + + .\32xl\:focus-within\:ring-offset-current:focus-within { + --tw-ring-offset-color: currentColor !important; + } + + .\32xl\:focus-within\:ring-offset-black:focus-within { + --tw-ring-offset-color: #000 !important; + } + + .\32xl\:focus-within\:ring-offset-white:focus-within { + --tw-ring-offset-color: #fff !important; + } + + .\32xl\:focus-within\:ring-offset-gray-50:focus-within { + --tw-ring-offset-color: #f9fafb !important; + } + + .\32xl\:focus-within\:ring-offset-gray-100:focus-within { + --tw-ring-offset-color: #f3f4f6 !important; + } + + .\32xl\:focus-within\:ring-offset-gray-200:focus-within { + --tw-ring-offset-color: #e5e7eb !important; + } + + .\32xl\:focus-within\:ring-offset-gray-300:focus-within { + --tw-ring-offset-color: #d1d5db !important; + } + + .\32xl\:focus-within\:ring-offset-gray-400:focus-within { + --tw-ring-offset-color: #9ca3af !important; + } + + .\32xl\:focus-within\:ring-offset-gray-500:focus-within { + --tw-ring-offset-color: #6b7280 !important; + } + + .\32xl\:focus-within\:ring-offset-gray-600:focus-within { + --tw-ring-offset-color: #4b5563 !important; + } + + .\32xl\:focus-within\:ring-offset-gray-700:focus-within { + --tw-ring-offset-color: #374151 !important; + } + + .\32xl\:focus-within\:ring-offset-gray-800:focus-within { + --tw-ring-offset-color: #1f2937 !important; + } + + .\32xl\:focus-within\:ring-offset-gray-900:focus-within { + --tw-ring-offset-color: #111827 !important; + } + + .\32xl\:focus-within\:ring-offset-red-50:focus-within { + --tw-ring-offset-color: #fef2f2 !important; + } + + .\32xl\:focus-within\:ring-offset-red-100:focus-within { + --tw-ring-offset-color: #fee2e2 !important; + } + + .\32xl\:focus-within\:ring-offset-red-200:focus-within { + --tw-ring-offset-color: #fecaca !important; + } + + .\32xl\:focus-within\:ring-offset-red-300:focus-within { + --tw-ring-offset-color: #fca5a5 !important; + } + + .\32xl\:focus-within\:ring-offset-red-400:focus-within { + --tw-ring-offset-color: #f87171 !important; + } + + .\32xl\:focus-within\:ring-offset-red-500:focus-within { + --tw-ring-offset-color: #ef4444 !important; + } + + .\32xl\:focus-within\:ring-offset-red-600:focus-within { + --tw-ring-offset-color: #dc2626 !important; + } + + .\32xl\:focus-within\:ring-offset-red-700:focus-within { + --tw-ring-offset-color: #b91c1c !important; + } + + .\32xl\:focus-within\:ring-offset-red-800:focus-within { + --tw-ring-offset-color: #991b1b !important; + } + + .\32xl\:focus-within\:ring-offset-red-900:focus-within { + --tw-ring-offset-color: #7f1d1d !important; + } + + .\32xl\:focus-within\:ring-offset-yellow-50:focus-within { + --tw-ring-offset-color: #fffbeb !important; + } + + .\32xl\:focus-within\:ring-offset-yellow-100:focus-within { + --tw-ring-offset-color: #fef3c7 !important; + } + + .\32xl\:focus-within\:ring-offset-yellow-200:focus-within { + --tw-ring-offset-color: #fde68a !important; + } + + .\32xl\:focus-within\:ring-offset-yellow-300:focus-within { + --tw-ring-offset-color: #fcd34d !important; + } + + .\32xl\:focus-within\:ring-offset-yellow-400:focus-within { + --tw-ring-offset-color: #fbbf24 !important; + } + + .\32xl\:focus-within\:ring-offset-yellow-500:focus-within { + --tw-ring-offset-color: #f59e0b !important; + } + + .\32xl\:focus-within\:ring-offset-yellow-600:focus-within { + --tw-ring-offset-color: #d97706 !important; + } + + .\32xl\:focus-within\:ring-offset-yellow-700:focus-within { + --tw-ring-offset-color: #b45309 !important; + } + + .\32xl\:focus-within\:ring-offset-yellow-800:focus-within { + --tw-ring-offset-color: #92400e !important; + } + + .\32xl\:focus-within\:ring-offset-yellow-900:focus-within { + --tw-ring-offset-color: #78350f !important; + } + + .\32xl\:focus-within\:ring-offset-green-50:focus-within { + --tw-ring-offset-color: #ecfdf5 !important; + } + + .\32xl\:focus-within\:ring-offset-green-100:focus-within { + --tw-ring-offset-color: #d1fae5 !important; + } + + .\32xl\:focus-within\:ring-offset-green-200:focus-within { + --tw-ring-offset-color: #a7f3d0 !important; + } + + .\32xl\:focus-within\:ring-offset-green-300:focus-within { + --tw-ring-offset-color: #6ee7b7 !important; + } + + .\32xl\:focus-within\:ring-offset-green-400:focus-within { + --tw-ring-offset-color: #34d399 !important; + } + + .\32xl\:focus-within\:ring-offset-green-500:focus-within { + --tw-ring-offset-color: #10b981 !important; + } + + .\32xl\:focus-within\:ring-offset-green-600:focus-within { + --tw-ring-offset-color: #059669 !important; + } + + .\32xl\:focus-within\:ring-offset-green-700:focus-within { + --tw-ring-offset-color: #047857 !important; + } + + .\32xl\:focus-within\:ring-offset-green-800:focus-within { + --tw-ring-offset-color: #065f46 !important; + } + + .\32xl\:focus-within\:ring-offset-green-900:focus-within { + --tw-ring-offset-color: #064e3b !important; + } + + .\32xl\:focus-within\:ring-offset-blue-50:focus-within { + --tw-ring-offset-color: #eff6ff !important; + } + + .\32xl\:focus-within\:ring-offset-blue-100:focus-within { + --tw-ring-offset-color: #dbeafe !important; + } + + .\32xl\:focus-within\:ring-offset-blue-200:focus-within { + --tw-ring-offset-color: #bfdbfe !important; + } + + .\32xl\:focus-within\:ring-offset-blue-300:focus-within { + --tw-ring-offset-color: #93c5fd !important; + } + + .\32xl\:focus-within\:ring-offset-blue-400:focus-within { + --tw-ring-offset-color: #60a5fa !important; + } + + .\32xl\:focus-within\:ring-offset-blue-500:focus-within { + --tw-ring-offset-color: #3b82f6 !important; + } + + .\32xl\:focus-within\:ring-offset-blue-600:focus-within { + --tw-ring-offset-color: #2563eb !important; + } + + .\32xl\:focus-within\:ring-offset-blue-700:focus-within { + --tw-ring-offset-color: #1d4ed8 !important; + } + + .\32xl\:focus-within\:ring-offset-blue-800:focus-within { + --tw-ring-offset-color: #1e40af !important; + } + + .\32xl\:focus-within\:ring-offset-blue-900:focus-within { + --tw-ring-offset-color: #1e3a8a !important; + } + + .\32xl\:focus-within\:ring-offset-indigo-50:focus-within { + --tw-ring-offset-color: #eef2ff !important; + } + + .\32xl\:focus-within\:ring-offset-indigo-100:focus-within { + --tw-ring-offset-color: #e0e7ff !important; + } + + .\32xl\:focus-within\:ring-offset-indigo-200:focus-within { + --tw-ring-offset-color: #c7d2fe !important; + } + + .\32xl\:focus-within\:ring-offset-indigo-300:focus-within { + --tw-ring-offset-color: #a5b4fc !important; + } + + .\32xl\:focus-within\:ring-offset-indigo-400:focus-within { + --tw-ring-offset-color: #818cf8 !important; + } + + .\32xl\:focus-within\:ring-offset-indigo-500:focus-within { + --tw-ring-offset-color: #6366f1 !important; + } + + .\32xl\:focus-within\:ring-offset-indigo-600:focus-within { + --tw-ring-offset-color: #4f46e5 !important; + } + + .\32xl\:focus-within\:ring-offset-indigo-700:focus-within { + --tw-ring-offset-color: #4338ca !important; + } + + .\32xl\:focus-within\:ring-offset-indigo-800:focus-within { + --tw-ring-offset-color: #3730a3 !important; + } + + .\32xl\:focus-within\:ring-offset-indigo-900:focus-within { + --tw-ring-offset-color: #312e81 !important; + } + + .\32xl\:focus-within\:ring-offset-purple-50:focus-within { + --tw-ring-offset-color: #f5f3ff !important; + } + + .\32xl\:focus-within\:ring-offset-purple-100:focus-within { + --tw-ring-offset-color: #ede9fe !important; + } + + .\32xl\:focus-within\:ring-offset-purple-200:focus-within { + --tw-ring-offset-color: #ddd6fe !important; + } + + .\32xl\:focus-within\:ring-offset-purple-300:focus-within { + --tw-ring-offset-color: #c4b5fd !important; + } + + .\32xl\:focus-within\:ring-offset-purple-400:focus-within { + --tw-ring-offset-color: #a78bfa !important; + } + + .\32xl\:focus-within\:ring-offset-purple-500:focus-within { + --tw-ring-offset-color: #8b5cf6 !important; + } + + .\32xl\:focus-within\:ring-offset-purple-600:focus-within { + --tw-ring-offset-color: #7c3aed !important; + } + + .\32xl\:focus-within\:ring-offset-purple-700:focus-within { + --tw-ring-offset-color: #6d28d9 !important; + } + + .\32xl\:focus-within\:ring-offset-purple-800:focus-within { + --tw-ring-offset-color: #5b21b6 !important; + } + + .\32xl\:focus-within\:ring-offset-purple-900:focus-within { + --tw-ring-offset-color: #4c1d95 !important; + } + + .\32xl\:focus-within\:ring-offset-pink-50:focus-within { + --tw-ring-offset-color: #fdf2f8 !important; + } + + .\32xl\:focus-within\:ring-offset-pink-100:focus-within { + --tw-ring-offset-color: #fce7f3 !important; + } + + .\32xl\:focus-within\:ring-offset-pink-200:focus-within { + --tw-ring-offset-color: #fbcfe8 !important; + } + + .\32xl\:focus-within\:ring-offset-pink-300:focus-within { + --tw-ring-offset-color: #f9a8d4 !important; + } + + .\32xl\:focus-within\:ring-offset-pink-400:focus-within { + --tw-ring-offset-color: #f472b6 !important; + } + + .\32xl\:focus-within\:ring-offset-pink-500:focus-within { + --tw-ring-offset-color: #ec4899 !important; + } + + .\32xl\:focus-within\:ring-offset-pink-600:focus-within { + --tw-ring-offset-color: #db2777 !important; + } + + .\32xl\:focus-within\:ring-offset-pink-700:focus-within { + --tw-ring-offset-color: #be185d !important; + } + + .\32xl\:focus-within\:ring-offset-pink-800:focus-within { + --tw-ring-offset-color: #9d174d !important; + } + + .\32xl\:focus-within\:ring-offset-pink-900:focus-within { + --tw-ring-offset-color: #831843 !important; + } + + .\32xl\:focus-within\:ring-offset-primary:focus-within { + --tw-ring-offset-color: #003197 !important; + } + + .\32xl\:focus\:ring-offset-transparent:focus { + --tw-ring-offset-color: transparent !important; + } + + .\32xl\:focus\:ring-offset-current:focus { + --tw-ring-offset-color: currentColor !important; + } + + .\32xl\:focus\:ring-offset-black:focus { + --tw-ring-offset-color: #000 !important; + } + + .\32xl\:focus\:ring-offset-white:focus { + --tw-ring-offset-color: #fff !important; + } + + .\32xl\:focus\:ring-offset-gray-50:focus { + --tw-ring-offset-color: #f9fafb !important; + } + + .\32xl\:focus\:ring-offset-gray-100:focus { + --tw-ring-offset-color: #f3f4f6 !important; + } + + .\32xl\:focus\:ring-offset-gray-200:focus { + --tw-ring-offset-color: #e5e7eb !important; + } + + .\32xl\:focus\:ring-offset-gray-300:focus { + --tw-ring-offset-color: #d1d5db !important; + } + + .\32xl\:focus\:ring-offset-gray-400:focus { + --tw-ring-offset-color: #9ca3af !important; + } + + .\32xl\:focus\:ring-offset-gray-500:focus { + --tw-ring-offset-color: #6b7280 !important; + } + + .\32xl\:focus\:ring-offset-gray-600:focus { + --tw-ring-offset-color: #4b5563 !important; + } + + .\32xl\:focus\:ring-offset-gray-700:focus { + --tw-ring-offset-color: #374151 !important; + } + + .\32xl\:focus\:ring-offset-gray-800:focus { + --tw-ring-offset-color: #1f2937 !important; + } + + .\32xl\:focus\:ring-offset-gray-900:focus { + --tw-ring-offset-color: #111827 !important; + } + + .\32xl\:focus\:ring-offset-red-50:focus { + --tw-ring-offset-color: #fef2f2 !important; + } + + .\32xl\:focus\:ring-offset-red-100:focus { + --tw-ring-offset-color: #fee2e2 !important; + } + + .\32xl\:focus\:ring-offset-red-200:focus { + --tw-ring-offset-color: #fecaca !important; + } + + .\32xl\:focus\:ring-offset-red-300:focus { + --tw-ring-offset-color: #fca5a5 !important; + } + + .\32xl\:focus\:ring-offset-red-400:focus { + --tw-ring-offset-color: #f87171 !important; + } + + .\32xl\:focus\:ring-offset-red-500:focus { + --tw-ring-offset-color: #ef4444 !important; + } + + .\32xl\:focus\:ring-offset-red-600:focus { + --tw-ring-offset-color: #dc2626 !important; + } + + .\32xl\:focus\:ring-offset-red-700:focus { + --tw-ring-offset-color: #b91c1c !important; + } + + .\32xl\:focus\:ring-offset-red-800:focus { + --tw-ring-offset-color: #991b1b !important; + } + + .\32xl\:focus\:ring-offset-red-900:focus { + --tw-ring-offset-color: #7f1d1d !important; + } + + .\32xl\:focus\:ring-offset-yellow-50:focus { + --tw-ring-offset-color: #fffbeb !important; + } + + .\32xl\:focus\:ring-offset-yellow-100:focus { + --tw-ring-offset-color: #fef3c7 !important; + } + + .\32xl\:focus\:ring-offset-yellow-200:focus { + --tw-ring-offset-color: #fde68a !important; + } + + .\32xl\:focus\:ring-offset-yellow-300:focus { + --tw-ring-offset-color: #fcd34d !important; + } + + .\32xl\:focus\:ring-offset-yellow-400:focus { + --tw-ring-offset-color: #fbbf24 !important; + } + + .\32xl\:focus\:ring-offset-yellow-500:focus { + --tw-ring-offset-color: #f59e0b !important; + } + + .\32xl\:focus\:ring-offset-yellow-600:focus { + --tw-ring-offset-color: #d97706 !important; + } + + .\32xl\:focus\:ring-offset-yellow-700:focus { + --tw-ring-offset-color: #b45309 !important; + } + + .\32xl\:focus\:ring-offset-yellow-800:focus { + --tw-ring-offset-color: #92400e !important; + } + + .\32xl\:focus\:ring-offset-yellow-900:focus { + --tw-ring-offset-color: #78350f !important; + } + + .\32xl\:focus\:ring-offset-green-50:focus { + --tw-ring-offset-color: #ecfdf5 !important; + } + + .\32xl\:focus\:ring-offset-green-100:focus { + --tw-ring-offset-color: #d1fae5 !important; + } + + .\32xl\:focus\:ring-offset-green-200:focus { + --tw-ring-offset-color: #a7f3d0 !important; + } + + .\32xl\:focus\:ring-offset-green-300:focus { + --tw-ring-offset-color: #6ee7b7 !important; + } + + .\32xl\:focus\:ring-offset-green-400:focus { + --tw-ring-offset-color: #34d399 !important; + } + + .\32xl\:focus\:ring-offset-green-500:focus { + --tw-ring-offset-color: #10b981 !important; + } + + .\32xl\:focus\:ring-offset-green-600:focus { + --tw-ring-offset-color: #059669 !important; + } + + .\32xl\:focus\:ring-offset-green-700:focus { + --tw-ring-offset-color: #047857 !important; + } + + .\32xl\:focus\:ring-offset-green-800:focus { + --tw-ring-offset-color: #065f46 !important; + } + + .\32xl\:focus\:ring-offset-green-900:focus { + --tw-ring-offset-color: #064e3b !important; + } + + .\32xl\:focus\:ring-offset-blue-50:focus { + --tw-ring-offset-color: #eff6ff !important; + } + + .\32xl\:focus\:ring-offset-blue-100:focus { + --tw-ring-offset-color: #dbeafe !important; + } + + .\32xl\:focus\:ring-offset-blue-200:focus { + --tw-ring-offset-color: #bfdbfe !important; + } + + .\32xl\:focus\:ring-offset-blue-300:focus { + --tw-ring-offset-color: #93c5fd !important; + } + + .\32xl\:focus\:ring-offset-blue-400:focus { + --tw-ring-offset-color: #60a5fa !important; + } + + .\32xl\:focus\:ring-offset-blue-500:focus { + --tw-ring-offset-color: #3b82f6 !important; + } + + .\32xl\:focus\:ring-offset-blue-600:focus { + --tw-ring-offset-color: #2563eb !important; + } + + .\32xl\:focus\:ring-offset-blue-700:focus { + --tw-ring-offset-color: #1d4ed8 !important; + } + + .\32xl\:focus\:ring-offset-blue-800:focus { + --tw-ring-offset-color: #1e40af !important; + } + + .\32xl\:focus\:ring-offset-blue-900:focus { + --tw-ring-offset-color: #1e3a8a !important; + } + + .\32xl\:focus\:ring-offset-indigo-50:focus { + --tw-ring-offset-color: #eef2ff !important; + } + + .\32xl\:focus\:ring-offset-indigo-100:focus { + --tw-ring-offset-color: #e0e7ff !important; + } + + .\32xl\:focus\:ring-offset-indigo-200:focus { + --tw-ring-offset-color: #c7d2fe !important; + } + + .\32xl\:focus\:ring-offset-indigo-300:focus { + --tw-ring-offset-color: #a5b4fc !important; + } + + .\32xl\:focus\:ring-offset-indigo-400:focus { + --tw-ring-offset-color: #818cf8 !important; + } + + .\32xl\:focus\:ring-offset-indigo-500:focus { + --tw-ring-offset-color: #6366f1 !important; + } + + .\32xl\:focus\:ring-offset-indigo-600:focus { + --tw-ring-offset-color: #4f46e5 !important; + } + + .\32xl\:focus\:ring-offset-indigo-700:focus { + --tw-ring-offset-color: #4338ca !important; + } + + .\32xl\:focus\:ring-offset-indigo-800:focus { + --tw-ring-offset-color: #3730a3 !important; + } + + .\32xl\:focus\:ring-offset-indigo-900:focus { + --tw-ring-offset-color: #312e81 !important; + } + + .\32xl\:focus\:ring-offset-purple-50:focus { + --tw-ring-offset-color: #f5f3ff !important; + } + + .\32xl\:focus\:ring-offset-purple-100:focus { + --tw-ring-offset-color: #ede9fe !important; + } + + .\32xl\:focus\:ring-offset-purple-200:focus { + --tw-ring-offset-color: #ddd6fe !important; + } + + .\32xl\:focus\:ring-offset-purple-300:focus { + --tw-ring-offset-color: #c4b5fd !important; + } + + .\32xl\:focus\:ring-offset-purple-400:focus { + --tw-ring-offset-color: #a78bfa !important; + } + + .\32xl\:focus\:ring-offset-purple-500:focus { + --tw-ring-offset-color: #8b5cf6 !important; + } + + .\32xl\:focus\:ring-offset-purple-600:focus { + --tw-ring-offset-color: #7c3aed !important; + } + + .\32xl\:focus\:ring-offset-purple-700:focus { + --tw-ring-offset-color: #6d28d9 !important; + } + + .\32xl\:focus\:ring-offset-purple-800:focus { + --tw-ring-offset-color: #5b21b6 !important; + } + + .\32xl\:focus\:ring-offset-purple-900:focus { + --tw-ring-offset-color: #4c1d95 !important; + } + + .\32xl\:focus\:ring-offset-pink-50:focus { + --tw-ring-offset-color: #fdf2f8 !important; + } + + .\32xl\:focus\:ring-offset-pink-100:focus { + --tw-ring-offset-color: #fce7f3 !important; + } + + .\32xl\:focus\:ring-offset-pink-200:focus { + --tw-ring-offset-color: #fbcfe8 !important; + } + + .\32xl\:focus\:ring-offset-pink-300:focus { + --tw-ring-offset-color: #f9a8d4 !important; + } + + .\32xl\:focus\:ring-offset-pink-400:focus { + --tw-ring-offset-color: #f472b6 !important; + } + + .\32xl\:focus\:ring-offset-pink-500:focus { + --tw-ring-offset-color: #ec4899 !important; + } + + .\32xl\:focus\:ring-offset-pink-600:focus { + --tw-ring-offset-color: #db2777 !important; + } + + .\32xl\:focus\:ring-offset-pink-700:focus { + --tw-ring-offset-color: #be185d !important; + } + + .\32xl\:focus\:ring-offset-pink-800:focus { + --tw-ring-offset-color: #9d174d !important; + } + + .\32xl\:focus\:ring-offset-pink-900:focus { + --tw-ring-offset-color: #831843 !important; + } + + .\32xl\:focus\:ring-offset-primary:focus { + --tw-ring-offset-color: #003197 !important; + } + + .\32xl\:ring-offset-0 { + --tw-ring-offset-width: 0px !important; + } + + .\32xl\:ring-offset-1 { + --tw-ring-offset-width: 1px !important; + } + + .\32xl\:ring-offset-2 { + --tw-ring-offset-width: 2px !important; + } + + .\32xl\:ring-offset-4 { + --tw-ring-offset-width: 4px !important; + } + + .\32xl\:ring-offset-8 { + --tw-ring-offset-width: 8px !important; + } + + .\32xl\:focus-within\:ring-offset-0:focus-within { + --tw-ring-offset-width: 0px !important; + } + + .\32xl\:focus-within\:ring-offset-1:focus-within { + --tw-ring-offset-width: 1px !important; + } + + .\32xl\:focus-within\:ring-offset-2:focus-within { + --tw-ring-offset-width: 2px !important; + } + + .\32xl\:focus-within\:ring-offset-4:focus-within { + --tw-ring-offset-width: 4px !important; + } + + .\32xl\:focus-within\:ring-offset-8:focus-within { + --tw-ring-offset-width: 8px !important; + } + + .\32xl\:focus\:ring-offset-0:focus { + --tw-ring-offset-width: 0px !important; + } + + .\32xl\:focus\:ring-offset-1:focus { + --tw-ring-offset-width: 1px !important; + } + + .\32xl\:focus\:ring-offset-2:focus { + --tw-ring-offset-width: 2px !important; + } + + .\32xl\:focus\:ring-offset-4:focus { + --tw-ring-offset-width: 4px !important; + } + + .\32xl\:focus\:ring-offset-8:focus { + --tw-ring-offset-width: 8px !important; + } + + .\32xl\:ring-transparent { + --tw-ring-color: transparent !important; + } + + .\32xl\:ring-current { + --tw-ring-color: currentColor !important; + } + + .\32xl\:ring-black { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important; + } + + .\32xl\:ring-white { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)) !important; + } + + .\32xl\:ring-gray-50 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)) !important; + } + + .\32xl\:ring-gray-100 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)) !important; + } + + .\32xl\:ring-gray-200 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)) !important; + } + + .\32xl\:ring-gray-300 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)) !important; + } + + .\32xl\:ring-gray-400 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)) !important; + } + + .\32xl\:ring-gray-500 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)) !important; + } + + .\32xl\:ring-gray-600 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)) !important; + } + + .\32xl\:ring-gray-700 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)) !important; + } + + .\32xl\:ring-gray-800 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)) !important; + } + + .\32xl\:ring-gray-900 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)) !important; + } + + .\32xl\:ring-red-50 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)) !important; + } + + .\32xl\:ring-red-100 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)) !important; + } + + .\32xl\:ring-red-200 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)) !important; + } + + .\32xl\:ring-red-300 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)) !important; + } + + .\32xl\:ring-red-400 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)) !important; + } + + .\32xl\:ring-red-500 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)) !important; + } + + .\32xl\:ring-red-600 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)) !important; + } + + .\32xl\:ring-red-700 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)) !important; + } + + .\32xl\:ring-red-800 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)) !important; + } + + .\32xl\:ring-red-900 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)) !important; + } + + .\32xl\:ring-yellow-50 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)) !important; + } + + .\32xl\:ring-yellow-100 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)) !important; + } + + .\32xl\:ring-yellow-200 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)) !important; + } + + .\32xl\:ring-yellow-300 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)) !important; + } + + .\32xl\:ring-yellow-400 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)) !important; + } + + .\32xl\:ring-yellow-500 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)) !important; + } + + .\32xl\:ring-yellow-600 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)) !important; + } + + .\32xl\:ring-yellow-700 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)) !important; + } + + .\32xl\:ring-yellow-800 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)) !important; + } + + .\32xl\:ring-yellow-900 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)) !important; + } + + .\32xl\:ring-green-50 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)) !important; + } + + .\32xl\:ring-green-100 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)) !important; + } + + .\32xl\:ring-green-200 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)) !important; + } + + .\32xl\:ring-green-300 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)) !important; + } + + .\32xl\:ring-green-400 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)) !important; + } + + .\32xl\:ring-green-500 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)) !important; + } + + .\32xl\:ring-green-600 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)) !important; + } + + .\32xl\:ring-green-700 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)) !important; + } + + .\32xl\:ring-green-800 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)) !important; + } + + .\32xl\:ring-green-900 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)) !important; + } + + .\32xl\:ring-blue-50 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)) !important; + } + + .\32xl\:ring-blue-100 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)) !important; + } + + .\32xl\:ring-blue-200 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)) !important; + } + + .\32xl\:ring-blue-300 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)) !important; + } + + .\32xl\:ring-blue-400 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)) !important; + } + + .\32xl\:ring-blue-500 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)) !important; + } + + .\32xl\:ring-blue-600 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)) !important; + } + + .\32xl\:ring-blue-700 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)) !important; + } + + .\32xl\:ring-blue-800 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)) !important; + } + + .\32xl\:ring-blue-900 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)) !important; + } + + .\32xl\:ring-indigo-50 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)) !important; + } + + .\32xl\:ring-indigo-100 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)) !important; + } + + .\32xl\:ring-indigo-200 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)) !important; + } + + .\32xl\:ring-indigo-300 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)) !important; + } + + .\32xl\:ring-indigo-400 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)) !important; + } + + .\32xl\:ring-indigo-500 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)) !important; + } + + .\32xl\:ring-indigo-600 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)) !important; + } + + .\32xl\:ring-indigo-700 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)) !important; + } + + .\32xl\:ring-indigo-800 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)) !important; + } + + .\32xl\:ring-indigo-900 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)) !important; + } + + .\32xl\:ring-purple-50 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)) !important; + } + + .\32xl\:ring-purple-100 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)) !important; + } + + .\32xl\:ring-purple-200 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)) !important; + } + + .\32xl\:ring-purple-300 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)) !important; + } + + .\32xl\:ring-purple-400 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)) !important; + } + + .\32xl\:ring-purple-500 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)) !important; + } + + .\32xl\:ring-purple-600 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)) !important; + } + + .\32xl\:ring-purple-700 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)) !important; + } + + .\32xl\:ring-purple-800 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)) !important; + } + + .\32xl\:ring-purple-900 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)) !important; + } + + .\32xl\:ring-pink-50 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)) !important; + } + + .\32xl\:ring-pink-100 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)) !important; + } + + .\32xl\:ring-pink-200 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)) !important; + } + + .\32xl\:ring-pink-300 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)) !important; + } + + .\32xl\:ring-pink-400 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)) !important; + } + + .\32xl\:ring-pink-500 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)) !important; + } + + .\32xl\:ring-pink-600 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)) !important; + } + + .\32xl\:ring-pink-700 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)) !important; + } + + .\32xl\:ring-pink-800 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)) !important; + } + + .\32xl\:ring-pink-900 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)) !important; + } + + .\32xl\:ring-primary { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(0, 49, 151, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus-within\:ring-transparent:focus-within { + --tw-ring-color: transparent !important; + } + + .\32xl\:focus-within\:ring-current:focus-within { + --tw-ring-color: currentColor !important; + } + + .\32xl\:focus-within\:ring-black:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus-within\:ring-white:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus-within\:ring-gray-50:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus-within\:ring-gray-100:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus-within\:ring-gray-200:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus-within\:ring-gray-300:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus-within\:ring-gray-400:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus-within\:ring-gray-500:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus-within\:ring-gray-600:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus-within\:ring-gray-700:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus-within\:ring-gray-800:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus-within\:ring-gray-900:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus-within\:ring-red-50:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus-within\:ring-red-100:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus-within\:ring-red-200:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus-within\:ring-red-300:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus-within\:ring-red-400:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus-within\:ring-red-500:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus-within\:ring-red-600:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus-within\:ring-red-700:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus-within\:ring-red-800:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus-within\:ring-red-900:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus-within\:ring-yellow-50:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus-within\:ring-yellow-100:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus-within\:ring-yellow-200:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus-within\:ring-yellow-300:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus-within\:ring-yellow-400:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus-within\:ring-yellow-500:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus-within\:ring-yellow-600:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus-within\:ring-yellow-700:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus-within\:ring-yellow-800:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus-within\:ring-yellow-900:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus-within\:ring-green-50:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus-within\:ring-green-100:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus-within\:ring-green-200:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus-within\:ring-green-300:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus-within\:ring-green-400:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus-within\:ring-green-500:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus-within\:ring-green-600:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus-within\:ring-green-700:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus-within\:ring-green-800:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus-within\:ring-green-900:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus-within\:ring-blue-50:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus-within\:ring-blue-100:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus-within\:ring-blue-200:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus-within\:ring-blue-300:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus-within\:ring-blue-400:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus-within\:ring-blue-500:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus-within\:ring-blue-600:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus-within\:ring-blue-700:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus-within\:ring-blue-800:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus-within\:ring-blue-900:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus-within\:ring-indigo-50:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus-within\:ring-indigo-100:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus-within\:ring-indigo-200:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus-within\:ring-indigo-300:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus-within\:ring-indigo-400:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus-within\:ring-indigo-500:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus-within\:ring-indigo-600:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus-within\:ring-indigo-700:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus-within\:ring-indigo-800:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus-within\:ring-indigo-900:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus-within\:ring-purple-50:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus-within\:ring-purple-100:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus-within\:ring-purple-200:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus-within\:ring-purple-300:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus-within\:ring-purple-400:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus-within\:ring-purple-500:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus-within\:ring-purple-600:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus-within\:ring-purple-700:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus-within\:ring-purple-800:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus-within\:ring-purple-900:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus-within\:ring-pink-50:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus-within\:ring-pink-100:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus-within\:ring-pink-200:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus-within\:ring-pink-300:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus-within\:ring-pink-400:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus-within\:ring-pink-500:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus-within\:ring-pink-600:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus-within\:ring-pink-700:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus-within\:ring-pink-800:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus-within\:ring-pink-900:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus-within\:ring-primary:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(0, 49, 151, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus\:ring-transparent:focus { + --tw-ring-color: transparent !important; + } + + .\32xl\:focus\:ring-current:focus { + --tw-ring-color: currentColor !important; + } + + .\32xl\:focus\:ring-black:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus\:ring-white:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus\:ring-gray-50:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus\:ring-gray-100:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus\:ring-gray-200:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus\:ring-gray-300:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus\:ring-gray-400:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus\:ring-gray-500:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus\:ring-gray-600:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus\:ring-gray-700:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus\:ring-gray-800:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus\:ring-gray-900:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus\:ring-red-50:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus\:ring-red-100:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus\:ring-red-200:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus\:ring-red-300:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus\:ring-red-400:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus\:ring-red-500:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus\:ring-red-600:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus\:ring-red-700:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus\:ring-red-800:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus\:ring-red-900:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus\:ring-yellow-50:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus\:ring-yellow-100:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus\:ring-yellow-200:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus\:ring-yellow-300:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus\:ring-yellow-400:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus\:ring-yellow-500:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus\:ring-yellow-600:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus\:ring-yellow-700:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus\:ring-yellow-800:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus\:ring-yellow-900:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus\:ring-green-50:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus\:ring-green-100:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus\:ring-green-200:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus\:ring-green-300:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus\:ring-green-400:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus\:ring-green-500:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus\:ring-green-600:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus\:ring-green-700:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus\:ring-green-800:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus\:ring-green-900:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus\:ring-blue-50:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus\:ring-blue-100:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus\:ring-blue-200:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus\:ring-blue-300:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus\:ring-blue-400:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus\:ring-blue-500:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus\:ring-blue-600:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus\:ring-blue-700:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus\:ring-blue-800:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus\:ring-blue-900:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus\:ring-indigo-50:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus\:ring-indigo-100:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus\:ring-indigo-200:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus\:ring-indigo-300:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus\:ring-indigo-400:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus\:ring-indigo-500:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus\:ring-indigo-600:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus\:ring-indigo-700:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus\:ring-indigo-800:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus\:ring-indigo-900:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus\:ring-purple-50:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus\:ring-purple-100:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus\:ring-purple-200:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus\:ring-purple-300:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus\:ring-purple-400:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus\:ring-purple-500:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus\:ring-purple-600:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus\:ring-purple-700:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus\:ring-purple-800:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus\:ring-purple-900:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus\:ring-pink-50:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus\:ring-pink-100:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus\:ring-pink-200:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus\:ring-pink-300:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus\:ring-pink-400:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus\:ring-pink-500:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus\:ring-pink-600:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus\:ring-pink-700:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus\:ring-pink-800:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus\:ring-pink-900:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)) !important; + } + + .\32xl\:focus\:ring-primary:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(0, 49, 151, var(--tw-ring-opacity)) !important; + } + + .\32xl\:ring-opacity-0 { + --tw-ring-opacity: 0 !important; + } + + .\32xl\:ring-opacity-5 { + --tw-ring-opacity: 0.05 !important; + } + + .\32xl\:ring-opacity-10 { + --tw-ring-opacity: 0.1 !important; + } + + .\32xl\:ring-opacity-20 { + --tw-ring-opacity: 0.2 !important; + } + + .\32xl\:ring-opacity-25 { + --tw-ring-opacity: 0.25 !important; + } + + .\32xl\:ring-opacity-30 { + --tw-ring-opacity: 0.3 !important; + } + + .\32xl\:ring-opacity-40 { + --tw-ring-opacity: 0.4 !important; + } + + .\32xl\:ring-opacity-50 { + --tw-ring-opacity: 0.5 !important; + } + + .\32xl\:ring-opacity-60 { + --tw-ring-opacity: 0.6 !important; + } + + .\32xl\:ring-opacity-70 { + --tw-ring-opacity: 0.7 !important; + } + + .\32xl\:ring-opacity-75 { + --tw-ring-opacity: 0.75 !important; + } + + .\32xl\:ring-opacity-80 { + --tw-ring-opacity: 0.8 !important; + } + + .\32xl\:ring-opacity-90 { + --tw-ring-opacity: 0.9 !important; + } + + .\32xl\:ring-opacity-95 { + --tw-ring-opacity: 0.95 !important; + } + + .\32xl\:ring-opacity-100 { + --tw-ring-opacity: 1 !important; + } + + .\32xl\:focus-within\:ring-opacity-0:focus-within { + --tw-ring-opacity: 0 !important; + } + + .\32xl\:focus-within\:ring-opacity-5:focus-within { + --tw-ring-opacity: 0.05 !important; + } + + .\32xl\:focus-within\:ring-opacity-10:focus-within { + --tw-ring-opacity: 0.1 !important; + } + + .\32xl\:focus-within\:ring-opacity-20:focus-within { + --tw-ring-opacity: 0.2 !important; + } + + .\32xl\:focus-within\:ring-opacity-25:focus-within { + --tw-ring-opacity: 0.25 !important; + } + + .\32xl\:focus-within\:ring-opacity-30:focus-within { + --tw-ring-opacity: 0.3 !important; + } + + .\32xl\:focus-within\:ring-opacity-40:focus-within { + --tw-ring-opacity: 0.4 !important; + } + + .\32xl\:focus-within\:ring-opacity-50:focus-within { + --tw-ring-opacity: 0.5 !important; + } + + .\32xl\:focus-within\:ring-opacity-60:focus-within { + --tw-ring-opacity: 0.6 !important; + } + + .\32xl\:focus-within\:ring-opacity-70:focus-within { + --tw-ring-opacity: 0.7 !important; + } + + .\32xl\:focus-within\:ring-opacity-75:focus-within { + --tw-ring-opacity: 0.75 !important; + } + + .\32xl\:focus-within\:ring-opacity-80:focus-within { + --tw-ring-opacity: 0.8 !important; + } + + .\32xl\:focus-within\:ring-opacity-90:focus-within { + --tw-ring-opacity: 0.9 !important; + } + + .\32xl\:focus-within\:ring-opacity-95:focus-within { + --tw-ring-opacity: 0.95 !important; + } + + .\32xl\:focus-within\:ring-opacity-100:focus-within { + --tw-ring-opacity: 1 !important; + } + + .\32xl\:focus\:ring-opacity-0:focus { + --tw-ring-opacity: 0 !important; + } + + .\32xl\:focus\:ring-opacity-5:focus { + --tw-ring-opacity: 0.05 !important; + } + + .\32xl\:focus\:ring-opacity-10:focus { + --tw-ring-opacity: 0.1 !important; + } + + .\32xl\:focus\:ring-opacity-20:focus { + --tw-ring-opacity: 0.2 !important; + } + + .\32xl\:focus\:ring-opacity-25:focus { + --tw-ring-opacity: 0.25 !important; + } + + .\32xl\:focus\:ring-opacity-30:focus { + --tw-ring-opacity: 0.3 !important; + } + + .\32xl\:focus\:ring-opacity-40:focus { + --tw-ring-opacity: 0.4 !important; + } + + .\32xl\:focus\:ring-opacity-50:focus { + --tw-ring-opacity: 0.5 !important; + } + + .\32xl\:focus\:ring-opacity-60:focus { + --tw-ring-opacity: 0.6 !important; + } + + .\32xl\:focus\:ring-opacity-70:focus { + --tw-ring-opacity: 0.7 !important; + } + + .\32xl\:focus\:ring-opacity-75:focus { + --tw-ring-opacity: 0.75 !important; + } + + .\32xl\:focus\:ring-opacity-80:focus { + --tw-ring-opacity: 0.8 !important; + } + + .\32xl\:focus\:ring-opacity-90:focus { + --tw-ring-opacity: 0.9 !important; + } + + .\32xl\:focus\:ring-opacity-95:focus { + --tw-ring-opacity: 0.95 !important; + } + + .\32xl\:focus\:ring-opacity-100:focus { + --tw-ring-opacity: 1 !important; + } + + .\32xl\:fill-current { + fill: currentColor !important; + } + + .\32xl\:stroke-current { + stroke: currentColor !important; + } + + .\32xl\:stroke-0 { + stroke-width: 0 !important; + } + + .\32xl\:stroke-1 { + stroke-width: 1 !important; + } + + .\32xl\:stroke-2 { + stroke-width: 2 !important; + } + + .\32xl\:table-auto { + table-layout: auto !important; + } + + .\32xl\:table-fixed { + table-layout: fixed !important; + } + + .\32xl\:text-left { + text-align: left !important; + } + + .\32xl\:text-center { + text-align: center !important; + } + + .\32xl\:text-right { + text-align: right !important; + } + + .\32xl\:text-justify { + text-align: justify !important; + } + + .\32xl\:text-transparent { + color: transparent !important; + } + + .\32xl\:text-current { + color: currentColor !important; + } + + .\32xl\:text-black { + --tw-text-opacity: 1 !important; + color: rgba(0, 0, 0, var(--tw-text-opacity)) !important; + } + + .\32xl\:text-white { + --tw-text-opacity: 1 !important; + color: rgba(255, 255, 255, var(--tw-text-opacity)) !important; + } + + .\32xl\:text-gray-50 { + --tw-text-opacity: 1 !important; + color: rgba(249, 250, 251, var(--tw-text-opacity)) !important; + } + + .\32xl\:text-gray-100 { + --tw-text-opacity: 1 !important; + color: rgba(243, 244, 246, var(--tw-text-opacity)) !important; + } + + .\32xl\:text-gray-200 { + --tw-text-opacity: 1 !important; + color: rgba(229, 231, 235, var(--tw-text-opacity)) !important; + } + + .\32xl\:text-gray-300 { + --tw-text-opacity: 1 !important; + color: rgba(209, 213, 219, var(--tw-text-opacity)) !important; + } + + .\32xl\:text-gray-400 { + --tw-text-opacity: 1 !important; + color: rgba(156, 163, 175, var(--tw-text-opacity)) !important; + } + + .\32xl\:text-gray-500 { + --tw-text-opacity: 1 !important; + color: rgba(107, 114, 128, var(--tw-text-opacity)) !important; + } + + .\32xl\:text-gray-600 { + --tw-text-opacity: 1 !important; + color: rgba(75, 85, 99, var(--tw-text-opacity)) !important; + } + + .\32xl\:text-gray-700 { + --tw-text-opacity: 1 !important; + color: rgba(55, 65, 81, var(--tw-text-opacity)) !important; + } + + .\32xl\:text-gray-800 { + --tw-text-opacity: 1 !important; + color: rgba(31, 41, 55, var(--tw-text-opacity)) !important; + } + + .\32xl\:text-gray-900 { + --tw-text-opacity: 1 !important; + color: rgba(17, 24, 39, var(--tw-text-opacity)) !important; + } + + .\32xl\:text-red-50 { + --tw-text-opacity: 1 !important; + color: rgba(254, 242, 242, var(--tw-text-opacity)) !important; + } + + .\32xl\:text-red-100 { + --tw-text-opacity: 1 !important; + color: rgba(254, 226, 226, var(--tw-text-opacity)) !important; + } + + .\32xl\:text-red-200 { + --tw-text-opacity: 1 !important; + color: rgba(254, 202, 202, var(--tw-text-opacity)) !important; + } + + .\32xl\:text-red-300 { + --tw-text-opacity: 1 !important; + color: rgba(252, 165, 165, var(--tw-text-opacity)) !important; + } + + .\32xl\:text-red-400 { + --tw-text-opacity: 1 !important; + color: rgba(248, 113, 113, var(--tw-text-opacity)) !important; + } + + .\32xl\:text-red-500 { + --tw-text-opacity: 1 !important; + color: rgba(239, 68, 68, var(--tw-text-opacity)) !important; + } + + .\32xl\:text-red-600 { + --tw-text-opacity: 1 !important; + color: rgba(220, 38, 38, var(--tw-text-opacity)) !important; + } + + .\32xl\:text-red-700 { + --tw-text-opacity: 1 !important; + color: rgba(185, 28, 28, var(--tw-text-opacity)) !important; + } + + .\32xl\:text-red-800 { + --tw-text-opacity: 1 !important; + color: rgba(153, 27, 27, var(--tw-text-opacity)) !important; + } + + .\32xl\:text-red-900 { + --tw-text-opacity: 1 !important; + color: rgba(127, 29, 29, var(--tw-text-opacity)) !important; + } + + .\32xl\:text-yellow-50 { + --tw-text-opacity: 1 !important; + color: rgba(255, 251, 235, var(--tw-text-opacity)) !important; + } + + .\32xl\:text-yellow-100 { + --tw-text-opacity: 1 !important; + color: rgba(254, 243, 199, var(--tw-text-opacity)) !important; + } + + .\32xl\:text-yellow-200 { + --tw-text-opacity: 1 !important; + color: rgba(253, 230, 138, var(--tw-text-opacity)) !important; + } + + .\32xl\:text-yellow-300 { + --tw-text-opacity: 1 !important; + color: rgba(252, 211, 77, var(--tw-text-opacity)) !important; + } + + .\32xl\:text-yellow-400 { + --tw-text-opacity: 1 !important; + color: rgba(251, 191, 36, var(--tw-text-opacity)) !important; + } + + .\32xl\:text-yellow-500 { + --tw-text-opacity: 1 !important; + color: rgba(245, 158, 11, var(--tw-text-opacity)) !important; + } + + .\32xl\:text-yellow-600 { + --tw-text-opacity: 1 !important; + color: rgba(217, 119, 6, var(--tw-text-opacity)) !important; + } + + .\32xl\:text-yellow-700 { + --tw-text-opacity: 1 !important; + color: rgba(180, 83, 9, var(--tw-text-opacity)) !important; + } + + .\32xl\:text-yellow-800 { + --tw-text-opacity: 1 !important; + color: rgba(146, 64, 14, var(--tw-text-opacity)) !important; + } + + .\32xl\:text-yellow-900 { + --tw-text-opacity: 1 !important; + color: rgba(120, 53, 15, var(--tw-text-opacity)) !important; + } + + .\32xl\:text-green-50 { + --tw-text-opacity: 1 !important; + color: rgba(236, 253, 245, var(--tw-text-opacity)) !important; + } + + .\32xl\:text-green-100 { + --tw-text-opacity: 1 !important; + color: rgba(209, 250, 229, var(--tw-text-opacity)) !important; + } + + .\32xl\:text-green-200 { + --tw-text-opacity: 1 !important; + color: rgba(167, 243, 208, var(--tw-text-opacity)) !important; + } + + .\32xl\:text-green-300 { + --tw-text-opacity: 1 !important; + color: rgba(110, 231, 183, var(--tw-text-opacity)) !important; + } + + .\32xl\:text-green-400 { + --tw-text-opacity: 1 !important; + color: rgba(52, 211, 153, var(--tw-text-opacity)) !important; + } + + .\32xl\:text-green-500 { + --tw-text-opacity: 1 !important; + color: rgba(16, 185, 129, var(--tw-text-opacity)) !important; + } + + .\32xl\:text-green-600 { + --tw-text-opacity: 1 !important; + color: rgba(5, 150, 105, var(--tw-text-opacity)) !important; + } + + .\32xl\:text-green-700 { + --tw-text-opacity: 1 !important; + color: rgba(4, 120, 87, var(--tw-text-opacity)) !important; + } + + .\32xl\:text-green-800 { + --tw-text-opacity: 1 !important; + color: rgba(6, 95, 70, var(--tw-text-opacity)) !important; + } + + .\32xl\:text-green-900 { + --tw-text-opacity: 1 !important; + color: rgba(6, 78, 59, var(--tw-text-opacity)) !important; + } + + .\32xl\:text-blue-50 { + --tw-text-opacity: 1 !important; + color: rgba(239, 246, 255, var(--tw-text-opacity)) !important; + } + + .\32xl\:text-blue-100 { + --tw-text-opacity: 1 !important; + color: rgba(219, 234, 254, var(--tw-text-opacity)) !important; + } + + .\32xl\:text-blue-200 { + --tw-text-opacity: 1 !important; + color: rgba(191, 219, 254, var(--tw-text-opacity)) !important; + } + + .\32xl\:text-blue-300 { + --tw-text-opacity: 1 !important; + color: rgba(147, 197, 253, var(--tw-text-opacity)) !important; + } + + .\32xl\:text-blue-400 { + --tw-text-opacity: 1 !important; + color: rgba(96, 165, 250, var(--tw-text-opacity)) !important; + } + + .\32xl\:text-blue-500 { + --tw-text-opacity: 1 !important; + color: rgba(59, 130, 246, var(--tw-text-opacity)) !important; + } + + .\32xl\:text-blue-600 { + --tw-text-opacity: 1 !important; + color: rgba(37, 99, 235, var(--tw-text-opacity)) !important; + } + + .\32xl\:text-blue-700 { + --tw-text-opacity: 1 !important; + color: rgba(29, 78, 216, var(--tw-text-opacity)) !important; + } + + .\32xl\:text-blue-800 { + --tw-text-opacity: 1 !important; + color: rgba(30, 64, 175, var(--tw-text-opacity)) !important; + } + + .\32xl\:text-blue-900 { + --tw-text-opacity: 1 !important; + color: rgba(30, 58, 138, var(--tw-text-opacity)) !important; + } + + .\32xl\:text-indigo-50 { + --tw-text-opacity: 1 !important; + color: rgba(238, 242, 255, var(--tw-text-opacity)) !important; + } + + .\32xl\:text-indigo-100 { + --tw-text-opacity: 1 !important; + color: rgba(224, 231, 255, var(--tw-text-opacity)) !important; + } + + .\32xl\:text-indigo-200 { + --tw-text-opacity: 1 !important; + color: rgba(199, 210, 254, var(--tw-text-opacity)) !important; + } + + .\32xl\:text-indigo-300 { + --tw-text-opacity: 1 !important; + color: rgba(165, 180, 252, var(--tw-text-opacity)) !important; + } + + .\32xl\:text-indigo-400 { + --tw-text-opacity: 1 !important; + color: rgba(129, 140, 248, var(--tw-text-opacity)) !important; + } + + .\32xl\:text-indigo-500 { + --tw-text-opacity: 1 !important; + color: rgba(99, 102, 241, var(--tw-text-opacity)) !important; + } + + .\32xl\:text-indigo-600 { + --tw-text-opacity: 1 !important; + color: rgba(79, 70, 229, var(--tw-text-opacity)) !important; + } + + .\32xl\:text-indigo-700 { + --tw-text-opacity: 1 !important; + color: rgba(67, 56, 202, var(--tw-text-opacity)) !important; + } + + .\32xl\:text-indigo-800 { + --tw-text-opacity: 1 !important; + color: rgba(55, 48, 163, var(--tw-text-opacity)) !important; + } + + .\32xl\:text-indigo-900 { + --tw-text-opacity: 1 !important; + color: rgba(49, 46, 129, var(--tw-text-opacity)) !important; + } + + .\32xl\:text-purple-50 { + --tw-text-opacity: 1 !important; + color: rgba(245, 243, 255, var(--tw-text-opacity)) !important; + } + + .\32xl\:text-purple-100 { + --tw-text-opacity: 1 !important; + color: rgba(237, 233, 254, var(--tw-text-opacity)) !important; + } + + .\32xl\:text-purple-200 { + --tw-text-opacity: 1 !important; + color: rgba(221, 214, 254, var(--tw-text-opacity)) !important; + } + + .\32xl\:text-purple-300 { + --tw-text-opacity: 1 !important; + color: rgba(196, 181, 253, var(--tw-text-opacity)) !important; + } + + .\32xl\:text-purple-400 { + --tw-text-opacity: 1 !important; + color: rgba(167, 139, 250, var(--tw-text-opacity)) !important; + } + + .\32xl\:text-purple-500 { + --tw-text-opacity: 1 !important; + color: rgba(139, 92, 246, var(--tw-text-opacity)) !important; + } + + .\32xl\:text-purple-600 { + --tw-text-opacity: 1 !important; + color: rgba(124, 58, 237, var(--tw-text-opacity)) !important; + } + + .\32xl\:text-purple-700 { + --tw-text-opacity: 1 !important; + color: rgba(109, 40, 217, var(--tw-text-opacity)) !important; + } + + .\32xl\:text-purple-800 { + --tw-text-opacity: 1 !important; + color: rgba(91, 33, 182, var(--tw-text-opacity)) !important; + } + + .\32xl\:text-purple-900 { + --tw-text-opacity: 1 !important; + color: rgba(76, 29, 149, var(--tw-text-opacity)) !important; + } + + .\32xl\:text-pink-50 { + --tw-text-opacity: 1 !important; + color: rgba(253, 242, 248, var(--tw-text-opacity)) !important; + } + + .\32xl\:text-pink-100 { + --tw-text-opacity: 1 !important; + color: rgba(252, 231, 243, var(--tw-text-opacity)) !important; + } + + .\32xl\:text-pink-200 { + --tw-text-opacity: 1 !important; + color: rgba(251, 207, 232, var(--tw-text-opacity)) !important; + } + + .\32xl\:text-pink-300 { + --tw-text-opacity: 1 !important; + color: rgba(249, 168, 212, var(--tw-text-opacity)) !important; + } + + .\32xl\:text-pink-400 { + --tw-text-opacity: 1 !important; + color: rgba(244, 114, 182, var(--tw-text-opacity)) !important; + } + + .\32xl\:text-pink-500 { + --tw-text-opacity: 1 !important; + color: rgba(236, 72, 153, var(--tw-text-opacity)) !important; + } + + .\32xl\:text-pink-600 { + --tw-text-opacity: 1 !important; + color: rgba(219, 39, 119, var(--tw-text-opacity)) !important; + } + + .\32xl\:text-pink-700 { + --tw-text-opacity: 1 !important; + color: rgba(190, 24, 93, var(--tw-text-opacity)) !important; + } + + .\32xl\:text-pink-800 { + --tw-text-opacity: 1 !important; + color: rgba(157, 23, 77, var(--tw-text-opacity)) !important; + } + + .\32xl\:text-pink-900 { + --tw-text-opacity: 1 !important; + color: rgba(131, 24, 67, var(--tw-text-opacity)) !important; + } + + .\32xl\:text-primary { + --tw-text-opacity: 1 !important; + color: rgba(0, 49, 151, var(--tw-text-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:text-transparent { + color: transparent !important; + } + + .group:hover .\32xl\:group-hover\:text-current { + color: currentColor !important; + } + + .group:hover .\32xl\:group-hover\:text-black { + --tw-text-opacity: 1 !important; + color: rgba(0, 0, 0, var(--tw-text-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:text-white { + --tw-text-opacity: 1 !important; + color: rgba(255, 255, 255, var(--tw-text-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:text-gray-50 { + --tw-text-opacity: 1 !important; + color: rgba(249, 250, 251, var(--tw-text-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:text-gray-100 { + --tw-text-opacity: 1 !important; + color: rgba(243, 244, 246, var(--tw-text-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:text-gray-200 { + --tw-text-opacity: 1 !important; + color: rgba(229, 231, 235, var(--tw-text-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:text-gray-300 { + --tw-text-opacity: 1 !important; + color: rgba(209, 213, 219, var(--tw-text-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:text-gray-400 { + --tw-text-opacity: 1 !important; + color: rgba(156, 163, 175, var(--tw-text-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:text-gray-500 { + --tw-text-opacity: 1 !important; + color: rgba(107, 114, 128, var(--tw-text-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:text-gray-600 { + --tw-text-opacity: 1 !important; + color: rgba(75, 85, 99, var(--tw-text-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:text-gray-700 { + --tw-text-opacity: 1 !important; + color: rgba(55, 65, 81, var(--tw-text-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:text-gray-800 { + --tw-text-opacity: 1 !important; + color: rgba(31, 41, 55, var(--tw-text-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:text-gray-900 { + --tw-text-opacity: 1 !important; + color: rgba(17, 24, 39, var(--tw-text-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:text-red-50 { + --tw-text-opacity: 1 !important; + color: rgba(254, 242, 242, var(--tw-text-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:text-red-100 { + --tw-text-opacity: 1 !important; + color: rgba(254, 226, 226, var(--tw-text-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:text-red-200 { + --tw-text-opacity: 1 !important; + color: rgba(254, 202, 202, var(--tw-text-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:text-red-300 { + --tw-text-opacity: 1 !important; + color: rgba(252, 165, 165, var(--tw-text-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:text-red-400 { + --tw-text-opacity: 1 !important; + color: rgba(248, 113, 113, var(--tw-text-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:text-red-500 { + --tw-text-opacity: 1 !important; + color: rgba(239, 68, 68, var(--tw-text-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:text-red-600 { + --tw-text-opacity: 1 !important; + color: rgba(220, 38, 38, var(--tw-text-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:text-red-700 { + --tw-text-opacity: 1 !important; + color: rgba(185, 28, 28, var(--tw-text-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:text-red-800 { + --tw-text-opacity: 1 !important; + color: rgba(153, 27, 27, var(--tw-text-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:text-red-900 { + --tw-text-opacity: 1 !important; + color: rgba(127, 29, 29, var(--tw-text-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:text-yellow-50 { + --tw-text-opacity: 1 !important; + color: rgba(255, 251, 235, var(--tw-text-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:text-yellow-100 { + --tw-text-opacity: 1 !important; + color: rgba(254, 243, 199, var(--tw-text-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:text-yellow-200 { + --tw-text-opacity: 1 !important; + color: rgba(253, 230, 138, var(--tw-text-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:text-yellow-300 { + --tw-text-opacity: 1 !important; + color: rgba(252, 211, 77, var(--tw-text-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:text-yellow-400 { + --tw-text-opacity: 1 !important; + color: rgba(251, 191, 36, var(--tw-text-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:text-yellow-500 { + --tw-text-opacity: 1 !important; + color: rgba(245, 158, 11, var(--tw-text-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:text-yellow-600 { + --tw-text-opacity: 1 !important; + color: rgba(217, 119, 6, var(--tw-text-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:text-yellow-700 { + --tw-text-opacity: 1 !important; + color: rgba(180, 83, 9, var(--tw-text-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:text-yellow-800 { + --tw-text-opacity: 1 !important; + color: rgba(146, 64, 14, var(--tw-text-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:text-yellow-900 { + --tw-text-opacity: 1 !important; + color: rgba(120, 53, 15, var(--tw-text-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:text-green-50 { + --tw-text-opacity: 1 !important; + color: rgba(236, 253, 245, var(--tw-text-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:text-green-100 { + --tw-text-opacity: 1 !important; + color: rgba(209, 250, 229, var(--tw-text-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:text-green-200 { + --tw-text-opacity: 1 !important; + color: rgba(167, 243, 208, var(--tw-text-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:text-green-300 { + --tw-text-opacity: 1 !important; + color: rgba(110, 231, 183, var(--tw-text-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:text-green-400 { + --tw-text-opacity: 1 !important; + color: rgba(52, 211, 153, var(--tw-text-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:text-green-500 { + --tw-text-opacity: 1 !important; + color: rgba(16, 185, 129, var(--tw-text-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:text-green-600 { + --tw-text-opacity: 1 !important; + color: rgba(5, 150, 105, var(--tw-text-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:text-green-700 { + --tw-text-opacity: 1 !important; + color: rgba(4, 120, 87, var(--tw-text-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:text-green-800 { + --tw-text-opacity: 1 !important; + color: rgba(6, 95, 70, var(--tw-text-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:text-green-900 { + --tw-text-opacity: 1 !important; + color: rgba(6, 78, 59, var(--tw-text-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:text-blue-50 { + --tw-text-opacity: 1 !important; + color: rgba(239, 246, 255, var(--tw-text-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:text-blue-100 { + --tw-text-opacity: 1 !important; + color: rgba(219, 234, 254, var(--tw-text-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:text-blue-200 { + --tw-text-opacity: 1 !important; + color: rgba(191, 219, 254, var(--tw-text-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:text-blue-300 { + --tw-text-opacity: 1 !important; + color: rgba(147, 197, 253, var(--tw-text-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:text-blue-400 { + --tw-text-opacity: 1 !important; + color: rgba(96, 165, 250, var(--tw-text-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:text-blue-500 { + --tw-text-opacity: 1 !important; + color: rgba(59, 130, 246, var(--tw-text-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:text-blue-600 { + --tw-text-opacity: 1 !important; + color: rgba(37, 99, 235, var(--tw-text-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:text-blue-700 { + --tw-text-opacity: 1 !important; + color: rgba(29, 78, 216, var(--tw-text-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:text-blue-800 { + --tw-text-opacity: 1 !important; + color: rgba(30, 64, 175, var(--tw-text-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:text-blue-900 { + --tw-text-opacity: 1 !important; + color: rgba(30, 58, 138, var(--tw-text-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:text-indigo-50 { + --tw-text-opacity: 1 !important; + color: rgba(238, 242, 255, var(--tw-text-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:text-indigo-100 { + --tw-text-opacity: 1 !important; + color: rgba(224, 231, 255, var(--tw-text-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:text-indigo-200 { + --tw-text-opacity: 1 !important; + color: rgba(199, 210, 254, var(--tw-text-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:text-indigo-300 { + --tw-text-opacity: 1 !important; + color: rgba(165, 180, 252, var(--tw-text-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:text-indigo-400 { + --tw-text-opacity: 1 !important; + color: rgba(129, 140, 248, var(--tw-text-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:text-indigo-500 { + --tw-text-opacity: 1 !important; + color: rgba(99, 102, 241, var(--tw-text-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:text-indigo-600 { + --tw-text-opacity: 1 !important; + color: rgba(79, 70, 229, var(--tw-text-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:text-indigo-700 { + --tw-text-opacity: 1 !important; + color: rgba(67, 56, 202, var(--tw-text-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:text-indigo-800 { + --tw-text-opacity: 1 !important; + color: rgba(55, 48, 163, var(--tw-text-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:text-indigo-900 { + --tw-text-opacity: 1 !important; + color: rgba(49, 46, 129, var(--tw-text-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:text-purple-50 { + --tw-text-opacity: 1 !important; + color: rgba(245, 243, 255, var(--tw-text-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:text-purple-100 { + --tw-text-opacity: 1 !important; + color: rgba(237, 233, 254, var(--tw-text-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:text-purple-200 { + --tw-text-opacity: 1 !important; + color: rgba(221, 214, 254, var(--tw-text-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:text-purple-300 { + --tw-text-opacity: 1 !important; + color: rgba(196, 181, 253, var(--tw-text-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:text-purple-400 { + --tw-text-opacity: 1 !important; + color: rgba(167, 139, 250, var(--tw-text-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:text-purple-500 { + --tw-text-opacity: 1 !important; + color: rgba(139, 92, 246, var(--tw-text-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:text-purple-600 { + --tw-text-opacity: 1 !important; + color: rgba(124, 58, 237, var(--tw-text-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:text-purple-700 { + --tw-text-opacity: 1 !important; + color: rgba(109, 40, 217, var(--tw-text-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:text-purple-800 { + --tw-text-opacity: 1 !important; + color: rgba(91, 33, 182, var(--tw-text-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:text-purple-900 { + --tw-text-opacity: 1 !important; + color: rgba(76, 29, 149, var(--tw-text-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:text-pink-50 { + --tw-text-opacity: 1 !important; + color: rgba(253, 242, 248, var(--tw-text-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:text-pink-100 { + --tw-text-opacity: 1 !important; + color: rgba(252, 231, 243, var(--tw-text-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:text-pink-200 { + --tw-text-opacity: 1 !important; + color: rgba(251, 207, 232, var(--tw-text-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:text-pink-300 { + --tw-text-opacity: 1 !important; + color: rgba(249, 168, 212, var(--tw-text-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:text-pink-400 { + --tw-text-opacity: 1 !important; + color: rgba(244, 114, 182, var(--tw-text-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:text-pink-500 { + --tw-text-opacity: 1 !important; + color: rgba(236, 72, 153, var(--tw-text-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:text-pink-600 { + --tw-text-opacity: 1 !important; + color: rgba(219, 39, 119, var(--tw-text-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:text-pink-700 { + --tw-text-opacity: 1 !important; + color: rgba(190, 24, 93, var(--tw-text-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:text-pink-800 { + --tw-text-opacity: 1 !important; + color: rgba(157, 23, 77, var(--tw-text-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:text-pink-900 { + --tw-text-opacity: 1 !important; + color: rgba(131, 24, 67, var(--tw-text-opacity)) !important; + } + + .group:hover .\32xl\:group-hover\:text-primary { + --tw-text-opacity: 1 !important; + color: rgba(0, 49, 151, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus-within\:text-transparent:focus-within { + color: transparent !important; + } + + .\32xl\:focus-within\:text-current:focus-within { + color: currentColor !important; + } + + .\32xl\:focus-within\:text-black:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(0, 0, 0, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus-within\:text-white:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(255, 255, 255, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus-within\:text-gray-50:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(249, 250, 251, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus-within\:text-gray-100:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(243, 244, 246, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus-within\:text-gray-200:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(229, 231, 235, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus-within\:text-gray-300:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(209, 213, 219, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus-within\:text-gray-400:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(156, 163, 175, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus-within\:text-gray-500:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(107, 114, 128, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus-within\:text-gray-600:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(75, 85, 99, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus-within\:text-gray-700:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(55, 65, 81, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus-within\:text-gray-800:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(31, 41, 55, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus-within\:text-gray-900:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(17, 24, 39, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus-within\:text-red-50:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(254, 242, 242, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus-within\:text-red-100:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(254, 226, 226, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus-within\:text-red-200:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(254, 202, 202, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus-within\:text-red-300:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(252, 165, 165, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus-within\:text-red-400:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(248, 113, 113, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus-within\:text-red-500:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(239, 68, 68, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus-within\:text-red-600:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(220, 38, 38, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus-within\:text-red-700:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(185, 28, 28, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus-within\:text-red-800:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(153, 27, 27, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus-within\:text-red-900:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(127, 29, 29, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus-within\:text-yellow-50:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(255, 251, 235, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus-within\:text-yellow-100:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(254, 243, 199, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus-within\:text-yellow-200:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(253, 230, 138, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus-within\:text-yellow-300:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(252, 211, 77, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus-within\:text-yellow-400:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(251, 191, 36, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus-within\:text-yellow-500:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(245, 158, 11, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus-within\:text-yellow-600:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(217, 119, 6, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus-within\:text-yellow-700:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(180, 83, 9, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus-within\:text-yellow-800:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(146, 64, 14, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus-within\:text-yellow-900:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(120, 53, 15, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus-within\:text-green-50:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(236, 253, 245, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus-within\:text-green-100:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(209, 250, 229, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus-within\:text-green-200:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(167, 243, 208, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus-within\:text-green-300:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(110, 231, 183, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus-within\:text-green-400:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(52, 211, 153, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus-within\:text-green-500:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(16, 185, 129, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus-within\:text-green-600:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(5, 150, 105, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus-within\:text-green-700:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(4, 120, 87, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus-within\:text-green-800:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(6, 95, 70, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus-within\:text-green-900:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(6, 78, 59, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus-within\:text-blue-50:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(239, 246, 255, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus-within\:text-blue-100:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(219, 234, 254, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus-within\:text-blue-200:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(191, 219, 254, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus-within\:text-blue-300:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(147, 197, 253, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus-within\:text-blue-400:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(96, 165, 250, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus-within\:text-blue-500:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(59, 130, 246, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus-within\:text-blue-600:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(37, 99, 235, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus-within\:text-blue-700:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(29, 78, 216, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus-within\:text-blue-800:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(30, 64, 175, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus-within\:text-blue-900:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(30, 58, 138, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus-within\:text-indigo-50:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(238, 242, 255, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus-within\:text-indigo-100:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(224, 231, 255, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus-within\:text-indigo-200:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(199, 210, 254, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus-within\:text-indigo-300:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(165, 180, 252, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus-within\:text-indigo-400:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(129, 140, 248, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus-within\:text-indigo-500:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(99, 102, 241, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus-within\:text-indigo-600:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(79, 70, 229, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus-within\:text-indigo-700:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(67, 56, 202, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus-within\:text-indigo-800:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(55, 48, 163, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus-within\:text-indigo-900:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(49, 46, 129, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus-within\:text-purple-50:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(245, 243, 255, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus-within\:text-purple-100:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(237, 233, 254, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus-within\:text-purple-200:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(221, 214, 254, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus-within\:text-purple-300:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(196, 181, 253, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus-within\:text-purple-400:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(167, 139, 250, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus-within\:text-purple-500:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(139, 92, 246, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus-within\:text-purple-600:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(124, 58, 237, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus-within\:text-purple-700:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(109, 40, 217, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus-within\:text-purple-800:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(91, 33, 182, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus-within\:text-purple-900:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(76, 29, 149, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus-within\:text-pink-50:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(253, 242, 248, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus-within\:text-pink-100:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(252, 231, 243, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus-within\:text-pink-200:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(251, 207, 232, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus-within\:text-pink-300:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(249, 168, 212, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus-within\:text-pink-400:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(244, 114, 182, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus-within\:text-pink-500:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(236, 72, 153, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus-within\:text-pink-600:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(219, 39, 119, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus-within\:text-pink-700:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(190, 24, 93, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus-within\:text-pink-800:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(157, 23, 77, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus-within\:text-pink-900:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(131, 24, 67, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus-within\:text-primary:focus-within { + --tw-text-opacity: 1 !important; + color: rgba(0, 49, 151, var(--tw-text-opacity)) !important; + } + + .\32xl\:hover\:text-transparent:hover { + color: transparent !important; + } + + .\32xl\:hover\:text-current:hover { + color: currentColor !important; + } + + .\32xl\:hover\:text-black:hover { + --tw-text-opacity: 1 !important; + color: rgba(0, 0, 0, var(--tw-text-opacity)) !important; + } + + .\32xl\:hover\:text-white:hover { + --tw-text-opacity: 1 !important; + color: rgba(255, 255, 255, var(--tw-text-opacity)) !important; + } + + .\32xl\:hover\:text-gray-50:hover { + --tw-text-opacity: 1 !important; + color: rgba(249, 250, 251, var(--tw-text-opacity)) !important; + } + + .\32xl\:hover\:text-gray-100:hover { + --tw-text-opacity: 1 !important; + color: rgba(243, 244, 246, var(--tw-text-opacity)) !important; + } + + .\32xl\:hover\:text-gray-200:hover { + --tw-text-opacity: 1 !important; + color: rgba(229, 231, 235, var(--tw-text-opacity)) !important; + } + + .\32xl\:hover\:text-gray-300:hover { + --tw-text-opacity: 1 !important; + color: rgba(209, 213, 219, var(--tw-text-opacity)) !important; + } + + .\32xl\:hover\:text-gray-400:hover { + --tw-text-opacity: 1 !important; + color: rgba(156, 163, 175, var(--tw-text-opacity)) !important; + } + + .\32xl\:hover\:text-gray-500:hover { + --tw-text-opacity: 1 !important; + color: rgba(107, 114, 128, var(--tw-text-opacity)) !important; + } + + .\32xl\:hover\:text-gray-600:hover { + --tw-text-opacity: 1 !important; + color: rgba(75, 85, 99, var(--tw-text-opacity)) !important; + } + + .\32xl\:hover\:text-gray-700:hover { + --tw-text-opacity: 1 !important; + color: rgba(55, 65, 81, var(--tw-text-opacity)) !important; + } + + .\32xl\:hover\:text-gray-800:hover { + --tw-text-opacity: 1 !important; + color: rgba(31, 41, 55, var(--tw-text-opacity)) !important; + } + + .\32xl\:hover\:text-gray-900:hover { + --tw-text-opacity: 1 !important; + color: rgba(17, 24, 39, var(--tw-text-opacity)) !important; + } + + .\32xl\:hover\:text-red-50:hover { + --tw-text-opacity: 1 !important; + color: rgba(254, 242, 242, var(--tw-text-opacity)) !important; + } + + .\32xl\:hover\:text-red-100:hover { + --tw-text-opacity: 1 !important; + color: rgba(254, 226, 226, var(--tw-text-opacity)) !important; + } + + .\32xl\:hover\:text-red-200:hover { + --tw-text-opacity: 1 !important; + color: rgba(254, 202, 202, var(--tw-text-opacity)) !important; + } + + .\32xl\:hover\:text-red-300:hover { + --tw-text-opacity: 1 !important; + color: rgba(252, 165, 165, var(--tw-text-opacity)) !important; + } + + .\32xl\:hover\:text-red-400:hover { + --tw-text-opacity: 1 !important; + color: rgba(248, 113, 113, var(--tw-text-opacity)) !important; + } + + .\32xl\:hover\:text-red-500:hover { + --tw-text-opacity: 1 !important; + color: rgba(239, 68, 68, var(--tw-text-opacity)) !important; + } + + .\32xl\:hover\:text-red-600:hover { + --tw-text-opacity: 1 !important; + color: rgba(220, 38, 38, var(--tw-text-opacity)) !important; + } + + .\32xl\:hover\:text-red-700:hover { + --tw-text-opacity: 1 !important; + color: rgba(185, 28, 28, var(--tw-text-opacity)) !important; + } + + .\32xl\:hover\:text-red-800:hover { + --tw-text-opacity: 1 !important; + color: rgba(153, 27, 27, var(--tw-text-opacity)) !important; + } + + .\32xl\:hover\:text-red-900:hover { + --tw-text-opacity: 1 !important; + color: rgba(127, 29, 29, var(--tw-text-opacity)) !important; + } + + .\32xl\:hover\:text-yellow-50:hover { + --tw-text-opacity: 1 !important; + color: rgba(255, 251, 235, var(--tw-text-opacity)) !important; + } + + .\32xl\:hover\:text-yellow-100:hover { + --tw-text-opacity: 1 !important; + color: rgba(254, 243, 199, var(--tw-text-opacity)) !important; + } + + .\32xl\:hover\:text-yellow-200:hover { + --tw-text-opacity: 1 !important; + color: rgba(253, 230, 138, var(--tw-text-opacity)) !important; + } + + .\32xl\:hover\:text-yellow-300:hover { + --tw-text-opacity: 1 !important; + color: rgba(252, 211, 77, var(--tw-text-opacity)) !important; + } + + .\32xl\:hover\:text-yellow-400:hover { + --tw-text-opacity: 1 !important; + color: rgba(251, 191, 36, var(--tw-text-opacity)) !important; + } + + .\32xl\:hover\:text-yellow-500:hover { + --tw-text-opacity: 1 !important; + color: rgba(245, 158, 11, var(--tw-text-opacity)) !important; + } + + .\32xl\:hover\:text-yellow-600:hover { + --tw-text-opacity: 1 !important; + color: rgba(217, 119, 6, var(--tw-text-opacity)) !important; + } + + .\32xl\:hover\:text-yellow-700:hover { + --tw-text-opacity: 1 !important; + color: rgba(180, 83, 9, var(--tw-text-opacity)) !important; + } + + .\32xl\:hover\:text-yellow-800:hover { + --tw-text-opacity: 1 !important; + color: rgba(146, 64, 14, var(--tw-text-opacity)) !important; + } + + .\32xl\:hover\:text-yellow-900:hover { + --tw-text-opacity: 1 !important; + color: rgba(120, 53, 15, var(--tw-text-opacity)) !important; + } + + .\32xl\:hover\:text-green-50:hover { + --tw-text-opacity: 1 !important; + color: rgba(236, 253, 245, var(--tw-text-opacity)) !important; + } + + .\32xl\:hover\:text-green-100:hover { + --tw-text-opacity: 1 !important; + color: rgba(209, 250, 229, var(--tw-text-opacity)) !important; + } + + .\32xl\:hover\:text-green-200:hover { + --tw-text-opacity: 1 !important; + color: rgba(167, 243, 208, var(--tw-text-opacity)) !important; + } + + .\32xl\:hover\:text-green-300:hover { + --tw-text-opacity: 1 !important; + color: rgba(110, 231, 183, var(--tw-text-opacity)) !important; + } + + .\32xl\:hover\:text-green-400:hover { + --tw-text-opacity: 1 !important; + color: rgba(52, 211, 153, var(--tw-text-opacity)) !important; + } + + .\32xl\:hover\:text-green-500:hover { + --tw-text-opacity: 1 !important; + color: rgba(16, 185, 129, var(--tw-text-opacity)) !important; + } + + .\32xl\:hover\:text-green-600:hover { + --tw-text-opacity: 1 !important; + color: rgba(5, 150, 105, var(--tw-text-opacity)) !important; + } + + .\32xl\:hover\:text-green-700:hover { + --tw-text-opacity: 1 !important; + color: rgba(4, 120, 87, var(--tw-text-opacity)) !important; + } + + .\32xl\:hover\:text-green-800:hover { + --tw-text-opacity: 1 !important; + color: rgba(6, 95, 70, var(--tw-text-opacity)) !important; + } + + .\32xl\:hover\:text-green-900:hover { + --tw-text-opacity: 1 !important; + color: rgba(6, 78, 59, var(--tw-text-opacity)) !important; + } + + .\32xl\:hover\:text-blue-50:hover { + --tw-text-opacity: 1 !important; + color: rgba(239, 246, 255, var(--tw-text-opacity)) !important; + } + + .\32xl\:hover\:text-blue-100:hover { + --tw-text-opacity: 1 !important; + color: rgba(219, 234, 254, var(--tw-text-opacity)) !important; + } + + .\32xl\:hover\:text-blue-200:hover { + --tw-text-opacity: 1 !important; + color: rgba(191, 219, 254, var(--tw-text-opacity)) !important; + } + + .\32xl\:hover\:text-blue-300:hover { + --tw-text-opacity: 1 !important; + color: rgba(147, 197, 253, var(--tw-text-opacity)) !important; + } + + .\32xl\:hover\:text-blue-400:hover { + --tw-text-opacity: 1 !important; + color: rgba(96, 165, 250, var(--tw-text-opacity)) !important; + } + + .\32xl\:hover\:text-blue-500:hover { + --tw-text-opacity: 1 !important; + color: rgba(59, 130, 246, var(--tw-text-opacity)) !important; + } + + .\32xl\:hover\:text-blue-600:hover { + --tw-text-opacity: 1 !important; + color: rgba(37, 99, 235, var(--tw-text-opacity)) !important; + } + + .\32xl\:hover\:text-blue-700:hover { + --tw-text-opacity: 1 !important; + color: rgba(29, 78, 216, var(--tw-text-opacity)) !important; + } + + .\32xl\:hover\:text-blue-800:hover { + --tw-text-opacity: 1 !important; + color: rgba(30, 64, 175, var(--tw-text-opacity)) !important; + } + + .\32xl\:hover\:text-blue-900:hover { + --tw-text-opacity: 1 !important; + color: rgba(30, 58, 138, var(--tw-text-opacity)) !important; + } + + .\32xl\:hover\:text-indigo-50:hover { + --tw-text-opacity: 1 !important; + color: rgba(238, 242, 255, var(--tw-text-opacity)) !important; + } + + .\32xl\:hover\:text-indigo-100:hover { + --tw-text-opacity: 1 !important; + color: rgba(224, 231, 255, var(--tw-text-opacity)) !important; + } + + .\32xl\:hover\:text-indigo-200:hover { + --tw-text-opacity: 1 !important; + color: rgba(199, 210, 254, var(--tw-text-opacity)) !important; + } + + .\32xl\:hover\:text-indigo-300:hover { + --tw-text-opacity: 1 !important; + color: rgba(165, 180, 252, var(--tw-text-opacity)) !important; + } + + .\32xl\:hover\:text-indigo-400:hover { + --tw-text-opacity: 1 !important; + color: rgba(129, 140, 248, var(--tw-text-opacity)) !important; + } + + .\32xl\:hover\:text-indigo-500:hover { + --tw-text-opacity: 1 !important; + color: rgba(99, 102, 241, var(--tw-text-opacity)) !important; + } + + .\32xl\:hover\:text-indigo-600:hover { + --tw-text-opacity: 1 !important; + color: rgba(79, 70, 229, var(--tw-text-opacity)) !important; + } + + .\32xl\:hover\:text-indigo-700:hover { + --tw-text-opacity: 1 !important; + color: rgba(67, 56, 202, var(--tw-text-opacity)) !important; + } + + .\32xl\:hover\:text-indigo-800:hover { + --tw-text-opacity: 1 !important; + color: rgba(55, 48, 163, var(--tw-text-opacity)) !important; + } + + .\32xl\:hover\:text-indigo-900:hover { + --tw-text-opacity: 1 !important; + color: rgba(49, 46, 129, var(--tw-text-opacity)) !important; + } + + .\32xl\:hover\:text-purple-50:hover { + --tw-text-opacity: 1 !important; + color: rgba(245, 243, 255, var(--tw-text-opacity)) !important; + } + + .\32xl\:hover\:text-purple-100:hover { + --tw-text-opacity: 1 !important; + color: rgba(237, 233, 254, var(--tw-text-opacity)) !important; + } + + .\32xl\:hover\:text-purple-200:hover { + --tw-text-opacity: 1 !important; + color: rgba(221, 214, 254, var(--tw-text-opacity)) !important; + } + + .\32xl\:hover\:text-purple-300:hover { + --tw-text-opacity: 1 !important; + color: rgba(196, 181, 253, var(--tw-text-opacity)) !important; + } + + .\32xl\:hover\:text-purple-400:hover { + --tw-text-opacity: 1 !important; + color: rgba(167, 139, 250, var(--tw-text-opacity)) !important; + } + + .\32xl\:hover\:text-purple-500:hover { + --tw-text-opacity: 1 !important; + color: rgba(139, 92, 246, var(--tw-text-opacity)) !important; + } + + .\32xl\:hover\:text-purple-600:hover { + --tw-text-opacity: 1 !important; + color: rgba(124, 58, 237, var(--tw-text-opacity)) !important; + } + + .\32xl\:hover\:text-purple-700:hover { + --tw-text-opacity: 1 !important; + color: rgba(109, 40, 217, var(--tw-text-opacity)) !important; + } + + .\32xl\:hover\:text-purple-800:hover { + --tw-text-opacity: 1 !important; + color: rgba(91, 33, 182, var(--tw-text-opacity)) !important; + } + + .\32xl\:hover\:text-purple-900:hover { + --tw-text-opacity: 1 !important; + color: rgba(76, 29, 149, var(--tw-text-opacity)) !important; + } + + .\32xl\:hover\:text-pink-50:hover { + --tw-text-opacity: 1 !important; + color: rgba(253, 242, 248, var(--tw-text-opacity)) !important; + } + + .\32xl\:hover\:text-pink-100:hover { + --tw-text-opacity: 1 !important; + color: rgba(252, 231, 243, var(--tw-text-opacity)) !important; + } + + .\32xl\:hover\:text-pink-200:hover { + --tw-text-opacity: 1 !important; + color: rgba(251, 207, 232, var(--tw-text-opacity)) !important; + } + + .\32xl\:hover\:text-pink-300:hover { + --tw-text-opacity: 1 !important; + color: rgba(249, 168, 212, var(--tw-text-opacity)) !important; + } + + .\32xl\:hover\:text-pink-400:hover { + --tw-text-opacity: 1 !important; + color: rgba(244, 114, 182, var(--tw-text-opacity)) !important; + } + + .\32xl\:hover\:text-pink-500:hover { + --tw-text-opacity: 1 !important; + color: rgba(236, 72, 153, var(--tw-text-opacity)) !important; + } + + .\32xl\:hover\:text-pink-600:hover { + --tw-text-opacity: 1 !important; + color: rgba(219, 39, 119, var(--tw-text-opacity)) !important; + } + + .\32xl\:hover\:text-pink-700:hover { + --tw-text-opacity: 1 !important; + color: rgba(190, 24, 93, var(--tw-text-opacity)) !important; + } + + .\32xl\:hover\:text-pink-800:hover { + --tw-text-opacity: 1 !important; + color: rgba(157, 23, 77, var(--tw-text-opacity)) !important; + } + + .\32xl\:hover\:text-pink-900:hover { + --tw-text-opacity: 1 !important; + color: rgba(131, 24, 67, var(--tw-text-opacity)) !important; + } + + .\32xl\:hover\:text-primary:hover { + --tw-text-opacity: 1 !important; + color: rgba(0, 49, 151, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus\:text-transparent:focus { + color: transparent !important; + } + + .\32xl\:focus\:text-current:focus { + color: currentColor !important; + } + + .\32xl\:focus\:text-black:focus { + --tw-text-opacity: 1 !important; + color: rgba(0, 0, 0, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus\:text-white:focus { + --tw-text-opacity: 1 !important; + color: rgba(255, 255, 255, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus\:text-gray-50:focus { + --tw-text-opacity: 1 !important; + color: rgba(249, 250, 251, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus\:text-gray-100:focus { + --tw-text-opacity: 1 !important; + color: rgba(243, 244, 246, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus\:text-gray-200:focus { + --tw-text-opacity: 1 !important; + color: rgba(229, 231, 235, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus\:text-gray-300:focus { + --tw-text-opacity: 1 !important; + color: rgba(209, 213, 219, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus\:text-gray-400:focus { + --tw-text-opacity: 1 !important; + color: rgba(156, 163, 175, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus\:text-gray-500:focus { + --tw-text-opacity: 1 !important; + color: rgba(107, 114, 128, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus\:text-gray-600:focus { + --tw-text-opacity: 1 !important; + color: rgba(75, 85, 99, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus\:text-gray-700:focus { + --tw-text-opacity: 1 !important; + color: rgba(55, 65, 81, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus\:text-gray-800:focus { + --tw-text-opacity: 1 !important; + color: rgba(31, 41, 55, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus\:text-gray-900:focus { + --tw-text-opacity: 1 !important; + color: rgba(17, 24, 39, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus\:text-red-50:focus { + --tw-text-opacity: 1 !important; + color: rgba(254, 242, 242, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus\:text-red-100:focus { + --tw-text-opacity: 1 !important; + color: rgba(254, 226, 226, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus\:text-red-200:focus { + --tw-text-opacity: 1 !important; + color: rgba(254, 202, 202, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus\:text-red-300:focus { + --tw-text-opacity: 1 !important; + color: rgba(252, 165, 165, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus\:text-red-400:focus { + --tw-text-opacity: 1 !important; + color: rgba(248, 113, 113, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus\:text-red-500:focus { + --tw-text-opacity: 1 !important; + color: rgba(239, 68, 68, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus\:text-red-600:focus { + --tw-text-opacity: 1 !important; + color: rgba(220, 38, 38, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus\:text-red-700:focus { + --tw-text-opacity: 1 !important; + color: rgba(185, 28, 28, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus\:text-red-800:focus { + --tw-text-opacity: 1 !important; + color: rgba(153, 27, 27, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus\:text-red-900:focus { + --tw-text-opacity: 1 !important; + color: rgba(127, 29, 29, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus\:text-yellow-50:focus { + --tw-text-opacity: 1 !important; + color: rgba(255, 251, 235, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus\:text-yellow-100:focus { + --tw-text-opacity: 1 !important; + color: rgba(254, 243, 199, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus\:text-yellow-200:focus { + --tw-text-opacity: 1 !important; + color: rgba(253, 230, 138, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus\:text-yellow-300:focus { + --tw-text-opacity: 1 !important; + color: rgba(252, 211, 77, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus\:text-yellow-400:focus { + --tw-text-opacity: 1 !important; + color: rgba(251, 191, 36, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus\:text-yellow-500:focus { + --tw-text-opacity: 1 !important; + color: rgba(245, 158, 11, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus\:text-yellow-600:focus { + --tw-text-opacity: 1 !important; + color: rgba(217, 119, 6, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus\:text-yellow-700:focus { + --tw-text-opacity: 1 !important; + color: rgba(180, 83, 9, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus\:text-yellow-800:focus { + --tw-text-opacity: 1 !important; + color: rgba(146, 64, 14, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus\:text-yellow-900:focus { + --tw-text-opacity: 1 !important; + color: rgba(120, 53, 15, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus\:text-green-50:focus { + --tw-text-opacity: 1 !important; + color: rgba(236, 253, 245, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus\:text-green-100:focus { + --tw-text-opacity: 1 !important; + color: rgba(209, 250, 229, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus\:text-green-200:focus { + --tw-text-opacity: 1 !important; + color: rgba(167, 243, 208, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus\:text-green-300:focus { + --tw-text-opacity: 1 !important; + color: rgba(110, 231, 183, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus\:text-green-400:focus { + --tw-text-opacity: 1 !important; + color: rgba(52, 211, 153, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus\:text-green-500:focus { + --tw-text-opacity: 1 !important; + color: rgba(16, 185, 129, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus\:text-green-600:focus { + --tw-text-opacity: 1 !important; + color: rgba(5, 150, 105, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus\:text-green-700:focus { + --tw-text-opacity: 1 !important; + color: rgba(4, 120, 87, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus\:text-green-800:focus { + --tw-text-opacity: 1 !important; + color: rgba(6, 95, 70, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus\:text-green-900:focus { + --tw-text-opacity: 1 !important; + color: rgba(6, 78, 59, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus\:text-blue-50:focus { + --tw-text-opacity: 1 !important; + color: rgba(239, 246, 255, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus\:text-blue-100:focus { + --tw-text-opacity: 1 !important; + color: rgba(219, 234, 254, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus\:text-blue-200:focus { + --tw-text-opacity: 1 !important; + color: rgba(191, 219, 254, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus\:text-blue-300:focus { + --tw-text-opacity: 1 !important; + color: rgba(147, 197, 253, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus\:text-blue-400:focus { + --tw-text-opacity: 1 !important; + color: rgba(96, 165, 250, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus\:text-blue-500:focus { + --tw-text-opacity: 1 !important; + color: rgba(59, 130, 246, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus\:text-blue-600:focus { + --tw-text-opacity: 1 !important; + color: rgba(37, 99, 235, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus\:text-blue-700:focus { + --tw-text-opacity: 1 !important; + color: rgba(29, 78, 216, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus\:text-blue-800:focus { + --tw-text-opacity: 1 !important; + color: rgba(30, 64, 175, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus\:text-blue-900:focus { + --tw-text-opacity: 1 !important; + color: rgba(30, 58, 138, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus\:text-indigo-50:focus { + --tw-text-opacity: 1 !important; + color: rgba(238, 242, 255, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus\:text-indigo-100:focus { + --tw-text-opacity: 1 !important; + color: rgba(224, 231, 255, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus\:text-indigo-200:focus { + --tw-text-opacity: 1 !important; + color: rgba(199, 210, 254, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus\:text-indigo-300:focus { + --tw-text-opacity: 1 !important; + color: rgba(165, 180, 252, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus\:text-indigo-400:focus { + --tw-text-opacity: 1 !important; + color: rgba(129, 140, 248, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus\:text-indigo-500:focus { + --tw-text-opacity: 1 !important; + color: rgba(99, 102, 241, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus\:text-indigo-600:focus { + --tw-text-opacity: 1 !important; + color: rgba(79, 70, 229, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus\:text-indigo-700:focus { + --tw-text-opacity: 1 !important; + color: rgba(67, 56, 202, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus\:text-indigo-800:focus { + --tw-text-opacity: 1 !important; + color: rgba(55, 48, 163, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus\:text-indigo-900:focus { + --tw-text-opacity: 1 !important; + color: rgba(49, 46, 129, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus\:text-purple-50:focus { + --tw-text-opacity: 1 !important; + color: rgba(245, 243, 255, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus\:text-purple-100:focus { + --tw-text-opacity: 1 !important; + color: rgba(237, 233, 254, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus\:text-purple-200:focus { + --tw-text-opacity: 1 !important; + color: rgba(221, 214, 254, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus\:text-purple-300:focus { + --tw-text-opacity: 1 !important; + color: rgba(196, 181, 253, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus\:text-purple-400:focus { + --tw-text-opacity: 1 !important; + color: rgba(167, 139, 250, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus\:text-purple-500:focus { + --tw-text-opacity: 1 !important; + color: rgba(139, 92, 246, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus\:text-purple-600:focus { + --tw-text-opacity: 1 !important; + color: rgba(124, 58, 237, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus\:text-purple-700:focus { + --tw-text-opacity: 1 !important; + color: rgba(109, 40, 217, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus\:text-purple-800:focus { + --tw-text-opacity: 1 !important; + color: rgba(91, 33, 182, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus\:text-purple-900:focus { + --tw-text-opacity: 1 !important; + color: rgba(76, 29, 149, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus\:text-pink-50:focus { + --tw-text-opacity: 1 !important; + color: rgba(253, 242, 248, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus\:text-pink-100:focus { + --tw-text-opacity: 1 !important; + color: rgba(252, 231, 243, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus\:text-pink-200:focus { + --tw-text-opacity: 1 !important; + color: rgba(251, 207, 232, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus\:text-pink-300:focus { + --tw-text-opacity: 1 !important; + color: rgba(249, 168, 212, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus\:text-pink-400:focus { + --tw-text-opacity: 1 !important; + color: rgba(244, 114, 182, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus\:text-pink-500:focus { + --tw-text-opacity: 1 !important; + color: rgba(236, 72, 153, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus\:text-pink-600:focus { + --tw-text-opacity: 1 !important; + color: rgba(219, 39, 119, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus\:text-pink-700:focus { + --tw-text-opacity: 1 !important; + color: rgba(190, 24, 93, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus\:text-pink-800:focus { + --tw-text-opacity: 1 !important; + color: rgba(157, 23, 77, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus\:text-pink-900:focus { + --tw-text-opacity: 1 !important; + color: rgba(131, 24, 67, var(--tw-text-opacity)) !important; + } + + .\32xl\:focus\:text-primary:focus { + --tw-text-opacity: 1 !important; + color: rgba(0, 49, 151, var(--tw-text-opacity)) !important; + } + + .\32xl\:text-opacity-0 { + --tw-text-opacity: 0 !important; + } + + .\32xl\:text-opacity-5 { + --tw-text-opacity: 0.05 !important; + } + + .\32xl\:text-opacity-10 { + --tw-text-opacity: 0.1 !important; + } + + .\32xl\:text-opacity-20 { + --tw-text-opacity: 0.2 !important; + } + + .\32xl\:text-opacity-25 { + --tw-text-opacity: 0.25 !important; + } + + .\32xl\:text-opacity-30 { + --tw-text-opacity: 0.3 !important; + } + + .\32xl\:text-opacity-40 { + --tw-text-opacity: 0.4 !important; + } + + .\32xl\:text-opacity-50 { + --tw-text-opacity: 0.5 !important; + } + + .\32xl\:text-opacity-60 { + --tw-text-opacity: 0.6 !important; + } + + .\32xl\:text-opacity-70 { + --tw-text-opacity: 0.7 !important; + } + + .\32xl\:text-opacity-75 { + --tw-text-opacity: 0.75 !important; + } + + .\32xl\:text-opacity-80 { + --tw-text-opacity: 0.8 !important; + } + + .\32xl\:text-opacity-90 { + --tw-text-opacity: 0.9 !important; + } + + .\32xl\:text-opacity-95 { + --tw-text-opacity: 0.95 !important; + } + + .\32xl\:text-opacity-100 { + --tw-text-opacity: 1 !important; + } + + .group:hover .\32xl\:group-hover\:text-opacity-0 { + --tw-text-opacity: 0 !important; + } + + .group:hover .\32xl\:group-hover\:text-opacity-5 { + --tw-text-opacity: 0.05 !important; + } + + .group:hover .\32xl\:group-hover\:text-opacity-10 { + --tw-text-opacity: 0.1 !important; + } + + .group:hover .\32xl\:group-hover\:text-opacity-20 { + --tw-text-opacity: 0.2 !important; + } + + .group:hover .\32xl\:group-hover\:text-opacity-25 { + --tw-text-opacity: 0.25 !important; + } + + .group:hover .\32xl\:group-hover\:text-opacity-30 { + --tw-text-opacity: 0.3 !important; + } + + .group:hover .\32xl\:group-hover\:text-opacity-40 { + --tw-text-opacity: 0.4 !important; + } + + .group:hover .\32xl\:group-hover\:text-opacity-50 { + --tw-text-opacity: 0.5 !important; + } + + .group:hover .\32xl\:group-hover\:text-opacity-60 { + --tw-text-opacity: 0.6 !important; + } + + .group:hover .\32xl\:group-hover\:text-opacity-70 { + --tw-text-opacity: 0.7 !important; + } + + .group:hover .\32xl\:group-hover\:text-opacity-75 { + --tw-text-opacity: 0.75 !important; + } + + .group:hover .\32xl\:group-hover\:text-opacity-80 { + --tw-text-opacity: 0.8 !important; + } + + .group:hover .\32xl\:group-hover\:text-opacity-90 { + --tw-text-opacity: 0.9 !important; + } + + .group:hover .\32xl\:group-hover\:text-opacity-95 { + --tw-text-opacity: 0.95 !important; + } + + .group:hover .\32xl\:group-hover\:text-opacity-100 { + --tw-text-opacity: 1 !important; + } + + .\32xl\:focus-within\:text-opacity-0:focus-within { + --tw-text-opacity: 0 !important; + } + + .\32xl\:focus-within\:text-opacity-5:focus-within { + --tw-text-opacity: 0.05 !important; + } + + .\32xl\:focus-within\:text-opacity-10:focus-within { + --tw-text-opacity: 0.1 !important; + } + + .\32xl\:focus-within\:text-opacity-20:focus-within { + --tw-text-opacity: 0.2 !important; + } + + .\32xl\:focus-within\:text-opacity-25:focus-within { + --tw-text-opacity: 0.25 !important; + } + + .\32xl\:focus-within\:text-opacity-30:focus-within { + --tw-text-opacity: 0.3 !important; + } + + .\32xl\:focus-within\:text-opacity-40:focus-within { + --tw-text-opacity: 0.4 !important; + } + + .\32xl\:focus-within\:text-opacity-50:focus-within { + --tw-text-opacity: 0.5 !important; + } + + .\32xl\:focus-within\:text-opacity-60:focus-within { + --tw-text-opacity: 0.6 !important; + } + + .\32xl\:focus-within\:text-opacity-70:focus-within { + --tw-text-opacity: 0.7 !important; + } + + .\32xl\:focus-within\:text-opacity-75:focus-within { + --tw-text-opacity: 0.75 !important; + } + + .\32xl\:focus-within\:text-opacity-80:focus-within { + --tw-text-opacity: 0.8 !important; + } + + .\32xl\:focus-within\:text-opacity-90:focus-within { + --tw-text-opacity: 0.9 !important; + } + + .\32xl\:focus-within\:text-opacity-95:focus-within { + --tw-text-opacity: 0.95 !important; + } + + .\32xl\:focus-within\:text-opacity-100:focus-within { + --tw-text-opacity: 1 !important; + } + + .\32xl\:hover\:text-opacity-0:hover { + --tw-text-opacity: 0 !important; + } + + .\32xl\:hover\:text-opacity-5:hover { + --tw-text-opacity: 0.05 !important; + } + + .\32xl\:hover\:text-opacity-10:hover { + --tw-text-opacity: 0.1 !important; + } + + .\32xl\:hover\:text-opacity-20:hover { + --tw-text-opacity: 0.2 !important; + } + + .\32xl\:hover\:text-opacity-25:hover { + --tw-text-opacity: 0.25 !important; + } + + .\32xl\:hover\:text-opacity-30:hover { + --tw-text-opacity: 0.3 !important; + } + + .\32xl\:hover\:text-opacity-40:hover { + --tw-text-opacity: 0.4 !important; + } + + .\32xl\:hover\:text-opacity-50:hover { + --tw-text-opacity: 0.5 !important; + } + + .\32xl\:hover\:text-opacity-60:hover { + --tw-text-opacity: 0.6 !important; + } + + .\32xl\:hover\:text-opacity-70:hover { + --tw-text-opacity: 0.7 !important; + } + + .\32xl\:hover\:text-opacity-75:hover { + --tw-text-opacity: 0.75 !important; + } + + .\32xl\:hover\:text-opacity-80:hover { + --tw-text-opacity: 0.8 !important; + } + + .\32xl\:hover\:text-opacity-90:hover { + --tw-text-opacity: 0.9 !important; + } + + .\32xl\:hover\:text-opacity-95:hover { + --tw-text-opacity: 0.95 !important; + } + + .\32xl\:hover\:text-opacity-100:hover { + --tw-text-opacity: 1 !important; + } + + .\32xl\:focus\:text-opacity-0:focus { + --tw-text-opacity: 0 !important; + } + + .\32xl\:focus\:text-opacity-5:focus { + --tw-text-opacity: 0.05 !important; + } + + .\32xl\:focus\:text-opacity-10:focus { + --tw-text-opacity: 0.1 !important; + } + + .\32xl\:focus\:text-opacity-20:focus { + --tw-text-opacity: 0.2 !important; + } + + .\32xl\:focus\:text-opacity-25:focus { + --tw-text-opacity: 0.25 !important; + } + + .\32xl\:focus\:text-opacity-30:focus { + --tw-text-opacity: 0.3 !important; + } + + .\32xl\:focus\:text-opacity-40:focus { + --tw-text-opacity: 0.4 !important; + } + + .\32xl\:focus\:text-opacity-50:focus { + --tw-text-opacity: 0.5 !important; + } + + .\32xl\:focus\:text-opacity-60:focus { + --tw-text-opacity: 0.6 !important; + } + + .\32xl\:focus\:text-opacity-70:focus { + --tw-text-opacity: 0.7 !important; + } + + .\32xl\:focus\:text-opacity-75:focus { + --tw-text-opacity: 0.75 !important; + } + + .\32xl\:focus\:text-opacity-80:focus { + --tw-text-opacity: 0.8 !important; + } + + .\32xl\:focus\:text-opacity-90:focus { + --tw-text-opacity: 0.9 !important; + } + + .\32xl\:focus\:text-opacity-95:focus { + --tw-text-opacity: 0.95 !important; + } + + .\32xl\:focus\:text-opacity-100:focus { + --tw-text-opacity: 1 !important; + } + + .\32xl\:truncate { + overflow: hidden !important; + text-overflow: ellipsis !important; + white-space: nowrap !important; + } + + .\32xl\:overflow-ellipsis { + text-overflow: ellipsis !important; + } + + .\32xl\:overflow-clip { + text-overflow: clip !important; + } + + .\32xl\:italic { + font-style: italic !important; + } + + .\32xl\:not-italic { + font-style: normal !important; + } + + .\32xl\:uppercase { + text-transform: uppercase !important; + } + + .\32xl\:lowercase { + text-transform: lowercase !important; + } + + .\32xl\:capitalize { + text-transform: capitalize !important; + } + + .\32xl\:normal-case { + text-transform: none !important; + } + + .\32xl\:underline { + text-decoration: underline !important; + } + + .\32xl\:line-through { + text-decoration: line-through !important; + } + + .\32xl\:no-underline { + text-decoration: none !important; + } + + .group:hover .\32xl\:group-hover\:underline { + text-decoration: underline !important; + } + + .group:hover .\32xl\:group-hover\:line-through { + text-decoration: line-through !important; + } + + .group:hover .\32xl\:group-hover\:no-underline { + text-decoration: none !important; + } + + .\32xl\:focus-within\:underline:focus-within { + text-decoration: underline !important; + } + + .\32xl\:focus-within\:line-through:focus-within { + text-decoration: line-through !important; + } + + .\32xl\:focus-within\:no-underline:focus-within { + text-decoration: none !important; + } + + .\32xl\:hover\:underline:hover { + text-decoration: underline !important; + } + + .\32xl\:hover\:line-through:hover { + text-decoration: line-through !important; + } + + .\32xl\:hover\:no-underline:hover { + text-decoration: none !important; + } + + .\32xl\:focus\:underline:focus { + text-decoration: underline !important; + } + + .\32xl\:focus\:line-through:focus { + text-decoration: line-through !important; + } + + .\32xl\:focus\:no-underline:focus { + text-decoration: none !important; + } + + .\32xl\:antialiased { + -webkit-font-smoothing: antialiased !important; + -moz-osx-font-smoothing: grayscale !important; + } + + .\32xl\:subpixel-antialiased { + -webkit-font-smoothing: auto !important; + -moz-osx-font-smoothing: auto !important; + } + + .\32xl\:ordinal, .\32xl\:slashed-zero, .\32xl\:lining-nums, .\32xl\:oldstyle-nums, .\32xl\:proportional-nums, .\32xl\:tabular-nums, .\32xl\:diagonal-fractions, .\32xl\:stacked-fractions { + --tw-ordinal: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-slashed-zero: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-numeric-figure: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-numeric-spacing: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-numeric-fraction: var(--tw-empty,/*!*/ /*!*/) !important; + font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction) !important; + } + + .\32xl\:normal-nums { + font-variant-numeric: normal !important; + } + + .\32xl\:ordinal { + --tw-ordinal: ordinal !important; + } + + .\32xl\:slashed-zero { + --tw-slashed-zero: slashed-zero !important; + } + + .\32xl\:lining-nums { + --tw-numeric-figure: lining-nums !important; + } + + .\32xl\:oldstyle-nums { + --tw-numeric-figure: oldstyle-nums !important; + } + + .\32xl\:proportional-nums { + --tw-numeric-spacing: proportional-nums !important; + } + + .\32xl\:tabular-nums { + --tw-numeric-spacing: tabular-nums !important; + } + + .\32xl\:diagonal-fractions { + --tw-numeric-fraction: diagonal-fractions !important; + } + + .\32xl\:stacked-fractions { + --tw-numeric-fraction: stacked-fractions !important; + } + + .\32xl\:tracking-tighter { + letter-spacing: -0.05em !important; + } + + .\32xl\:tracking-tight { + letter-spacing: -0.025em !important; + } + + .\32xl\:tracking-normal { + letter-spacing: 0em !important; + } + + .\32xl\:tracking-wide { + letter-spacing: 0.025em !important; + } + + .\32xl\:tracking-wider { + letter-spacing: 0.05em !important; + } + + .\32xl\:tracking-widest { + letter-spacing: 0.1em !important; + } + + .\32xl\:select-none { + -webkit-user-select: none !important; + -moz-user-select: none !important; + -ms-user-select: none !important; + user-select: none !important; + } + + .\32xl\:select-text { + -webkit-user-select: text !important; + -moz-user-select: text !important; + -ms-user-select: text !important; + user-select: text !important; + } + + .\32xl\:select-all { + -webkit-user-select: all !important; + -moz-user-select: all !important; + user-select: all !important; + } + + .\32xl\:select-auto { + -webkit-user-select: auto !important; + -moz-user-select: auto !important; + -ms-user-select: auto !important; + user-select: auto !important; + } + + .\32xl\:align-baseline { + vertical-align: baseline !important; + } + + .\32xl\:align-top { + vertical-align: top !important; + } + + .\32xl\:align-middle { + vertical-align: middle !important; + } + + .\32xl\:align-bottom { + vertical-align: bottom !important; + } + + .\32xl\:align-text-top { + vertical-align: text-top !important; + } + + .\32xl\:align-text-bottom { + vertical-align: text-bottom !important; + } + + .\32xl\:visible { + visibility: visible !important; + } + + .\32xl\:invisible { + visibility: hidden !important; + } + + .\32xl\:whitespace-normal { + white-space: normal !important; + } + + .\32xl\:whitespace-nowrap { + white-space: nowrap !important; + } + + .\32xl\:whitespace-pre { + white-space: pre !important; + } + + .\32xl\:whitespace-pre-line { + white-space: pre-line !important; + } + + .\32xl\:whitespace-pre-wrap { + white-space: pre-wrap !important; + } + + .\32xl\:break-normal { + overflow-wrap: normal !important; + word-break: normal !important; + } + + .\32xl\:break-words { + overflow-wrap: break-word !important; + } + + .\32xl\:break-all { + word-break: break-all !important; + } + + .\32xl\:w-0 { + width: 0px !important; + } + + .\32xl\:w-1 { + width: 0.25rem !important; + } + + .\32xl\:w-2 { + width: 0.5rem !important; + } + + .\32xl\:w-3 { + width: 0.75rem !important; + } + + .\32xl\:w-4 { + width: 1rem !important; + } + + .\32xl\:w-5 { + width: 1.25rem !important; + } + + .\32xl\:w-6 { + width: 1.5rem !important; + } + + .\32xl\:w-7 { + width: 1.75rem !important; + } + + .\32xl\:w-8 { + width: 2rem !important; + } + + .\32xl\:w-9 { + width: 2.25rem !important; + } + + .\32xl\:w-10 { + width: 2.5rem !important; + } + + .\32xl\:w-11 { + width: 2.75rem !important; + } + + .\32xl\:w-12 { + width: 3rem !important; + } + + .\32xl\:w-14 { + width: 3.5rem !important; + } + + .\32xl\:w-16 { + width: 4rem !important; + } + + .\32xl\:w-20 { + width: 5rem !important; + } + + .\32xl\:w-24 { + width: 6rem !important; + } + + .\32xl\:w-28 { + width: 7rem !important; + } + + .\32xl\:w-32 { + width: 8rem !important; + } + + .\32xl\:w-36 { + width: 9rem !important; + } + + .\32xl\:w-40 { + width: 10rem !important; + } + + .\32xl\:w-44 { + width: 11rem !important; + } + + .\32xl\:w-48 { + width: 12rem !important; + } + + .\32xl\:w-52 { + width: 13rem !important; + } + + .\32xl\:w-56 { + width: 14rem !important; + } + + .\32xl\:w-60 { + width: 15rem !important; + } + + .\32xl\:w-64 { + width: 16rem !important; + } + + .\32xl\:w-72 { + width: 18rem !important; + } + + .\32xl\:w-80 { + width: 20rem !important; + } + + .\32xl\:w-96 { + width: 24rem !important; + } + + .\32xl\:w-auto { + width: auto !important; + } + + .\32xl\:w-px { + width: 1px !important; + } + + .\32xl\:w-0\.5 { + width: 0.125rem !important; + } + + .\32xl\:w-1\.5 { + width: 0.375rem !important; + } + + .\32xl\:w-2\.5 { + width: 0.625rem !important; + } + + .\32xl\:w-3\.5 { + width: 0.875rem !important; + } + + .\32xl\:w-1\/2 { + width: 50% !important; + } + + .\32xl\:w-1\/3 { + width: 33.333333% !important; + } + + .\32xl\:w-2\/3 { + width: 66.666667% !important; + } + + .\32xl\:w-1\/4 { + width: 25% !important; + } + + .\32xl\:w-2\/4 { + width: 50% !important; + } + + .\32xl\:w-3\/4 { + width: 75% !important; + } + + .\32xl\:w-1\/5 { + width: 20% !important; + } + + .\32xl\:w-2\/5 { + width: 40% !important; + } + + .\32xl\:w-3\/5 { + width: 60% !important; + } + + .\32xl\:w-4\/5 { + width: 80% !important; + } + + .\32xl\:w-1\/6 { + width: 16.666667% !important; + } + + .\32xl\:w-2\/6 { + width: 33.333333% !important; + } + + .\32xl\:w-3\/6 { + width: 50% !important; + } + + .\32xl\:w-4\/6 { + width: 66.666667% !important; + } + + .\32xl\:w-5\/6 { + width: 83.333333% !important; + } + + .\32xl\:w-1\/12 { + width: 8.333333% !important; + } + + .\32xl\:w-2\/12 { + width: 16.666667% !important; + } + + .\32xl\:w-3\/12 { + width: 25% !important; + } + + .\32xl\:w-4\/12 { + width: 33.333333% !important; + } + + .\32xl\:w-5\/12 { + width: 41.666667% !important; + } + + .\32xl\:w-6\/12 { + width: 50% !important; + } + + .\32xl\:w-7\/12 { + width: 58.333333% !important; + } + + .\32xl\:w-8\/12 { + width: 66.666667% !important; + } + + .\32xl\:w-9\/12 { + width: 75% !important; + } + + .\32xl\:w-10\/12 { + width: 83.333333% !important; + } + + .\32xl\:w-11\/12 { + width: 91.666667% !important; + } + + .\32xl\:w-full { + width: 100% !important; + } + + .\32xl\:w-screen { + width: 100vw !important; + } + + .\32xl\:w-min { + width: -webkit-min-content !important; + width: -moz-min-content !important; + width: min-content !important; + } + + .\32xl\:w-max { + width: -webkit-max-content !important; + width: -moz-max-content !important; + width: max-content !important; + } + + .\32xl\:z-0 { + z-index: 0 !important; + } + + .\32xl\:z-10 { + z-index: 10 !important; + } + + .\32xl\:z-20 { + z-index: 20 !important; + } + + .\32xl\:z-30 { + z-index: 30 !important; + } + + .\32xl\:z-40 { + z-index: 40 !important; + } + + .\32xl\:z-50 { + z-index: 50 !important; + } + + .\32xl\:z-auto { + z-index: auto !important; + } + + .\32xl\:focus-within\:z-0:focus-within { + z-index: 0 !important; + } + + .\32xl\:focus-within\:z-10:focus-within { + z-index: 10 !important; + } + + .\32xl\:focus-within\:z-20:focus-within { + z-index: 20 !important; + } + + .\32xl\:focus-within\:z-30:focus-within { + z-index: 30 !important; + } + + .\32xl\:focus-within\:z-40:focus-within { + z-index: 40 !important; + } + + .\32xl\:focus-within\:z-50:focus-within { + z-index: 50 !important; + } + + .\32xl\:focus-within\:z-auto:focus-within { + z-index: auto !important; + } + + .\32xl\:focus\:z-0:focus { + z-index: 0 !important; + } + + .\32xl\:focus\:z-10:focus { + z-index: 10 !important; + } + + .\32xl\:focus\:z-20:focus { + z-index: 20 !important; + } + + .\32xl\:focus\:z-30:focus { + z-index: 30 !important; + } + + .\32xl\:focus\:z-40:focus { + z-index: 40 !important; + } + + .\32xl\:focus\:z-50:focus { + z-index: 50 !important; + } + + .\32xl\:focus\:z-auto:focus { + z-index: auto !important; + } + + .\32xl\:isolate { + isolation: isolate !important; + } + + .\32xl\:isolation-auto { + isolation: auto !important; + } + + .\32xl\:gap-0 { + gap: 0px !important; + } + + .\32xl\:gap-1 { + gap: 0.25rem !important; + } + + .\32xl\:gap-2 { + gap: 0.5rem !important; + } + + .\32xl\:gap-3 { + gap: 0.75rem !important; + } + + .\32xl\:gap-4 { + gap: 1rem !important; + } + + .\32xl\:gap-5 { + gap: 1.25rem !important; + } + + .\32xl\:gap-6 { + gap: 1.5rem !important; + } + + .\32xl\:gap-7 { + gap: 1.75rem !important; + } + + .\32xl\:gap-8 { + gap: 2rem !important; + } + + .\32xl\:gap-9 { + gap: 2.25rem !important; + } + + .\32xl\:gap-10 { + gap: 2.5rem !important; + } + + .\32xl\:gap-11 { + gap: 2.75rem !important; + } + + .\32xl\:gap-12 { + gap: 3rem !important; + } + + .\32xl\:gap-14 { + gap: 3.5rem !important; + } + + .\32xl\:gap-16 { + gap: 4rem !important; + } + + .\32xl\:gap-20 { + gap: 5rem !important; + } + + .\32xl\:gap-24 { + gap: 6rem !important; + } + + .\32xl\:gap-28 { + gap: 7rem !important; + } + + .\32xl\:gap-32 { + gap: 8rem !important; + } + + .\32xl\:gap-36 { + gap: 9rem !important; + } + + .\32xl\:gap-40 { + gap: 10rem !important; + } + + .\32xl\:gap-44 { + gap: 11rem !important; + } + + .\32xl\:gap-48 { + gap: 12rem !important; + } + + .\32xl\:gap-52 { + gap: 13rem !important; + } + + .\32xl\:gap-56 { + gap: 14rem !important; + } + + .\32xl\:gap-60 { + gap: 15rem !important; + } + + .\32xl\:gap-64 { + gap: 16rem !important; + } + + .\32xl\:gap-72 { + gap: 18rem !important; + } + + .\32xl\:gap-80 { + gap: 20rem !important; + } + + .\32xl\:gap-96 { + gap: 24rem !important; + } + + .\32xl\:gap-px { + gap: 1px !important; + } + + .\32xl\:gap-0\.5 { + gap: 0.125rem !important; + } + + .\32xl\:gap-1\.5 { + gap: 0.375rem !important; + } + + .\32xl\:gap-2\.5 { + gap: 0.625rem !important; + } + + .\32xl\:gap-3\.5 { + gap: 0.875rem !important; + } + + .\32xl\:gap-x-0 { + -moz-column-gap: 0px !important; + column-gap: 0px !important; + } + + .\32xl\:gap-x-1 { + -moz-column-gap: 0.25rem !important; + column-gap: 0.25rem !important; + } + + .\32xl\:gap-x-2 { + -moz-column-gap: 0.5rem !important; + column-gap: 0.5rem !important; + } + + .\32xl\:gap-x-3 { + -moz-column-gap: 0.75rem !important; + column-gap: 0.75rem !important; + } + + .\32xl\:gap-x-4 { + -moz-column-gap: 1rem !important; + column-gap: 1rem !important; + } + + .\32xl\:gap-x-5 { + -moz-column-gap: 1.25rem !important; + column-gap: 1.25rem !important; + } + + .\32xl\:gap-x-6 { + -moz-column-gap: 1.5rem !important; + column-gap: 1.5rem !important; + } + + .\32xl\:gap-x-7 { + -moz-column-gap: 1.75rem !important; + column-gap: 1.75rem !important; + } + + .\32xl\:gap-x-8 { + -moz-column-gap: 2rem !important; + column-gap: 2rem !important; + } + + .\32xl\:gap-x-9 { + -moz-column-gap: 2.25rem !important; + column-gap: 2.25rem !important; + } + + .\32xl\:gap-x-10 { + -moz-column-gap: 2.5rem !important; + column-gap: 2.5rem !important; + } + + .\32xl\:gap-x-11 { + -moz-column-gap: 2.75rem !important; + column-gap: 2.75rem !important; + } + + .\32xl\:gap-x-12 { + -moz-column-gap: 3rem !important; + column-gap: 3rem !important; + } + + .\32xl\:gap-x-14 { + -moz-column-gap: 3.5rem !important; + column-gap: 3.5rem !important; + } + + .\32xl\:gap-x-16 { + -moz-column-gap: 4rem !important; + column-gap: 4rem !important; + } + + .\32xl\:gap-x-20 { + -moz-column-gap: 5rem !important; + column-gap: 5rem !important; + } + + .\32xl\:gap-x-24 { + -moz-column-gap: 6rem !important; + column-gap: 6rem !important; + } + + .\32xl\:gap-x-28 { + -moz-column-gap: 7rem !important; + column-gap: 7rem !important; + } + + .\32xl\:gap-x-32 { + -moz-column-gap: 8rem !important; + column-gap: 8rem !important; + } + + .\32xl\:gap-x-36 { + -moz-column-gap: 9rem !important; + column-gap: 9rem !important; + } + + .\32xl\:gap-x-40 { + -moz-column-gap: 10rem !important; + column-gap: 10rem !important; + } + + .\32xl\:gap-x-44 { + -moz-column-gap: 11rem !important; + column-gap: 11rem !important; + } + + .\32xl\:gap-x-48 { + -moz-column-gap: 12rem !important; + column-gap: 12rem !important; + } + + .\32xl\:gap-x-52 { + -moz-column-gap: 13rem !important; + column-gap: 13rem !important; + } + + .\32xl\:gap-x-56 { + -moz-column-gap: 14rem !important; + column-gap: 14rem !important; + } + + .\32xl\:gap-x-60 { + -moz-column-gap: 15rem !important; + column-gap: 15rem !important; + } + + .\32xl\:gap-x-64 { + -moz-column-gap: 16rem !important; + column-gap: 16rem !important; + } + + .\32xl\:gap-x-72 { + -moz-column-gap: 18rem !important; + column-gap: 18rem !important; + } + + .\32xl\:gap-x-80 { + -moz-column-gap: 20rem !important; + column-gap: 20rem !important; + } + + .\32xl\:gap-x-96 { + -moz-column-gap: 24rem !important; + column-gap: 24rem !important; + } + + .\32xl\:gap-x-px { + -moz-column-gap: 1px !important; + column-gap: 1px !important; + } + + .\32xl\:gap-x-0\.5 { + -moz-column-gap: 0.125rem !important; + column-gap: 0.125rem !important; + } + + .\32xl\:gap-x-1\.5 { + -moz-column-gap: 0.375rem !important; + column-gap: 0.375rem !important; + } + + .\32xl\:gap-x-2\.5 { + -moz-column-gap: 0.625rem !important; + column-gap: 0.625rem !important; + } + + .\32xl\:gap-x-3\.5 { + -moz-column-gap: 0.875rem !important; + column-gap: 0.875rem !important; + } + + .\32xl\:gap-y-0 { + row-gap: 0px !important; + } + + .\32xl\:gap-y-1 { + row-gap: 0.25rem !important; + } + + .\32xl\:gap-y-2 { + row-gap: 0.5rem !important; + } + + .\32xl\:gap-y-3 { + row-gap: 0.75rem !important; + } + + .\32xl\:gap-y-4 { + row-gap: 1rem !important; + } + + .\32xl\:gap-y-5 { + row-gap: 1.25rem !important; + } + + .\32xl\:gap-y-6 { + row-gap: 1.5rem !important; + } + + .\32xl\:gap-y-7 { + row-gap: 1.75rem !important; + } + + .\32xl\:gap-y-8 { + row-gap: 2rem !important; + } + + .\32xl\:gap-y-9 { + row-gap: 2.25rem !important; + } + + .\32xl\:gap-y-10 { + row-gap: 2.5rem !important; + } + + .\32xl\:gap-y-11 { + row-gap: 2.75rem !important; + } + + .\32xl\:gap-y-12 { + row-gap: 3rem !important; + } + + .\32xl\:gap-y-14 { + row-gap: 3.5rem !important; + } + + .\32xl\:gap-y-16 { + row-gap: 4rem !important; + } + + .\32xl\:gap-y-20 { + row-gap: 5rem !important; + } + + .\32xl\:gap-y-24 { + row-gap: 6rem !important; + } + + .\32xl\:gap-y-28 { + row-gap: 7rem !important; + } + + .\32xl\:gap-y-32 { + row-gap: 8rem !important; + } + + .\32xl\:gap-y-36 { + row-gap: 9rem !important; + } + + .\32xl\:gap-y-40 { + row-gap: 10rem !important; + } + + .\32xl\:gap-y-44 { + row-gap: 11rem !important; + } + + .\32xl\:gap-y-48 { + row-gap: 12rem !important; + } + + .\32xl\:gap-y-52 { + row-gap: 13rem !important; + } + + .\32xl\:gap-y-56 { + row-gap: 14rem !important; + } + + .\32xl\:gap-y-60 { + row-gap: 15rem !important; + } + + .\32xl\:gap-y-64 { + row-gap: 16rem !important; + } + + .\32xl\:gap-y-72 { + row-gap: 18rem !important; + } + + .\32xl\:gap-y-80 { + row-gap: 20rem !important; + } + + .\32xl\:gap-y-96 { + row-gap: 24rem !important; + } + + .\32xl\:gap-y-px { + row-gap: 1px !important; + } + + .\32xl\:gap-y-0\.5 { + row-gap: 0.125rem !important; + } + + .\32xl\:gap-y-1\.5 { + row-gap: 0.375rem !important; + } + + .\32xl\:gap-y-2\.5 { + row-gap: 0.625rem !important; + } + + .\32xl\:gap-y-3\.5 { + row-gap: 0.875rem !important; + } + + .\32xl\:grid-flow-row { + grid-auto-flow: row !important; + } + + .\32xl\:grid-flow-col { + grid-auto-flow: column !important; + } + + .\32xl\:grid-flow-row-dense { + grid-auto-flow: row dense !important; + } + + .\32xl\:grid-flow-col-dense { + grid-auto-flow: column dense !important; + } + + .\32xl\:grid-cols-1 { + grid-template-columns: repeat(1, minmax(0, 1fr)) !important; + } + + .\32xl\:grid-cols-2 { + grid-template-columns: repeat(2, minmax(0, 1fr)) !important; + } + + .\32xl\:grid-cols-3 { + grid-template-columns: repeat(3, minmax(0, 1fr)) !important; + } + + .\32xl\:grid-cols-4 { + grid-template-columns: repeat(4, minmax(0, 1fr)) !important; + } + + .\32xl\:grid-cols-5 { + grid-template-columns: repeat(5, minmax(0, 1fr)) !important; + } + + .\32xl\:grid-cols-6 { + grid-template-columns: repeat(6, minmax(0, 1fr)) !important; + } + + .\32xl\:grid-cols-7 { + grid-template-columns: repeat(7, minmax(0, 1fr)) !important; + } + + .\32xl\:grid-cols-8 { + grid-template-columns: repeat(8, minmax(0, 1fr)) !important; + } + + .\32xl\:grid-cols-9 { + grid-template-columns: repeat(9, minmax(0, 1fr)) !important; + } + + .\32xl\:grid-cols-10 { + grid-template-columns: repeat(10, minmax(0, 1fr)) !important; + } + + .\32xl\:grid-cols-11 { + grid-template-columns: repeat(11, minmax(0, 1fr)) !important; + } + + .\32xl\:grid-cols-12 { + grid-template-columns: repeat(12, minmax(0, 1fr)) !important; + } + + .\32xl\:grid-cols-none { + grid-template-columns: none !important; + } + + .\32xl\:auto-cols-auto { + grid-auto-columns: auto !important; + } + + .\32xl\:auto-cols-min { + grid-auto-columns: -webkit-min-content !important; + grid-auto-columns: min-content !important; + } + + .\32xl\:auto-cols-max { + grid-auto-columns: -webkit-max-content !important; + grid-auto-columns: max-content !important; + } + + .\32xl\:auto-cols-fr { + grid-auto-columns: minmax(0, 1fr) !important; + } + + .\32xl\:col-auto { + grid-column: auto !important; + } + + .\32xl\:col-span-1 { + grid-column: span 1 / span 1 !important; + } + + .\32xl\:col-span-2 { + grid-column: span 2 / span 2 !important; + } + + .\32xl\:col-span-3 { + grid-column: span 3 / span 3 !important; + } + + .\32xl\:col-span-4 { + grid-column: span 4 / span 4 !important; + } + + .\32xl\:col-span-5 { + grid-column: span 5 / span 5 !important; + } + + .\32xl\:col-span-6 { + grid-column: span 6 / span 6 !important; + } + + .\32xl\:col-span-7 { + grid-column: span 7 / span 7 !important; + } + + .\32xl\:col-span-8 { + grid-column: span 8 / span 8 !important; + } + + .\32xl\:col-span-9 { + grid-column: span 9 / span 9 !important; + } + + .\32xl\:col-span-10 { + grid-column: span 10 / span 10 !important; + } + + .\32xl\:col-span-11 { + grid-column: span 11 / span 11 !important; + } + + .\32xl\:col-span-12 { + grid-column: span 12 / span 12 !important; + } + + .\32xl\:col-span-full { + grid-column: 1 / -1 !important; + } + + .\32xl\:col-start-1 { + grid-column-start: 1 !important; + } + + .\32xl\:col-start-2 { + grid-column-start: 2 !important; + } + + .\32xl\:col-start-3 { + grid-column-start: 3 !important; + } + + .\32xl\:col-start-4 { + grid-column-start: 4 !important; + } + + .\32xl\:col-start-5 { + grid-column-start: 5 !important; + } + + .\32xl\:col-start-6 { + grid-column-start: 6 !important; + } + + .\32xl\:col-start-7 { + grid-column-start: 7 !important; + } + + .\32xl\:col-start-8 { + grid-column-start: 8 !important; + } + + .\32xl\:col-start-9 { + grid-column-start: 9 !important; + } + + .\32xl\:col-start-10 { + grid-column-start: 10 !important; + } + + .\32xl\:col-start-11 { + grid-column-start: 11 !important; + } + + .\32xl\:col-start-12 { + grid-column-start: 12 !important; + } + + .\32xl\:col-start-13 { + grid-column-start: 13 !important; + } + + .\32xl\:col-start-auto { + grid-column-start: auto !important; + } + + .\32xl\:col-end-1 { + grid-column-end: 1 !important; + } + + .\32xl\:col-end-2 { + grid-column-end: 2 !important; + } + + .\32xl\:col-end-3 { + grid-column-end: 3 !important; + } + + .\32xl\:col-end-4 { + grid-column-end: 4 !important; + } + + .\32xl\:col-end-5 { + grid-column-end: 5 !important; + } + + .\32xl\:col-end-6 { + grid-column-end: 6 !important; + } + + .\32xl\:col-end-7 { + grid-column-end: 7 !important; + } + + .\32xl\:col-end-8 { + grid-column-end: 8 !important; + } + + .\32xl\:col-end-9 { + grid-column-end: 9 !important; + } + + .\32xl\:col-end-10 { + grid-column-end: 10 !important; + } + + .\32xl\:col-end-11 { + grid-column-end: 11 !important; + } + + .\32xl\:col-end-12 { + grid-column-end: 12 !important; + } + + .\32xl\:col-end-13 { + grid-column-end: 13 !important; + } + + .\32xl\:col-end-auto { + grid-column-end: auto !important; + } + + .\32xl\:grid-rows-1 { + grid-template-rows: repeat(1, minmax(0, 1fr)) !important; + } + + .\32xl\:grid-rows-2 { + grid-template-rows: repeat(2, minmax(0, 1fr)) !important; + } + + .\32xl\:grid-rows-3 { + grid-template-rows: repeat(3, minmax(0, 1fr)) !important; + } + + .\32xl\:grid-rows-4 { + grid-template-rows: repeat(4, minmax(0, 1fr)) !important; + } + + .\32xl\:grid-rows-5 { + grid-template-rows: repeat(5, minmax(0, 1fr)) !important; + } + + .\32xl\:grid-rows-6 { + grid-template-rows: repeat(6, minmax(0, 1fr)) !important; + } + + .\32xl\:grid-rows-none { + grid-template-rows: none !important; + } + + .\32xl\:auto-rows-auto { + grid-auto-rows: auto !important; + } + + .\32xl\:auto-rows-min { + grid-auto-rows: -webkit-min-content !important; + grid-auto-rows: min-content !important; + } + + .\32xl\:auto-rows-max { + grid-auto-rows: -webkit-max-content !important; + grid-auto-rows: max-content !important; + } + + .\32xl\:auto-rows-fr { + grid-auto-rows: minmax(0, 1fr) !important; + } + + .\32xl\:row-auto { + grid-row: auto !important; + } + + .\32xl\:row-span-1 { + grid-row: span 1 / span 1 !important; + } + + .\32xl\:row-span-2 { + grid-row: span 2 / span 2 !important; + } + + .\32xl\:row-span-3 { + grid-row: span 3 / span 3 !important; + } + + .\32xl\:row-span-4 { + grid-row: span 4 / span 4 !important; + } + + .\32xl\:row-span-5 { + grid-row: span 5 / span 5 !important; + } + + .\32xl\:row-span-6 { + grid-row: span 6 / span 6 !important; + } + + .\32xl\:row-span-full { + grid-row: 1 / -1 !important; + } + + .\32xl\:row-start-1 { + grid-row-start: 1 !important; + } + + .\32xl\:row-start-2 { + grid-row-start: 2 !important; + } + + .\32xl\:row-start-3 { + grid-row-start: 3 !important; + } + + .\32xl\:row-start-4 { + grid-row-start: 4 !important; + } + + .\32xl\:row-start-5 { + grid-row-start: 5 !important; + } + + .\32xl\:row-start-6 { + grid-row-start: 6 !important; + } + + .\32xl\:row-start-7 { + grid-row-start: 7 !important; + } + + .\32xl\:row-start-auto { + grid-row-start: auto !important; + } + + .\32xl\:row-end-1 { + grid-row-end: 1 !important; + } + + .\32xl\:row-end-2 { + grid-row-end: 2 !important; + } + + .\32xl\:row-end-3 { + grid-row-end: 3 !important; + } + + .\32xl\:row-end-4 { + grid-row-end: 4 !important; + } + + .\32xl\:row-end-5 { + grid-row-end: 5 !important; + } + + .\32xl\:row-end-6 { + grid-row-end: 6 !important; + } + + .\32xl\:row-end-7 { + grid-row-end: 7 !important; + } + + .\32xl\:row-end-auto { + grid-row-end: auto !important; + } + + .\32xl\:transform { + --tw-translate-x: 0 !important; + --tw-translate-y: 0 !important; + --tw-rotate: 0 !important; + --tw-skew-x: 0 !important; + --tw-skew-y: 0 !important; + --tw-scale-x: 1 !important; + --tw-scale-y: 1 !important; + 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)) !important; + } + + .\32xl\:transform-gpu { + --tw-translate-x: 0 !important; + --tw-translate-y: 0 !important; + --tw-rotate: 0 !important; + --tw-skew-x: 0 !important; + --tw-skew-y: 0 !important; + --tw-scale-x: 1 !important; + --tw-scale-y: 1 !important; + transform: translate3d(var(--tw-translate-x), var(--tw-translate-y), 0) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)) !important; + } + + .\32xl\:transform-none { + transform: none !important; + } + + .\32xl\:origin-center { + transform-origin: center !important; + } + + .\32xl\:origin-top { + transform-origin: top !important; + } + + .\32xl\:origin-top-right { + transform-origin: top right !important; + } + + .\32xl\:origin-right { + transform-origin: right !important; + } + + .\32xl\:origin-bottom-right { + transform-origin: bottom right !important; + } + + .\32xl\:origin-bottom { + transform-origin: bottom !important; + } + + .\32xl\:origin-bottom-left { + transform-origin: bottom left !important; + } + + .\32xl\:origin-left { + transform-origin: left !important; + } + + .\32xl\:origin-top-left { + transform-origin: top left !important; + } + + .\32xl\:scale-0 { + --tw-scale-x: 0 !important; + --tw-scale-y: 0 !important; + } + + .\32xl\:scale-50 { + --tw-scale-x: .5 !important; + --tw-scale-y: .5 !important; + } + + .\32xl\:scale-75 { + --tw-scale-x: .75 !important; + --tw-scale-y: .75 !important; + } + + .\32xl\:scale-90 { + --tw-scale-x: .9 !important; + --tw-scale-y: .9 !important; + } + + .\32xl\:scale-95 { + --tw-scale-x: .95 !important; + --tw-scale-y: .95 !important; + } + + .\32xl\:scale-100 { + --tw-scale-x: 1 !important; + --tw-scale-y: 1 !important; + } + + .\32xl\:scale-105 { + --tw-scale-x: 1.05 !important; + --tw-scale-y: 1.05 !important; + } + + .\32xl\:scale-110 { + --tw-scale-x: 1.1 !important; + --tw-scale-y: 1.1 !important; + } + + .\32xl\:scale-125 { + --tw-scale-x: 1.25 !important; + --tw-scale-y: 1.25 !important; + } + + .\32xl\:scale-150 { + --tw-scale-x: 1.5 !important; + --tw-scale-y: 1.5 !important; + } + + .\32xl\:scale-x-0 { + --tw-scale-x: 0 !important; + } + + .\32xl\:scale-x-50 { + --tw-scale-x: .5 !important; + } + + .\32xl\:scale-x-75 { + --tw-scale-x: .75 !important; + } + + .\32xl\:scale-x-90 { + --tw-scale-x: .9 !important; + } + + .\32xl\:scale-x-95 { + --tw-scale-x: .95 !important; + } + + .\32xl\:scale-x-100 { + --tw-scale-x: 1 !important; + } + + .\32xl\:scale-x-105 { + --tw-scale-x: 1.05 !important; + } + + .\32xl\:scale-x-110 { + --tw-scale-x: 1.1 !important; + } + + .\32xl\:scale-x-125 { + --tw-scale-x: 1.25 !important; + } + + .\32xl\:scale-x-150 { + --tw-scale-x: 1.5 !important; + } + + .\32xl\:scale-y-0 { + --tw-scale-y: 0 !important; + } + + .\32xl\:scale-y-50 { + --tw-scale-y: .5 !important; + } + + .\32xl\:scale-y-75 { + --tw-scale-y: .75 !important; + } + + .\32xl\:scale-y-90 { + --tw-scale-y: .9 !important; + } + + .\32xl\:scale-y-95 { + --tw-scale-y: .95 !important; + } + + .\32xl\:scale-y-100 { + --tw-scale-y: 1 !important; + } + + .\32xl\:scale-y-105 { + --tw-scale-y: 1.05 !important; + } + + .\32xl\:scale-y-110 { + --tw-scale-y: 1.1 !important; + } + + .\32xl\:scale-y-125 { + --tw-scale-y: 1.25 !important; + } + + .\32xl\:scale-y-150 { + --tw-scale-y: 1.5 !important; + } + + .\32xl\:hover\:scale-0:hover { + --tw-scale-x: 0 !important; + --tw-scale-y: 0 !important; + } + + .\32xl\:hover\:scale-50:hover { + --tw-scale-x: .5 !important; + --tw-scale-y: .5 !important; + } + + .\32xl\:hover\:scale-75:hover { + --tw-scale-x: .75 !important; + --tw-scale-y: .75 !important; + } + + .\32xl\:hover\:scale-90:hover { + --tw-scale-x: .9 !important; + --tw-scale-y: .9 !important; + } + + .\32xl\:hover\:scale-95:hover { + --tw-scale-x: .95 !important; + --tw-scale-y: .95 !important; + } + + .\32xl\:hover\:scale-100:hover { + --tw-scale-x: 1 !important; + --tw-scale-y: 1 !important; + } + + .\32xl\:hover\:scale-105:hover { + --tw-scale-x: 1.05 !important; + --tw-scale-y: 1.05 !important; + } + + .\32xl\:hover\:scale-110:hover { + --tw-scale-x: 1.1 !important; + --tw-scale-y: 1.1 !important; + } + + .\32xl\:hover\:scale-125:hover { + --tw-scale-x: 1.25 !important; + --tw-scale-y: 1.25 !important; + } + + .\32xl\:hover\:scale-150:hover { + --tw-scale-x: 1.5 !important; + --tw-scale-y: 1.5 !important; + } + + .\32xl\:hover\:scale-x-0:hover { + --tw-scale-x: 0 !important; + } + + .\32xl\:hover\:scale-x-50:hover { + --tw-scale-x: .5 !important; + } + + .\32xl\:hover\:scale-x-75:hover { + --tw-scale-x: .75 !important; + } + + .\32xl\:hover\:scale-x-90:hover { + --tw-scale-x: .9 !important; + } + + .\32xl\:hover\:scale-x-95:hover { + --tw-scale-x: .95 !important; + } + + .\32xl\:hover\:scale-x-100:hover { + --tw-scale-x: 1 !important; + } + + .\32xl\:hover\:scale-x-105:hover { + --tw-scale-x: 1.05 !important; + } + + .\32xl\:hover\:scale-x-110:hover { + --tw-scale-x: 1.1 !important; + } + + .\32xl\:hover\:scale-x-125:hover { + --tw-scale-x: 1.25 !important; + } + + .\32xl\:hover\:scale-x-150:hover { + --tw-scale-x: 1.5 !important; + } + + .\32xl\:hover\:scale-y-0:hover { + --tw-scale-y: 0 !important; + } + + .\32xl\:hover\:scale-y-50:hover { + --tw-scale-y: .5 !important; + } + + .\32xl\:hover\:scale-y-75:hover { + --tw-scale-y: .75 !important; + } + + .\32xl\:hover\:scale-y-90:hover { + --tw-scale-y: .9 !important; + } + + .\32xl\:hover\:scale-y-95:hover { + --tw-scale-y: .95 !important; + } + + .\32xl\:hover\:scale-y-100:hover { + --tw-scale-y: 1 !important; + } + + .\32xl\:hover\:scale-y-105:hover { + --tw-scale-y: 1.05 !important; + } + + .\32xl\:hover\:scale-y-110:hover { + --tw-scale-y: 1.1 !important; + } + + .\32xl\:hover\:scale-y-125:hover { + --tw-scale-y: 1.25 !important; + } + + .\32xl\:hover\:scale-y-150:hover { + --tw-scale-y: 1.5 !important; + } + + .\32xl\:focus\:scale-0:focus { + --tw-scale-x: 0 !important; + --tw-scale-y: 0 !important; + } + + .\32xl\:focus\:scale-50:focus { + --tw-scale-x: .5 !important; + --tw-scale-y: .5 !important; + } + + .\32xl\:focus\:scale-75:focus { + --tw-scale-x: .75 !important; + --tw-scale-y: .75 !important; + } + + .\32xl\:focus\:scale-90:focus { + --tw-scale-x: .9 !important; + --tw-scale-y: .9 !important; + } + + .\32xl\:focus\:scale-95:focus { + --tw-scale-x: .95 !important; + --tw-scale-y: .95 !important; + } + + .\32xl\:focus\:scale-100:focus { + --tw-scale-x: 1 !important; + --tw-scale-y: 1 !important; + } + + .\32xl\:focus\:scale-105:focus { + --tw-scale-x: 1.05 !important; + --tw-scale-y: 1.05 !important; + } + + .\32xl\:focus\:scale-110:focus { + --tw-scale-x: 1.1 !important; + --tw-scale-y: 1.1 !important; + } + + .\32xl\:focus\:scale-125:focus { + --tw-scale-x: 1.25 !important; + --tw-scale-y: 1.25 !important; + } + + .\32xl\:focus\:scale-150:focus { + --tw-scale-x: 1.5 !important; + --tw-scale-y: 1.5 !important; + } + + .\32xl\:focus\:scale-x-0:focus { + --tw-scale-x: 0 !important; + } + + .\32xl\:focus\:scale-x-50:focus { + --tw-scale-x: .5 !important; + } + + .\32xl\:focus\:scale-x-75:focus { + --tw-scale-x: .75 !important; + } + + .\32xl\:focus\:scale-x-90:focus { + --tw-scale-x: .9 !important; + } + + .\32xl\:focus\:scale-x-95:focus { + --tw-scale-x: .95 !important; + } + + .\32xl\:focus\:scale-x-100:focus { + --tw-scale-x: 1 !important; + } + + .\32xl\:focus\:scale-x-105:focus { + --tw-scale-x: 1.05 !important; + } + + .\32xl\:focus\:scale-x-110:focus { + --tw-scale-x: 1.1 !important; + } + + .\32xl\:focus\:scale-x-125:focus { + --tw-scale-x: 1.25 !important; + } + + .\32xl\:focus\:scale-x-150:focus { + --tw-scale-x: 1.5 !important; + } + + .\32xl\:focus\:scale-y-0:focus { + --tw-scale-y: 0 !important; + } + + .\32xl\:focus\:scale-y-50:focus { + --tw-scale-y: .5 !important; + } + + .\32xl\:focus\:scale-y-75:focus { + --tw-scale-y: .75 !important; + } + + .\32xl\:focus\:scale-y-90:focus { + --tw-scale-y: .9 !important; + } + + .\32xl\:focus\:scale-y-95:focus { + --tw-scale-y: .95 !important; + } + + .\32xl\:focus\:scale-y-100:focus { + --tw-scale-y: 1 !important; + } + + .\32xl\:focus\:scale-y-105:focus { + --tw-scale-y: 1.05 !important; + } + + .\32xl\:focus\:scale-y-110:focus { + --tw-scale-y: 1.1 !important; + } + + .\32xl\:focus\:scale-y-125:focus { + --tw-scale-y: 1.25 !important; + } + + .\32xl\:focus\:scale-y-150:focus { + --tw-scale-y: 1.5 !important; + } + + .\32xl\:rotate-0 { + --tw-rotate: 0deg !important; + } + + .\32xl\:rotate-1 { + --tw-rotate: 1deg !important; + } + + .\32xl\:rotate-2 { + --tw-rotate: 2deg !important; + } + + .\32xl\:rotate-3 { + --tw-rotate: 3deg !important; + } + + .\32xl\:rotate-6 { + --tw-rotate: 6deg !important; + } + + .\32xl\:rotate-12 { + --tw-rotate: 12deg !important; + } + + .\32xl\:rotate-45 { + --tw-rotate: 45deg !important; + } + + .\32xl\:rotate-90 { + --tw-rotate: 90deg !important; + } + + .\32xl\:rotate-180 { + --tw-rotate: 180deg !important; + } + + .\32xl\:-rotate-180 { + --tw-rotate: -180deg !important; + } + + .\32xl\:-rotate-90 { + --tw-rotate: -90deg !important; + } + + .\32xl\:-rotate-45 { + --tw-rotate: -45deg !important; + } + + .\32xl\:-rotate-12 { + --tw-rotate: -12deg !important; + } + + .\32xl\:-rotate-6 { + --tw-rotate: -6deg !important; + } + + .\32xl\:-rotate-3 { + --tw-rotate: -3deg !important; + } + + .\32xl\:-rotate-2 { + --tw-rotate: -2deg !important; + } + + .\32xl\:-rotate-1 { + --tw-rotate: -1deg !important; + } + + .\32xl\:hover\:rotate-0:hover { + --tw-rotate: 0deg !important; + } + + .\32xl\:hover\:rotate-1:hover { + --tw-rotate: 1deg !important; + } + + .\32xl\:hover\:rotate-2:hover { + --tw-rotate: 2deg !important; + } + + .\32xl\:hover\:rotate-3:hover { + --tw-rotate: 3deg !important; + } + + .\32xl\:hover\:rotate-6:hover { + --tw-rotate: 6deg !important; + } + + .\32xl\:hover\:rotate-12:hover { + --tw-rotate: 12deg !important; + } + + .\32xl\:hover\:rotate-45:hover { + --tw-rotate: 45deg !important; + } + + .\32xl\:hover\:rotate-90:hover { + --tw-rotate: 90deg !important; + } + + .\32xl\:hover\:rotate-180:hover { + --tw-rotate: 180deg !important; + } + + .\32xl\:hover\:-rotate-180:hover { + --tw-rotate: -180deg !important; + } + + .\32xl\:hover\:-rotate-90:hover { + --tw-rotate: -90deg !important; + } + + .\32xl\:hover\:-rotate-45:hover { + --tw-rotate: -45deg !important; + } + + .\32xl\:hover\:-rotate-12:hover { + --tw-rotate: -12deg !important; + } + + .\32xl\:hover\:-rotate-6:hover { + --tw-rotate: -6deg !important; + } + + .\32xl\:hover\:-rotate-3:hover { + --tw-rotate: -3deg !important; + } + + .\32xl\:hover\:-rotate-2:hover { + --tw-rotate: -2deg !important; + } + + .\32xl\:hover\:-rotate-1:hover { + --tw-rotate: -1deg !important; + } + + .\32xl\:focus\:rotate-0:focus { + --tw-rotate: 0deg !important; + } + + .\32xl\:focus\:rotate-1:focus { + --tw-rotate: 1deg !important; + } + + .\32xl\:focus\:rotate-2:focus { + --tw-rotate: 2deg !important; + } + + .\32xl\:focus\:rotate-3:focus { + --tw-rotate: 3deg !important; + } + + .\32xl\:focus\:rotate-6:focus { + --tw-rotate: 6deg !important; + } + + .\32xl\:focus\:rotate-12:focus { + --tw-rotate: 12deg !important; + } + + .\32xl\:focus\:rotate-45:focus { + --tw-rotate: 45deg !important; + } + + .\32xl\:focus\:rotate-90:focus { + --tw-rotate: 90deg !important; + } + + .\32xl\:focus\:rotate-180:focus { + --tw-rotate: 180deg !important; + } + + .\32xl\:focus\:-rotate-180:focus { + --tw-rotate: -180deg !important; + } + + .\32xl\:focus\:-rotate-90:focus { + --tw-rotate: -90deg !important; + } + + .\32xl\:focus\:-rotate-45:focus { + --tw-rotate: -45deg !important; + } + + .\32xl\:focus\:-rotate-12:focus { + --tw-rotate: -12deg !important; + } + + .\32xl\:focus\:-rotate-6:focus { + --tw-rotate: -6deg !important; + } + + .\32xl\:focus\:-rotate-3:focus { + --tw-rotate: -3deg !important; + } + + .\32xl\:focus\:-rotate-2:focus { + --tw-rotate: -2deg !important; + } + + .\32xl\:focus\:-rotate-1:focus { + --tw-rotate: -1deg !important; + } + + .\32xl\:translate-x-0 { + --tw-translate-x: 0px !important; + } + + .\32xl\:translate-x-1 { + --tw-translate-x: 0.25rem !important; + } + + .\32xl\:translate-x-2 { + --tw-translate-x: 0.5rem !important; + } + + .\32xl\:translate-x-3 { + --tw-translate-x: 0.75rem !important; + } + + .\32xl\:translate-x-4 { + --tw-translate-x: 1rem !important; + } + + .\32xl\:translate-x-5 { + --tw-translate-x: 1.25rem !important; + } + + .\32xl\:translate-x-6 { + --tw-translate-x: 1.5rem !important; + } + + .\32xl\:translate-x-7 { + --tw-translate-x: 1.75rem !important; + } + + .\32xl\:translate-x-8 { + --tw-translate-x: 2rem !important; + } + + .\32xl\:translate-x-9 { + --tw-translate-x: 2.25rem !important; + } + + .\32xl\:translate-x-10 { + --tw-translate-x: 2.5rem !important; + } + + .\32xl\:translate-x-11 { + --tw-translate-x: 2.75rem !important; + } + + .\32xl\:translate-x-12 { + --tw-translate-x: 3rem !important; + } + + .\32xl\:translate-x-14 { + --tw-translate-x: 3.5rem !important; + } + + .\32xl\:translate-x-16 { + --tw-translate-x: 4rem !important; + } + + .\32xl\:translate-x-20 { + --tw-translate-x: 5rem !important; + } + + .\32xl\:translate-x-24 { + --tw-translate-x: 6rem !important; + } + + .\32xl\:translate-x-28 { + --tw-translate-x: 7rem !important; + } + + .\32xl\:translate-x-32 { + --tw-translate-x: 8rem !important; + } + + .\32xl\:translate-x-36 { + --tw-translate-x: 9rem !important; + } + + .\32xl\:translate-x-40 { + --tw-translate-x: 10rem !important; + } + + .\32xl\:translate-x-44 { + --tw-translate-x: 11rem !important; + } + + .\32xl\:translate-x-48 { + --tw-translate-x: 12rem !important; + } + + .\32xl\:translate-x-52 { + --tw-translate-x: 13rem !important; + } + + .\32xl\:translate-x-56 { + --tw-translate-x: 14rem !important; + } + + .\32xl\:translate-x-60 { + --tw-translate-x: 15rem !important; + } + + .\32xl\:translate-x-64 { + --tw-translate-x: 16rem !important; + } + + .\32xl\:translate-x-72 { + --tw-translate-x: 18rem !important; + } + + .\32xl\:translate-x-80 { + --tw-translate-x: 20rem !important; + } + + .\32xl\:translate-x-96 { + --tw-translate-x: 24rem !important; + } + + .\32xl\:translate-x-px { + --tw-translate-x: 1px !important; + } + + .\32xl\:translate-x-0\.5 { + --tw-translate-x: 0.125rem !important; + } + + .\32xl\:translate-x-1\.5 { + --tw-translate-x: 0.375rem !important; + } + + .\32xl\:translate-x-2\.5 { + --tw-translate-x: 0.625rem !important; + } + + .\32xl\:translate-x-3\.5 { + --tw-translate-x: 0.875rem !important; + } + + .\32xl\:-translate-x-0 { + --tw-translate-x: 0px !important; + } + + .\32xl\:-translate-x-1 { + --tw-translate-x: -0.25rem !important; + } + + .\32xl\:-translate-x-2 { + --tw-translate-x: -0.5rem !important; + } + + .\32xl\:-translate-x-3 { + --tw-translate-x: -0.75rem !important; + } + + .\32xl\:-translate-x-4 { + --tw-translate-x: -1rem !important; + } + + .\32xl\:-translate-x-5 { + --tw-translate-x: -1.25rem !important; + } + + .\32xl\:-translate-x-6 { + --tw-translate-x: -1.5rem !important; + } + + .\32xl\:-translate-x-7 { + --tw-translate-x: -1.75rem !important; + } + + .\32xl\:-translate-x-8 { + --tw-translate-x: -2rem !important; + } + + .\32xl\:-translate-x-9 { + --tw-translate-x: -2.25rem !important; + } + + .\32xl\:-translate-x-10 { + --tw-translate-x: -2.5rem !important; + } + + .\32xl\:-translate-x-11 { + --tw-translate-x: -2.75rem !important; + } + + .\32xl\:-translate-x-12 { + --tw-translate-x: -3rem !important; + } + + .\32xl\:-translate-x-14 { + --tw-translate-x: -3.5rem !important; + } + + .\32xl\:-translate-x-16 { + --tw-translate-x: -4rem !important; + } + + .\32xl\:-translate-x-20 { + --tw-translate-x: -5rem !important; + } + + .\32xl\:-translate-x-24 { + --tw-translate-x: -6rem !important; + } + + .\32xl\:-translate-x-28 { + --tw-translate-x: -7rem !important; + } + + .\32xl\:-translate-x-32 { + --tw-translate-x: -8rem !important; + } + + .\32xl\:-translate-x-36 { + --tw-translate-x: -9rem !important; + } + + .\32xl\:-translate-x-40 { + --tw-translate-x: -10rem !important; + } + + .\32xl\:-translate-x-44 { + --tw-translate-x: -11rem !important; + } + + .\32xl\:-translate-x-48 { + --tw-translate-x: -12rem !important; + } + + .\32xl\:-translate-x-52 { + --tw-translate-x: -13rem !important; + } + + .\32xl\:-translate-x-56 { + --tw-translate-x: -14rem !important; + } + + .\32xl\:-translate-x-60 { + --tw-translate-x: -15rem !important; + } + + .\32xl\:-translate-x-64 { + --tw-translate-x: -16rem !important; + } + + .\32xl\:-translate-x-72 { + --tw-translate-x: -18rem !important; + } + + .\32xl\:-translate-x-80 { + --tw-translate-x: -20rem !important; + } + + .\32xl\:-translate-x-96 { + --tw-translate-x: -24rem !important; + } + + .\32xl\:-translate-x-px { + --tw-translate-x: -1px !important; + } + + .\32xl\:-translate-x-0\.5 { + --tw-translate-x: -0.125rem !important; + } + + .\32xl\:-translate-x-1\.5 { + --tw-translate-x: -0.375rem !important; + } + + .\32xl\:-translate-x-2\.5 { + --tw-translate-x: -0.625rem !important; + } + + .\32xl\:-translate-x-3\.5 { + --tw-translate-x: -0.875rem !important; + } + + .\32xl\:translate-x-1\/2 { + --tw-translate-x: 50% !important; + } + + .\32xl\:translate-x-1\/3 { + --tw-translate-x: 33.333333% !important; + } + + .\32xl\:translate-x-2\/3 { + --tw-translate-x: 66.666667% !important; + } + + .\32xl\:translate-x-1\/4 { + --tw-translate-x: 25% !important; + } + + .\32xl\:translate-x-2\/4 { + --tw-translate-x: 50% !important; + } + + .\32xl\:translate-x-3\/4 { + --tw-translate-x: 75% !important; + } + + .\32xl\:translate-x-full { + --tw-translate-x: 100% !important; + } + + .\32xl\:-translate-x-1\/2 { + --tw-translate-x: -50% !important; + } + + .\32xl\:-translate-x-1\/3 { + --tw-translate-x: -33.333333% !important; + } + + .\32xl\:-translate-x-2\/3 { + --tw-translate-x: -66.666667% !important; + } + + .\32xl\:-translate-x-1\/4 { + --tw-translate-x: -25% !important; + } + + .\32xl\:-translate-x-2\/4 { + --tw-translate-x: -50% !important; + } + + .\32xl\:-translate-x-3\/4 { + --tw-translate-x: -75% !important; + } + + .\32xl\:-translate-x-full { + --tw-translate-x: -100% !important; + } + + .\32xl\:translate-y-0 { + --tw-translate-y: 0px !important; + } + + .\32xl\:translate-y-1 { + --tw-translate-y: 0.25rem !important; + } + + .\32xl\:translate-y-2 { + --tw-translate-y: 0.5rem !important; + } + + .\32xl\:translate-y-3 { + --tw-translate-y: 0.75rem !important; + } + + .\32xl\:translate-y-4 { + --tw-translate-y: 1rem !important; + } + + .\32xl\:translate-y-5 { + --tw-translate-y: 1.25rem !important; + } + + .\32xl\:translate-y-6 { + --tw-translate-y: 1.5rem !important; + } + + .\32xl\:translate-y-7 { + --tw-translate-y: 1.75rem !important; + } + + .\32xl\:translate-y-8 { + --tw-translate-y: 2rem !important; + } + + .\32xl\:translate-y-9 { + --tw-translate-y: 2.25rem !important; + } + + .\32xl\:translate-y-10 { + --tw-translate-y: 2.5rem !important; + } + + .\32xl\:translate-y-11 { + --tw-translate-y: 2.75rem !important; + } + + .\32xl\:translate-y-12 { + --tw-translate-y: 3rem !important; + } + + .\32xl\:translate-y-14 { + --tw-translate-y: 3.5rem !important; + } + + .\32xl\:translate-y-16 { + --tw-translate-y: 4rem !important; + } + + .\32xl\:translate-y-20 { + --tw-translate-y: 5rem !important; + } + + .\32xl\:translate-y-24 { + --tw-translate-y: 6rem !important; + } + + .\32xl\:translate-y-28 { + --tw-translate-y: 7rem !important; + } + + .\32xl\:translate-y-32 { + --tw-translate-y: 8rem !important; + } + + .\32xl\:translate-y-36 { + --tw-translate-y: 9rem !important; + } + + .\32xl\:translate-y-40 { + --tw-translate-y: 10rem !important; + } + + .\32xl\:translate-y-44 { + --tw-translate-y: 11rem !important; + } + + .\32xl\:translate-y-48 { + --tw-translate-y: 12rem !important; + } + + .\32xl\:translate-y-52 { + --tw-translate-y: 13rem !important; + } + + .\32xl\:translate-y-56 { + --tw-translate-y: 14rem !important; + } + + .\32xl\:translate-y-60 { + --tw-translate-y: 15rem !important; + } + + .\32xl\:translate-y-64 { + --tw-translate-y: 16rem !important; + } + + .\32xl\:translate-y-72 { + --tw-translate-y: 18rem !important; + } + + .\32xl\:translate-y-80 { + --tw-translate-y: 20rem !important; + } + + .\32xl\:translate-y-96 { + --tw-translate-y: 24rem !important; + } + + .\32xl\:translate-y-px { + --tw-translate-y: 1px !important; + } + + .\32xl\:translate-y-0\.5 { + --tw-translate-y: 0.125rem !important; + } + + .\32xl\:translate-y-1\.5 { + --tw-translate-y: 0.375rem !important; + } + + .\32xl\:translate-y-2\.5 { + --tw-translate-y: 0.625rem !important; + } + + .\32xl\:translate-y-3\.5 { + --tw-translate-y: 0.875rem !important; + } + + .\32xl\:-translate-y-0 { + --tw-translate-y: 0px !important; + } + + .\32xl\:-translate-y-1 { + --tw-translate-y: -0.25rem !important; + } + + .\32xl\:-translate-y-2 { + --tw-translate-y: -0.5rem !important; + } + + .\32xl\:-translate-y-3 { + --tw-translate-y: -0.75rem !important; + } + + .\32xl\:-translate-y-4 { + --tw-translate-y: -1rem !important; + } + + .\32xl\:-translate-y-5 { + --tw-translate-y: -1.25rem !important; + } + + .\32xl\:-translate-y-6 { + --tw-translate-y: -1.5rem !important; + } + + .\32xl\:-translate-y-7 { + --tw-translate-y: -1.75rem !important; + } + + .\32xl\:-translate-y-8 { + --tw-translate-y: -2rem !important; + } + + .\32xl\:-translate-y-9 { + --tw-translate-y: -2.25rem !important; + } + + .\32xl\:-translate-y-10 { + --tw-translate-y: -2.5rem !important; + } + + .\32xl\:-translate-y-11 { + --tw-translate-y: -2.75rem !important; + } + + .\32xl\:-translate-y-12 { + --tw-translate-y: -3rem !important; + } + + .\32xl\:-translate-y-14 { + --tw-translate-y: -3.5rem !important; + } + + .\32xl\:-translate-y-16 { + --tw-translate-y: -4rem !important; + } + + .\32xl\:-translate-y-20 { + --tw-translate-y: -5rem !important; + } + + .\32xl\:-translate-y-24 { + --tw-translate-y: -6rem !important; + } + + .\32xl\:-translate-y-28 { + --tw-translate-y: -7rem !important; + } + + .\32xl\:-translate-y-32 { + --tw-translate-y: -8rem !important; + } + + .\32xl\:-translate-y-36 { + --tw-translate-y: -9rem !important; + } + + .\32xl\:-translate-y-40 { + --tw-translate-y: -10rem !important; + } + + .\32xl\:-translate-y-44 { + --tw-translate-y: -11rem !important; + } + + .\32xl\:-translate-y-48 { + --tw-translate-y: -12rem !important; + } + + .\32xl\:-translate-y-52 { + --tw-translate-y: -13rem !important; + } + + .\32xl\:-translate-y-56 { + --tw-translate-y: -14rem !important; + } + + .\32xl\:-translate-y-60 { + --tw-translate-y: -15rem !important; + } + + .\32xl\:-translate-y-64 { + --tw-translate-y: -16rem !important; + } + + .\32xl\:-translate-y-72 { + --tw-translate-y: -18rem !important; + } + + .\32xl\:-translate-y-80 { + --tw-translate-y: -20rem !important; + } + + .\32xl\:-translate-y-96 { + --tw-translate-y: -24rem !important; + } + + .\32xl\:-translate-y-px { + --tw-translate-y: -1px !important; + } + + .\32xl\:-translate-y-0\.5 { + --tw-translate-y: -0.125rem !important; + } + + .\32xl\:-translate-y-1\.5 { + --tw-translate-y: -0.375rem !important; + } + + .\32xl\:-translate-y-2\.5 { + --tw-translate-y: -0.625rem !important; + } + + .\32xl\:-translate-y-3\.5 { + --tw-translate-y: -0.875rem !important; + } + + .\32xl\:translate-y-1\/2 { + --tw-translate-y: 50% !important; + } + + .\32xl\:translate-y-1\/3 { + --tw-translate-y: 33.333333% !important; + } + + .\32xl\:translate-y-2\/3 { + --tw-translate-y: 66.666667% !important; + } + + .\32xl\:translate-y-1\/4 { + --tw-translate-y: 25% !important; + } + + .\32xl\:translate-y-2\/4 { + --tw-translate-y: 50% !important; + } + + .\32xl\:translate-y-3\/4 { + --tw-translate-y: 75% !important; + } + + .\32xl\:translate-y-full { + --tw-translate-y: 100% !important; + } + + .\32xl\:-translate-y-1\/2 { + --tw-translate-y: -50% !important; + } + + .\32xl\:-translate-y-1\/3 { + --tw-translate-y: -33.333333% !important; + } + + .\32xl\:-translate-y-2\/3 { + --tw-translate-y: -66.666667% !important; + } + + .\32xl\:-translate-y-1\/4 { + --tw-translate-y: -25% !important; + } + + .\32xl\:-translate-y-2\/4 { + --tw-translate-y: -50% !important; + } + + .\32xl\:-translate-y-3\/4 { + --tw-translate-y: -75% !important; + } + + .\32xl\:-translate-y-full { + --tw-translate-y: -100% !important; + } + + .\32xl\:hover\:translate-x-0:hover { + --tw-translate-x: 0px !important; + } + + .\32xl\:hover\:translate-x-1:hover { + --tw-translate-x: 0.25rem !important; + } + + .\32xl\:hover\:translate-x-2:hover { + --tw-translate-x: 0.5rem !important; + } + + .\32xl\:hover\:translate-x-3:hover { + --tw-translate-x: 0.75rem !important; + } + + .\32xl\:hover\:translate-x-4:hover { + --tw-translate-x: 1rem !important; + } + + .\32xl\:hover\:translate-x-5:hover { + --tw-translate-x: 1.25rem !important; + } + + .\32xl\:hover\:translate-x-6:hover { + --tw-translate-x: 1.5rem !important; + } + + .\32xl\:hover\:translate-x-7:hover { + --tw-translate-x: 1.75rem !important; + } + + .\32xl\:hover\:translate-x-8:hover { + --tw-translate-x: 2rem !important; + } + + .\32xl\:hover\:translate-x-9:hover { + --tw-translate-x: 2.25rem !important; + } + + .\32xl\:hover\:translate-x-10:hover { + --tw-translate-x: 2.5rem !important; + } + + .\32xl\:hover\:translate-x-11:hover { + --tw-translate-x: 2.75rem !important; + } + + .\32xl\:hover\:translate-x-12:hover { + --tw-translate-x: 3rem !important; + } + + .\32xl\:hover\:translate-x-14:hover { + --tw-translate-x: 3.5rem !important; + } + + .\32xl\:hover\:translate-x-16:hover { + --tw-translate-x: 4rem !important; + } + + .\32xl\:hover\:translate-x-20:hover { + --tw-translate-x: 5rem !important; + } + + .\32xl\:hover\:translate-x-24:hover { + --tw-translate-x: 6rem !important; + } + + .\32xl\:hover\:translate-x-28:hover { + --tw-translate-x: 7rem !important; + } + + .\32xl\:hover\:translate-x-32:hover { + --tw-translate-x: 8rem !important; + } + + .\32xl\:hover\:translate-x-36:hover { + --tw-translate-x: 9rem !important; + } + + .\32xl\:hover\:translate-x-40:hover { + --tw-translate-x: 10rem !important; + } + + .\32xl\:hover\:translate-x-44:hover { + --tw-translate-x: 11rem !important; + } + + .\32xl\:hover\:translate-x-48:hover { + --tw-translate-x: 12rem !important; + } + + .\32xl\:hover\:translate-x-52:hover { + --tw-translate-x: 13rem !important; + } + + .\32xl\:hover\:translate-x-56:hover { + --tw-translate-x: 14rem !important; + } + + .\32xl\:hover\:translate-x-60:hover { + --tw-translate-x: 15rem !important; + } + + .\32xl\:hover\:translate-x-64:hover { + --tw-translate-x: 16rem !important; + } + + .\32xl\:hover\:translate-x-72:hover { + --tw-translate-x: 18rem !important; + } + + .\32xl\:hover\:translate-x-80:hover { + --tw-translate-x: 20rem !important; + } + + .\32xl\:hover\:translate-x-96:hover { + --tw-translate-x: 24rem !important; + } + + .\32xl\:hover\:translate-x-px:hover { + --tw-translate-x: 1px !important; + } + + .\32xl\:hover\:translate-x-0\.5:hover { + --tw-translate-x: 0.125rem !important; + } + + .\32xl\:hover\:translate-x-1\.5:hover { + --tw-translate-x: 0.375rem !important; + } + + .\32xl\:hover\:translate-x-2\.5:hover { + --tw-translate-x: 0.625rem !important; + } + + .\32xl\:hover\:translate-x-3\.5:hover { + --tw-translate-x: 0.875rem !important; + } + + .\32xl\:hover\:-translate-x-0:hover { + --tw-translate-x: 0px !important; + } + + .\32xl\:hover\:-translate-x-1:hover { + --tw-translate-x: -0.25rem !important; + } + + .\32xl\:hover\:-translate-x-2:hover { + --tw-translate-x: -0.5rem !important; + } + + .\32xl\:hover\:-translate-x-3:hover { + --tw-translate-x: -0.75rem !important; + } + + .\32xl\:hover\:-translate-x-4:hover { + --tw-translate-x: -1rem !important; + } + + .\32xl\:hover\:-translate-x-5:hover { + --tw-translate-x: -1.25rem !important; + } + + .\32xl\:hover\:-translate-x-6:hover { + --tw-translate-x: -1.5rem !important; + } + + .\32xl\:hover\:-translate-x-7:hover { + --tw-translate-x: -1.75rem !important; + } + + .\32xl\:hover\:-translate-x-8:hover { + --tw-translate-x: -2rem !important; + } + + .\32xl\:hover\:-translate-x-9:hover { + --tw-translate-x: -2.25rem !important; + } + + .\32xl\:hover\:-translate-x-10:hover { + --tw-translate-x: -2.5rem !important; + } + + .\32xl\:hover\:-translate-x-11:hover { + --tw-translate-x: -2.75rem !important; + } + + .\32xl\:hover\:-translate-x-12:hover { + --tw-translate-x: -3rem !important; + } + + .\32xl\:hover\:-translate-x-14:hover { + --tw-translate-x: -3.5rem !important; + } + + .\32xl\:hover\:-translate-x-16:hover { + --tw-translate-x: -4rem !important; + } + + .\32xl\:hover\:-translate-x-20:hover { + --tw-translate-x: -5rem !important; + } + + .\32xl\:hover\:-translate-x-24:hover { + --tw-translate-x: -6rem !important; + } + + .\32xl\:hover\:-translate-x-28:hover { + --tw-translate-x: -7rem !important; + } + + .\32xl\:hover\:-translate-x-32:hover { + --tw-translate-x: -8rem !important; + } + + .\32xl\:hover\:-translate-x-36:hover { + --tw-translate-x: -9rem !important; + } + + .\32xl\:hover\:-translate-x-40:hover { + --tw-translate-x: -10rem !important; + } + + .\32xl\:hover\:-translate-x-44:hover { + --tw-translate-x: -11rem !important; + } + + .\32xl\:hover\:-translate-x-48:hover { + --tw-translate-x: -12rem !important; + } + + .\32xl\:hover\:-translate-x-52:hover { + --tw-translate-x: -13rem !important; + } + + .\32xl\:hover\:-translate-x-56:hover { + --tw-translate-x: -14rem !important; + } + + .\32xl\:hover\:-translate-x-60:hover { + --tw-translate-x: -15rem !important; + } + + .\32xl\:hover\:-translate-x-64:hover { + --tw-translate-x: -16rem !important; + } + + .\32xl\:hover\:-translate-x-72:hover { + --tw-translate-x: -18rem !important; + } + + .\32xl\:hover\:-translate-x-80:hover { + --tw-translate-x: -20rem !important; + } + + .\32xl\:hover\:-translate-x-96:hover { + --tw-translate-x: -24rem !important; + } + + .\32xl\:hover\:-translate-x-px:hover { + --tw-translate-x: -1px !important; + } + + .\32xl\:hover\:-translate-x-0\.5:hover { + --tw-translate-x: -0.125rem !important; + } + + .\32xl\:hover\:-translate-x-1\.5:hover { + --tw-translate-x: -0.375rem !important; + } + + .\32xl\:hover\:-translate-x-2\.5:hover { + --tw-translate-x: -0.625rem !important; + } + + .\32xl\:hover\:-translate-x-3\.5:hover { + --tw-translate-x: -0.875rem !important; + } + + .\32xl\:hover\:translate-x-1\/2:hover { + --tw-translate-x: 50% !important; + } + + .\32xl\:hover\:translate-x-1\/3:hover { + --tw-translate-x: 33.333333% !important; + } + + .\32xl\:hover\:translate-x-2\/3:hover { + --tw-translate-x: 66.666667% !important; + } + + .\32xl\:hover\:translate-x-1\/4:hover { + --tw-translate-x: 25% !important; + } + + .\32xl\:hover\:translate-x-2\/4:hover { + --tw-translate-x: 50% !important; + } + + .\32xl\:hover\:translate-x-3\/4:hover { + --tw-translate-x: 75% !important; + } + + .\32xl\:hover\:translate-x-full:hover { + --tw-translate-x: 100% !important; + } + + .\32xl\:hover\:-translate-x-1\/2:hover { + --tw-translate-x: -50% !important; + } + + .\32xl\:hover\:-translate-x-1\/3:hover { + --tw-translate-x: -33.333333% !important; + } + + .\32xl\:hover\:-translate-x-2\/3:hover { + --tw-translate-x: -66.666667% !important; + } + + .\32xl\:hover\:-translate-x-1\/4:hover { + --tw-translate-x: -25% !important; + } + + .\32xl\:hover\:-translate-x-2\/4:hover { + --tw-translate-x: -50% !important; + } + + .\32xl\:hover\:-translate-x-3\/4:hover { + --tw-translate-x: -75% !important; + } + + .\32xl\:hover\:-translate-x-full:hover { + --tw-translate-x: -100% !important; + } + + .\32xl\:hover\:translate-y-0:hover { + --tw-translate-y: 0px !important; + } + + .\32xl\:hover\:translate-y-1:hover { + --tw-translate-y: 0.25rem !important; + } + + .\32xl\:hover\:translate-y-2:hover { + --tw-translate-y: 0.5rem !important; + } + + .\32xl\:hover\:translate-y-3:hover { + --tw-translate-y: 0.75rem !important; + } + + .\32xl\:hover\:translate-y-4:hover { + --tw-translate-y: 1rem !important; + } + + .\32xl\:hover\:translate-y-5:hover { + --tw-translate-y: 1.25rem !important; + } + + .\32xl\:hover\:translate-y-6:hover { + --tw-translate-y: 1.5rem !important; + } + + .\32xl\:hover\:translate-y-7:hover { + --tw-translate-y: 1.75rem !important; + } + + .\32xl\:hover\:translate-y-8:hover { + --tw-translate-y: 2rem !important; + } + + .\32xl\:hover\:translate-y-9:hover { + --tw-translate-y: 2.25rem !important; + } + + .\32xl\:hover\:translate-y-10:hover { + --tw-translate-y: 2.5rem !important; + } + + .\32xl\:hover\:translate-y-11:hover { + --tw-translate-y: 2.75rem !important; + } + + .\32xl\:hover\:translate-y-12:hover { + --tw-translate-y: 3rem !important; + } + + .\32xl\:hover\:translate-y-14:hover { + --tw-translate-y: 3.5rem !important; + } + + .\32xl\:hover\:translate-y-16:hover { + --tw-translate-y: 4rem !important; + } + + .\32xl\:hover\:translate-y-20:hover { + --tw-translate-y: 5rem !important; + } + + .\32xl\:hover\:translate-y-24:hover { + --tw-translate-y: 6rem !important; + } + + .\32xl\:hover\:translate-y-28:hover { + --tw-translate-y: 7rem !important; + } + + .\32xl\:hover\:translate-y-32:hover { + --tw-translate-y: 8rem !important; + } + + .\32xl\:hover\:translate-y-36:hover { + --tw-translate-y: 9rem !important; + } + + .\32xl\:hover\:translate-y-40:hover { + --tw-translate-y: 10rem !important; + } + + .\32xl\:hover\:translate-y-44:hover { + --tw-translate-y: 11rem !important; + } + + .\32xl\:hover\:translate-y-48:hover { + --tw-translate-y: 12rem !important; + } + + .\32xl\:hover\:translate-y-52:hover { + --tw-translate-y: 13rem !important; + } + + .\32xl\:hover\:translate-y-56:hover { + --tw-translate-y: 14rem !important; + } + + .\32xl\:hover\:translate-y-60:hover { + --tw-translate-y: 15rem !important; + } + + .\32xl\:hover\:translate-y-64:hover { + --tw-translate-y: 16rem !important; + } + + .\32xl\:hover\:translate-y-72:hover { + --tw-translate-y: 18rem !important; + } + + .\32xl\:hover\:translate-y-80:hover { + --tw-translate-y: 20rem !important; + } + + .\32xl\:hover\:translate-y-96:hover { + --tw-translate-y: 24rem !important; + } + + .\32xl\:hover\:translate-y-px:hover { + --tw-translate-y: 1px !important; + } + + .\32xl\:hover\:translate-y-0\.5:hover { + --tw-translate-y: 0.125rem !important; + } + + .\32xl\:hover\:translate-y-1\.5:hover { + --tw-translate-y: 0.375rem !important; + } + + .\32xl\:hover\:translate-y-2\.5:hover { + --tw-translate-y: 0.625rem !important; + } + + .\32xl\:hover\:translate-y-3\.5:hover { + --tw-translate-y: 0.875rem !important; + } + + .\32xl\:hover\:-translate-y-0:hover { + --tw-translate-y: 0px !important; + } + + .\32xl\:hover\:-translate-y-1:hover { + --tw-translate-y: -0.25rem !important; + } + + .\32xl\:hover\:-translate-y-2:hover { + --tw-translate-y: -0.5rem !important; + } + + .\32xl\:hover\:-translate-y-3:hover { + --tw-translate-y: -0.75rem !important; + } + + .\32xl\:hover\:-translate-y-4:hover { + --tw-translate-y: -1rem !important; + } + + .\32xl\:hover\:-translate-y-5:hover { + --tw-translate-y: -1.25rem !important; + } + + .\32xl\:hover\:-translate-y-6:hover { + --tw-translate-y: -1.5rem !important; + } + + .\32xl\:hover\:-translate-y-7:hover { + --tw-translate-y: -1.75rem !important; + } + + .\32xl\:hover\:-translate-y-8:hover { + --tw-translate-y: -2rem !important; + } + + .\32xl\:hover\:-translate-y-9:hover { + --tw-translate-y: -2.25rem !important; + } + + .\32xl\:hover\:-translate-y-10:hover { + --tw-translate-y: -2.5rem !important; + } + + .\32xl\:hover\:-translate-y-11:hover { + --tw-translate-y: -2.75rem !important; + } + + .\32xl\:hover\:-translate-y-12:hover { + --tw-translate-y: -3rem !important; + } + + .\32xl\:hover\:-translate-y-14:hover { + --tw-translate-y: -3.5rem !important; + } + + .\32xl\:hover\:-translate-y-16:hover { + --tw-translate-y: -4rem !important; + } + + .\32xl\:hover\:-translate-y-20:hover { + --tw-translate-y: -5rem !important; + } + + .\32xl\:hover\:-translate-y-24:hover { + --tw-translate-y: -6rem !important; + } + + .\32xl\:hover\:-translate-y-28:hover { + --tw-translate-y: -7rem !important; + } + + .\32xl\:hover\:-translate-y-32:hover { + --tw-translate-y: -8rem !important; + } + + .\32xl\:hover\:-translate-y-36:hover { + --tw-translate-y: -9rem !important; + } + + .\32xl\:hover\:-translate-y-40:hover { + --tw-translate-y: -10rem !important; + } + + .\32xl\:hover\:-translate-y-44:hover { + --tw-translate-y: -11rem !important; + } + + .\32xl\:hover\:-translate-y-48:hover { + --tw-translate-y: -12rem !important; + } + + .\32xl\:hover\:-translate-y-52:hover { + --tw-translate-y: -13rem !important; + } + + .\32xl\:hover\:-translate-y-56:hover { + --tw-translate-y: -14rem !important; + } + + .\32xl\:hover\:-translate-y-60:hover { + --tw-translate-y: -15rem !important; + } + + .\32xl\:hover\:-translate-y-64:hover { + --tw-translate-y: -16rem !important; + } + + .\32xl\:hover\:-translate-y-72:hover { + --tw-translate-y: -18rem !important; + } + + .\32xl\:hover\:-translate-y-80:hover { + --tw-translate-y: -20rem !important; + } + + .\32xl\:hover\:-translate-y-96:hover { + --tw-translate-y: -24rem !important; + } + + .\32xl\:hover\:-translate-y-px:hover { + --tw-translate-y: -1px !important; + } + + .\32xl\:hover\:-translate-y-0\.5:hover { + --tw-translate-y: -0.125rem !important; + } + + .\32xl\:hover\:-translate-y-1\.5:hover { + --tw-translate-y: -0.375rem !important; + } + + .\32xl\:hover\:-translate-y-2\.5:hover { + --tw-translate-y: -0.625rem !important; + } + + .\32xl\:hover\:-translate-y-3\.5:hover { + --tw-translate-y: -0.875rem !important; + } + + .\32xl\:hover\:translate-y-1\/2:hover { + --tw-translate-y: 50% !important; + } + + .\32xl\:hover\:translate-y-1\/3:hover { + --tw-translate-y: 33.333333% !important; + } + + .\32xl\:hover\:translate-y-2\/3:hover { + --tw-translate-y: 66.666667% !important; + } + + .\32xl\:hover\:translate-y-1\/4:hover { + --tw-translate-y: 25% !important; + } + + .\32xl\:hover\:translate-y-2\/4:hover { + --tw-translate-y: 50% !important; + } + + .\32xl\:hover\:translate-y-3\/4:hover { + --tw-translate-y: 75% !important; + } + + .\32xl\:hover\:translate-y-full:hover { + --tw-translate-y: 100% !important; + } + + .\32xl\:hover\:-translate-y-1\/2:hover { + --tw-translate-y: -50% !important; + } + + .\32xl\:hover\:-translate-y-1\/3:hover { + --tw-translate-y: -33.333333% !important; + } + + .\32xl\:hover\:-translate-y-2\/3:hover { + --tw-translate-y: -66.666667% !important; + } + + .\32xl\:hover\:-translate-y-1\/4:hover { + --tw-translate-y: -25% !important; + } + + .\32xl\:hover\:-translate-y-2\/4:hover { + --tw-translate-y: -50% !important; + } + + .\32xl\:hover\:-translate-y-3\/4:hover { + --tw-translate-y: -75% !important; + } + + .\32xl\:hover\:-translate-y-full:hover { + --tw-translate-y: -100% !important; + } + + .\32xl\:focus\:translate-x-0:focus { + --tw-translate-x: 0px !important; + } + + .\32xl\:focus\:translate-x-1:focus { + --tw-translate-x: 0.25rem !important; + } + + .\32xl\:focus\:translate-x-2:focus { + --tw-translate-x: 0.5rem !important; + } + + .\32xl\:focus\:translate-x-3:focus { + --tw-translate-x: 0.75rem !important; + } + + .\32xl\:focus\:translate-x-4:focus { + --tw-translate-x: 1rem !important; + } + + .\32xl\:focus\:translate-x-5:focus { + --tw-translate-x: 1.25rem !important; + } + + .\32xl\:focus\:translate-x-6:focus { + --tw-translate-x: 1.5rem !important; + } + + .\32xl\:focus\:translate-x-7:focus { + --tw-translate-x: 1.75rem !important; + } + + .\32xl\:focus\:translate-x-8:focus { + --tw-translate-x: 2rem !important; + } + + .\32xl\:focus\:translate-x-9:focus { + --tw-translate-x: 2.25rem !important; + } + + .\32xl\:focus\:translate-x-10:focus { + --tw-translate-x: 2.5rem !important; + } + + .\32xl\:focus\:translate-x-11:focus { + --tw-translate-x: 2.75rem !important; + } + + .\32xl\:focus\:translate-x-12:focus { + --tw-translate-x: 3rem !important; + } + + .\32xl\:focus\:translate-x-14:focus { + --tw-translate-x: 3.5rem !important; + } + + .\32xl\:focus\:translate-x-16:focus { + --tw-translate-x: 4rem !important; + } + + .\32xl\:focus\:translate-x-20:focus { + --tw-translate-x: 5rem !important; + } + + .\32xl\:focus\:translate-x-24:focus { + --tw-translate-x: 6rem !important; + } + + .\32xl\:focus\:translate-x-28:focus { + --tw-translate-x: 7rem !important; + } + + .\32xl\:focus\:translate-x-32:focus { + --tw-translate-x: 8rem !important; + } + + .\32xl\:focus\:translate-x-36:focus { + --tw-translate-x: 9rem !important; + } + + .\32xl\:focus\:translate-x-40:focus { + --tw-translate-x: 10rem !important; + } + + .\32xl\:focus\:translate-x-44:focus { + --tw-translate-x: 11rem !important; + } + + .\32xl\:focus\:translate-x-48:focus { + --tw-translate-x: 12rem !important; + } + + .\32xl\:focus\:translate-x-52:focus { + --tw-translate-x: 13rem !important; + } + + .\32xl\:focus\:translate-x-56:focus { + --tw-translate-x: 14rem !important; + } + + .\32xl\:focus\:translate-x-60:focus { + --tw-translate-x: 15rem !important; + } + + .\32xl\:focus\:translate-x-64:focus { + --tw-translate-x: 16rem !important; + } + + .\32xl\:focus\:translate-x-72:focus { + --tw-translate-x: 18rem !important; + } + + .\32xl\:focus\:translate-x-80:focus { + --tw-translate-x: 20rem !important; + } + + .\32xl\:focus\:translate-x-96:focus { + --tw-translate-x: 24rem !important; + } + + .\32xl\:focus\:translate-x-px:focus { + --tw-translate-x: 1px !important; + } + + .\32xl\:focus\:translate-x-0\.5:focus { + --tw-translate-x: 0.125rem !important; + } + + .\32xl\:focus\:translate-x-1\.5:focus { + --tw-translate-x: 0.375rem !important; + } + + .\32xl\:focus\:translate-x-2\.5:focus { + --tw-translate-x: 0.625rem !important; + } + + .\32xl\:focus\:translate-x-3\.5:focus { + --tw-translate-x: 0.875rem !important; + } + + .\32xl\:focus\:-translate-x-0:focus { + --tw-translate-x: 0px !important; + } + + .\32xl\:focus\:-translate-x-1:focus { + --tw-translate-x: -0.25rem !important; + } + + .\32xl\:focus\:-translate-x-2:focus { + --tw-translate-x: -0.5rem !important; + } + + .\32xl\:focus\:-translate-x-3:focus { + --tw-translate-x: -0.75rem !important; + } + + .\32xl\:focus\:-translate-x-4:focus { + --tw-translate-x: -1rem !important; + } + + .\32xl\:focus\:-translate-x-5:focus { + --tw-translate-x: -1.25rem !important; + } + + .\32xl\:focus\:-translate-x-6:focus { + --tw-translate-x: -1.5rem !important; + } + + .\32xl\:focus\:-translate-x-7:focus { + --tw-translate-x: -1.75rem !important; + } + + .\32xl\:focus\:-translate-x-8:focus { + --tw-translate-x: -2rem !important; + } + + .\32xl\:focus\:-translate-x-9:focus { + --tw-translate-x: -2.25rem !important; + } + + .\32xl\:focus\:-translate-x-10:focus { + --tw-translate-x: -2.5rem !important; + } + + .\32xl\:focus\:-translate-x-11:focus { + --tw-translate-x: -2.75rem !important; + } + + .\32xl\:focus\:-translate-x-12:focus { + --tw-translate-x: -3rem !important; + } + + .\32xl\:focus\:-translate-x-14:focus { + --tw-translate-x: -3.5rem !important; + } + + .\32xl\:focus\:-translate-x-16:focus { + --tw-translate-x: -4rem !important; + } + + .\32xl\:focus\:-translate-x-20:focus { + --tw-translate-x: -5rem !important; + } + + .\32xl\:focus\:-translate-x-24:focus { + --tw-translate-x: -6rem !important; + } + + .\32xl\:focus\:-translate-x-28:focus { + --tw-translate-x: -7rem !important; + } + + .\32xl\:focus\:-translate-x-32:focus { + --tw-translate-x: -8rem !important; + } + + .\32xl\:focus\:-translate-x-36:focus { + --tw-translate-x: -9rem !important; + } + + .\32xl\:focus\:-translate-x-40:focus { + --tw-translate-x: -10rem !important; + } + + .\32xl\:focus\:-translate-x-44:focus { + --tw-translate-x: -11rem !important; + } + + .\32xl\:focus\:-translate-x-48:focus { + --tw-translate-x: -12rem !important; + } + + .\32xl\:focus\:-translate-x-52:focus { + --tw-translate-x: -13rem !important; + } + + .\32xl\:focus\:-translate-x-56:focus { + --tw-translate-x: -14rem !important; + } + + .\32xl\:focus\:-translate-x-60:focus { + --tw-translate-x: -15rem !important; + } + + .\32xl\:focus\:-translate-x-64:focus { + --tw-translate-x: -16rem !important; + } + + .\32xl\:focus\:-translate-x-72:focus { + --tw-translate-x: -18rem !important; + } + + .\32xl\:focus\:-translate-x-80:focus { + --tw-translate-x: -20rem !important; + } + + .\32xl\:focus\:-translate-x-96:focus { + --tw-translate-x: -24rem !important; + } + + .\32xl\:focus\:-translate-x-px:focus { + --tw-translate-x: -1px !important; + } + + .\32xl\:focus\:-translate-x-0\.5:focus { + --tw-translate-x: -0.125rem !important; + } + + .\32xl\:focus\:-translate-x-1\.5:focus { + --tw-translate-x: -0.375rem !important; + } + + .\32xl\:focus\:-translate-x-2\.5:focus { + --tw-translate-x: -0.625rem !important; + } + + .\32xl\:focus\:-translate-x-3\.5:focus { + --tw-translate-x: -0.875rem !important; + } + + .\32xl\:focus\:translate-x-1\/2:focus { + --tw-translate-x: 50% !important; + } + + .\32xl\:focus\:translate-x-1\/3:focus { + --tw-translate-x: 33.333333% !important; + } + + .\32xl\:focus\:translate-x-2\/3:focus { + --tw-translate-x: 66.666667% !important; + } + + .\32xl\:focus\:translate-x-1\/4:focus { + --tw-translate-x: 25% !important; + } + + .\32xl\:focus\:translate-x-2\/4:focus { + --tw-translate-x: 50% !important; + } + + .\32xl\:focus\:translate-x-3\/4:focus { + --tw-translate-x: 75% !important; + } + + .\32xl\:focus\:translate-x-full:focus { + --tw-translate-x: 100% !important; + } + + .\32xl\:focus\:-translate-x-1\/2:focus { + --tw-translate-x: -50% !important; + } + + .\32xl\:focus\:-translate-x-1\/3:focus { + --tw-translate-x: -33.333333% !important; + } + + .\32xl\:focus\:-translate-x-2\/3:focus { + --tw-translate-x: -66.666667% !important; + } + + .\32xl\:focus\:-translate-x-1\/4:focus { + --tw-translate-x: -25% !important; + } + + .\32xl\:focus\:-translate-x-2\/4:focus { + --tw-translate-x: -50% !important; + } + + .\32xl\:focus\:-translate-x-3\/4:focus { + --tw-translate-x: -75% !important; + } + + .\32xl\:focus\:-translate-x-full:focus { + --tw-translate-x: -100% !important; + } + + .\32xl\:focus\:translate-y-0:focus { + --tw-translate-y: 0px !important; + } + + .\32xl\:focus\:translate-y-1:focus { + --tw-translate-y: 0.25rem !important; + } + + .\32xl\:focus\:translate-y-2:focus { + --tw-translate-y: 0.5rem !important; + } + + .\32xl\:focus\:translate-y-3:focus { + --tw-translate-y: 0.75rem !important; + } + + .\32xl\:focus\:translate-y-4:focus { + --tw-translate-y: 1rem !important; + } + + .\32xl\:focus\:translate-y-5:focus { + --tw-translate-y: 1.25rem !important; + } + + .\32xl\:focus\:translate-y-6:focus { + --tw-translate-y: 1.5rem !important; + } + + .\32xl\:focus\:translate-y-7:focus { + --tw-translate-y: 1.75rem !important; + } + + .\32xl\:focus\:translate-y-8:focus { + --tw-translate-y: 2rem !important; + } + + .\32xl\:focus\:translate-y-9:focus { + --tw-translate-y: 2.25rem !important; + } + + .\32xl\:focus\:translate-y-10:focus { + --tw-translate-y: 2.5rem !important; + } + + .\32xl\:focus\:translate-y-11:focus { + --tw-translate-y: 2.75rem !important; + } + + .\32xl\:focus\:translate-y-12:focus { + --tw-translate-y: 3rem !important; + } + + .\32xl\:focus\:translate-y-14:focus { + --tw-translate-y: 3.5rem !important; + } + + .\32xl\:focus\:translate-y-16:focus { + --tw-translate-y: 4rem !important; + } + + .\32xl\:focus\:translate-y-20:focus { + --tw-translate-y: 5rem !important; + } + + .\32xl\:focus\:translate-y-24:focus { + --tw-translate-y: 6rem !important; + } + + .\32xl\:focus\:translate-y-28:focus { + --tw-translate-y: 7rem !important; + } + + .\32xl\:focus\:translate-y-32:focus { + --tw-translate-y: 8rem !important; + } + + .\32xl\:focus\:translate-y-36:focus { + --tw-translate-y: 9rem !important; + } + + .\32xl\:focus\:translate-y-40:focus { + --tw-translate-y: 10rem !important; + } + + .\32xl\:focus\:translate-y-44:focus { + --tw-translate-y: 11rem !important; + } + + .\32xl\:focus\:translate-y-48:focus { + --tw-translate-y: 12rem !important; + } + + .\32xl\:focus\:translate-y-52:focus { + --tw-translate-y: 13rem !important; + } + + .\32xl\:focus\:translate-y-56:focus { + --tw-translate-y: 14rem !important; + } + + .\32xl\:focus\:translate-y-60:focus { + --tw-translate-y: 15rem !important; + } + + .\32xl\:focus\:translate-y-64:focus { + --tw-translate-y: 16rem !important; + } + + .\32xl\:focus\:translate-y-72:focus { + --tw-translate-y: 18rem !important; + } + + .\32xl\:focus\:translate-y-80:focus { + --tw-translate-y: 20rem !important; + } + + .\32xl\:focus\:translate-y-96:focus { + --tw-translate-y: 24rem !important; + } + + .\32xl\:focus\:translate-y-px:focus { + --tw-translate-y: 1px !important; + } + + .\32xl\:focus\:translate-y-0\.5:focus { + --tw-translate-y: 0.125rem !important; + } + + .\32xl\:focus\:translate-y-1\.5:focus { + --tw-translate-y: 0.375rem !important; + } + + .\32xl\:focus\:translate-y-2\.5:focus { + --tw-translate-y: 0.625rem !important; + } + + .\32xl\:focus\:translate-y-3\.5:focus { + --tw-translate-y: 0.875rem !important; + } + + .\32xl\:focus\:-translate-y-0:focus { + --tw-translate-y: 0px !important; + } + + .\32xl\:focus\:-translate-y-1:focus { + --tw-translate-y: -0.25rem !important; + } + + .\32xl\:focus\:-translate-y-2:focus { + --tw-translate-y: -0.5rem !important; + } + + .\32xl\:focus\:-translate-y-3:focus { + --tw-translate-y: -0.75rem !important; + } + + .\32xl\:focus\:-translate-y-4:focus { + --tw-translate-y: -1rem !important; + } + + .\32xl\:focus\:-translate-y-5:focus { + --tw-translate-y: -1.25rem !important; + } + + .\32xl\:focus\:-translate-y-6:focus { + --tw-translate-y: -1.5rem !important; + } + + .\32xl\:focus\:-translate-y-7:focus { + --tw-translate-y: -1.75rem !important; + } + + .\32xl\:focus\:-translate-y-8:focus { + --tw-translate-y: -2rem !important; + } + + .\32xl\:focus\:-translate-y-9:focus { + --tw-translate-y: -2.25rem !important; + } + + .\32xl\:focus\:-translate-y-10:focus { + --tw-translate-y: -2.5rem !important; + } + + .\32xl\:focus\:-translate-y-11:focus { + --tw-translate-y: -2.75rem !important; + } + + .\32xl\:focus\:-translate-y-12:focus { + --tw-translate-y: -3rem !important; + } + + .\32xl\:focus\:-translate-y-14:focus { + --tw-translate-y: -3.5rem !important; + } + + .\32xl\:focus\:-translate-y-16:focus { + --tw-translate-y: -4rem !important; + } + + .\32xl\:focus\:-translate-y-20:focus { + --tw-translate-y: -5rem !important; + } + + .\32xl\:focus\:-translate-y-24:focus { + --tw-translate-y: -6rem !important; + } + + .\32xl\:focus\:-translate-y-28:focus { + --tw-translate-y: -7rem !important; + } + + .\32xl\:focus\:-translate-y-32:focus { + --tw-translate-y: -8rem !important; + } + + .\32xl\:focus\:-translate-y-36:focus { + --tw-translate-y: -9rem !important; + } + + .\32xl\:focus\:-translate-y-40:focus { + --tw-translate-y: -10rem !important; + } + + .\32xl\:focus\:-translate-y-44:focus { + --tw-translate-y: -11rem !important; + } + + .\32xl\:focus\:-translate-y-48:focus { + --tw-translate-y: -12rem !important; + } + + .\32xl\:focus\:-translate-y-52:focus { + --tw-translate-y: -13rem !important; + } + + .\32xl\:focus\:-translate-y-56:focus { + --tw-translate-y: -14rem !important; + } + + .\32xl\:focus\:-translate-y-60:focus { + --tw-translate-y: -15rem !important; + } + + .\32xl\:focus\:-translate-y-64:focus { + --tw-translate-y: -16rem !important; + } + + .\32xl\:focus\:-translate-y-72:focus { + --tw-translate-y: -18rem !important; + } + + .\32xl\:focus\:-translate-y-80:focus { + --tw-translate-y: -20rem !important; + } + + .\32xl\:focus\:-translate-y-96:focus { + --tw-translate-y: -24rem !important; + } + + .\32xl\:focus\:-translate-y-px:focus { + --tw-translate-y: -1px !important; + } + + .\32xl\:focus\:-translate-y-0\.5:focus { + --tw-translate-y: -0.125rem !important; + } + + .\32xl\:focus\:-translate-y-1\.5:focus { + --tw-translate-y: -0.375rem !important; + } + + .\32xl\:focus\:-translate-y-2\.5:focus { + --tw-translate-y: -0.625rem !important; + } + + .\32xl\:focus\:-translate-y-3\.5:focus { + --tw-translate-y: -0.875rem !important; + } + + .\32xl\:focus\:translate-y-1\/2:focus { + --tw-translate-y: 50% !important; + } + + .\32xl\:focus\:translate-y-1\/3:focus { + --tw-translate-y: 33.333333% !important; + } + + .\32xl\:focus\:translate-y-2\/3:focus { + --tw-translate-y: 66.666667% !important; + } + + .\32xl\:focus\:translate-y-1\/4:focus { + --tw-translate-y: 25% !important; + } + + .\32xl\:focus\:translate-y-2\/4:focus { + --tw-translate-y: 50% !important; + } + + .\32xl\:focus\:translate-y-3\/4:focus { + --tw-translate-y: 75% !important; + } + + .\32xl\:focus\:translate-y-full:focus { + --tw-translate-y: 100% !important; + } + + .\32xl\:focus\:-translate-y-1\/2:focus { + --tw-translate-y: -50% !important; + } + + .\32xl\:focus\:-translate-y-1\/3:focus { + --tw-translate-y: -33.333333% !important; + } + + .\32xl\:focus\:-translate-y-2\/3:focus { + --tw-translate-y: -66.666667% !important; + } + + .\32xl\:focus\:-translate-y-1\/4:focus { + --tw-translate-y: -25% !important; + } + + .\32xl\:focus\:-translate-y-2\/4:focus { + --tw-translate-y: -50% !important; + } + + .\32xl\:focus\:-translate-y-3\/4:focus { + --tw-translate-y: -75% !important; + } + + .\32xl\:focus\:-translate-y-full:focus { + --tw-translate-y: -100% !important; + } + + .\32xl\:skew-x-0 { + --tw-skew-x: 0deg !important; + } + + .\32xl\:skew-x-1 { + --tw-skew-x: 1deg !important; + } + + .\32xl\:skew-x-2 { + --tw-skew-x: 2deg !important; + } + + .\32xl\:skew-x-3 { + --tw-skew-x: 3deg !important; + } + + .\32xl\:skew-x-6 { + --tw-skew-x: 6deg !important; + } + + .\32xl\:skew-x-12 { + --tw-skew-x: 12deg !important; + } + + .\32xl\:-skew-x-12 { + --tw-skew-x: -12deg !important; + } + + .\32xl\:-skew-x-6 { + --tw-skew-x: -6deg !important; + } + + .\32xl\:-skew-x-3 { + --tw-skew-x: -3deg !important; + } + + .\32xl\:-skew-x-2 { + --tw-skew-x: -2deg !important; + } + + .\32xl\:-skew-x-1 { + --tw-skew-x: -1deg !important; + } + + .\32xl\:skew-y-0 { + --tw-skew-y: 0deg !important; + } + + .\32xl\:skew-y-1 { + --tw-skew-y: 1deg !important; + } + + .\32xl\:skew-y-2 { + --tw-skew-y: 2deg !important; + } + + .\32xl\:skew-y-3 { + --tw-skew-y: 3deg !important; + } + + .\32xl\:skew-y-6 { + --tw-skew-y: 6deg !important; + } + + .\32xl\:skew-y-12 { + --tw-skew-y: 12deg !important; + } + + .\32xl\:-skew-y-12 { + --tw-skew-y: -12deg !important; + } + + .\32xl\:-skew-y-6 { + --tw-skew-y: -6deg !important; + } + + .\32xl\:-skew-y-3 { + --tw-skew-y: -3deg !important; + } + + .\32xl\:-skew-y-2 { + --tw-skew-y: -2deg !important; + } + + .\32xl\:-skew-y-1 { + --tw-skew-y: -1deg !important; + } + + .\32xl\:hover\:skew-x-0:hover { + --tw-skew-x: 0deg !important; + } + + .\32xl\:hover\:skew-x-1:hover { + --tw-skew-x: 1deg !important; + } + + .\32xl\:hover\:skew-x-2:hover { + --tw-skew-x: 2deg !important; + } + + .\32xl\:hover\:skew-x-3:hover { + --tw-skew-x: 3deg !important; + } + + .\32xl\:hover\:skew-x-6:hover { + --tw-skew-x: 6deg !important; + } + + .\32xl\:hover\:skew-x-12:hover { + --tw-skew-x: 12deg !important; + } + + .\32xl\:hover\:-skew-x-12:hover { + --tw-skew-x: -12deg !important; + } + + .\32xl\:hover\:-skew-x-6:hover { + --tw-skew-x: -6deg !important; + } + + .\32xl\:hover\:-skew-x-3:hover { + --tw-skew-x: -3deg !important; + } + + .\32xl\:hover\:-skew-x-2:hover { + --tw-skew-x: -2deg !important; + } + + .\32xl\:hover\:-skew-x-1:hover { + --tw-skew-x: -1deg !important; + } + + .\32xl\:hover\:skew-y-0:hover { + --tw-skew-y: 0deg !important; + } + + .\32xl\:hover\:skew-y-1:hover { + --tw-skew-y: 1deg !important; + } + + .\32xl\:hover\:skew-y-2:hover { + --tw-skew-y: 2deg !important; + } + + .\32xl\:hover\:skew-y-3:hover { + --tw-skew-y: 3deg !important; + } + + .\32xl\:hover\:skew-y-6:hover { + --tw-skew-y: 6deg !important; + } + + .\32xl\:hover\:skew-y-12:hover { + --tw-skew-y: 12deg !important; + } + + .\32xl\:hover\:-skew-y-12:hover { + --tw-skew-y: -12deg !important; + } + + .\32xl\:hover\:-skew-y-6:hover { + --tw-skew-y: -6deg !important; + } + + .\32xl\:hover\:-skew-y-3:hover { + --tw-skew-y: -3deg !important; + } + + .\32xl\:hover\:-skew-y-2:hover { + --tw-skew-y: -2deg !important; + } + + .\32xl\:hover\:-skew-y-1:hover { + --tw-skew-y: -1deg !important; + } + + .\32xl\:focus\:skew-x-0:focus { + --tw-skew-x: 0deg !important; + } + + .\32xl\:focus\:skew-x-1:focus { + --tw-skew-x: 1deg !important; + } + + .\32xl\:focus\:skew-x-2:focus { + --tw-skew-x: 2deg !important; + } + + .\32xl\:focus\:skew-x-3:focus { + --tw-skew-x: 3deg !important; + } + + .\32xl\:focus\:skew-x-6:focus { + --tw-skew-x: 6deg !important; + } + + .\32xl\:focus\:skew-x-12:focus { + --tw-skew-x: 12deg !important; + } + + .\32xl\:focus\:-skew-x-12:focus { + --tw-skew-x: -12deg !important; + } + + .\32xl\:focus\:-skew-x-6:focus { + --tw-skew-x: -6deg !important; + } + + .\32xl\:focus\:-skew-x-3:focus { + --tw-skew-x: -3deg !important; + } + + .\32xl\:focus\:-skew-x-2:focus { + --tw-skew-x: -2deg !important; + } + + .\32xl\:focus\:-skew-x-1:focus { + --tw-skew-x: -1deg !important; + } + + .\32xl\:focus\:skew-y-0:focus { + --tw-skew-y: 0deg !important; + } + + .\32xl\:focus\:skew-y-1:focus { + --tw-skew-y: 1deg !important; + } + + .\32xl\:focus\:skew-y-2:focus { + --tw-skew-y: 2deg !important; + } + + .\32xl\:focus\:skew-y-3:focus { + --tw-skew-y: 3deg !important; + } + + .\32xl\:focus\:skew-y-6:focus { + --tw-skew-y: 6deg !important; + } + + .\32xl\:focus\:skew-y-12:focus { + --tw-skew-y: 12deg !important; + } + + .\32xl\:focus\:-skew-y-12:focus { + --tw-skew-y: -12deg !important; + } + + .\32xl\:focus\:-skew-y-6:focus { + --tw-skew-y: -6deg !important; + } + + .\32xl\:focus\:-skew-y-3:focus { + --tw-skew-y: -3deg !important; + } + + .\32xl\:focus\:-skew-y-2:focus { + --tw-skew-y: -2deg !important; + } + + .\32xl\:focus\:-skew-y-1:focus { + --tw-skew-y: -1deg !important; + } + + .\32xl\:transition-none { + transition-property: none !important; + } + + .\32xl\:transition-all { + transition-property: all !important; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important; + transition-duration: 150ms !important; + } + + .\32xl\:transition { + transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter !important; + transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter !important; + transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter !important; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important; + transition-duration: 150ms !important; + } + + .\32xl\:transition-colors { + transition-property: background-color, border-color, color, fill, stroke !important; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important; + transition-duration: 150ms !important; + } + + .\32xl\:transition-opacity { + transition-property: opacity !important; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important; + transition-duration: 150ms !important; + } + + .\32xl\:transition-shadow { + transition-property: box-shadow !important; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important; + transition-duration: 150ms !important; + } + + .\32xl\:transition-transform { + transition-property: transform !important; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important; + transition-duration: 150ms !important; + } + + .\32xl\:ease-linear { + transition-timing-function: linear !important; + } + + .\32xl\:ease-in { + transition-timing-function: cubic-bezier(0.4, 0, 1, 1) !important; + } + + .\32xl\:ease-out { + transition-timing-function: cubic-bezier(0, 0, 0.2, 1) !important; + } + + .\32xl\:ease-in-out { + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important; + } + + .\32xl\:duration-75 { + transition-duration: 75ms !important; + } + + .\32xl\:duration-100 { + transition-duration: 100ms !important; + } + + .\32xl\:duration-150 { + transition-duration: 150ms !important; + } + + .\32xl\:duration-200 { + transition-duration: 200ms !important; + } + + .\32xl\:duration-300 { + transition-duration: 300ms !important; + } + + .\32xl\:duration-500 { + transition-duration: 500ms !important; + } + + .\32xl\:duration-700 { + transition-duration: 700ms !important; + } + + .\32xl\:duration-1000 { + transition-duration: 1000ms !important; + } + + .\32xl\:delay-75 { + transition-delay: 75ms !important; + } + + .\32xl\:delay-100 { + transition-delay: 100ms !important; + } + + .\32xl\:delay-150 { + transition-delay: 150ms !important; + } + + .\32xl\:delay-200 { + transition-delay: 200ms !important; + } + + .\32xl\:delay-300 { + transition-delay: 300ms !important; + } + + .\32xl\:delay-500 { + transition-delay: 500ms !important; + } + + .\32xl\:delay-700 { + transition-delay: 700ms !important; + } + + .\32xl\:delay-1000 { + transition-delay: 1000ms !important; + } + + .\32xl\:animate-none { + -webkit-animation: none !important; + animation: none !important; + } + + .\32xl\:animate-spin { + -webkit-animation: spin 1s linear infinite !important; + animation: spin 1s linear infinite !important; + } + + .\32xl\:animate-ping { + -webkit-animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite !important; + animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite !important; + } + + .\32xl\:animate-pulse { + -webkit-animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite !important; + animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite !important; + } + + .\32xl\:animate-bounce { + -webkit-animation: bounce 1s infinite !important; + animation: bounce 1s infinite !important; + } + + .\32xl\:mix-blend-normal { + mix-blend-mode: normal !important; + } + + .\32xl\:mix-blend-multiply { + mix-blend-mode: multiply !important; + } + + .\32xl\:mix-blend-screen { + mix-blend-mode: screen !important; + } + + .\32xl\:mix-blend-overlay { + mix-blend-mode: overlay !important; + } + + .\32xl\:mix-blend-darken { + mix-blend-mode: darken !important; + } + + .\32xl\:mix-blend-lighten { + mix-blend-mode: lighten !important; + } + + .\32xl\:mix-blend-color-dodge { + mix-blend-mode: color-dodge !important; + } + + .\32xl\:mix-blend-color-burn { + mix-blend-mode: color-burn !important; + } + + .\32xl\:mix-blend-hard-light { + mix-blend-mode: hard-light !important; + } + + .\32xl\:mix-blend-soft-light { + mix-blend-mode: soft-light !important; + } + + .\32xl\:mix-blend-difference { + mix-blend-mode: difference !important; + } + + .\32xl\:mix-blend-exclusion { + mix-blend-mode: exclusion !important; + } + + .\32xl\:mix-blend-hue { + mix-blend-mode: hue !important; + } + + .\32xl\:mix-blend-saturation { + mix-blend-mode: saturation !important; + } + + .\32xl\:mix-blend-color { + mix-blend-mode: color !important; + } + + .\32xl\:mix-blend-luminosity { + mix-blend-mode: luminosity !important; + } + + .\32xl\:bg-blend-normal { + background-blend-mode: normal !important; + } + + .\32xl\:bg-blend-multiply { + background-blend-mode: multiply !important; + } + + .\32xl\:bg-blend-screen { + background-blend-mode: screen !important; + } + + .\32xl\:bg-blend-overlay { + background-blend-mode: overlay !important; + } + + .\32xl\:bg-blend-darken { + background-blend-mode: darken !important; + } + + .\32xl\:bg-blend-lighten { + background-blend-mode: lighten !important; + } + + .\32xl\:bg-blend-color-dodge { + background-blend-mode: color-dodge !important; + } + + .\32xl\:bg-blend-color-burn { + background-blend-mode: color-burn !important; + } + + .\32xl\:bg-blend-hard-light { + background-blend-mode: hard-light !important; + } + + .\32xl\:bg-blend-soft-light { + background-blend-mode: soft-light !important; + } + + .\32xl\:bg-blend-difference { + background-blend-mode: difference !important; + } + + .\32xl\:bg-blend-exclusion { + background-blend-mode: exclusion !important; + } + + .\32xl\:bg-blend-hue { + background-blend-mode: hue !important; + } + + .\32xl\:bg-blend-saturation { + background-blend-mode: saturation !important; + } + + .\32xl\:bg-blend-color { + background-blend-mode: color !important; + } + + .\32xl\:bg-blend-luminosity { + background-blend-mode: luminosity !important; + } + + .\32xl\:filter { + --tw-blur: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-brightness: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-contrast: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-grayscale: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-hue-rotate: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-invert: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-saturate: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-sepia: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-drop-shadow: var(--tw-empty,/*!*/ /*!*/) !important; + 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) !important; + } + + .\32xl\:filter-none { + filter: none !important; + } + + .\32xl\:blur-0 { + --tw-blur: blur(0) !important; + } + + .\32xl\:blur-sm { + --tw-blur: blur(4px) !important; + } + + .\32xl\:blur { + --tw-blur: blur(8px) !important; + } + + .\32xl\:blur-md { + --tw-blur: blur(12px) !important; + } + + .\32xl\:blur-lg { + --tw-blur: blur(16px) !important; + } + + .\32xl\:blur-xl { + --tw-blur: blur(24px) !important; + } + + .\32xl\:blur-2xl { + --tw-blur: blur(40px) !important; + } + + .\32xl\:blur-3xl { + --tw-blur: blur(64px) !important; + } + + .\32xl\:brightness-0 { + --tw-brightness: brightness(0) !important; + } + + .\32xl\:brightness-50 { + --tw-brightness: brightness(.5) !important; + } + + .\32xl\:brightness-75 { + --tw-brightness: brightness(.75) !important; + } + + .\32xl\:brightness-90 { + --tw-brightness: brightness(.9) !important; + } + + .\32xl\:brightness-95 { + --tw-brightness: brightness(.95) !important; + } + + .\32xl\:brightness-100 { + --tw-brightness: brightness(1) !important; + } + + .\32xl\:brightness-105 { + --tw-brightness: brightness(1.05) !important; + } + + .\32xl\:brightness-110 { + --tw-brightness: brightness(1.1) !important; + } + + .\32xl\:brightness-125 { + --tw-brightness: brightness(1.25) !important; + } + + .\32xl\:brightness-150 { + --tw-brightness: brightness(1.5) !important; + } + + .\32xl\:brightness-200 { + --tw-brightness: brightness(2) !important; + } + + .\32xl\:contrast-0 { + --tw-contrast: contrast(0) !important; + } + + .\32xl\:contrast-50 { + --tw-contrast: contrast(.5) !important; + } + + .\32xl\:contrast-75 { + --tw-contrast: contrast(.75) !important; + } + + .\32xl\:contrast-100 { + --tw-contrast: contrast(1) !important; + } + + .\32xl\:contrast-125 { + --tw-contrast: contrast(1.25) !important; + } + + .\32xl\:contrast-150 { + --tw-contrast: contrast(1.5) !important; + } + + .\32xl\:contrast-200 { + --tw-contrast: contrast(2) !important; + } + + .\32xl\:drop-shadow-sm { + --tw-drop-shadow: drop-shadow(0 1px 1px rgba(0,0,0,0.05)) !important; + } + + .\32xl\:drop-shadow { + --tw-drop-shadow: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1)) drop-shadow(0 1px 1px rgba(0, 0, 0, 0.06)) !important; + } + + .\32xl\:drop-shadow-md { + --tw-drop-shadow: drop-shadow(0 4px 3px rgba(0, 0, 0, 0.07)) drop-shadow(0 2px 2px rgba(0, 0, 0, 0.06)) !important; + } + + .\32xl\:drop-shadow-lg { + --tw-drop-shadow: drop-shadow(0 10px 8px rgba(0, 0, 0, 0.04)) drop-shadow(0 4px 3px rgba(0, 0, 0, 0.1)) !important; + } + + .\32xl\:drop-shadow-xl { + --tw-drop-shadow: drop-shadow(0 20px 13px rgba(0, 0, 0, 0.03)) drop-shadow(0 8px 5px rgba(0, 0, 0, 0.08)) !important; + } + + .\32xl\:drop-shadow-2xl { + --tw-drop-shadow: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.15)) !important; + } + + .\32xl\:drop-shadow-none { + --tw-drop-shadow: drop-shadow(0 0 #0000) !important; + } + + .\32xl\:grayscale-0 { + --tw-grayscale: grayscale(0) !important; + } + + .\32xl\:grayscale { + --tw-grayscale: grayscale(100%) !important; + } + + .\32xl\:hue-rotate-0 { + --tw-hue-rotate: hue-rotate(0deg) !important; + } + + .\32xl\:hue-rotate-15 { + --tw-hue-rotate: hue-rotate(15deg) !important; + } + + .\32xl\:hue-rotate-30 { + --tw-hue-rotate: hue-rotate(30deg) !important; + } + + .\32xl\:hue-rotate-60 { + --tw-hue-rotate: hue-rotate(60deg) !important; + } + + .\32xl\:hue-rotate-90 { + --tw-hue-rotate: hue-rotate(90deg) !important; + } + + .\32xl\:hue-rotate-180 { + --tw-hue-rotate: hue-rotate(180deg) !important; + } + + .\32xl\:-hue-rotate-180 { + --tw-hue-rotate: hue-rotate(-180deg) !important; + } + + .\32xl\:-hue-rotate-90 { + --tw-hue-rotate: hue-rotate(-90deg) !important; + } + + .\32xl\:-hue-rotate-60 { + --tw-hue-rotate: hue-rotate(-60deg) !important; + } + + .\32xl\:-hue-rotate-30 { + --tw-hue-rotate: hue-rotate(-30deg) !important; + } + + .\32xl\:-hue-rotate-15 { + --tw-hue-rotate: hue-rotate(-15deg) !important; + } + + .\32xl\:invert-0 { + --tw-invert: invert(0) !important; + } + + .\32xl\:invert { + --tw-invert: invert(100%) !important; + } + + .\32xl\:saturate-0 { + --tw-saturate: saturate(0) !important; + } + + .\32xl\:saturate-50 { + --tw-saturate: saturate(.5) !important; + } + + .\32xl\:saturate-100 { + --tw-saturate: saturate(1) !important; + } + + .\32xl\:saturate-150 { + --tw-saturate: saturate(1.5) !important; + } + + .\32xl\:saturate-200 { + --tw-saturate: saturate(2) !important; + } + + .\32xl\:sepia-0 { + --tw-sepia: sepia(0) !important; + } + + .\32xl\:sepia { + --tw-sepia: sepia(100%) !important; + } + + .\32xl\:backdrop-filter { + --tw-backdrop-blur: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-backdrop-brightness: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-backdrop-contrast: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-backdrop-grayscale: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-backdrop-hue-rotate: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-backdrop-invert: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-backdrop-opacity: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-backdrop-saturate: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-backdrop-sepia: var(--tw-empty,/*!*/ /*!*/) !important; + -webkit-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) !important; + 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) !important; + } + + .\32xl\:backdrop-filter-none { + -webkit-backdrop-filter: none !important; + backdrop-filter: none !important; + } + + .\32xl\:backdrop-brightness-0 { + --tw-backdrop-brightness: brightness(0) !important; + } + + .\32xl\:backdrop-brightness-50 { + --tw-backdrop-brightness: brightness(.5) !important; + } + + .\32xl\:backdrop-brightness-75 { + --tw-backdrop-brightness: brightness(.75) !important; + } + + .\32xl\:backdrop-brightness-90 { + --tw-backdrop-brightness: brightness(.9) !important; + } + + .\32xl\:backdrop-brightness-95 { + --tw-backdrop-brightness: brightness(.95) !important; + } + + .\32xl\:backdrop-brightness-100 { + --tw-backdrop-brightness: brightness(1) !important; + } + + .\32xl\:backdrop-brightness-105 { + --tw-backdrop-brightness: brightness(1.05) !important; + } + + .\32xl\:backdrop-brightness-110 { + --tw-backdrop-brightness: brightness(1.1) !important; + } + + .\32xl\:backdrop-brightness-125 { + --tw-backdrop-brightness: brightness(1.25) !important; + } + + .\32xl\:backdrop-brightness-150 { + --tw-backdrop-brightness: brightness(1.5) !important; + } + + .\32xl\:backdrop-brightness-200 { + --tw-backdrop-brightness: brightness(2) !important; + } + + .\32xl\:backdrop-contrast-0 { + --tw-backdrop-contrast: contrast(0) !important; + } + + .\32xl\:backdrop-contrast-50 { + --tw-backdrop-contrast: contrast(.5) !important; + } + + .\32xl\:backdrop-contrast-75 { + --tw-backdrop-contrast: contrast(.75) !important; + } + + .\32xl\:backdrop-contrast-100 { + --tw-backdrop-contrast: contrast(1) !important; + } + + .\32xl\:backdrop-contrast-125 { + --tw-backdrop-contrast: contrast(1.25) !important; + } + + .\32xl\:backdrop-contrast-150 { + --tw-backdrop-contrast: contrast(1.5) !important; + } + + .\32xl\:backdrop-contrast-200 { + --tw-backdrop-contrast: contrast(2) !important; + } + + .\32xl\:backdrop-grayscale-0 { + --tw-backdrop-grayscale: grayscale(0) !important; + } + + .\32xl\:backdrop-grayscale { + --tw-backdrop-grayscale: grayscale(100%) !important; + } + + .\32xl\:backdrop-hue-rotate-0 { + --tw-backdrop-hue-rotate: hue-rotate(0deg) !important; + } + + .\32xl\:backdrop-hue-rotate-15 { + --tw-backdrop-hue-rotate: hue-rotate(15deg) !important; + } + + .\32xl\:backdrop-hue-rotate-30 { + --tw-backdrop-hue-rotate: hue-rotate(30deg) !important; + } + + .\32xl\:backdrop-hue-rotate-60 { + --tw-backdrop-hue-rotate: hue-rotate(60deg) !important; + } + + .\32xl\:backdrop-hue-rotate-90 { + --tw-backdrop-hue-rotate: hue-rotate(90deg) !important; + } + + .\32xl\:backdrop-hue-rotate-180 { + --tw-backdrop-hue-rotate: hue-rotate(180deg) !important; + } + + .\32xl\:-backdrop-hue-rotate-180 { + --tw-backdrop-hue-rotate: hue-rotate(-180deg) !important; + } + + .\32xl\:-backdrop-hue-rotate-90 { + --tw-backdrop-hue-rotate: hue-rotate(-90deg) !important; + } + + .\32xl\:-backdrop-hue-rotate-60 { + --tw-backdrop-hue-rotate: hue-rotate(-60deg) !important; + } + + .\32xl\:-backdrop-hue-rotate-30 { + --tw-backdrop-hue-rotate: hue-rotate(-30deg) !important; + } + + .\32xl\:-backdrop-hue-rotate-15 { + --tw-backdrop-hue-rotate: hue-rotate(-15deg) !important; + } + + .\32xl\:backdrop-invert-0 { + --tw-backdrop-invert: invert(0) !important; + } + + .\32xl\:backdrop-invert { + --tw-backdrop-invert: invert(100%) !important; + } + + .\32xl\:backdrop-saturate-0 { + --tw-backdrop-saturate: saturate(0) !important; + } + + .\32xl\:backdrop-saturate-50 { + --tw-backdrop-saturate: saturate(.5) !important; + } + + .\32xl\:backdrop-saturate-100 { + --tw-backdrop-saturate: saturate(1) !important; + } + + .\32xl\:backdrop-saturate-150 { + --tw-backdrop-saturate: saturate(1.5) !important; + } + + .\32xl\:backdrop-saturate-200 { + --tw-backdrop-saturate: saturate(2) !important; + } + + .\32xl\:backdrop-sepia-0 { + --tw-backdrop-sepia: sepia(0) !important; + } + + .\32xl\:backdrop-sepia { + --tw-backdrop-sepia: sepia(100%) !important; + } +} -/*! modern-normalize v1.1.0 | MIT License | https://github.com/sindresorhus/modern-normalize */html{-moz-tab-size:4;-o-tab-size:4;tab-size:4;line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0;font-family:system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji}hr{height:0;color:inherit}abbr[title]{-webkit-text-decoration:underline dotted;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,pre,samp{font-family:ui-monospace,SFMono-Regular,Consolas,Liberation Mono,Menlo,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{text-indent:0;border-color:inherit}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}legend{padding:0}progress{vertical-align:baseline}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}summary{display:list-item}blockquote,dd,dl,figure,h1,h2,h3,h4,h5,h6,hr,p,pre{margin:0}button{background-color:transparent;background-image:none}button:focus{outline:1px dotted;outline:5px auto -webkit-focus-ring-color}fieldset,ol,ul{margin:0;padding:0}ol,ul{list-style:none}html{font-family:ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;line-height:1.5}body{font-family:inherit;line-height:inherit}*,:after,:before{box-sizing:border-box;border:0 solid #e5e7eb}hr{border-top-width:1px}img{border-style:solid}textarea{resize:vertical}input::-moz-placeholder, textarea::-moz-placeholder{opacity:1;color:#9ca3af}input:-ms-input-placeholder, textarea:-ms-input-placeholder{opacity:1;color:#9ca3af}input::placeholder,textarea::placeholder{opacity:1;color:#9ca3af}[role=button],button{cursor:pointer}table{border-collapse:collapse}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}button,input,optgroup,select,textarea{padding:0;line-height:inherit;color:inherit}code,kbd,pre,samp{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{max-width:100%;height:auto}.space-y-1>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0!important;margin-top:calc(0.25rem*(1 - var(--tw-space-y-reverse)))!important;margin-bottom:calc(0.25rem*var(--tw-space-y-reverse))!important}.space-x-2>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0!important;margin-right:calc(0.5rem*var(--tw-space-x-reverse))!important;margin-left:calc(0.5rem*(1 - var(--tw-space-x-reverse)))!important}.space-x-3>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0!important;margin-right:calc(0.75rem*var(--tw-space-x-reverse))!important;margin-left:calc(0.75rem*(1 - var(--tw-space-x-reverse)))!important}.space-x-4>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0!important;margin-right:calc(1rem*var(--tw-space-x-reverse))!important;margin-left:calc(1rem*(1 - var(--tw-space-x-reverse)))!important}.space-y-6>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0!important;margin-top:calc(1.5rem*(1 - var(--tw-space-y-reverse)))!important;margin-bottom:calc(1.5rem*var(--tw-space-y-reverse))!important}.space-x-8>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0!important;margin-right:calc(2rem*var(--tw-space-x-reverse))!important;margin-left:calc(2rem*(1 - var(--tw-space-x-reverse)))!important}.bg-white{background-color:rgba(255,255,255,var(--tw-bg-opacity))!important}.bg-gray-50,.bg-white{--tw-bg-opacity:1!important}.bg-gray-50{background-color:rgba(249,250,251,var(--tw-bg-opacity))!important}.bg-gray-100{background-color:rgba(243,244,246,var(--tw-bg-opacity))!important}.bg-gray-100,.bg-gray-200{--tw-bg-opacity:1!important}.bg-gray-200{background-color:rgba(229,231,235,var(--tw-bg-opacity))!important}.bg-gray-500{background-color:rgba(107,114,128,var(--tw-bg-opacity))!important}.bg-gray-500,.bg-gray-800{--tw-bg-opacity:1!important}.bg-gray-800{background-color:rgba(31,41,55,var(--tw-bg-opacity))!important}.bg-red-100{background-color:rgba(254,226,226,var(--tw-bg-opacity))!important}.bg-red-100,.bg-red-600{--tw-bg-opacity:1!important}.bg-red-600{background-color:rgba(220,38,38,var(--tw-bg-opacity))!important}.bg-red-700{background-color:rgba(185,28,28,var(--tw-bg-opacity))!important}.bg-indigo-50,.bg-red-700{--tw-bg-opacity:1!important}.bg-indigo-50{background-color:rgba(238,242,255,var(--tw-bg-opacity))!important}.bg-indigo-500{--tw-bg-opacity:1!important;background-color:rgba(99,102,241,var(--tw-bg-opacity))!important}.bg-indigo-600{background-color:rgba(79,70,229,var(--tw-bg-opacity))!important}.bg-indigo-600,.bg-primary{--tw-bg-opacity:1!important}.bg-primary{background-color:rgba(0,49,151,var(--tw-bg-opacity))!important}.hover\:bg-gray-50:hover{--tw-bg-opacity:1!important;background-color:rgba(249,250,251,var(--tw-bg-opacity))!important}.hover\:bg-gray-100:hover{--tw-bg-opacity:1!important;background-color:rgba(243,244,246,var(--tw-bg-opacity))!important}.hover\:bg-gray-200:hover{--tw-bg-opacity:1!important;background-color:rgba(229,231,235,var(--tw-bg-opacity))!important}.hover\:bg-gray-700:hover{--tw-bg-opacity:1!important;background-color:rgba(55,65,81,var(--tw-bg-opacity))!important}.hover\:bg-red-500:hover{--tw-bg-opacity:1!important;background-color:rgba(239,68,68,var(--tw-bg-opacity))!important}.hover\:bg-red-600:hover{--tw-bg-opacity:1!important;background-color:rgba(220,38,38,var(--tw-bg-opacity))!important}.hover\:bg-indigo-600:hover{--tw-bg-opacity:1!important;background-color:rgba(79,70,229,var(--tw-bg-opacity))!important}.focus\:bg-gray-50:focus{--tw-bg-opacity:1!important;background-color:rgba(249,250,251,var(--tw-bg-opacity))!important}.focus\:bg-gray-100:focus{--tw-bg-opacity:1!important;background-color:rgba(243,244,246,var(--tw-bg-opacity))!important}.focus\:bg-red-600:focus{--tw-bg-opacity:1!important;background-color:rgba(220,38,38,var(--tw-bg-opacity))!important}.focus\:bg-indigo-100:focus{--tw-bg-opacity:1!important;background-color:rgba(224,231,255,var(--tw-bg-opacity))!important}.focus\:bg-indigo-600:focus{--tw-bg-opacity:1!important;background-color:rgba(79,70,229,var(--tw-bg-opacity))!important}.bg-opacity-25{--tw-bg-opacity:0.25!important}.border-transparent{border-color:transparent!important}.border-gray-100{--tw-border-opacity:1!important;border-color:rgba(243,244,246,var(--tw-border-opacity))!important}.border-gray-200{--tw-border-opacity:1!important;border-color:rgba(229,231,235,var(--tw-border-opacity))!important}.border-gray-300{--tw-border-opacity:1!important;border-color:rgba(209,213,219,var(--tw-border-opacity))!important}.border-gray-400{--tw-border-opacity:1!important;border-color:rgba(156,163,175,var(--tw-border-opacity))!important}.border-indigo-400{--tw-border-opacity:1!important;border-color:rgba(129,140,248,var(--tw-border-opacity))!important}.border-primary{--tw-border-opacity:1!important;border-color:rgba(0,49,151,var(--tw-border-opacity))!important}.focus\:border-gray-300:focus,.hover\:border-gray-300:hover{--tw-border-opacity:1!important;border-color:rgba(209,213,219,var(--tw-border-opacity))!important}.focus\:border-gray-900:focus{--tw-border-opacity:1!important;border-color:rgba(17,24,39,var(--tw-border-opacity))!important}.focus\:border-red-700:focus{--tw-border-opacity:1!important;border-color:rgba(185,28,28,var(--tw-border-opacity))!important}.focus\:border-blue-300:focus{--tw-border-opacity:1!important;border-color:rgba(147,197,253,var(--tw-border-opacity))!important}.focus\:border-indigo-300:focus{--tw-border-opacity:1!important;border-color:rgba(165,180,252,var(--tw-border-opacity))!important}.focus\:border-indigo-700:focus{--tw-border-opacity:1!important;border-color:rgba(67,56,202,var(--tw-border-opacity))!important}.rounded{border-radius:.25rem!important}.rounded-md{border-radius:.375rem!important}.rounded-lg{border-radius:.5rem!important}.rounded-full{border-radius:9999px!important}.rounded-t-none{border-top-left-radius:0!important;border-top-right-radius:0!important}.rounded-b-none{border-bottom-right-radius:0!important;border-bottom-left-radius:0!important}.rounded-r-md{border-top-right-radius:.375rem!important;border-bottom-right-radius:.375rem!important}.rounded-l-md{border-top-left-radius:.375rem!important;border-bottom-left-radius:.375rem!important}.border-2{border-width:2px!important}.border{border-width:1px!important}.border-b-2{border-bottom-width:2px!important}.border-l-4{border-left-width:4px!important}.border-t{border-top-width:1px!important}.border-r{border-right-width:1px!important}.border-b{border-bottom-width:1px!important}.cursor-default{cursor:default!important}.cursor-pointer{cursor:pointer!important}.block{display:block!important}.inline{display:inline!important}.flex{display:flex!important}.inline-flex{display:inline-flex!important}.table{display:table!important}.grid{display:grid!important}.hidden{display:none!important}.flex-col{flex-direction:column!important}.flex-wrap{flex-wrap:wrap!important}.items-center{align-items:center!important}.justify-end{justify-content:flex-end!important}.justify-center{justify-content:center!important}.justify-between{justify-content:space-between!important}.flex-1{flex:1 1 0%!important}.flex-shrink-0{flex-shrink:0!important}.font-sans{font-family:ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji!important}.font-mono{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace!important}.font-medium{font-weight:500!important}.font-semibold{font-weight:600!important}.font-bold{font-weight:700!important}.h-4{height:1rem!important}.h-5{height:1.25rem!important}.h-6{height:1.5rem!important}.h-8{height:2rem!important}.h-9{height:2.25rem!important}.h-10{height:2.5rem!important}.h-12{height:3rem!important}.h-14{height:3.5rem!important}.h-16{height:4rem!important}.h-20{height:5rem!important}.h-full{height:100%!important}.text-xs{font-size:.75rem!important;line-height:1rem!important}.text-sm{font-size:.875rem!important;line-height:1.25rem!important}.text-base{font-size:1rem!important;line-height:1.5rem!important}.text-lg{font-size:1.125rem!important}.text-lg,.text-xl{line-height:1.75rem!important}.text-xl{font-size:1.25rem!important}.text-2xl{font-size:1.5rem!important;line-height:2rem!important}.leading-4{line-height:1rem!important}.leading-5{line-height:1.25rem!important}.leading-7{line-height:1.75rem!important}.leading-tight{line-height:1.25!important}.list-inside{list-style-position:inside!important}.list-disc{list-style-type:disc!important}.mx-0{margin-left:0!important;margin-right:0!important}.mx-auto{margin-left:auto!important;margin-right:auto!important}.mx-0\.5{margin-left:.125rem!important;margin-right:.125rem!important}.ml-0{margin-left:0!important}.mt-1{margin-top:.25rem!important}.ml-1{margin-left:.25rem!important}.mt-2{margin-top:.5rem!important}.mr-2{margin-right:.5rem!important}.ml-2{margin-left:.5rem!important}.mt-3{margin-top:.75rem!important}.mr-3{margin-right:.75rem!important}.ml-3{margin-left:.75rem!important}.mt-4{margin-top:1rem!important}.mb-4{margin-bottom:1rem!important}.ml-4{margin-left:1rem!important}.mt-5{margin-top:1.25rem!important}.ml-5{margin-left:1.25rem!important}.mt-6{margin-top:1.5rem!important}.mb-6{margin-bottom:1.5rem!important}.ml-6{margin-left:1.5rem!important}.mt-8{margin-top:2rem!important}.mt-10{margin-top:2.5rem!important}.ml-10{margin-left:2.5rem!important}.ml-12{margin-left:3rem!important}.-mr-0{margin-right:0!important}.-mb-0{margin-bottom:0!important}.-mt-1{margin-top:-.25rem!important}.-mr-1{margin-right:-.25rem!important}.-mr-2{margin-right:-.5rem!important}.-mt-px{margin-top:-1px!important}.-ml-px{margin-left:-1px!important}.-mr-0\.5{margin-right:-.125rem!important}.-mb-0\.5{margin-bottom:-.125rem!important}.max-w-xl{max-width:36rem!important}.max-w-2xl{max-width:42rem!important}.max-w-6xl{max-width:72rem!important}.max-w-7xl{max-width:80rem!important}.max-w-screen-xl{max-width:1280px!important}.min-h-screen{min-height:100vh!important}.min-w-0{min-width:0!important}.object-cover{-o-object-fit:cover!important;object-fit:cover!important}.opacity-0{opacity:0!important}.opacity-40{opacity:.4!important}.opacity-50{opacity:.5!important}.opacity-75{opacity:.75!important}.opacity-100{opacity:1!important}.disabled\:opacity-25:disabled{opacity:.25!important}.focus\:outline-none:focus{outline:2px solid transparent!important;outline-offset:2px!important}.overflow-hidden{overflow:hidden!important}.overflow-y-auto{overflow-y:auto!important}.overflow-y-hidden{overflow-y:hidden!important}.p-2{padding:.5rem!important}.p-4{padding:1rem!important}.p-6{padding:1.5rem!important}.py-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.px-1{padding-left:.25rem!important;padding-right:.25rem!important}.py-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.px-2{padding-left:.5rem!important;padding-right:.5rem!important}.py-3{padding-top:.75rem!important;padding-bottom:.75rem!important}.px-3{padding-left:.75rem!important;padding-right:.75rem!important}.py-4{padding-top:1rem!important;padding-bottom:1rem!important}.px-4{padding-left:1rem!important;padding-right:1rem!important}.py-5{padding-top:1.25rem!important;padding-bottom:1.25rem!important}.px-5{padding-left:1.25rem!important;padding-right:1.25rem!important}.py-6{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.px-6{padding-left:1.5rem!important;padding-right:1.5rem!important}.py-8{padding-top:2rem!important;padding-bottom:2rem!important}.py-10{padding-top:2.5rem!important;padding-bottom:2.5rem!important}.py-12{padding-top:3rem!important;padding-bottom:3rem!important}.pt-1{padding-top:.25rem!important}.pb-1{padding-bottom:.25rem!important}.pt-2{padding-top:.5rem!important}.pb-3{padding-bottom:.75rem!important}.pl-3{padding-left:.75rem!important}.pt-4{padding-top:1rem!important}.pr-4{padding-right:1rem!important}.pb-4{padding-bottom:1rem!important}.pt-5{padding-top:1.25rem!important}.pt-6{padding-top:1.5rem!important}.pt-8{padding-top:2rem!important}.fixed{position:fixed!important}.absolute{position:absolute!important}.relative{position:relative!important}.inset-0{right:0!important;bottom:0!important;left:0!important}.inset-0,.top-0{top:0!important}.right-0{right:0!important}.left-0{left:0!important}.bottom-8{bottom:2rem!important}.-left-3{left:-.75rem!important}*{--tw-shadow:0 0 transparent}.shadow-sm{--tw-shadow:0 1px 2px 0 rgba(0,0,0,0.05)!important}.shadow,.shadow-sm{box-shadow:var(--tw-ring-offset-shadow,0 0 transparent),var(--tw-ring-shadow,0 0 transparent),var(--tw-shadow)!important}.shadow{--tw-shadow:0 1px 3px 0 rgba(0,0,0,0.1),0 1px 2px 0 rgba(0,0,0,0.06)!important}.shadow-md{--tw-shadow:0 4px 6px -1px rgba(0,0,0,0.1),0 2px 4px -1px rgba(0,0,0,0.06)!important}.shadow-lg,.shadow-md{box-shadow:var(--tw-ring-offset-shadow,0 0 transparent),var(--tw-ring-shadow,0 0 transparent),var(--tw-shadow)!important}.shadow-lg{--tw-shadow:0 10px 15px -3px rgba(0,0,0,0.1),0 4px 6px -2px rgba(0,0,0,0.05)!important}.shadow-xl{--tw-shadow:0 20px 25px -5px rgba(0,0,0,0.1),0 10px 10px -5px rgba(0,0,0,0.04)!important;box-shadow:var(--tw-ring-offset-shadow,0 0 transparent),var(--tw-ring-shadow,0 0 transparent),var(--tw-shadow)!important}*{--tw-ring-inset:var(--tw-empty,/*!*/ /*!*/);--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(59,130,246,0.5);--tw-ring-offset-shadow:0 0 transparent;--tw-ring-shadow:0 0 transparent}.ring-1{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color)!important;--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color)!important}.focus\:ring:focus,.ring-1{box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 transparent)!important}.focus\:ring:focus{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color)!important;--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color)!important}.ring-black{--tw-ring-opacity:1!important;--tw-ring-color:rgba(0,0,0,var(--tw-ring-opacity))!important}.focus\:ring-gray-300:focus,.ring-gray-300{--tw-ring-opacity:1!important;--tw-ring-color:rgba(209,213,219,var(--tw-ring-opacity))!important}.focus\:ring-red-200:focus{--tw-ring-opacity:1!important;--tw-ring-color:rgba(254,202,202,var(--tw-ring-opacity))!important}.focus\:ring-blue-200:focus{--tw-ring-opacity:1!important;--tw-ring-color:rgba(191,219,254,var(--tw-ring-opacity))!important}.focus\:ring-indigo-200:focus{--tw-ring-opacity:1!important;--tw-ring-color:rgba(199,210,254,var(--tw-ring-opacity))!important}.ring-opacity-5{--tw-ring-opacity:0.05!important}.focus\:ring-opacity-50:focus{--tw-ring-opacity:0.5!important}.text-center{text-align:center!important}.text-right{text-align:right!important}.text-white{color:rgba(255,255,255,var(--tw-text-opacity))!important}.text-gray-200,.text-white{--tw-text-opacity:1!important}.text-gray-200{color:rgba(229,231,235,var(--tw-text-opacity))!important}.text-gray-300{--tw-text-opacity:1!important;color:rgba(209,213,219,var(--tw-text-opacity))!important}.text-gray-400{--tw-text-opacity:1!important;color:rgba(156,163,175,var(--tw-text-opacity))!important}.text-gray-500{--tw-text-opacity:1!important;color:rgba(107,114,128,var(--tw-text-opacity))!important}.text-gray-600{--tw-text-opacity:1!important;color:rgba(75,85,99,var(--tw-text-opacity))!important}.text-gray-700{--tw-text-opacity:1!important;color:rgba(55,65,81,var(--tw-text-opacity))!important}.text-gray-800{--tw-text-opacity:1!important;color:rgba(31,41,55,var(--tw-text-opacity))!important}.text-gray-900{color:rgba(17,24,39,var(--tw-text-opacity))!important}.text-gray-900,.text-red-500{--tw-text-opacity:1!important}.text-red-500{color:rgba(239,68,68,var(--tw-text-opacity))!important}.text-red-600{--tw-text-opacity:1!important;color:rgba(220,38,38,var(--tw-text-opacity))!important}.text-green-400{--tw-text-opacity:1!important;color:rgba(52,211,153,var(--tw-text-opacity))!important}.text-green-500{--tw-text-opacity:1!important;color:rgba(16,185,129,var(--tw-text-opacity))!important}.text-green-600{--tw-text-opacity:1!important;color:rgba(5,150,105,var(--tw-text-opacity))!important}.text-indigo-500{--tw-text-opacity:1!important;color:rgba(99,102,241,var(--tw-text-opacity))!important}.text-indigo-600{--tw-text-opacity:1!important;color:rgba(79,70,229,var(--tw-text-opacity))!important}.text-indigo-700{--tw-text-opacity:1!important;color:rgba(67,56,202,var(--tw-text-opacity))!important}.text-primary{--tw-text-opacity:1!important;color:rgba(0,49,151,var(--tw-text-opacity))!important}.hover\:text-gray-400:hover{--tw-text-opacity:1!important;color:rgba(156,163,175,var(--tw-text-opacity))!important}.hover\:text-gray-500:hover{--tw-text-opacity:1!important;color:rgba(107,114,128,var(--tw-text-opacity))!important}.hover\:text-gray-700:hover{--tw-text-opacity:1!important;color:rgba(55,65,81,var(--tw-text-opacity))!important}.hover\:text-gray-800:hover{--tw-text-opacity:1!important;color:rgba(31,41,55,var(--tw-text-opacity))!important}.hover\:text-gray-900:hover{--tw-text-opacity:1!important;color:rgba(17,24,39,var(--tw-text-opacity))!important}.focus\:text-gray-500:focus{--tw-text-opacity:1!important;color:rgba(107,114,128,var(--tw-text-opacity))!important}.focus\:text-gray-700:focus{--tw-text-opacity:1!important;color:rgba(55,65,81,var(--tw-text-opacity))!important}.focus\:text-gray-800:focus{--tw-text-opacity:1!important;color:rgba(31,41,55,var(--tw-text-opacity))!important}.focus\:text-indigo-800:focus{--tw-text-opacity:1!important;color:rgba(55,48,163,var(--tw-text-opacity))!important}.truncate{overflow:hidden!important;text-overflow:ellipsis!important;white-space:nowrap!important}.uppercase{text-transform:uppercase!important}.underline{text-decoration:underline!important}.antialiased{-webkit-font-smoothing:antialiased!important;-moz-osx-font-smoothing:grayscale!important}.tracking-wider{letter-spacing:.05em!important}.tracking-widest{letter-spacing:.1em!important}.visible{visibility:visible!important}.invisible{visibility:hidden!important}.whitespace-nowrap{white-space:nowrap!important}.w-0{width:0!important}.w-4{width:1rem!important}.w-5{width:1.25rem!important}.w-6{width:1.5rem!important}.w-8{width:2rem!important}.w-10{width:2.5rem!important}.w-12{width:3rem!important}.w-16{width:4rem!important}.w-20{width:5rem!important}.w-36{width:9rem!important}.w-44{width:11rem!important}.w-48{width:12rem!important}.w-60{width:15rem!important}.w-auto{width:auto!important}.w-1\/2{width:50%!important}.w-3\/4{width:75%!important}.w-2\/12{width:16.666667%!important}.w-3\/12{width:25%!important}.w-8\/12{width:66.666667%!important}.w-full{width:100%!important}.z-0{z-index:0!important}.z-50{z-index:50!important}.focus\:z-10:focus{z-index:10!important}.gap-1{gap:.25rem!important}.gap-4{gap:1rem!important}.gap-6{gap:1.5rem!important}.grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr))!important}.grid-cols-6{grid-template-columns:repeat(6,minmax(0,1fr))!important}.col-span-6{grid-column:span 6/span 6!important}.transform{--tw-translate-x:0!important;--tw-translate-y:0!important;--tw-rotate:0!important;--tw-skew-x:0!important;--tw-skew-y:0!important;--tw-scale-x:1!important;--tw-scale-y:1!important;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))!important}.origin-top{transform-origin:top!important}.origin-top-right{transform-origin:top right!important}.origin-top-left{transform-origin:top left!important}.scale-95{--tw-scale-x:.95!important;--tw-scale-y:.95!important}.scale-100{--tw-scale-x:1!important;--tw-scale-y:1!important}.translate-y-0{--tw-translate-y:0px!important}.translate-y-4{--tw-translate-y:1rem!important}.transition-all{transition-property:all!important;transition-timing-function:cubic-bezier(.4,0,.2,1)!important;transition-duration:.15s!important}.transition{transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform,filter,-webkit-backdrop-filter!important;transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter!important;transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter,-webkit-backdrop-filter!important;transition-timing-function:cubic-bezier(.4,0,.2,1)!important;transition-duration:.15s!important}.ease-in{transition-timing-function:cubic-bezier(.4,0,1,1)!important}.ease-out{transition-timing-function:cubic-bezier(0,0,.2,1)!important}.ease-in-out{transition-timing-function:cubic-bezier(.4,0,.2,1)!important}.duration-75{transition-duration:75ms!important}.duration-150{transition-duration:.15s!important}.duration-200{transition-duration:.2s!important}.duration-300{transition-duration:.3s!important}@-webkit-keyframes spin{to{transform:rotate(1turn)}}@keyframes spin{to{transform:rotate(1turn)}}@-webkit-keyframes ping{75%,to{transform:scale(2);opacity:0}}@keyframes ping{75%,to{transform:scale(2);opacity:0}}@-webkit-keyframes pulse{50%{opacity:.5}}@keyframes pulse{50%{opacity:.5}}@-webkit-keyframes bounce{0%,to{transform:translateY(-25%);-webkit-animation-timing-function:cubic-bezier(.8,0,1,1);animation-timing-function:cubic-bezier(.8,0,1,1)}50%{transform:none;-webkit-animation-timing-function:cubic-bezier(0,0,.2,1);animation-timing-function:cubic-bezier(0,0,.2,1)}}@keyframes bounce{0%,to{transform:translateY(-25%);-webkit-animation-timing-function:cubic-bezier(.8,0,1,1);animation-timing-function:cubic-bezier(.8,0,1,1)}50%{transform:none;-webkit-animation-timing-function:cubic-bezier(0,0,.2,1);animation-timing-function:cubic-bezier(0,0,.2,1)}}.filter{--tw-blur:var(--tw-empty,/*!*/ /*!*/)!important;--tw-brightness:var(--tw-empty,/*!*/ /*!*/)!important;--tw-contrast:var(--tw-empty,/*!*/ /*!*/)!important;--tw-grayscale:var(--tw-empty,/*!*/ /*!*/)!important;--tw-hue-rotate:var(--tw-empty,/*!*/ /*!*/)!important;--tw-invert:var(--tw-empty,/*!*/ /*!*/)!important;--tw-saturate:var(--tw-empty,/*!*/ /*!*/)!important;--tw-sepia:var(--tw-empty,/*!*/ /*!*/)!important;--tw-drop-shadow:var(--tw-empty,/*!*/ /*!*/)!important;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)!important}.ant-table{--tw-text-opacity:1;color:rgba(17,24,39,var(--tw-text-opacity))}.ant-table-tbody>tr>td{--tw-border-opacity:1;border-color:rgba(209,213,219,var(--tw-border-opacity))}.ant-table-thead>tr>th{font-weight:700;--tw-text-opacity:1;color:rgba(17,24,39,var(--tw-text-opacity))}.ant-table-thead>tr>th,.ant-table tr:nth-child(2n){--tw-bg-opacity:1;background-color:rgba(243,244,246,var(--tw-bg-opacity))}@media (min-width:640px){.sm\:rounded-md{border-radius:.375rem!important}.sm\:rounded-lg{border-radius:.5rem!important}.sm\:rounded-tl-md{border-top-left-radius:.375rem!important}.sm\:rounded-tr-md{border-top-right-radius:.375rem!important}.sm\:rounded-br-md{border-bottom-right-radius:.375rem!important}.sm\:rounded-bl-md{border-bottom-left-radius:.375rem!important}.sm\:block{display:block!important}.sm\:flex{display:flex!important}.sm\:hidden{display:none!important}.sm\:items-start{align-items:flex-start!important}.sm\:items-center{align-items:center!important}.sm\:justify-start{justify-content:flex-start!important}.sm\:justify-center{justify-content:center!important}.sm\:justify-between{justify-content:space-between!important}.sm\:flex-1{flex:1 1 0%!important}.sm\:h-10{height:2.5rem!important}.sm\:mx-0{margin-left:0!important;margin-right:0!important}.sm\:mx-auto{margin-left:auto!important;margin-right:auto!important}.sm\:-my-px{margin-top:-1px!important;margin-bottom:-1px!important}.sm\:mt-0{margin-top:0!important}.sm\:ml-3{margin-left:.75rem!important}.sm\:ml-4{margin-left:1rem!important}.sm\:ml-6{margin-left:1.5rem!important}.sm\:ml-10{margin-left:2.5rem!important}.sm\:-mr-2{margin-right:-.5rem!important}.sm\:max-w-sm{max-width:24rem!important}.sm\:max-w-md{max-width:28rem!important}.sm\:max-w-lg{max-width:32rem!important}.sm\:max-w-xl{max-width:36rem!important}.sm\:max-w-2xl{max-width:42rem!important}.sm\:p-6{padding:1.5rem!important}.sm\:px-0{padding-left:0!important;padding-right:0!important}.sm\:px-6{padding-left:1.5rem!important;padding-right:1.5rem!important}.sm\:px-20{padding-left:5rem!important;padding-right:5rem!important}.sm\:pt-0{padding-top:0!important}.sm\:pb-4{padding-bottom:1rem!important}.sm\:text-left{text-align:left!important}.sm\:w-10{width:2.5rem!important}.sm\:w-full{width:100%!important}.sm\:col-span-4{grid-column:span 4/span 4!important}.sm\:scale-95{--tw-scale-x:.95!important;--tw-scale-y:.95!important}.sm\:scale-100{--tw-scale-x:1!important;--tw-scale-y:1!important}.sm\:translate-y-0{--tw-translate-y:0px!important}}@media (min-width:768px){.md\:border-t-0{border-top-width:0!important}.md\:border-l{border-left-width:1px!important}.md\:grid{display:grid!important}.md\:mt-0{margin-top:0!important}.md\:gap-6{gap:1.5rem!important}.md\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))!important}.md\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))!important}.md\:col-span-1{grid-column:span 1/span 1!important}.md\:col-span-2{grid-column:span 2/span 2!important}}@media (min-width:1024px){.lg\:px-8{padding-left:2rem!important;padding-right:2rem!important}.lg\:col-span-4{grid-column:span 4/span 4!important}} diff --git a/public/js/app.js b/public/js/app.js index 0768bac..647e873 100644 --- a/public/js/app.js +++ b/public/js/app.js @@ -1,2 +1,154182 @@ -/*! For license information please see app.js.LICENSE.txt */ -(()=>{var e,t,n={24778:function(e,t,n){"use strict";var r=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0});var i=r(n(17621));function o(e,t,n){var r;return(r=Math.round(e.h)>=60&&Math.round(e.h)<=240?n?Math.round(e.h)-2*t:Math.round(e.h)+2*t:n?Math.round(e.h)+2*t:Math.round(e.h)-2*t)<0?r+=360:r>=360&&(r-=360),r}function a(e,t,n){return 0===e.h&&0===e.s?e.s:((r=n?Math.round(100*e.s)-16*t:4===t?Math.round(100*e.s)+16:Math.round(100*e.s)+5*t)>100&&(r=100),n&&5===t&&r>10&&(r=10),r<6&&(r=6),r);var r}function s(e,t,n){return n?Math.round(100*e.v)+5*t:Math.round(100*e.v)-15*t}t.default=function(e){for(var t=[],n=i.default(e),r=5;r>0;r-=1){var c=n.toHsv(),l=i.default({h:o(c,r,!0),s:a(c,r,!0),v:s(c,r,!0)}).toHexString();t.push(l)}for(t.push(n.toHexString()),r=1;r<=4;r+=1){c=n.toHsv(),l=i.default({h:o(c,r),s:a(c,r),v:s(c,r)}).toHexString();t.push(l)}return t}},39086:function(e,t,n){"use strict";var r=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0});var i=r(n(24778));t.generate=i.default;var o={red:"#F5222D",volcano:"#FA541C",orange:"#FA8C16",gold:"#FAAD14",yellow:"#FADB14",lime:"#A0D911",green:"#52C41A",cyan:"#13C2C2",blue:"#1890FF",geekblue:"#2F54EB",purple:"#722ED1",magenta:"#EB2F96",grey:"#666666"};t.presetPrimaryColors=o;var a={};t.presetPalettes=a,Object.keys(o).forEach((function(e){a[e]=i.default(o[e]),a[e].primary=a[e][5]}));var s=a.red;t.red=s;var c=a.volcano;t.volcano=c;var l=a.gold;t.gold=l;var u=a.orange;t.orange=u;var d=a.yellow;t.yellow=d;var h=a.lime;t.lime=h;var f=a.green;t.green=f;var p=a.cyan;t.cyan=p;var m=a.blue;t.blue=m;var v=a.geekblue;t.geekblue=v;var y=a.purple;t.purple=y;var g=a.magenta;t.magenta=g;var _=a.grey;t.grey=_},58749:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n="0 0 1024 1024",r="64 64 896 896",i="fill",o="outline",a="twotone";function s(e){for(var t=[],n=1;n{function r(e){return e&&"object"==typeof e&&"default"in e?e.default:e}var i=r(n(70538)),o=r(n(83465)),a=n(9680);function s(){return(s=Object.assign||function(e){for(var t=1;t0&&!t.includes(r)?((i={})[r]=e.errors[r],i):{})}),{}),this.hasErrors=Object.keys(this.errors).length>0,this},submit:function(e,t,n){var r=this;void 0===n&&(n={});var i=d(this.data()),o=s({},n,{onCancelToken:function(e){if(l=e,n.cancelToken)return n.cancelToken(e)},onBefore:function(e){if(r.wasSuccessful=!1,r.recentlySuccessful=!1,clearTimeout(u),n.onBefore)return n.onBefore(e)},onStart:function(e){if(r.processing=!0,n.onStart)return n.onStart(e)},onProgress:function(e){if(r.progress=e,n.onProgress)return n.onProgress(e)},onSuccess:function(e){if(r.processing=!1,r.progress=null,r.clearErrors(),r.wasSuccessful=!0,r.recentlySuccessful=!0,u=setTimeout((function(){return r.recentlySuccessful=!1}),2e3),n.onSuccess)return n.onSuccess(e)},onError:function(e){if(r.processing=!1,r.progress=null,r.errors=e,r.hasErrors=!0,n.onError)return n.onError(e)},onCancel:function(){if(r.processing=!1,r.progress=null,n.onCancel)return n.onCancel()},onFinish:function(){if(l=null,n.onFinish)return n.onFinish()}});"delete"===e?a.Inertia.delete(t,s({},o,{data:i})):a.Inertia[e](t,i,o)},get:function(e,t){this.submit("get",e,t)},post:function(e,t){this.submit("post",e,t)},put:function(e,t){this.submit("put",e,t)},patch:function(e,t){this.submit("patch",e,t)},delete:function(e,t){this.submit("delete",e,t)},cancel:function(){l&&l.cancel()},__rememberable:null===t,__remember:function(){return{data:this.data(),errors:this.errors}},__restore:function(e){Object.assign(this,e.data),Object.assign(this.errors,e.errors),this.hasErrors=Object.keys(this.errors).length>0}}));return t&&new i({created:function(){this.$watch((function(){return h}),(function(e){a.Inertia.remember(e.__remember(),t)}),{immediate:!0,deep:!0})}}),h}var l={functional:!0,props:{as:{type:String,default:"a"},data:{type:Object,default:function(){return{}}},href:{type:String,required:!0},method:{type:String,default:"get"},replace:{type:Boolean,default:!1},preserveScroll:{type:Boolean,default:!1},preserveState:{type:Boolean,default:null},only:{type:Array,default:function(){return[]}},headers:{type:Object,default:function(){return{}}}},render:function(e,t){var n=t.props,r=t.data,i=t.children;r.on=s({click:function(){return{}},cancelToken:function(){return{}},start:function(){return{}},progress:function(){return{}},finish:function(){return{}},cancel:function(){return{}},success:function(){return{}},error:function(){return{}}},r.on||{});var o=n.as.toLowerCase(),c=n.method.toLowerCase(),l=a.mergeDataIntoQueryString(c,a.hrefToUrl(n.href),n.data),u=l[0],d=l[1];return"a"===o&&"get"!==c&&console.warn('Creating POST/PUT/PATCH/DELETE links is discouraged as it causes "Open Link in New Tab/Window" accessibility issues.\n\nPlease specify a more appropriate element using the "as" attribute. For example:\n\n...'),e(n.as,s({},r,{attrs:s({},r.attrs,"a"===o?{href:u.href}:{}),on:s({},r.on,{click:function(e){var t;r.on.click(e),a.shouldIntercept(e)&&(e.preventDefault(),a.Inertia.visit(u.href,{data:d,method:c,replace:n.replace,preserveScroll:n.preserveScroll,preserveState:null!=(t=n.preserveState)?t:"get"!==c,only:n.only,headers:n.headers,onCancelToken:r.on.cancelToken,onBefore:r.on.before,onStart:r.on.start,onProgress:r.on.progress,onFinish:r.on.finish,onCancel:r.on.cancel,onSuccess:r.on.success,onError:r.on.error}))}})}),i)}},u={created:function(){var e=this;if(this.$options.remember){Array.isArray(this.$options.remember)&&(this.$options.remember={data:this.$options.remember}),"string"==typeof this.$options.remember&&(this.$options.remember={data:[this.$options.remember]}),"string"==typeof this.$options.remember.data&&(this.$options.remember={data:[this.$options.remember.data]});var t=this.$options.remember.key instanceof Function?this.$options.remember.key.call(this):this.$options.remember.key,n=a.Inertia.restore(t),r=this.$options.remember.data.filter((function(t){return!(null!==e[t]&&"object"==typeof e[t]&&!1===e[t].__rememberable)})),i=function(t){return null!==e[t]&&"object"==typeof e[t]&&"function"==typeof e[t].__remember&&"function"==typeof e[t].__restore};r.forEach((function(o){void 0!==e[o]&&void 0!==n&&void 0!==n[o]&&(i(o)?e[o].__restore(n[o]):e[o]=n[o]),e.$watch(o,(function(){a.Inertia.remember(r.reduce((function(t,n){var r;return s({},t,((r={})[n]=i(n)?e[n].__remember():e[n],r))}),{}),t)}),{immediate:!0,deep:!0})}))}}},d={},h={name:"Inertia",props:{initialPage:{type:Object,required:!0},resolveComponent:{type:Function,required:!0},resolveErrors:{type:Function,required:!1},transformProps:{type:Function,required:!1}},data:function(){return{component:null,page:{},key:null}},created:function(){var e=this;d=this,a.Inertia.init({initialPage:this.initialPage,resolveComponent:this.resolveComponent,resolveErrors:this.resolveErrors,transformProps:this.transformProps,swapComponent:function(t){var n=t.component,r=t.page,i=t.preserveState;try{return e.component=n,e.page=r,e.key=i?e.key:Date.now(),Promise.resolve()}catch(e){return Promise.reject(e)}}})},render:function(e){if(this.component){var t=e(this.component,{key:this.key,props:this.page.props,scopedSlots:this.$scopedSlots});return this.component.layout?"function"==typeof this.component.layout?this.component.layout(e,t):Array.isArray(this.component.layout)?this.component.layout.concat(t).reverse().reduce((function(t,n){return e(n,[t])})):e(this.component.layout,[t]):t}},install:function(e){console.warn('Registering the Inertia Vue plugin via the "app" component has been deprecated. Use the new "plugin" named export instead.\n\nimport { plugin } from \'@inertiajs/inertia-vue\'\n\nVue.use(plugin)'),f.install(e)}},f={install:function(e){a.Inertia.form=c,Object.defineProperty(e.prototype,"$inertia",{get:function(){return a.Inertia}}),Object.defineProperty(e.prototype,"$page",{get:function(){return d.page}}),e.mixin(u),e.component("InertiaLink",l)}};t.gV=h,t.BA=f},9680:(e,t,n)=>{function r(e){return e&&"object"==typeof e&&"default"in e?e.default:e}var i=r(n(9669)),o=r(n(80129)),a=r(n(9996));function s(){return(s=Object.assign||function(e){for(var t=1;t0:e},visit:function(e,t){var n=this,r=void 0===t?{}:t,o=r.method,a=void 0===o?"get":o,u=r.data,d=void 0===u?{}:u,v=r.replace,y=void 0!==v&&v,g=r.preserveScroll,_=void 0!==g&&g,b=r.preserveState,M=void 0!==b&&b,w=r.only,k=void 0===w?[]:w,C=r.headers,L=void 0===C?{}:C,x=r.errorBag,S=void 0===x?null:x,Z=r.forceFormData,T=void 0!==Z&&Z,z=r.onCancelToken,O=void 0===z?function(){return{}}:z,H=r.onBefore,D=void 0===H?function(){return{}}:H,V=r.onStart,P=void 0===V?function(){return{}}:V,Y=r.onProgress,A=void 0===Y?function(){return{}}:Y,j=r.onFinish,E=void 0===j?function(){return{}}:j,$=r.onCancel,F=void 0===$?function(){return{}}:$,I=r.onSuccess,N=void 0===I?function(){return{}}:I,R=r.onError,W=void 0===R?function(){return{}}:R,K=f(a=a.toLowerCase(),h(e),d);e=K[0];var B=function e(t){return t instanceof File||t instanceof Blob||t instanceof FileList||"object"==typeof t&&null!==t&&void 0!==Object.values(t).find((function(t){return e(t)}))}(d=K[1]);"get"!==a&&(B||T)&&(d=m(d));var U={url:e,method:a,data:d,replace:y,preserveScroll:_,preserveState:M,only:k,headers:L,errorBag:S,forceFormData:T,onCancelToken:O,onBefore:D,onStart:P,onProgress:A,onFinish:E,onCancel:F,onSuccess:N,onError:W};if(!1!==D(U)&&function(e){return l("before",{cancelable:!0,detail:{visit:e}})}(U)){this.cancelVisit(this.activeVisit,{interrupted:!0}),this.saveScrollPositions();var q=this.createVisitId();return this.activeVisit=U,this.activeVisit.cancelToken=i.CancelToken.source(),O({cancel:function(){return n.cancelVisit(n.activeVisit,{cancelled:!0})}}),function(e){l("start",{detail:{visit:e}})}(U),P(U),new Proxy(i({method:a,url:p(e).href,data:"get"===a?{}:d,params:"get"===a?d:{},cancelToken:this.activeVisit.cancelToken.token,headers:s({},L,{Accept:"text/html, application/xhtml+xml","X-Requested-With":"XMLHttpRequest","X-Inertia":!0},k.length?{"X-Inertia-Partial-Component":this.page.component,"X-Inertia-Partial-Data":k.join(",")}:{},S?{"X-Inertia-Error-Bag":S}:{},this.page.version?{"X-Inertia-Version":this.page.version}:{}),onUploadProgress:function(e){B&&(e.percentage=Math.round(e.loaded/e.total*100),function(e){l("progress",{detail:{progress:e}})}(e),A(e))}}).then((function(t){var r;if(!n.isInertiaResponse(t))return Promise.reject({response:t});k.length&&t.data.component===n.page.component&&(t.data.props=s({},n.page.props,t.data.props)),_=n.resolvePreserveOption(_,t.data),(M=n.resolvePreserveOption(M,t.data))&&null!=(r=window.history.state)&&r.rememberedState&&t.data.component===n.page.component&&(t.data.rememberedState=window.history.state.rememberedState);var i=h(t.data.url);return e.hash&&!i.hash&&p(e).href===i.href&&(i.hash=e.hash,t.data.url=i.href),n.setPage(t.data,{visitId:q,replace:y,preserveScroll:_,preserveState:M})})).then((function(){var e=n.resolveErrors(n.page);return Object.keys(e).length>0?(function(e){l("error",{detail:{errors:e}})}(e[S]||e),W(e[S]||e)):(l("success",{detail:{page:n.page}}),N(n.page))})).catch((function(t){if(n.isInertiaResponse(t.response))return n.setPage(t.response.data,{visitId:q});if(n.isLocationVisitResponse(t.response)){var r=h(t.response.headers["x-inertia-location"]);e.hash&&!r.hash&&p(e).href===r.href&&(r.hash=e.hash),n.locationVisit(r,_)}else{if(!t.response)return Promise.reject(t);l("invalid",{cancelable:!0,detail:{response:t.response}})&&c.show(t.response.data)}})).then((function(){n.finishVisit(U)})).catch((function(e){if(!i.isCancel(e)){var t=l("exception",{cancelable:!0,detail:{exception:e}});if(n.finishVisit(U),t)return Promise.reject(e)}})),{get:function(e,t){return["then","catch","finally"].includes(t)&&console.warn("Inertia.js visit promises have been deprecated and will be removed in a future release. Please use the new visit event callbacks instead.\n\nLearn more at https://inertiajs.com/manual-visits#promise-deprecation"),"function"==typeof e[t]?e[t].bind(e):e[t]}})}},setPage:function(e,t){var n=this,r=void 0===t?{}:t,i=r.visitId,o=void 0===i?this.createVisitId():i,a=r.replace,s=void 0!==a&&a,c=r.preserveScroll,l=void 0!==c&&c,u=r.preserveState,f=void 0!==u&&u;return Promise.resolve(this.resolveComponent(e.component)).then((function(t){if(o===n.visitId){e.scrollRegions=e.scrollRegions||[],e.rememberedState=e.rememberedState||{},(s=s||h(e.url).href===window.location.href)?n.replaceState(e):n.pushState(e);var r=JSON.parse(JSON.stringify(e));r.props=n.transformProps(r.props),n.swapComponent({component:t,page:r,preserveState:f}).then((function(){l||n.resetScrollPositions(),s||d(e)}))}}))},pushState:function(e){this.page=e,window.history.pushState(e,"",e.url)},replaceState:function(e){this.page=e,window.history.replaceState(e,"",e.url)},handlePopstateEvent:function(e){var t=this;if(null!==e.state){var n=e.state,r=this.createVisitId();return Promise.resolve(this.resolveComponent(n.component)).then((function(e){r===t.visitId&&(t.page=n,t.swapComponent({component:e,page:n,preserveState:!1}).then((function(){t.restoreScrollPositions(),d(n)})))}))}var i=h(this.page.url);i.hash=window.location.hash,this.replaceState(s({},this.page,{url:i.href})),this.resetScrollPositions()},get:function(e,t,n){return void 0===t&&(t={}),void 0===n&&(n={}),this.visit(e,s({},n,{method:"get",data:t}))},reload:function(e){return void 0===e&&(e={}),this.visit(window.location.href,s({},e,{preserveScroll:!0,preserveState:!0}))},replace:function(e,t){var n;return void 0===t&&(t={}),console.warn("Inertia.replace() has been deprecated and will be removed in a future release. Please use Inertia."+(null!=(n=t.method)?n:"get")+"() instead."),this.visit(e,s({preserveState:!0},t,{replace:!0}))},post:function(e,t,n){return void 0===t&&(t={}),void 0===n&&(n={}),this.visit(e,s({preserveState:!0},n,{method:"post",data:t}))},put:function(e,t,n){return void 0===t&&(t={}),void 0===n&&(n={}),this.visit(e,s({preserveState:!0},n,{method:"put",data:t}))},patch:function(e,t,n){return void 0===t&&(t={}),void 0===n&&(n={}),this.visit(e,s({preserveState:!0},n,{method:"patch",data:t}))},delete:function(e,t){return void 0===t&&(t={}),this.visit(e,s({preserveState:!0},t,{method:"delete"}))},remember:function(e,t){var n;void 0===t&&(t="default"),this.replaceState(s({},this.page,{rememberedState:s({},this.page.rememberedState,(n={},n[t]=e,n))}))},restore:function(e){var t,n;return void 0===e&&(e="default"),null==(t=window.history.state)||null==(n=t.rememberedState)?void 0:n[e]},on:function(e,t){var n=function(e){var n=t(e);e.cancelable&&!e.defaultPrevented&&!1===n&&e.preventDefault()};return document.addEventListener("inertia:"+e,n),function(){return document.removeEventListener("inertia:"+e,n)}}},t.hrefToUrl=h,t.mergeDataIntoQueryString=f,t.shouldIntercept=function(e){var t="a"===e.currentTarget.tagName.toLowerCase();return!(e.target&&e.target.isContentEditable||e.defaultPrevented||t&&e.which>1||t&&e.altKey||t&&e.ctrlKey||t&&e.metaKey||t&&e.shiftKey)},t.urlWithoutHash=p},31966:(e,t,n)=>{var r,i=(r=n(74865))&&"object"==typeof r&&"default"in r?r.default:r,o=null;function a(e){document.addEventListener("inertia:start",s.bind(null,e)),document.addEventListener("inertia:progress",c),document.addEventListener("inertia:finish",l)}function s(e){o=setTimeout((function(){return i.start()}),e)}function c(e){i.isStarted()&&e.detail.progress.percentage&&i.set(Math.max(i.status,e.detail.progress.percentage/100*.9))}function l(e){clearTimeout(o),i.isStarted()&&(e.detail.visit.completed?i.done():e.detail.visit.interrupted?i.set(0):e.detail.visit.cancelled&&(i.done(),i.remove()))}t.I={init:function(e){var t=void 0===e?{}:e,n=t.delay,r=t.color,o=void 0===r?"#29d":r,s=t.includeCSS,c=void 0===s||s,l=t.showSpinner,u=void 0!==l&&l;a(void 0===n?250:n),i.configure({showSpinner:u}),c&&function(e){var t=document.createElement("style");t.type="text/css",t.textContent="\n #nprogress {\n pointer-events: none;\n }\n\n #nprogress .bar {\n background: "+e+";\n\n position: fixed;\n z-index: 1031;\n top: 0;\n left: 0;\n\n width: 100%;\n height: 2px;\n }\n\n #nprogress .peg {\n display: block;\n position: absolute;\n right: 0px;\n width: 100px;\n height: 100%;\n box-shadow: 0 0 10px "+e+", 0 0 5px "+e+";\n opacity: 1.0;\n\n -webkit-transform: rotate(3deg) translate(0px, -4px);\n -ms-transform: rotate(3deg) translate(0px, -4px);\n transform: rotate(3deg) translate(0px, -4px);\n }\n\n #nprogress .spinner {\n display: block;\n position: fixed;\n z-index: 1031;\n top: 15px;\n right: 15px;\n }\n\n #nprogress .spinner-icon {\n width: 18px;\n height: 18px;\n box-sizing: border-box;\n\n border: solid 2px transparent;\n border-top-color: "+e+";\n border-left-color: "+e+";\n border-radius: 50%;\n\n -webkit-animation: nprogress-spinner 400ms linear infinite;\n animation: nprogress-spinner 400ms linear infinite;\n }\n\n .nprogress-custom-parent {\n overflow: hidden;\n position: relative;\n }\n\n .nprogress-custom-parent #nprogress .spinner,\n .nprogress-custom-parent #nprogress .bar {\n position: absolute;\n }\n\n @-webkit-keyframes nprogress-spinner {\n 0% { -webkit-transform: rotate(0deg); }\n 100% { -webkit-transform: rotate(360deg); }\n }\n @keyframes nprogress-spinner {\n 0% { transform: rotate(0deg); }\n 100% { transform: rotate(360deg); }\n }\n ",document.head.appendChild(t)}(o)}}},75993:(e,t)=>{"use strict";function n(){return!1}function r(){return!0}function i(){this.timeStamp=Date.now(),this.target=void 0,this.currentTarget=void 0}Object.defineProperty(t,"__esModule",{value:!0}),i.prototype={isEventObject:1,constructor:i,isDefaultPrevented:n,isPropagationStopped:n,isImmediatePropagationStopped:n,preventDefault:function(){this.isDefaultPrevented=r},stopPropagation:function(){this.isPropagationStopped=r},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=r,this.stopPropagation()},halt:function(e){e?this.stopImmediatePropagation():this.stopPropagation(),this.preventDefault()}},t.default=i,e.exports=t.default},53645:(e,t,n)=>{"use strict";function r(e){return e&&e.__esModule?e:{default:e}}Object.defineProperty(t,"__esModule",{value:!0});var i=r(n(75993)),o=r(n(27418)),a=!1,s=["altKey","bubbles","cancelable","ctrlKey","currentTarget","eventPhase","metaKey","shiftKey","target","timeStamp","view","type"];function c(e){return null==e}var l=[{reg:/^key/,props:["char","charCode","key","keyCode","which"],fix:function(e,t){c(e.which)&&(e.which=c(t.charCode)?t.keyCode:t.charCode),void 0===e.metaKey&&(e.metaKey=e.ctrlKey)}},{reg:/^touch/,props:["touches","changedTouches","targetTouches"]},{reg:/^hashchange$/,props:["newURL","oldURL"]},{reg:/^gesturechange$/i,props:["rotation","scale"]},{reg:/^(mousewheel|DOMMouseScroll)$/,props:[],fix:function(e,t){var n=void 0,r=void 0,i=void 0,o=t.wheelDelta,a=t.axis,s=t.wheelDeltaY,c=t.wheelDeltaX,l=t.detail;o&&(i=o/120),l&&(i=0-(l%3==0?l/3:l)),void 0!==a&&(a===e.HORIZONTAL_AXIS?(r=0,n=0-i):a===e.VERTICAL_AXIS&&(n=0,r=i)),void 0!==s&&(r=s/120),void 0!==c&&(n=-1*c/120),n||r||(r=i),void 0!==n&&(e.deltaX=n),void 0!==r&&(e.deltaY=r),void 0!==i&&(e.delta=i)}},{reg:/^mouse|contextmenu|click|mspointer|(^DOMMouseScroll$)/i,props:["buttons","clientX","clientY","button","offsetX","relatedTarget","which","fromElement","toElement","offsetY","pageX","pageY","screenX","screenY"],fix:function(e,t){var n=void 0,r=void 0,i=void 0,o=e.target,a=t.button;return o&&c(e.pageX)&&!c(t.clientX)&&(r=(n=o.ownerDocument||document).documentElement,i=n.body,e.pageX=t.clientX+(r&&r.scrollLeft||i&&i.scrollLeft||0)-(r&&r.clientLeft||i&&i.clientLeft||0),e.pageY=t.clientY+(r&&r.scrollTop||i&&i.scrollTop||0)-(r&&r.clientTop||i&&i.clientTop||0)),e.which||void 0===a||(e.which=1&a?1:2&a?3:4&a?2:0),!e.relatedTarget&&e.fromElement&&(e.relatedTarget=e.fromElement===o?e.toElement:e.fromElement),e}}];function u(){return true}function d(){return a}function h(e){var t=e.type,n="function"==typeof e.stopPropagation||"boolean"==typeof e.cancelBubble;i.default.call(this),this.nativeEvent=e;var r=d;"defaultPrevented"in e?r=e.defaultPrevented?u:d:"getPreventDefault"in e?r=e.getPreventDefault()?u:d:"returnValue"in e&&(r=e.returnValue===a?u:d),this.isDefaultPrevented=r;var o=[],c=void 0,h=void 0,f=s.concat();for(l.forEach((function(e){t.match(e.reg)&&(f=f.concat(e.props),e.fix&&o.push(e.fix))})),c=f.length;c;)this[h=f[--c]]=e[h];for(!this.target&&n&&(this.target=e.srcElement||document),this.target&&3===this.target.nodeType&&(this.target=this.target.parentNode),c=o.length;c;)(0,o[--c])(this,e);this.timeStamp=e.timeStamp||Date.now()}var f=i.default.prototype;(0,o.default)(h.prototype,f,{constructor:h,preventDefault:function(){var e=this.nativeEvent;e.preventDefault?e.preventDefault():e.returnValue=a,f.preventDefault.call(this)},stopPropagation:function(){var e=this.nativeEvent;e.stopPropagation?e.stopPropagation():e.cancelBubble=true,f.stopPropagation.call(this)}}),t.default=h,e.exports=t.default},4953:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=function(e,t,n,r){function i(t){var r=new o.default(t);n.call(e,r)}if(e.addEventListener){var a=(s=!1,"object"==typeof r?s=r.capture||!1:"boolean"==typeof r&&(s=r),e.addEventListener(t,i,r||!1),{v:{remove:function(){e.removeEventListener(t,i,s)}}});if("object"==typeof a)return a.v}else if(e.attachEvent)return e.attachEvent("on"+t,i),{remove:function(){e.detachEvent("on"+t,i)}};var s};var r,i=n(53645),o=(r=i)&&r.__esModule?r:{default:r};e.exports=t.default},70804:(e,t,n)=>{"use strict";n.d(t,{Z:()=>a});var r=n(85315),i=n(88239),o=n(82859);const a={methods:{setState:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=arguments[1],n="function"==typeof e?e(this.$data,this.$props):e;if(this.getDerivedStateFromProps){var r=this.getDerivedStateFromProps((0,o.oZ)(this),(0,i.Z)({},this.$data,n));if(null===r)return;n=(0,i.Z)({},n,r||{})}(0,i.Z)(this.$data,n),this.$forceUpdate(),this.$nextTick((function(){t&&t()}))},__emit:function(){var e=[].slice.call(arguments,0),t=e[0],n=this.$listeners[t];if(e.length&&n)if(Array.isArray(n))for(var i=0,o=n.length;i{"use strict";n.d(t,{vw:()=>L,Pv:()=>x,CL:()=>S,ll:()=>Z,C2:()=>T,V2:()=>z,Ed:()=>O,OU:()=>H,dG:()=>V,m2:()=>f,oZ:()=>_,rj:()=>b,cV:()=>g,TW:()=>M,km:()=>C,TD:()=>k,TV:()=>w,Ku:()=>h,SQ:()=>D,l$:()=>P,_A:()=>d,FJ:()=>m,z9:()=>v,nI:()=>y,ZP:()=>Y});var r=n(72444),i=n(12424),o=n(88239),a=n(68630),s=n.n(a),c=n(94184),l=n.n(c);var u=/-(\w)/g,d=function(e){return e.replace(u,(function(e,t){return t?t.toUpperCase():""}))},h=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"",t=arguments[1],n={},r=/;(?![^(]*\))/g,i=/:(.+)/;return e.split(r).forEach((function(e){if(e){var r=e.split(i);if(r.length>1){var o=t?d(r[0].trim()):r[0].trim();n[o]=r[1].trim()}}})),n},f=function(e,t){return t in((e.$options||{}).propsData||{})},p=function(e){return e.data&&e.data.scopedSlots||{}},m=function(e){var t=e.componentOptions||{};e.$vnode&&(t=e.$vnode.componentOptions||{});var n=e.children||t.children||[],r={};return n.forEach((function(e){if(!z(e)){var t=e.data&&e.data.slot||"default";r[t]=r[t]||[],r[t].push(e)}})),(0,o.Z)({},r,p(e))},v=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"default",n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};return e.$scopedSlots&&e.$scopedSlots[t]&&e.$scopedSlots[t](n)||e.$slots[t]||[]},y=function(e){var t=e.componentOptions||{};return e.$vnode&&(t=e.$vnode.componentOptions||{}),e.children||t.children||[]},g=function(e){if(e.fnOptions)return e.fnOptions;var t=e.componentOptions;return e.$vnode&&(t=e.$vnode.componentOptions),t&&t.Ctor.options||{}},_=function(e){if(e.componentOptions){var t=e.componentOptions,n=t.propsData,r=void 0===n?{}:n,a=t.Ctor,s=((void 0===a?{}:a).options||{}).props||{},c={},l=!0,u=!1,d=void 0;try{for(var h,f=Object.entries(s)[Symbol.iterator]();!(l=(h=f.next()).done);l=!0){var p=h.value,m=(0,i.Z)(p,2),v=m[0],y=m[1],g=y.default;void 0!==g&&(c[v]="function"==typeof g&&"Function"!==(_=y.type,b=void 0,(b=_&&_.toString().match(/^\s*function (\w+)/))?b[1]:"")?g.call(e):g)}}catch(e){u=!0,d=e}finally{try{!l&&f.return&&f.return()}finally{if(u)throw d}}return(0,o.Z)({},c,r)}var _,b,M=e.$options,w=void 0===M?{}:M,k=e.$props;return function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n={};return Object.keys(e).forEach((function(r){(r in t||void 0!==e[r])&&(n[r]=e[r])})),n}(void 0===k?{}:k,w.propsData)},b=function(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:e,r=!(arguments.length>3&&void 0!==arguments[3])||arguments[3];if(e.$createElement){var i=e.$createElement,o=e[t];return void 0!==o?"function"==typeof o&&r?o(i,n):o:e.$scopedSlots[t]&&r&&e.$scopedSlots[t](n)||e.$scopedSlots[t]||e.$slots[t]||void 0}var a=e.context.$createElement,s=M(e)[t];if(void 0!==s)return"function"==typeof s&&r?s(a,n):s;var c=p(e)[t];if(void 0!==c)return"function"==typeof c&&r?c(a,n):c;var l=[],u=e.componentOptions||{};return(u.children||[]).forEach((function(e){e.data&&e.data.slot===t&&(e.data.attrs&&delete e.data.attrs.slot,"template"===e.tag?l.push(e.children):l.push(e))})),l.length?l:void 0},M=function(e){var t=e.componentOptions;return e.$vnode&&(t=e.$vnode.componentOptions),t&&t.propsData||{}},w=function(e,t){return M(e)[t]},k=function(e){var t=e.data;return e.$vnode&&(t=e.$vnode.data),t&&t.attrs||{}},C=function(e){var t=e.key;return e.$vnode&&(t=e.$vnode.key),t};function L(e){var t={};return e.componentOptions&&e.componentOptions.listeners?t=e.componentOptions.listeners:e.data&&e.data.on&&(t=e.data.on),(0,o.Z)({},t)}function x(e){var t={};return e.data&&e.data.on&&(t=e.data.on),(0,o.Z)({},t)}function S(e){return(e.$vnode?e.$vnode.componentOptions.listeners:e.$listeners)||{}}function Z(e){var t={};e.data?t=e.data:e.$vnode&&e.$vnode.data&&(t=e.$vnode.data);var n=t.class||{},r=t.staticClass,i={};return r&&r.split(" ").forEach((function(e){i[e.trim()]=!0})),"string"==typeof n?n.split(" ").forEach((function(e){i[e.trim()]=!0})):Array.isArray(n)?l()(n).split(" ").forEach((function(e){i[e.trim()]=!0})):i=(0,o.Z)({},i,n),i}function T(e,t){var n={};e.data?n=e.data:e.$vnode&&e.$vnode.data&&(n=e.$vnode.data);var r=n.style||n.staticStyle;if("string"==typeof r)r=h(r,t);else if(t&&r){var i={};return Object.keys(r).forEach((function(e){return i[d(e)]=r[e]})),i}return r}function z(e){return!(e.tag||e.text&&""!==e.text.trim())}function O(e){return!e.tag}function H(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[];return e.filter((function(e){return!z(e)}))}var D=function(e,t){return Object.keys(t).forEach((function(n){if(!e[n])throw new Error("not have "+n+" prop");e[n].def&&(e[n]=e[n].def(t[n]))})),e};function V(){var e=[].slice.call(arguments,0),t={};return e.forEach((function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=!0,r=!1,a=void 0;try{for(var c,l=Object.entries(e)[Symbol.iterator]();!(n=(c=l.next()).done);n=!0){var u=c.value,d=(0,i.Z)(u,2),h=d[0],f=d[1];t[h]=t[h]||{},s()(f)?(0,o.Z)(t[h],f):t[h]=f}}catch(e){r=!0,a=e}finally{try{!n&&l.return&&l.return()}finally{if(r)throw a}}})),t}function P(e){return e&&"object"===(void 0===e?"undefined":(0,r.Z)(e))&&"componentOptions"in e&&"context"in e&&void 0!==e.tag}const Y=f},13305:(e,t,n)=>{"use strict";n.d(t,{RD:()=>l,Tm:()=>u});var r=n(85315),i=n(88239),o=n(82859),a=n(94184),s=n.n(a);function c(e,t){var n=e.componentOptions,r=e.data,o={};n&&n.listeners&&(o=(0,i.Z)({},n.listeners));var a={};r&&r.on&&(a=(0,i.Z)({},r.on));var s=new e.constructor(e.tag,r?(0,i.Z)({},r,{on:a}):r,e.children,e.text,e.elm,e.context,n?(0,i.Z)({},n,{listeners:o}):n,e.asyncFactory);return s.ns=e.ns,s.isStatic=e.isStatic,s.key=e.key,s.isComment=e.isComment,s.fnContext=e.fnContext,s.fnOptions=e.fnOptions,s.fnScopeId=e.fnScopeId,s.isCloned=!0,t&&(e.children&&(s.children=l(e.children,!0)),n&&n.children&&(n.children=l(n.children,!0))),s}function l(e,t){for(var n=e.length,r=new Array(n),i=0;i1&&void 0!==arguments[1]?arguments[1]:{},n=arguments[2],a=e;if(Array.isArray(e)&&(a=(0,o.OU)(e)[0]),!a)return null;var l=c(a,n),u=t.props,d=void 0===u?{}:u,h=t.key,f=t.on,p=void 0===f?{}:f,m=t.nativeOn,v=void 0===m?{}:m,y=t.children,g=t.directives,_=void 0===g?[]:g,b=l.data||{},M={},w={},k=t.attrs,C=void 0===k?{}:k,L=t.ref,x=t.domProps,S=void 0===x?{}:x,Z=t.style,T=void 0===Z?{}:Z,z=t.class,O=void 0===z?{}:z,H=t.scopedSlots,D=void 0===H?{}:H;return w="string"==typeof b.style?(0,o.Ku)(b.style):(0,i.Z)({},b.style,w),w="string"==typeof T?(0,i.Z)({},w,(0,o.Ku)(w)):(0,i.Z)({},w,T),"string"==typeof b.class&&""!==b.class.trim()?b.class.split(" ").forEach((function(e){M[e.trim()]=!0})):Array.isArray(b.class)?s()(b.class).split(" ").forEach((function(e){M[e.trim()]=!0})):M=(0,i.Z)({},b.class,M),"string"==typeof O&&""!==O.trim()?O.split(" ").forEach((function(e){M[e.trim()]=!0})):M=(0,i.Z)({},M,O),l.data=(0,i.Z)({},b,{style:w,attrs:(0,i.Z)({},b.attrs,C),class:M,domProps:(0,i.Z)({},b.domProps,S),scopedSlots:(0,i.Z)({},b.scopedSlots,D),directives:[].concat((0,r.Z)(b.directives||[]),(0,r.Z)(_))}),l.componentOptions?(l.componentOptions.propsData=l.componentOptions.propsData||{},l.componentOptions.listeners=l.componentOptions.listeners||{},l.componentOptions.propsData=(0,i.Z)({},l.componentOptions.propsData,d),l.componentOptions.listeners=(0,i.Z)({},l.componentOptions.listeners,p),y&&(l.componentOptions.children=y)):(y&&(l.children=y),l.data.on=(0,i.Z)({},l.data.on||{},p)),l.data.on=(0,i.Z)({},l.data.on||{},v),void 0!==h&&(l.key=h,l.data.key=h),"string"==typeof L&&(l.data.ref=L),l}},37544:(e,t,n)=>{"use strict";n.d(t,{Z:()=>b});var r=n(72444),i=n(68630),o=n.n(i),a=Object.prototype,s=a.toString,c=a.hasOwnProperty,l=/^\s*function (\w+)/,u=function(e){var t=null!=e?e.type?e.type:e:null,n=t&&t.toString().match(l);return n&&n[1]},d=function(e){if(null==e)return null;var t=e.constructor.toString().match(l);return t&&t[1]},h=Number.isInteger||function(e){return"number"==typeof e&&isFinite(e)&&Math.floor(e)===e},f=Array.isArray||function(e){return"[object Array]"===s.call(e)},p=function(e){return"[object Function]"===s.call(e)},m=function(e,t){var n;return Object.defineProperty(t,"_vueTypes_name",{enumerable:!1,writable:!1,value:e}),n=t,Object.defineProperty(n,"isRequired",{get:function(){return this.required=!0,this},enumerable:!1}),function(e){Object.defineProperty(e,"def",{value:function(e){return void 0===e&&void 0===this.default?(this.default=void 0,this):p(e)||v(this,e)?(this.default=f(e)||o()(e)?function(){return e}:e,this):(y(this._vueTypes_name+' - invalid default value: "'+e+'"',e),this)},enumerable:!1,writable:!1})}(t),p(t.validator)&&(t.validator=t.validator.bind(t)),t},v=function e(t,n){var r=arguments.length>2&&void 0!==arguments[2]&&arguments[2],i=t,a=!0,s=void 0;o()(t)||(i={type:t});var l=i._vueTypes_name?i._vueTypes_name+" - ":"";return c.call(i,"type")&&null!==i.type&&(f(i.type)?(a=i.type.some((function(t){return e(t,n,!0)})),s=i.type.map((function(e){return u(e)})).join(" or ")):a="Array"===(s=u(i))?f(n):"Object"===s?o()(n):"String"===s||"Number"===s||"Boolean"===s||"Function"===s?d(n)===s:n instanceof i.type),a?c.call(i,"validator")&&p(i.validator)?((a=i.validator(n))||!1!==r||y(l+"custom validation failed"),a):a:(!1===r&&y(l+'value "'+n+'" should be of type "'+s+'"'),!1)},y=function(){},g={get any(){return m("any",{type:null})},get func(){return m("function",{type:Function}).def(_.func)},get bool(){return m("boolean",{type:Boolean}).def(_.bool)},get string(){return m("string",{type:String}).def(_.string)},get number(){return m("number",{type:Number}).def(_.number)},get array(){return m("array",{type:Array}).def(_.array)},get object(){return m("object",{type:Object}).def(_.object)},get integer(){return m("integer",{type:Number,validator:function(e){return h(e)}}).def(_.integer)},get symbol(){return m("symbol",{type:null,validator:function(e){return"symbol"===(void 0===e?"undefined":(0,r.Z)(e))}})},custom:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"custom validation failed";if("function"!=typeof e)throw new TypeError("[VueTypes error]: You must provide a function as argument");return m(e.name||"<>",{validator:function(){var n=e.apply(void 0,arguments);return n||y(this._vueTypes_name+" - "+t),n}})},oneOf:function(e){if(!f(e))throw new TypeError("[VueTypes error]: You must provide an array as argument");var t='oneOf - value should be one of "'+e.join('", "')+'"',n=e.reduce((function(e,t){return null!=t&&-1===e.indexOf(t.constructor)&&e.push(t.constructor),e}),[]);return m("oneOf",{type:n.length>0?n:null,validator:function(n){var r=-1!==e.indexOf(n);return r||y(t),r}})},instanceOf:function(e){return m("instanceOf",{type:e})},oneOfType:function(e){if(!f(e))throw new TypeError("[VueTypes error]: You must provide an array as argument");var t=!1,n=e.reduce((function(e,n){if(o()(n)){if("oneOf"===n._vueTypes_name)return e.concat(n.type||[]);if(n.type&&!p(n.validator)){if(f(n.type))return e.concat(n.type);e.push(n.type)}else p(n.validator)&&(t=!0);return e}return e.push(n),e}),[]);if(!t)return m("oneOfType",{type:n}).def(void 0);var r=e.map((function(e){return e&&f(e.type)?e.type.map(u):u(e)})).reduce((function(e,t){return e.concat(f(t)?t:[t])}),[]).join('", "');return this.custom((function(t){var n=e.some((function(e){return"oneOf"===e._vueTypes_name?!e.type||v(e.type,t,!0):v(e,t,!0)}));return n||y('oneOfType - value type should be one of "'+r+'"'),n})).def(void 0)},arrayOf:function(e){return m("arrayOf",{type:Array,validator:function(t){var n=t.every((function(t){return v(e,t)}));return n||y('arrayOf - value must be an array of "'+u(e)+'"'),n}})},objectOf:function(e){return m("objectOf",{type:Object,validator:function(t){var n=Object.keys(t).every((function(n){return v(e,t[n])}));return n||y('objectOf - value must be an object of "'+u(e)+'"'),n}})},shape:function(e){var t=Object.keys(e),n=t.filter((function(t){return e[t]&&!0===e[t].required})),r=m("shape",{type:Object,validator:function(r){var i=this;if(!o()(r))return!1;var a=Object.keys(r);return n.length>0&&n.some((function(e){return-1===a.indexOf(e)}))?(y('shape - at least one of required properties "'+n.join('", "')+'" is not present'),!1):a.every((function(n){if(-1===t.indexOf(n))return!0===i._vueTypes_isLoose||(y('shape - object is missing "'+n+'" property'),!1);var o=e[n];return v(o,r[n])}))}});return Object.defineProperty(r,"_vueTypes_isLoose",{enumerable:!1,writable:!0,value:!1}),Object.defineProperty(r,"loose",{get:function(){return this._vueTypes_isLoose=!0,this},enumerable:!1}),r}},_={func:void 0,bool:void 0,string:void 0,number:void 0,array:void 0,object:void 0,integer:void 0};Object.defineProperty(g,"sensibleDefaults",{enumerable:!1,set:function(e){!1===e?_={}:!0===e?_={func:void 0,bool:void 0,string:void 0,number:void 0,array:void 0,object:void 0,integer:void 0}:o()(e)&&(_=e)},get:function(){return _}});const b=g},67931:(e,t,n)=>{"use strict";n.d(t,{Z:()=>ae});var r=n(88239),i=n(80973),o=n.n(i),a=n(70538),s=n(91736),c=n(70804),l=n(13305),u=n(82859),d=n(72444),h=n(42723),f=n(23279),p=n.n(f),m=n(94184),v=n.n(m),y=n(37544);const g={accessibility:y.Z.bool.def(!0),adaptiveHeight:y.Z.bool.def(!1),afterChange:y.Z.any.def(null),arrows:y.Z.bool.def(!0),autoplay:y.Z.bool.def(!1),autoplaySpeed:y.Z.number.def(3e3),beforeChange:y.Z.any.def(null),centerMode:y.Z.bool.def(!1),centerPadding:y.Z.string.def("50px"),cssEase:y.Z.string.def("ease"),dots:y.Z.bool.def(!1),dotsClass:y.Z.string.def("slick-dots"),draggable:y.Z.bool.def(!0),unslick:y.Z.bool.def(!1),easing:y.Z.string.def("linear"),edgeFriction:y.Z.number.def(.35),fade:y.Z.bool.def(!1),focusOnSelect:y.Z.bool.def(!1),infinite:y.Z.bool.def(!0),initialSlide:y.Z.number.def(0),lazyLoad:y.Z.any.def(null),verticalSwiping:y.Z.bool.def(!1),asNavFor:y.Z.any.def(null),pauseOnDotsHover:y.Z.bool.def(!1),pauseOnFocus:y.Z.bool.def(!1),pauseOnHover:y.Z.bool.def(!0),responsive:y.Z.array,rows:y.Z.number.def(1),rtl:y.Z.bool.def(!1),slide:y.Z.string.def("div"),slidesPerRow:y.Z.number.def(1),slidesToScroll:y.Z.number.def(1),slidesToShow:y.Z.number.def(1),speed:y.Z.number.def(500),swipe:y.Z.bool.def(!0),swipeEvent:y.Z.any.def(null),swipeToSlide:y.Z.bool.def(!1),touchMove:y.Z.bool.def(!0),touchThreshold:y.Z.number.def(5),useCSS:y.Z.bool.def(!0),useTransform:y.Z.bool.def(!0),variableWidth:y.Z.bool.def(!1),vertical:y.Z.bool.def(!1),waitForAnimate:y.Z.bool.def(!0),children:y.Z.array,__propsSymbol__:y.Z.any};const _={animating:!1,autoplaying:null,currentDirection:0,currentLeft:null,currentSlide:0,direction:1,dragging:!1,edgeDragged:!1,initialized:!1,lazyLoadedList:[],listHeight:null,listWidth:null,scrolling:!1,slideCount:null,slideHeight:null,slideWidth:null,swipeLeft:null,swiped:!1,swiping:!1,touchObject:{startX:0,startY:0,curX:0,curY:0},trackStyle:{},trackWidth:0};var b=function(e){for(var t=[],n=M(e),r=w(e),i=n;i0?1:0):0},C=function(e){return e.centerMode?Math.floor((e.slidesToShow-1)/2)+1+(parseInt(e.centerPadding)>0?1:0):e.slidesToShow},L=function(e){return e&&e.offsetWidth||0},x=function(e){return e&&e.offsetHeight||0},S=function(e){var t=arguments.length>1&&void 0!==arguments[1]&&arguments[1],n=void 0,r=e.startX-e.curX,i=e.startY-e.curY,o=Math.atan2(i,r);return(n=Math.round(180*o/Math.PI))<0&&(n=360-Math.abs(n)),n<=45&&n>=0||n<=360&&n>=315?"left":n>=135&&n<=225?"right":!0===t?n>=35&&n<=135?"up":"down":"vertical"},Z=function(e){var t=!0;return e.infinite||(e.centerMode&&e.currentSlide>=e.slideCount-1||e.slideCount<=e.slidesToShow||e.currentSlide>=e.slideCount-e.slidesToShow)&&(t=!1),t},T=function(e,t){var n={};return t.forEach((function(t){return n[t]=e[t]})),n},z=function(e){var t=e.waitForAnimate,n=e.animating,i=e.fade,o=e.infinite,a=e.index,s=e.slideCount,c=e.lazyLoadedList,l=e.lazyLoad,u=e.currentSlide,d=e.centerMode,h=e.slidesToScroll,f=e.slidesToShow,p=e.useCSS;if(t&&n)return{};var m=a,v=void 0,y=void 0,g=void 0,_={},M={};if(i){if(!o&&(a<0||a>=s))return{};a<0?m=a+s:a>=s&&(m=a-s),l&&c.indexOf(m)<0&&c.push(m),_={animating:!0,currentSlide:m,lazyLoadedList:c},M={animating:!1}}else v=m,m<0?(v=m+s,o?s%h!=0&&(v=s-s%h):v=0):!Z(e)&&m>u?m=v=u:d&&m>=s?(m=o?s:s-1,v=o?0:s-1):m>=s&&(v=m-s,o?s%h!=0&&(v=0):v=s-f),y=A((0,r.Z)({},e,{slideIndex:m})),g=A((0,r.Z)({},e,{slideIndex:v})),o||(y===g&&(m=v),y=g),l&&c.concat(b((0,r.Z)({},e,{currentSlide:m}))),p?(_={animating:!0,currentSlide:v,trackStyle:Y((0,r.Z)({},e,{left:y})),lazyLoadedList:c},M={animating:!1,currentSlide:v,trackStyle:P((0,r.Z)({},e,{left:g})),swipeLeft:null}):_={currentSlide:v,trackStyle:P((0,r.Z)({},e,{left:g})),lazyLoadedList:c};return{state:_,nextState:M}},O=function(e,t){var n=void 0,i=void 0,o=void 0,a=e.slidesToScroll,s=e.slidesToShow,c=e.slideCount,l=e.currentSlide,u=e.lazyLoad,d=e.infinite,h=c%a!=0?0:(c-l)%a;if("previous"===t.message)o=l-(i=0===h?a:s-h),u&&!d&&(o=-1===(n=l-i)?c-1:n);else if("next"===t.message)o=l+(i=0===h?a:h),u&&!d&&(o=(l+a)%c+h);else if("dots"===t.message){if((o=t.index*t.slidesToScroll)===t.currentSlide)return null}else if("children"===t.message){if((o=t.index)===t.currentSlide)return null;if(d){var f=F((0,r.Z)({},e,{targetSlide:o}));o>t.currentSlide&&"left"===f?o-=c:on[n.length-1])t=n[n.length-1];else for(var i in n){if(t-1*e.swipeLeft)return n=r,!1}else if(r.offsetLeft-t+L(r)/2>-1*e.swipeLeft)return n=r,!1;return!0})),!n)return 0;var i=!0===e.rtl?e.slideCount-e.currentSlide:e.currentSlide;return Math.abs(n.dataset.index-i)||1}return e.slidesToScroll},V=function(e,t){return t.reduce((function(t,n){return t&&e.hasOwnProperty(n)}),!0)?null:console.error("Keys Missing:",e)},P=function(e){V(e,["left","variableWidth","slideCount","slidesToShow","slideWidth"]);var t=void 0,n=void 0,i=e.slideCount+2*e.slidesToShow;e.vertical?n=i*e.slideHeight:t=$(e)*e.slideWidth;var o={opacity:1,transition:"",WebkitTransition:""};if(e.useTransform){var a=e.vertical?"translate3d(0px, "+e.left+"px, 0px)":"translate3d("+e.left+"px, 0px, 0px)",s=e.vertical?"translate3d(0px, "+e.left+"px, 0px)":"translate3d("+e.left+"px, 0px, 0px)",c=e.vertical?"translateY("+e.left+"px)":"translateX("+e.left+"px)";o=(0,r.Z)({},o,{WebkitTransform:a,transform:s,msTransform:c})}else e.vertical?o.top=e.left:o.left=e.left;return e.fade&&(o={opacity:1}),t&&(o.width=t+"px"),n&&(o.height=n+"px"),window&&!window.addEventListener&&window.attachEvent&&(e.vertical?o.marginTop=e.left+"px":o.marginLeft=e.left+"px"),o},Y=function(e){V(e,["left","variableWidth","slideCount","slidesToShow","slideWidth","speed","cssEase"]);var t=P(e);return e.useTransform?(t.WebkitTransition="-webkit-transform "+e.speed+"ms "+e.cssEase,t.transition="transform "+e.speed+"ms "+e.cssEase):e.vertical?t.transition="top "+e.speed+"ms "+e.cssEase:t.transition="left "+e.speed+"ms "+e.cssEase,t},A=function(e){if(e.unslick)return 0;V(e,["slideIndex","trackRef","infinite","centerMode","slideCount","slidesToShow","slidesToScroll","slideWidth","listWidth","variableWidth","slideHeight"]);var t=e.slideIndex,n=e.trackRef,r=e.infinite,i=e.centerMode,o=e.slideCount,a=e.slidesToShow,s=e.slidesToScroll,c=e.slideWidth,l=e.listWidth,u=e.variableWidth,d=e.slideHeight,h=e.fade,f=e.vertical,p=void 0,m=void 0;if(h||1===e.slideCount)return 0;var v=0;if(r?(v=-j(e),o%s!=0&&t+s>o&&(v=-(t>o?a-(t-o):o%s)),i&&(v+=parseInt(a/2))):(o%s!=0&&t+s>o&&(v=a-o%s),i&&(v=parseInt(a/2))),p=f?t*d*-1+v*d:t*c*-1+v*c,!0===u){var y=void 0,g=n;if(y=t+j(e),p=(m=g&&g.childNodes[y])?-1*m.offsetLeft:0,!0===i){y=r?t+j(e):t,m=g&&g.children[y],p=0;for(var _=0;_e.currentSlide?e.targetSlide>e.currentSlide+I(e)?"left":"right":e.targetSlide0&&(o+=1),r&&t%2==0&&(o+=1),o}return r?0:t-1},N=function(e){var t=e.slidesToShow,n=e.centerMode,r=e.rtl,i=e.centerPadding;if(n){var o=(t-1)/2+1;return parseInt(i)>0&&(o+=1),r||t%2!=0||(o+=1),o}return r?t-1:0},R=function(){return!("undefined"==typeof window||!window.document||!window.document.createElement)},W=function(e){var t=void 0,n=void 0,r=void 0,i=void 0,o=(i=e.rtl?e.slideCount-1-e.index:e.index)<0||i>=e.slideCount;return e.centerMode?(r=Math.floor(e.slidesToShow/2),n=(i-e.currentSlide)%e.slideCount==0,i>e.currentSlide-r-1&&i<=e.currentSlide+r&&(t=!0)):t=e.currentSlide<=i&&i=0?t:n("div");var y=function(e){var t={};return void 0!==e.variableWidth&&!1!==e.variableWidth||(t.width=e.slideWidth+("number"==typeof e.slideWidth?"px":"")),e.fade&&(t.position="relative",e.vertical?t.top=-e.index*parseInt(e.slideHeight)+"px":t.left=-e.index*parseInt(e.slideWidth)+"px",t.opacity=e.currentSlide===e.index?1:0,t.transition="opacity "+e.speed+"ms "+e.cssEase+", visibility "+e.speed+"ms "+e.cssEase,t.WebkitTransition="opacity "+e.speed+"ms "+e.cssEase+", visibility "+e.speed+"ms "+e.cssEase),t}((0,r.Z)({},e,{index:f})),g=(0,u.ll)(p.context)||"",_=W((0,r.Z)({},e,{index:f}));if(o.push((0,l.Tm)(p,{key:"original"+K(p,f),attrs:{tabIndex:"-1","data-index":f,"aria-hidden":!_["slick-active"]},class:v()(_,g),style:(0,r.Z)({outline:"none"},(0,u.C2)(p.context)||{},y),on:{click:function(){e.focusOnSelect&&e.focusOnSelect(m)}}},!0)),e.infinite&&!1===e.fade){var b=c-f;b<=j(e)&&c!==e.slidesToShow&&((i=-b)>=d&&(p=t),_=W((0,r.Z)({},e,{index:i})),a.push((0,l.Tm)(p,{key:"precloned"+K(p,i),class:v()(_,g),attrs:{tabIndex:"-1","data-index":i,"aria-hidden":!_["slick-active"]},style:(0,r.Z)({},(0,u.C2)(p.context)||{},y),on:{click:function(){e.focusOnSelect&&e.focusOnSelect(m)}}}))),c!==e.slidesToShow&&((i=c+f)=r&&d<=i}),a={message:"dots",index:t,slidesToScroll:s,currentSlide:d};return n("li",{key:t,class:o},[(0,l.Tm)(f({i:t}),{on:{click:function(e){e&&e.preventDefault(),p(a)}}})])}));return(0,l.Tm)(h({dots:w}),{class:m,on:(0,r.Z)({},M)})}};var J=n(3933),X=n.n(J);function Q(){}var ee={functional:!0,clickHandler:function(e,t,n){n&&n.preventDefault(),t(e,n)},render:function(e,t){var n=arguments[0],i=t.props,o=i.clickHandler,a=i.infinite,s=i.currentSlide,c=i.slideCount,u=i.slidesToShow,d={"slick-arrow":!0,"slick-prev":!0},h=function(e){e&&e.preventDefault(),o({message:"previous"})};!a&&(0===s||c<=u)&&(d["slick-disabled"]=!0,h=Q);var f={key:"0",domProps:{"data-role":"none"},class:d,style:{display:"block"},on:{click:h}},p={currentSlide:s,slideCount:c};return i.prevArrow?(0,l.Tm)(i.prevArrow((0,r.Z)({},f,{props:p})),{key:"0",class:d,style:{display:"block"},on:{click:h}}):n("button",X()([{key:"0",attrs:{type:"button"}},f]),[" ","Previous"])}},te={functional:!0,clickHandler:function(e,t,n){n&&n.preventDefault(),t(e,n)},render:function(e,t){var n=arguments[0],i=t.props,o=i.clickHandler,a=i.currentSlide,s=i.slideCount,c={"slick-arrow":!0,"slick-next":!0},u=function(e){e&&e.preventDefault(),o({message:"next"})};Z(i)||(c["slick-disabled"]=!0,u=Q);var d={key:"1",domProps:{"data-role":"none"},class:c,style:{display:"block"},on:{click:u}},h={currentSlide:a,slideCount:s};return i.nextArrow?(0,l.Tm)(i.nextArrow((0,r.Z)({},d,{props:h})),{key:"1",class:c,style:{display:"block"},on:{click:u}}):n("button",X()([{key:"1",attrs:{type:"button"}},d]),[" ","Next"])}},ne=n(91033);function re(){}a.default.use(s.Z,{name:"ant-ref"});const ie={props:(0,r.Z)({},g),mixins:[c.Z],data:function(){return this.preProps=(0,r.Z)({},this.$props),this.list=null,this.track=null,this.callbackTimers=[],this.clickable=!0,this.debouncedResize=null,(0,r.Z)({},_,{currentSlide:this.initialSlide,slideCount:this.children.length})},methods:{listRefHandler:function(e){this.list=e},trackRefHandler:function(e){this.track=e},adaptHeight:function(){if(this.adaptiveHeight&&this.list){var e=this.list.querySelector('[data-index="'+this.currentSlide+'"]');this.list.style.height=x(e)+"px"}},onWindowResized:function(e){var t=this;this.debouncedResize&&this.debouncedResize.cancel(),this.debouncedResize=p()((function(){return t.resizeWindow(e)}),50),this.debouncedResize()},resizeWindow:function(){var e=this,t=!(arguments.length>0&&void 0!==arguments[0])||arguments[0];if(this.track){var n=(0,r.Z)({listRef:this.list,trackRef:this.track,children:this.children},this.$props,this.$data);this.updateState(n,t,(function(){e.autoplay?e.handleAutoPlay("update"):e.pause("paused")})),this.setState({animating:!1}),clearTimeout(this.animationEndCallback),delete this.animationEndCallback}},updateState:function(e,t,n){var i=function(e){var t=e.children.length,n=Math.ceil(L(e.listRef)),r=Math.ceil(L(e.trackRef)),i=void 0;if(e.vertical)i=n;else{var o=e.centerMode&&2*parseInt(e.centerPadding);"string"==typeof e.centerPadding&&"%"===e.centerPadding.slice(-1)&&(o*=n/100),i=Math.ceil((n-o)/e.slidesToShow)}var a=e.listRef&&x(e.listRef.querySelector('[data-index="0"]')),s=a*e.slidesToShow,c=void 0===e.currentSlide?e.initialSlide:e.currentSlide;e.rtl&&void 0===e.currentSlide&&(c=t-1-e.initialSlide);var l=e.lazyLoadedList||[],u=b({currentSlide:c,lazyLoadedList:l});l.concat(u);var d={slideCount:t,slideWidth:i,listWidth:n,trackWidth:r,currentSlide:c,slideHeight:a,listHeight:s,lazyLoadedList:l};return null===e.autoplaying&&e.autoplay&&(d.autoplaying="playing"),d}(e);e=(0,r.Z)({},e,i,{slideIndex:i.currentSlide});var o=A(e);e=(0,r.Z)({},e,{left:o});var a=P(e);(t||this.children.length!==e.children.length)&&(i.trackStyle=a),this.setState(i,n)},ssrInit:function(){var e=this.children;if(this.variableWidth){var t=0,n=0,i=[],o=j((0,r.Z)({},this.$props,this.$data,{slideCount:e.length})),a=E((0,r.Z)({},this.$props,this.$data,{slideCount:e.length}));e.forEach((function(e){var n=(0,u.C2)(e).width.split("px")[0];i.push(n),t+=n}));for(var s=0;s=n&&e.onWindowResized()};if(t.onclick){var o=t.onclick;t.onclick=function(){o(),t.parentNode.focus()}}else t.onclick=function(){return t.parentNode.focus()};t.onload||(e.$props.lazyLoad?t.onload=function(){e.adaptHeight(),e.callbackTimers.push(setTimeout(e.onWindowResized,e.speed))}:(t.onload=i,t.onerror=function(){i(),e.$emit("lazyLoadError")}))}))},progressiveLazyLoad:function(){for(var e=[],t=(0,r.Z)({},this.$props,this.$data),n=this.currentSlide;n=-j(t);i--)if(this.lazyLoadedList.indexOf(i)<0){e.push(i);break}e.length>0?(this.setState((function(t){return{lazyLoadedList:t.lazyLoadedList.concat(e)}})),this.$emit("lazyLoad",e)):this.lazyLoadTimer&&(clearInterval(this.lazyLoadTimer),delete this.lazyLoadTimer)},slideHandler:function(e){var t=this,n=arguments.length>1&&void 0!==arguments[1]&&arguments[1],i=this.$props,o=i.asNavFor,a=i.currentSlide,s=i.beforeChange,c=i.speed,l=i.afterChange,d=z((0,r.Z)({index:e},this.$props,this.$data,{trackRef:this.track,useCSS:this.useCSS&&!n})),f=d.state,p=d.nextState;if(f){s&&s(a,f.currentSlide);var m=f.lazyLoadedList.filter((function(e){return t.lazyLoadedList.indexOf(e)<0}));(0,u.CL)(this).lazyLoad&&m.length>0&&this.$emit("lazyLoad",m),this.setState(f,(function(){o&&o.innerSlider.currentSlide!==a&&o.innerSlider.slideHandler(e),p&&(t.animationEndCallback=setTimeout((function(){var e=p.animating,n=(0,h.Z)(p,["animating"]);t.setState(n,(function(){t.callbackTimers.push(setTimeout((function(){return t.setState({animating:e})}),10)),l&&l(f.currentSlide),delete t.animationEndCallback}))}),c))}))}},changeSlide:function(e){var t=arguments.length>1&&void 0!==arguments[1]&&arguments[1],n=(0,r.Z)({},this.$props,this.$data),i=O(n,e);(0===i||i)&&(!0===t?this.slideHandler(i,t):this.slideHandler(i))},clickHandler:function(e){!1===this.clickable&&(e.stopPropagation(),e.preventDefault()),this.clickable=!0},keyHandler:function(e){var t=function(e,t,n){return e.target.tagName.match("TEXTAREA|INPUT|SELECT")||!t?"":37===e.keyCode?n?"next":"previous":39===e.keyCode?n?"previous":"next":""}(e,this.accessibility,this.rtl);""!==t&&this.changeSlide({message:t})},selectHandler:function(e){this.changeSlide(e)},disableBodyScroll:function(){window.ontouchmove=function(e){(e=e||window.event).preventDefault&&e.preventDefault(),e.returnValue=!1}},enableBodyScroll:function(){window.ontouchmove=null},swipeStart:function(e){this.verticalSwiping&&this.disableBodyScroll();var t=function(e,t,n){return"IMG"===e.target.tagName&&e.preventDefault(),!t||!n&&-1!==e.type.indexOf("mouse")?"":{dragging:!0,touchObject:{startX:e.touches?e.touches[0].pageX:e.clientX,startY:e.touches?e.touches[0].pageY:e.clientY,curX:e.touches?e.touches[0].pageX:e.clientX,curY:e.touches?e.touches[0].pageY:e.clientY}}}(e,this.swipe,this.draggable);""!==t&&this.setState(t)},swipeMove:function(e){var t=function(e,t){var n=t.scrolling,i=t.animating,o=t.vertical,a=t.swipeToSlide,s=t.verticalSwiping,c=t.rtl,l=t.currentSlide,u=t.edgeFriction,d=t.edgeDragged,h=t.onEdge,f=t.swiped,p=t.swiping,m=t.slideCount,v=t.slidesToScroll,y=t.infinite,g=t.touchObject,_=t.swipeEvent,b=t.listHeight,M=t.listWidth;if(!n){if(i)return e.preventDefault();o&&a&&s&&e.preventDefault();var w=void 0,k={},C=A(t);g.curX=e.touches?e.touches[0].pageX:e.clientX,g.curY=e.touches?e.touches[0].pageY:e.clientY,g.swipeLength=Math.round(Math.sqrt(Math.pow(g.curX-g.startX,2)));var L=Math.round(Math.sqrt(Math.pow(g.curY-g.startY,2)));if(!s&&!p&&L>10)return{scrolling:!0};s&&(g.swipeLength=L);var x=(c?-1:1)*(g.curX>g.startX?1:-1);s&&(x=g.curY>g.startY?1:-1);var T=Math.ceil(m/v),z=S(t.touchObject,s),O=g.swipeLength;return y||(0===l&&"right"===z||l+1>=T&&"left"===z||!Z(t)&&"left"===z)&&(O=g.swipeLength*u,!1===d&&h&&(h(z),k.edgeDragged=!0)),!f&&_&&(_(z),k.swiped=!0),w=o?C+O*(b/M)*x:c?C-O*x:C+O*x,s&&(w=C+O*x),k=(0,r.Z)({},k,{touchObject:g,swipeLeft:w,trackStyle:P((0,r.Z)({},t,{left:w}))}),Math.abs(g.curX-g.startX)<.8*Math.abs(g.curY-g.startY)||g.swipeLength>10&&(k.swiping=!0,e.preventDefault()),k}}(e,(0,r.Z)({},this.$props,this.$data,{trackRef:this.track,listRef:this.list,slideIndex:this.currentSlide}));t&&(t.swiping&&(this.clickable=!1),this.setState(t))},swipeEnd:function(e){var t=function(e,t){var n=t.dragging,i=t.swipe,o=t.touchObject,a=t.listWidth,s=t.touchThreshold,c=t.verticalSwiping,l=t.listHeight,u=t.currentSlide,d=t.swipeToSlide,h=t.scrolling,f=t.onSwipe;if(!n)return i&&e.preventDefault(),{};var p=c?l/s:a/s,m=S(o,c),v={dragging:!1,edgeDragged:!1,scrolling:!1,swiping:!1,swiped:!1,swipeLeft:null,touchObject:{}};if(h)return v;if(!o.swipeLength)return v;if(o.swipeLength>p){e.preventDefault(),f&&f(m);var y=void 0,g=void 0;switch(m){case"left":case"up":g=u+D(t),y=d?H(t,g):g,v.currentDirection=0;break;case"right":case"down":g=u-D(t),y=d?H(t,g):g,v.currentDirection=1;break;default:y=u}v.triggerSlideHandler=y}else{var _=A(t);v.trackStyle=Y((0,r.Z)({},t,{left:_}))}return v}(e,(0,r.Z)({},this.$props,this.$data,{trackRef:this.track,listRef:this.list,slideIndex:this.currentSlide}));if(t){var n=t.triggerSlideHandler;delete t.triggerSlideHandler,this.setState(t),void 0!==n&&(this.slideHandler(n),this.$props.verticalSwiping&&this.enableBodyScroll())}},slickPrev:function(){var e=this;this.callbackTimers.push(setTimeout((function(){return e.changeSlide({message:"previous"})}),0))},slickNext:function(){var e=this;this.callbackTimers.push(setTimeout((function(){return e.changeSlide({message:"next"})}),0))},slickGoTo:function(e){var t=this,n=arguments.length>1&&void 0!==arguments[1]&&arguments[1];if(e=Number(e),isNaN(e))return"";this.callbackTimers.push(setTimeout((function(){return t.changeSlide({message:"index",index:e,currentSlide:t.currentSlide},n)}),0))},play:function(){var e=void 0;if(this.rtl)e=this.currentSlide-this.slidesToScroll;else{if(!Z((0,r.Z)({},this.$props,this.$data)))return!1;e=this.currentSlide+this.slidesToScroll}this.slideHandler(e)},handleAutoPlay:function(e){this.autoplayTimer&&clearInterval(this.autoplayTimer);var t=this.autoplaying;if("update"===e){if("hovered"===t||"focused"===t||"paused"===t)return}else if("leave"===e){if("paused"===t||"focused"===t)return}else if("blur"===e&&("paused"===t||"hovered"===t))return;this.autoplayTimer=setInterval(this.play,this.autoplaySpeed+50),this.setState({autoplaying:"playing"})},pause:function(e){this.autoplayTimer&&(clearInterval(this.autoplayTimer),this.autoplayTimer=null);var t=this.autoplaying;"paused"===e?this.setState({autoplaying:"paused"}):"focused"===e?"hovered"!==t&&"playing"!==t||this.setState({autoplaying:"focused"}):"playing"===t&&this.setState({autoplaying:"hovered"})},onDotsOver:function(){this.autoplay&&this.pause("hovered")},onDotsLeave:function(){this.autoplay&&"hovered"===this.autoplaying&&this.handleAutoPlay("leave")},onTrackOver:function(){this.autoplay&&this.pause("hovered")},onTrackLeave:function(){this.autoplay&&"hovered"===this.autoplaying&&this.handleAutoPlay("leave")},onSlideFocus:function(){this.autoplay&&this.pause("focused")},onSlideBlur:function(){this.autoplay&&"focused"===this.autoplaying&&this.handleAutoPlay("blur")},customPaging:function(e){var t=e.i;return(0,this.$createElement)("button",[t+1])},appendDots:function(e){var t=e.dots;return(0,this.$createElement)("ul",{style:{display:"block"}},[t])}},beforeMount:function(){if(this.ssrInit(),this.$emit("init"),this.lazyLoad){var e=b((0,r.Z)({},this.$props,this.$data));e.length>0&&(this.setState((function(t){return{lazyLoadedList:t.lazyLoadedList.concat(e)}})),this.$emit("lazyLoad",e))}},mounted:function(){var e=this;this.$nextTick((function(){var t=(0,r.Z)({listRef:e.list,trackRef:e.track,children:e.children},e.$props);e.updateState(t,!0,(function(){e.adaptHeight(),e.autoplay&&e.handleAutoPlay("update")})),"progressive"===e.lazyLoad&&(e.lazyLoadTimer=setInterval(e.progressiveLazyLoad,1e3)),e.ro=new ne.Z((function(){e.animating?(e.onWindowResized(!1),e.callbackTimers.push(setTimeout((function(){return e.onWindowResized()}),e.speed))):e.onWindowResized()})),e.ro.observe(e.list),Array.prototype.forEach.call(document.querySelectorAll(".slick-slide"),(function(t){t.onfocus=e.$props.pauseOnFocus?e.onSlideFocus:null,t.onblur=e.$props.pauseOnFocus?e.onSlideBlur:null})),window&&(window.addEventListener?window.addEventListener("resize",e.onWindowResized):window.attachEvent("onresize",e.onWindowResized))}))},beforeDestroy:function(){this.animationEndCallback&&clearTimeout(this.animationEndCallback),this.lazyLoadTimer&&clearInterval(this.lazyLoadTimer),this.callbackTimers.length&&(this.callbackTimers.forEach((function(e){return clearTimeout(e)})),this.callbackTimers=[]),window.addEventListener?window.removeEventListener("resize",this.onWindowResized):window.detachEvent("onresize",this.onWindowResized),this.autoplayTimer&&clearInterval(this.autoplayTimer)},updated:function(){if(this.checkImagesLoad(),this.$emit("reInit"),this.lazyLoad){var e=b((0,r.Z)({},this.$props,this.$data));e.length>0&&(this.setState((function(t){return{lazyLoadedList:t.lazyLoadedList.concat(e)}})),this.$emit("lazyLoad"))}this.adaptHeight()},watch:{__propsSymbol__:function(){var e=this,t=this.$props,n=(0,r.Z)({listRef:this.list,trackRef:this.track},t,this.$data),i=!1,o=!0,a=!1,s=void 0;try{for(var c,l=Object.keys(this.preProps)[Symbol.iterator]();!(o=(c=l.next()).done);o=!0){var u=c.value;if(!t.hasOwnProperty(u)){i=!0;break}if("object"!==(0,d.Z)(t[u])&&"function"!=typeof t[u]&&"symbol"!==(0,d.Z)(t[u])&&t[u]!==this.preProps[u]){i=!0;break}}}catch(e){a=!0,s=e}finally{try{!o&&l.return&&l.return()}finally{if(a)throw s}}this.updateState(n,i,(function(){e.currentSlide>=t.children.length&&e.changeSlide({message:"index",index:t.children.length-t.slidesToShow,currentSlide:e.currentSlide}),t.autoplay?e.handleAutoPlay("update"):e.pause("paused")})),this.preProps=(0,r.Z)({},t)}},render:function(){var e=arguments[0],t=v()("slick-slider",{"slick-vertical":this.vertical,"slick-initialized":!0}),n=(0,r.Z)({},this.$props,this.$data),i=T(n,["fade","cssEase","speed","infinite","centerMode","focusOnSelect","currentSlide","lazyLoad","lazyLoadedList","rtl","slideWidth","slideHeight","listHeight","vertical","slidesToShow","slidesToScroll","slideCount","trackStyle","variableWidth","unslick","centerPadding"]),o=this.$props.pauseOnHover;i={props:(0,r.Z)({},i,{focusOnSelect:this.focusOnSelect?this.selectHandler:null}),directives:[{name:"ant-ref",value:this.trackRefHandler}],on:{mouseenter:o?this.onTrackOver:re,mouseleave:o?this.onTrackLeave:re,mouseover:o?this.onTrackOver:re}};var a=void 0;if(!0===this.dots&&this.slideCount>=this.slidesToShow){var s=T(n,["dotsClass","slideCount","slidesToShow","currentSlide","slidesToScroll","clickHandler","children","infinite","appendDots"]);s.customPaging=this.customPaging,s.appendDots=this.appendDots;var c=this.$scopedSlots,l=c.customPaging,u=c.appendDots;l&&(s.customPaging=l),u&&(s.appendDots=u);var d=this.$props.pauseOnDotsHover;s={props:(0,r.Z)({},s,{clickHandler:this.changeSlide}),on:{mouseenter:d?this.onDotsLeave:re,mouseover:d?this.onDotsOver:re,mouseleave:d?this.onDotsLeave:re}},a=e(G,s)}var h=void 0,f=void 0,p=T(n,["infinite","centerMode","currentSlide","slideCount","slidesToShow"]);p.clickHandler=this.changeSlide;var m=this.$scopedSlots,y=m.prevArrow,g=m.nextArrow;y&&(p.prevArrow=y),g&&(p.nextArrow=g),this.arrows&&(h=e(ee,{props:p}),f=e(te,{props:p}));var _=null;this.vertical&&(_={height:"number"==typeof this.listHeight?this.listHeight+"px":this.listHeight});var b=null;!1===this.vertical?!0===this.centerMode&&(b={padding:"0px "+this.centerPadding}):!0===this.centerMode&&(b={padding:this.centerPadding+" 0px"});var M=(0,r.Z)({},_,b),w=this.touchMove,k={directives:[{name:"ant-ref",value:this.listRefHandler}],class:"slick-list",style:M,on:{click:this.clickHandler,mousedown:w?this.swipeStart:re,mousemove:this.dragging&&w?this.swipeMove:re,mouseup:w?this.swipeEnd:re,mouseleave:this.dragging&&w?this.swipeEnd:re,touchstart:w?this.swipeStart:re,touchmove:this.dragging&&w?this.swipeMove:re,touchend:w?this.swipeEnd:re,touchcancel:this.dragging&&w?this.swipeEnd:re,keydown:this.accessibility?this.keyHandler:re}},C={class:t,props:{dir:"ltr"}};return this.unslick&&(k={class:"slick-list",directives:[{name:"ant-ref",value:this.listRefHandler}]},C={class:t}),e("div",C,[this.unslick?"":h,e("div",k,[e(U,i,[this.children])]),this.unslick?"":f,this.unslick?"":a])}};var oe=R()&&n(24974);a.default.use(s.Z,{name:"ant-ref"});const ae={props:(0,r.Z)({},g),mixins:[c.Z],data:function(){return this._responsiveMediaHandlers=[],{breakpoint:null}},methods:{innerSliderRefHandler:function(e){this.innerSlider=e},media:function(e,t){oe.register(e,t),this._responsiveMediaHandlers.push({query:e,handler:t})},slickPrev:function(){this.innerSlider.slickPrev()},slickNext:function(){this.innerSlider.slickNext()},slickGoTo:function(e){var t=arguments.length>1&&void 0!==arguments[1]&&arguments[1];this.innerSlider.slickGoTo(e,t)},slickPause:function(){this.innerSlider.pause("paused")},slickPlay:function(){this.innerSlider.handleAutoPlay("play")}},beforeMount:function(){var e=this;if(this.responsive){var t=this.responsive.map((function(e){return e.breakpoint}));t.sort((function(e,t){return e-t})),t.forEach((function(n,r){var i=void 0;i=0===r?o()({minWidth:0,maxWidth:n}):o()({minWidth:t[r-1]+1,maxWidth:n}),R()&&e.media(i,(function(){e.setState({breakpoint:n})}))}));var n=o()({minWidth:t.slice(-1)[0]});R()&&this.media(n,(function(){e.setState({breakpoint:null})}))}},beforeDestroy:function(){this._responsiveMediaHandlers.forEach((function(e){oe.unregister(e.query,e.handler)}))},render:function(){var e=this,t=arguments[0],n=void 0,i=void 0;(n=this.breakpoint?"unslick"===(i=this.responsive.filter((function(t){return t.breakpoint===e.breakpoint})))[0].settings?"unslick":(0,r.Z)({},this.$props,i[0].settings):(0,r.Z)({},this.$props)).centerMode&&(n.slidesToScroll,n.slidesToScroll=1),n.fade&&(n.slidesToShow,n.slidesToScroll,n.slidesToShow=1,n.slidesToScroll=1);var o=this.$slots.default||[];o=o.filter((function(e){return"string"==typeof e?!!e.trim():!!e})),n.variableWidth&&(n.rows>1||n.slidesPerRow>1)&&(console.warn("variableWidth is not supported in case of rows > 1 or slidesPerRow > 1"),n.variableWidth=!1);for(var a=[],s=null,c=0;c=o.length));p+=1)f.push((0,l.Tm)(o[p],{key:100*c+10*h+p,attrs:{tabIndex:-1},style:{width:100/n.slidesPerRow+"%",display:"inline-block"}}));d.push(t("div",{key:10*c+h},[f]))}n.variableWidth?a.push(t("div",{key:c,style:{width:s}},[d])):a.push(t("div",{key:c},[d]))}if("unslick"===n){var m="regular slider "+(this.className||"");return t("div",{class:m},[a])}a.length<=n.slidesToShow&&(n.unslick=!0);var v={props:(0,r.Z)({},n,{children:a,__propsSymbol__:Symbol()}),on:(0,u.CL)(this),directives:[{name:"ant-ref",value:this.innerSliderRefHandler}],scopedSlots:this.$scopedSlots};return t(ie,v)}}},67071:function(e){e.exports=function(){"use strict";function e(e,t,n){(n=n||{}).childrenKeyName=n.childrenKeyName||"children";var r=e||[],i=[],o=0;do{var a=r.filter((function(e){return t(e,o)}))[0];if(!a)break;i.push(a),r=a[n.childrenKeyName]||[],o+=1}while(r.length>0);return i}return e}()},9669:(e,t,n)=>{e.exports=n(51609)},55448:(e,t,n)=>{"use strict";var r=n(64867),i=n(36026),o=n(4372),a=n(15327),s=n(94097),c=n(84109),l=n(67985),u=n(85061);e.exports=function(e){return new Promise((function(t,n){var d=e.data,h=e.headers;r.isFormData(d)&&delete h["Content-Type"];var f=new XMLHttpRequest;if(e.auth){var p=e.auth.username||"",m=e.auth.password?unescape(encodeURIComponent(e.auth.password)):"";h.Authorization="Basic "+btoa(p+":"+m)}var v=s(e.baseURL,e.url);if(f.open(e.method.toUpperCase(),a(v,e.params,e.paramsSerializer),!0),f.timeout=e.timeout,f.onreadystatechange=function(){if(f&&4===f.readyState&&(0!==f.status||f.responseURL&&0===f.responseURL.indexOf("file:"))){var r="getAllResponseHeaders"in f?c(f.getAllResponseHeaders()):null,o={data:e.responseType&&"text"!==e.responseType?f.response:f.responseText,status:f.status,statusText:f.statusText,headers:r,config:e,request:f};i(t,n,o),f=null}},f.onabort=function(){f&&(n(u("Request aborted",e,"ECONNABORTED",f)),f=null)},f.onerror=function(){n(u("Network Error",e,null,f)),f=null},f.ontimeout=function(){var t="timeout of "+e.timeout+"ms exceeded";e.timeoutErrorMessage&&(t=e.timeoutErrorMessage),n(u(t,e,"ECONNABORTED",f)),f=null},r.isStandardBrowserEnv()){var y=(e.withCredentials||l(v))&&e.xsrfCookieName?o.read(e.xsrfCookieName):void 0;y&&(h[e.xsrfHeaderName]=y)}if("setRequestHeader"in f&&r.forEach(h,(function(e,t){void 0===d&&"content-type"===t.toLowerCase()?delete h[t]:f.setRequestHeader(t,e)})),r.isUndefined(e.withCredentials)||(f.withCredentials=!!e.withCredentials),e.responseType)try{f.responseType=e.responseType}catch(t){if("json"!==e.responseType)throw t}"function"==typeof e.onDownloadProgress&&f.addEventListener("progress",e.onDownloadProgress),"function"==typeof e.onUploadProgress&&f.upload&&f.upload.addEventListener("progress",e.onUploadProgress),e.cancelToken&&e.cancelToken.promise.then((function(e){f&&(f.abort(),n(e),f=null)})),d||(d=null),f.send(d)}))}},51609:(e,t,n)=>{"use strict";var r=n(64867),i=n(91849),o=n(30321),a=n(47185);function s(e){var t=new o(e),n=i(o.prototype.request,t);return r.extend(n,o.prototype,t),r.extend(n,t),n}var c=s(n(45655));c.Axios=o,c.create=function(e){return s(a(c.defaults,e))},c.Cancel=n(65263),c.CancelToken=n(14972),c.isCancel=n(26502),c.all=function(e){return Promise.all(e)},c.spread=n(8713),c.isAxiosError=n(16268),e.exports=c,e.exports.default=c},65263:e=>{"use strict";function t(e){this.message=e}t.prototype.toString=function(){return"Cancel"+(this.message?": "+this.message:"")},t.prototype.__CANCEL__=!0,e.exports=t},14972:(e,t,n)=>{"use strict";var r=n(65263);function i(e){if("function"!=typeof e)throw new TypeError("executor must be a function.");var t;this.promise=new Promise((function(e){t=e}));var n=this;e((function(e){n.reason||(n.reason=new r(e),t(n.reason))}))}i.prototype.throwIfRequested=function(){if(this.reason)throw this.reason},i.source=function(){var e;return{token:new i((function(t){e=t})),cancel:e}},e.exports=i},26502:e=>{"use strict";e.exports=function(e){return!(!e||!e.__CANCEL__)}},30321:(e,t,n)=>{"use strict";var r=n(64867),i=n(15327),o=n(80782),a=n(13572),s=n(47185);function c(e){this.defaults=e,this.interceptors={request:new o,response:new o}}c.prototype.request=function(e){"string"==typeof e?(e=arguments[1]||{}).url=arguments[0]:e=e||{},(e=s(this.defaults,e)).method?e.method=e.method.toLowerCase():this.defaults.method?e.method=this.defaults.method.toLowerCase():e.method="get";var t=[a,void 0],n=Promise.resolve(e);for(this.interceptors.request.forEach((function(e){t.unshift(e.fulfilled,e.rejected)})),this.interceptors.response.forEach((function(e){t.push(e.fulfilled,e.rejected)}));t.length;)n=n.then(t.shift(),t.shift());return n},c.prototype.getUri=function(e){return e=s(this.defaults,e),i(e.url,e.params,e.paramsSerializer).replace(/^\?/,"")},r.forEach(["delete","get","head","options"],(function(e){c.prototype[e]=function(t,n){return this.request(s(n||{},{method:e,url:t,data:(n||{}).data}))}})),r.forEach(["post","put","patch"],(function(e){c.prototype[e]=function(t,n,r){return this.request(s(r||{},{method:e,url:t,data:n}))}})),e.exports=c},80782:(e,t,n)=>{"use strict";var r=n(64867);function i(){this.handlers=[]}i.prototype.use=function(e,t){return this.handlers.push({fulfilled:e,rejected:t}),this.handlers.length-1},i.prototype.eject=function(e){this.handlers[e]&&(this.handlers[e]=null)},i.prototype.forEach=function(e){r.forEach(this.handlers,(function(t){null!==t&&e(t)}))},e.exports=i},94097:(e,t,n)=>{"use strict";var r=n(91793),i=n(7303);e.exports=function(e,t){return e&&!r(t)?i(e,t):t}},85061:(e,t,n)=>{"use strict";var r=n(80481);e.exports=function(e,t,n,i,o){var a=new Error(e);return r(a,t,n,i,o)}},13572:(e,t,n)=>{"use strict";var r=n(64867),i=n(18527),o=n(26502),a=n(45655);function s(e){e.cancelToken&&e.cancelToken.throwIfRequested()}e.exports=function(e){return s(e),e.headers=e.headers||{},e.data=i(e.data,e.headers,e.transformRequest),e.headers=r.merge(e.headers.common||{},e.headers[e.method]||{},e.headers),r.forEach(["delete","get","head","post","put","patch","common"],(function(t){delete e.headers[t]})),(e.adapter||a.adapter)(e).then((function(t){return s(e),t.data=i(t.data,t.headers,e.transformResponse),t}),(function(t){return o(t)||(s(e),t&&t.response&&(t.response.data=i(t.response.data,t.response.headers,e.transformResponse))),Promise.reject(t)}))}},80481:e=>{"use strict";e.exports=function(e,t,n,r,i){return e.config=t,n&&(e.code=n),e.request=r,e.response=i,e.isAxiosError=!0,e.toJSON=function(){return{message:this.message,name:this.name,description:this.description,number:this.number,fileName:this.fileName,lineNumber:this.lineNumber,columnNumber:this.columnNumber,stack:this.stack,config:this.config,code:this.code}},e}},47185:(e,t,n)=>{"use strict";var r=n(64867);e.exports=function(e,t){t=t||{};var n={},i=["url","method","data"],o=["headers","auth","proxy","params"],a=["baseURL","transformRequest","transformResponse","paramsSerializer","timeout","timeoutMessage","withCredentials","adapter","responseType","xsrfCookieName","xsrfHeaderName","onUploadProgress","onDownloadProgress","decompress","maxContentLength","maxBodyLength","maxRedirects","transport","httpAgent","httpsAgent","cancelToken","socketPath","responseEncoding"],s=["validateStatus"];function c(e,t){return r.isPlainObject(e)&&r.isPlainObject(t)?r.merge(e,t):r.isPlainObject(t)?r.merge({},t):r.isArray(t)?t.slice():t}function l(i){r.isUndefined(t[i])?r.isUndefined(e[i])||(n[i]=c(void 0,e[i])):n[i]=c(e[i],t[i])}r.forEach(i,(function(e){r.isUndefined(t[e])||(n[e]=c(void 0,t[e]))})),r.forEach(o,l),r.forEach(a,(function(i){r.isUndefined(t[i])?r.isUndefined(e[i])||(n[i]=c(void 0,e[i])):n[i]=c(void 0,t[i])})),r.forEach(s,(function(r){r in t?n[r]=c(e[r],t[r]):r in e&&(n[r]=c(void 0,e[r]))}));var u=i.concat(o).concat(a).concat(s),d=Object.keys(e).concat(Object.keys(t)).filter((function(e){return-1===u.indexOf(e)}));return r.forEach(d,l),n}},36026:(e,t,n)=>{"use strict";var r=n(85061);e.exports=function(e,t,n){var i=n.config.validateStatus;n.status&&i&&!i(n.status)?t(r("Request failed with status code "+n.status,n.config,null,n.request,n)):e(n)}},18527:(e,t,n)=>{"use strict";var r=n(64867);e.exports=function(e,t,n){return r.forEach(n,(function(n){e=n(e,t)})),e}},45655:(e,t,n)=>{"use strict";var r=n(34155),i=n(64867),o=n(16016),a={"Content-Type":"application/x-www-form-urlencoded"};function s(e,t){!i.isUndefined(e)&&i.isUndefined(e["Content-Type"])&&(e["Content-Type"]=t)}var c,l={adapter:(("undefined"!=typeof XMLHttpRequest||void 0!==r&&"[object process]"===Object.prototype.toString.call(r))&&(c=n(55448)),c),transformRequest:[function(e,t){return o(t,"Accept"),o(t,"Content-Type"),i.isFormData(e)||i.isArrayBuffer(e)||i.isBuffer(e)||i.isStream(e)||i.isFile(e)||i.isBlob(e)?e:i.isArrayBufferView(e)?e.buffer:i.isURLSearchParams(e)?(s(t,"application/x-www-form-urlencoded;charset=utf-8"),e.toString()):i.isObject(e)?(s(t,"application/json;charset=utf-8"),JSON.stringify(e)):e}],transformResponse:[function(e){if("string"==typeof e)try{e=JSON.parse(e)}catch(e){}return e}],timeout:0,xsrfCookieName:"XSRF-TOKEN",xsrfHeaderName:"X-XSRF-TOKEN",maxContentLength:-1,maxBodyLength:-1,validateStatus:function(e){return e>=200&&e<300}};l.headers={common:{Accept:"application/json, text/plain, */*"}},i.forEach(["delete","get","head"],(function(e){l.headers[e]={}})),i.forEach(["post","put","patch"],(function(e){l.headers[e]=i.merge(a)})),e.exports=l},91849:e=>{"use strict";e.exports=function(e,t){return function(){for(var n=new Array(arguments.length),r=0;r{"use strict";var r=n(64867);function i(e){return encodeURIComponent(e).replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}e.exports=function(e,t,n){if(!t)return e;var o;if(n)o=n(t);else if(r.isURLSearchParams(t))o=t.toString();else{var a=[];r.forEach(t,(function(e,t){null!=e&&(r.isArray(e)?t+="[]":e=[e],r.forEach(e,(function(e){r.isDate(e)?e=e.toISOString():r.isObject(e)&&(e=JSON.stringify(e)),a.push(i(t)+"="+i(e))})))})),o=a.join("&")}if(o){var s=e.indexOf("#");-1!==s&&(e=e.slice(0,s)),e+=(-1===e.indexOf("?")?"?":"&")+o}return e}},7303:e=>{"use strict";e.exports=function(e,t){return t?e.replace(/\/+$/,"")+"/"+t.replace(/^\/+/,""):e}},4372:(e,t,n)=>{"use strict";var r=n(64867);e.exports=r.isStandardBrowserEnv()?{write:function(e,t,n,i,o,a){var s=[];s.push(e+"="+encodeURIComponent(t)),r.isNumber(n)&&s.push("expires="+new Date(n).toGMTString()),r.isString(i)&&s.push("path="+i),r.isString(o)&&s.push("domain="+o),!0===a&&s.push("secure"),document.cookie=s.join("; ")},read:function(e){var t=document.cookie.match(new RegExp("(^|;\\s*)("+e+")=([^;]*)"));return t?decodeURIComponent(t[3]):null},remove:function(e){this.write(e,"",Date.now()-864e5)}}:{write:function(){},read:function(){return null},remove:function(){}}},91793:e=>{"use strict";e.exports=function(e){return/^([a-z][a-z\d\+\-\.]*:)?\/\//i.test(e)}},16268:e=>{"use strict";e.exports=function(e){return"object"==typeof e&&!0===e.isAxiosError}},67985:(e,t,n)=>{"use strict";var r=n(64867);e.exports=r.isStandardBrowserEnv()?function(){var e,t=/(msie|trident)/i.test(navigator.userAgent),n=document.createElement("a");function i(e){var r=e;return t&&(n.setAttribute("href",r),r=n.href),n.setAttribute("href",r),{href:n.href,protocol:n.protocol?n.protocol.replace(/:$/,""):"",host:n.host,search:n.search?n.search.replace(/^\?/,""):"",hash:n.hash?n.hash.replace(/^#/,""):"",hostname:n.hostname,port:n.port,pathname:"/"===n.pathname.charAt(0)?n.pathname:"/"+n.pathname}}return e=i(window.location.href),function(t){var n=r.isString(t)?i(t):t;return n.protocol===e.protocol&&n.host===e.host}}():function(){return!0}},16016:(e,t,n)=>{"use strict";var r=n(64867);e.exports=function(e,t){r.forEach(e,(function(n,r){r!==t&&r.toUpperCase()===t.toUpperCase()&&(e[t]=n,delete e[r])}))}},84109:(e,t,n)=>{"use strict";var r=n(64867),i=["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"];e.exports=function(e){var t,n,o,a={};return e?(r.forEach(e.split("\n"),(function(e){if(o=e.indexOf(":"),t=r.trim(e.substr(0,o)).toLowerCase(),n=r.trim(e.substr(o+1)),t){if(a[t]&&i.indexOf(t)>=0)return;a[t]="set-cookie"===t?(a[t]?a[t]:[]).concat([n]):a[t]?a[t]+", "+n:n}})),a):a}},8713:e=>{"use strict";e.exports=function(e){return function(t){return e.apply(null,t)}}},64867:(e,t,n)=>{"use strict";var r=n(91849),i=Object.prototype.toString;function o(e){return"[object Array]"===i.call(e)}function a(e){return void 0===e}function s(e){return null!==e&&"object"==typeof e}function c(e){if("[object Object]"!==i.call(e))return!1;var t=Object.getPrototypeOf(e);return null===t||t===Object.prototype}function l(e){return"[object Function]"===i.call(e)}function u(e,t){if(null!=e)if("object"!=typeof e&&(e=[e]),o(e))for(var n=0,r=e.length;n{var t=/^(attrs|props|on|nativeOn|class|style|hook)$/;function n(e,t){return function(){e&&e.apply(this,arguments),t&&t.apply(this,arguments)}}e.exports=function(e){return e.reduce((function(e,r){var i,o,a,s,c;for(a in r)if(i=e[a],o=r[a],i&&t.test(a))if("class"===a&&("string"==typeof i&&(c=i,e[a]=i={},i[c]=!0),"string"==typeof o&&(c=o,r[a]=o={},o[c]=!0)),"on"===a||"nativeOn"===a||"hook"===a)for(s in o)i[s]=n(i[s],o[s]);else if(Array.isArray(i))e[a]=i.concat(o);else if(Array.isArray(o))e[a]=[i].concat(o);else for(s in o)i[s]=o[s];else e[a]=r[a];return e}),{})}},86974:(e,t,n)=>{"use strict";var r=n(70538),i=n(96454),o=n(31966),a=n(72433),s=n(3933),c=n.n(s),l=n(88106),u=n(37544),d=n(94184),h=n.n(d),f=n(88239);const p=function(e,t){for(var n=(0,f.Z)({},e),r=0;r0;var Y=function(e,t){for(var n=Object.create(null),r=e.split(","),i=0;i2&&void 0!==arguments[2]?arguments[2]:"";ne(e,"[antdv: "+t+"] "+n)};var ie=n(4953),oe=n.n(ie);function ae(e,t,n,r){return oe()(e,t,n,r)}function se(e){return e!==window?e.getBoundingClientRect():{top:0,bottom:window.innerHeight}}function ce(e,t,n){if(void 0!==n&&t.top>e.top-n)return n+t.top+"px"}function le(e,t,n){if(void 0!==n&&t.bottom1&&void 0!==arguments[1]?arguments[1]:{},n=t.getContainer,r=void 0===n?function(){return window}:n,i=t.callback,o=t.duration,a=void 0===o?450:o,s=r(),c=_e(s,!0),l=Date.now(),u=function t(){var n=Date.now()-l,r=be(n>a?a:n,c,e,a);s===window?window.scrollTo(window.pageXOffset,r):s.scrollTop=r,n0&&void 0!==arguments[0]?arguments[0]:0,t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:5,n=this.getCurrentAnchor;if("function"==typeof n)return n();var r="";if("undefined"==typeof document)return r;var i=[],o=this.getContainer,a=o();if(this.links.forEach((function(n){var r=ke.exec(n.toString());if(r){var o=document.getElementById(r[1]);if(o){var s=we(o,a);se.top?t:e}));return s.link}return""},handleScrollTo:function(e){var t=this,n=this.offsetTop,r=this.getContainer,i=this.targetOffset;this.setCurrentActiveLink(e);var o=r(),a=_e(o,!0),s=ke.exec(e);if(s){var c=document.getElementById(s[1]);if(c){var l=a+we(c,o);l-=void 0!==i?i:n||0,this.animating=!0,Me(l,{callback:function(){t.animating=!1},getContainer:r})}}},setCurrentActiveLink:function(e){this.activeLink!==e&&(this.setState({activeLink:e}),this.$emit("change",e))},handleScroll:function(){if(!this.animating){var e=this.offsetTop,t=this.bounds,n=this.targetOffset,r=this.getCurrentActiveLink(void 0!==n?n:e||0,t);this.setCurrentActiveLink(r)}},updateInk:function(){if("undefined"!=typeof document){var e=this._sPrefixCls,t=this.$el.getElementsByClassName(e+"-link-title-active")[0];t&&(this.$refs.inkNode.style.top=t.offsetTop+t.clientHeight/2-4.5+"px")}}},render:function(){var e=arguments[0],t=this.prefixCls,n=this.offsetTop,r=this.affix,i=this.showInkInFixed,o=this.activeLink,a=this.$slots,s=this.getContainer,c=this.configProvider.getPrefixCls,l=c("anchor",t);this._sPrefixCls=l;var u=h()(l+"-ink-ball",{visible:o}),d=h()(this.wrapperClass,l+"-wrapper"),p=h()(l,{fixed:!r&&!i}),m=(0,f.Z)({maxHeight:n?"calc(100vh - "+n+"px)":"100vh"},this.wrapperStyle),v=e("div",{class:d,style:m},[e("div",{class:p},[e("div",{class:l+"-ink"},[e("span",{class:u,ref:"inkNode"})]),a.default])]);return r?e(ge,{attrs:{offsetTop:n,target:s}},[v]):v}};var xe={prefixCls:u.Z.string,href:u.Z.string,title:u.Z.any,target:u.Z.string};const Se={name:"AAnchorLink",props:(0,k.SQ)(xe,{href:"#"}),inject:{antAnchor:{default:function(){return{}}},antAnchorContext:{default:function(){return{}}},configProvider:{default:function(){return X}}},watch:{href:function(e,t){var n=this;this.$nextTick((function(){n.antAnchor.unregisterLink(t),n.antAnchor.registerLink(e)}))}},mounted:function(){this.antAnchor.registerLink(this.href)},beforeDestroy:function(){this.antAnchor.unregisterLink(this.href)},methods:{handleClick:function(e){this.antAnchor.scrollTo(this.href);var t=this.antAnchor.scrollTo,n=this.$props,r=n.href,i=n.title;this.antAnchorContext.$emit&&this.antAnchorContext.$emit("click",e,{title:i,href:r}),t(r)}},render:function(){var e=arguments[0],t=this.prefixCls,n=this.href,r=this.$slots,i=this.target,o=this.configProvider.getPrefixCls,a=o("anchor",t),s=(0,k.rj)(this,"title"),c=this.antAnchor.$data.activeLink===n,u=h()(a+"-link",(0,l.Z)({},a+"-link-active",c)),d=h()(a+"-link-title",(0,l.Z)({},a+"-link-title-active",c));return e("div",{class:u},[e("a",{class:d,attrs:{href:n,title:"string"==typeof s?s:"",target:i},on:{click:this.handleClick}},[s]),r.default])}};Le.Link=Se,Le.install=function(e){e.use(B),e.component(Le.name,Le),e.component(Le.Link.name,Le.Link)};const Ze=Le,Te={props:{value:u.Z.oneOfType([u.Z.string,u.Z.number]),label:u.Z.oneOfType([u.Z.string,u.Z.number]),disabled:u.Z.bool,title:u.Z.oneOfType([u.Z.string,u.Z.number])},isSelectOption:!0},ze={props:{value:u.Z.oneOfType([u.Z.string,u.Z.number]),label:u.Z.oneOfType([u.Z.string,u.Z.number])},isSelectOptGroup:!0};var Oe=n(42723),He={MAC_ENTER:3,BACKSPACE:8,TAB:9,NUM_CENTER:12,ENTER:13,SHIFT:16,CTRL:17,ALT:18,PAUSE:19,CAPS_LOCK:20,ESC:27,SPACE:32,PAGE_UP:33,PAGE_DOWN:34,END:35,HOME:36,LEFT:37,UP:38,RIGHT:39,DOWN:40,PRINT_SCREEN:44,INSERT:45,DELETE:46,ZERO:48,ONE:49,TWO:50,THREE:51,FOUR:52,FIVE:53,SIX:54,SEVEN:55,EIGHT:56,NINE:57,QUESTION_MARK:63,A:65,B:66,C:67,D:68,E:69,F:70,G:71,H:72,I:73,J:74,K:75,L:76,M:77,N:78,O:79,P:80,Q:81,R:82,S:83,T:84,U:85,V:86,W:87,X:88,Y:89,Z:90,META:91,WIN_KEY_RIGHT:92,CONTEXT_MENU:93,NUM_ZERO:96,NUM_ONE:97,NUM_TWO:98,NUM_THREE:99,NUM_FOUR:100,NUM_FIVE:101,NUM_SIX:102,NUM_SEVEN:103,NUM_EIGHT:104,NUM_NINE:105,NUM_MULTIPLY:106,NUM_PLUS:107,NUM_MINUS:109,NUM_PERIOD:110,NUM_DIVISION:111,F1:112,F2:113,F3:114,F4:115,F5:116,F6:117,F7:118,F8:119,F9:120,F10:121,F11:122,F12:123,NUMLOCK:144,SEMICOLON:186,DASH:189,EQUALS:187,COMMA:188,PERIOD:190,SLASH:191,APOSTROPHE:192,SINGLE_QUOTE:222,OPEN_SQUARE_BRACKET:219,BACKSLASH:220,CLOSE_SQUARE_BRACKET:221,WIN_KEY:224,MAC_FF_META:224,WIN_IME:229,isTextModifyingKeyEvent:function(e){var t=e.keyCode;if(e.altKey&&!e.ctrlKey||e.metaKey||t>=He.F1&&t<=He.F12)return!1;switch(t){case He.ALT:case He.CAPS_LOCK:case He.CONTEXT_MENU:case He.CTRL:case He.DOWN:case He.END:case He.ESC:case He.HOME:case He.INSERT:case He.LEFT:case He.MAC_FF_META:case He.META:case He.NUMLOCK:case He.NUM_CENTER:case He.PAGE_DOWN:case He.PAGE_UP:case He.PAUSE:case He.PRINT_SCREEN:case He.RIGHT:case He.SHIFT:case He.UP:case He.WIN_KEY:case He.WIN_KEY_RIGHT:return!1;default:return!0}},isCharacterKey:function(e){if(e>=He.ZERO&&e<=He.NINE)return!0;if(e>=He.NUM_ZERO&&e<=He.NUM_MULTIPLY)return!0;if(e>=He.A&&e<=He.Z)return!0;if(-1!==window.navigation.userAgent.indexOf("WebKit")&&0===e)return!0;switch(e){case He.SPACE:case He.QUESTION_MARK:case He.NUM_PLUS:case He.NUM_MINUS:case He.NUM_PERIOD:case He.NUM_DIVISION:case He.SEMICOLON:case He.DASH:case He.EQUALS:case He.COMMA:case He.PERIOD:case He.SLASH:case He.APOSTROPHE:case He.SINGLE_QUOTE:case He.OPEN_SQUARE_BRACKET:case He.BACKSLASH:case He.CLOSE_SQUARE_BRACKET:return!0;default:return!1}}};const De=He;var Ve=n(62809),Pe=n.n(Ve);function Ye(e){return(Ye="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function Ae(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function je(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function Ee(e,t){var n=e["page".concat(t?"Y":"X","Offset")],r="scroll".concat(t?"Top":"Left");if("number"!=typeof n){var i=e.document;"number"!=typeof(n=i.documentElement[r])&&(n=i.body[r])}return n}function $e(e){return Ee(e)}function Fe(e){return Ee(e,!0)}function Ie(e){var t=function(e){var t,n,r,i=e.ownerDocument,o=i.body,a=i&&i.documentElement;return n=(t=e.getBoundingClientRect()).left,r=t.top,{left:n-=a.clientLeft||o.clientLeft||0,top:r-=a.clientTop||o.clientTop||0}}(e),n=e.ownerDocument,r=n.defaultView||n.parentWindow;return t.left+=$e(r),t.top+=Fe(r),t}var Ne,Re=new RegExp("^(".concat(/[\-+]?(?:\d*\.|)\d+(?:[eE][\-+]?\d+|)/.source,")(?!px)[a-z%]+$"),"i"),We=/^(top|right|bottom|left)$/;function Ke(e,t){for(var n=0;n0?!0===o?rt.scrollTop(t,p.top+m.top):!1===o?rt.scrollTop(t,p.top+v.top):m.top<0?rt.scrollTop(t,p.top+m.top):rt.scrollTop(t,p.top+v.top):i||((o=void 0===o||!!o)?rt.scrollTop(t,p.top+m.top):rt.scrollTop(t,p.top+v.top)),r&&(m.left<0||v.left>0?!0===a?rt.scrollLeft(t,p.left+m.left):!1===a?rt.scrollLeft(t,p.left+v.left):m.left<0?rt.scrollLeft(t,p.left+m.left):rt.scrollLeft(t,p.left+v.left):i||((a=void 0===a||!!a)?rt.scrollLeft(t,p.left+m.left):rt.scrollLeft(t,p.left+v.left)))};var ot=n(96774),at=n.n(ot);function st(e){return e.name||"Component"}function ct(e){var t=e.props||{},n=e.methods||{},r={};Object.keys(t).forEach((function(e){r[e]=(0,f.Z)({},t[e],{required:!1})})),e.props.__propsSymbol__=u.Z.any,e.props.children=u.Z.array.def([]);var i={props:r,model:e.model,name:"Proxy_"+st(e),methods:{getProxyWrappedInstance:function(){return this.$refs.wrappedInstance}},render:function(){var t=arguments[0],n=this.$slots,r=void 0===n?{}:n,i=this.$scopedSlots,o=(0,k.oZ)(this),a={props:(0,f.Z)({},o,{__propsSymbol__:Symbol(),componentWillReceiveProps:(0,f.Z)({},o),children:r.default||o.children||[]}),on:(0,k.CL)(this)};Object.keys(i).length&&(a.scopedSlots=i);var s=Object.keys(r);return t(e,c()([a,{ref:"wrappedInstance"}]),[s.length?s.map((function(e){return t("template",{slot:e},[r[e]])})):null])}};return Object.keys(n).map((function(e){i.methods[e]=function(){var t;return(t=this.getProxyWrappedInstance())[e].apply(t,arguments)}})),i}function lt(e){return e.name||"Component"}var ut=function(){return{}};function dt(e){var t=!!e,n=e||ut;return function(r){var i=p(r.props||{},["store"]),o={__propsSymbol__:u.Z.any};return Object.keys(i).forEach((function(e){o[e]=(0,f.Z)({},i[e],{required:!1})})),ct({name:"Connect_"+lt(r),props:o,inject:{storeContext:{default:function(){return{}}}},data:function(){return this.store=this.storeContext.store,this.preProps=p((0,k.oZ)(this),["__propsSymbol__"]),{subscribed:n(this.store.getState(),this.$props)}},watch:{__propsSymbol__:function(){e&&2===e.length&&(this.subscribed=n(this.store.getState(),this.$props))}},mounted:function(){this.trySubscribe()},beforeDestroy:function(){this.tryUnsubscribe()},methods:{handleChange:function(){if(this.unsubscribe){var e=p((0,k.oZ)(this),["__propsSymbol__"]),t=n(this.store.getState(),e);at()(this.preProps,e)&&at()(this.subscribed,t)||(this.subscribed=t)}},trySubscribe:function(){t&&(this.unsubscribe=this.store.subscribe(this.handleChange),this.handleChange())},tryUnsubscribe:function(){this.unsubscribe&&(this.unsubscribe(),this.unsubscribe=null)},getWrappedInstance:function(){return this.$refs.wrappedInstance}},render:function(){var e=arguments[0],t=this.$slots,n=void 0===t?{}:t,i=this.$scopedSlots,o=this.subscribed,a=this.store,s=(0,k.oZ)(this);this.preProps=(0,f.Z)({},p(s,["__propsSymbol__"]));var l={props:(0,f.Z)({},s,o,{store:a}),on:(0,k.CL)(this),scopedSlots:i};return e(r,c()([l,{ref:"wrappedInstance"}]),[Object.keys(n).map((function(t){return e("template",{slot:t},[n[t]])}))])}})}}var ht=n(12424),ft=/iPhone/i,pt=/iPod/i,mt=/iPad/i,vt=/\bAndroid(?:.+)Mobile\b/i,yt=/Android/i,gt=/\bAndroid(?:.+)SD4930UR\b/i,_t=/\bAndroid(?:.+)(?:KF[A-Z]{2,4})\b/i,bt=/Windows Phone/i,Mt=/\bWindows(?:.+)ARM\b/i,wt=/BlackBerry/i,kt=/BB10/i,Ct=/Opera Mini/i,Lt=/\b(CriOS|Chrome)(?:.+)Mobile/i,xt=/Mobile(?:.+)Firefox\b/i;function St(e,t){return e.test(t)}function Zt(e){var t=e||("undefined"!=typeof navigator?navigator.userAgent:""),n=t.split("[FBAN");if(void 0!==n[1]){var r=n;t=(0,ht.Z)(r,1)[0]}if(void 0!==(n=t.split("Twitter"))[1]){var i=n;t=(0,ht.Z)(i,1)[0]}var o={apple:{phone:St(ft,t)&&!St(bt,t),ipod:St(pt,t),tablet:!St(ft,t)&&St(mt,t)&&!St(bt,t),device:(St(ft,t)||St(pt,t)||St(mt,t))&&!St(bt,t)},amazon:{phone:St(gt,t),tablet:!St(gt,t)&&St(_t,t),device:St(gt,t)||St(_t,t)},android:{phone:!St(bt,t)&&St(gt,t)||!St(bt,t)&&St(vt,t),tablet:!St(bt,t)&&!St(gt,t)&&!St(vt,t)&&(St(_t,t)||St(yt,t)),device:!St(bt,t)&&(St(gt,t)||St(_t,t)||St(vt,t)||St(yt,t))||St(/\bokhttp\b/i,t)},windows:{phone:St(bt,t),tablet:St(Mt,t),device:St(bt,t)||St(Mt,t)},other:{blackberry:St(wt,t),blackberry10:St(kt,t),opera:St(Ct,t),firefox:St(xt,t),chrome:St(Lt,t),device:St(wt,t)||St(kt,t)||St(Ct,t)||St(xt,t)||St(Lt,t)},any:null,phone:null,tablet:null};return o.any=o.apple.device||o.android.device||o.windows.device||o.other.device,o.phone=o.apple.phone||o.android.phone||o.windows.phone,o.tablet=o.apple.tablet||o.android.tablet||o.windows.tablet,o}const Tt=(0,f.Z)({},Zt(),{isMobile:Zt});function zt(){}function Ot(e,t,n){var r=t||"";return void 0===e.key?r+"item_"+n:e.key}function Ht(e){return e+"-menu-"}function Dt(e,t){var n=-1;e.forEach((function(e){n++,e&&e.type&&e.type.isMenuItemGroup?e.$slots.default.forEach((function(r){n++,e.componentOptions&&t(r,n)})):e.componentOptions&&t(e,n)}))}function Vt(e,t,n){e&&!n.find&&e.forEach((function(e){if(!n.find&&(!e.data||!e.data.slot||"default"===e.data.slot)&&e&&e.componentOptions){var r=e.componentOptions.Ctor.options;if(!r||!(r.isSubMenu||r.isMenuItem||r.isMenuItemGroup))return;-1!==t.indexOf(e.key)?n.find=!0:e.componentOptions.children&&Vt(e.componentOptions.children,t,n)}}))}var Pt={props:["defaultSelectedKeys","selectedKeys","defaultOpenKeys","openKeys","mode","getPopupContainer","openTransitionName","openAnimation","subMenuOpenDelay","subMenuCloseDelay","forceSubMenuRender","triggerSubMenuAction","level","selectable","multiple","visible","focusable","defaultActiveFirst","prefixCls","inlineIndent","parentMenu","title","rootPrefixCls","eventKey","active","popupAlign","popupOffset","isOpen","renderMenuItem","manualRef","subMenuKey","disabled","index","isSelected","store","activeKey","builtinPlacements","overflowedIndicator","attribute","value","popupClassName","inlineCollapsed","menu","theme","itemIcon","expandIcon"],on:["select","deselect","destroy","openChange","itemHover","titleMouseenter","titleMouseleave","titleClick"]},Yt=function(e){var t=e&&"function"==typeof e.getBoundingClientRect&&e.getBoundingClientRect().width;return t&&(t=+t.toFixed(6)),t||0},At=function(e,t,n){e&&"object"===(0,w.Z)(e.style)&&(e.style[t]=n)},jt={attribute:u.Z.object,rootPrefixCls:u.Z.string,eventKey:u.Z.oneOfType([u.Z.string,u.Z.number]),active:u.Z.bool,selectedKeys:u.Z.array,disabled:u.Z.bool,title:u.Z.any,index:u.Z.number,inlineIndent:u.Z.number.def(24),level:u.Z.number.def(1),mode:u.Z.oneOf(["horizontal","vertical","vertical-left","vertical-right","inline"]).def("vertical"),parentMenu:u.Z.object,multiple:u.Z.bool,value:u.Z.any,isSelected:u.Z.bool,manualRef:u.Z.func.def(zt),role:u.Z.any,subMenuKey:u.Z.string,itemIcon:u.Z.any},Et={name:"MenuItem",props:jt,mixins:[y.Z],isMenuItem:!0,created:function(){this.prevActive=this.active,this.callRef()},updated:function(){var e=this;this.$nextTick((function(){var t=e.$props,n=t.active,r=t.parentMenu,i=t.eventKey;e.prevActive||!n||r&&r["scrolled-"+i]?r&&r["scrolled-"+i]&&delete r["scrolled-"+i]:(it(e.$el,e.parentMenu.$el,{onlyScrollIfNeeded:!0}),r["scrolled-"+i]=!0),e.prevActive=n})),this.callRef()},beforeDestroy:function(){var e=this.$props;this.__emit("destroy",e.eventKey)},methods:{onKeyDown:function(e){if(e.keyCode===De.ENTER)return this.onClick(e),!0},onMouseLeave:function(e){var t=this.$props.eventKey;this.__emit("itemHover",{key:t,hover:!1}),this.__emit("mouseleave",{key:t,domEvent:e})},onMouseEnter:function(e){var t=this.eventKey;this.__emit("itemHover",{key:t,hover:!0}),this.__emit("mouseenter",{key:t,domEvent:e})},onClick:function(e){var t=this.$props,n=t.eventKey,r=t.multiple,i=t.isSelected,o={key:n,keyPath:[n],item:this,domEvent:e};this.__emit("click",o),r?i?this.__emit("deselect",o):this.__emit("select",o):i||this.__emit("select",o)},getPrefixCls:function(){return this.$props.rootPrefixCls+"-item"},getActiveClassName:function(){return this.getPrefixCls()+"-active"},getSelectedClassName:function(){return this.getPrefixCls()+"-selected"},getDisabledClassName:function(){return this.getPrefixCls()+"-disabled"},callRef:function(){this.manualRef&&this.manualRef(this)}},render:function(){var e,t=arguments[0],n=(0,f.Z)({},this.$props),r=(e={},(0,l.Z)(e,this.getPrefixCls(),!0),(0,l.Z)(e,this.getActiveClassName(),!n.disabled&&n.active),(0,l.Z)(e,this.getSelectedClassName(),n.isSelected),(0,l.Z)(e,this.getDisabledClassName(),n.disabled),e),i=(0,f.Z)({},n.attribute,{title:n.title,role:n.role||"menuitem","aria-disabled":n.disabled});"option"===n.role?i=(0,f.Z)({},i,{role:"option","aria-selected":n.isSelected}):null!==n.role&&"none"!==n.role||(i.role="none");var o={click:n.disabled?zt:this.onClick,mouseleave:n.disabled?zt:this.onMouseLeave,mouseenter:n.disabled?zt:this.onMouseEnter},a={};"inline"===n.mode&&(a.paddingLeft=n.inlineIndent*n.level+"px");var s=(0,f.Z)({},(0,k.CL)(this));Pt.props.forEach((function(e){return delete n[e]})),Pt.on.forEach((function(e){return delete s[e]}));var u={attrs:(0,f.Z)({},n,i),on:(0,f.Z)({},s,o)};return t("li",c()([u,{style:a,class:r}]),[this.$slots.default,(0,k.rj)(this,"itemIcon",n)])}};const $t=dt((function(e,t){var n=e.activeKey,r=e.selectedKeys,i=t.eventKey;return{active:n[t.subMenuKey]===i,isSelected:-1!==r.indexOf(i)}}))(Et);const Ft={name:"MenuItemGroup",props:{renderMenuItem:u.Z.func,index:u.Z.number,className:u.Z.string,subMenuKey:u.Z.string,rootPrefixCls:u.Z.string,disabled:u.Z.bool.def(!0),title:u.Z.any},isMenuItemGroup:!0,methods:{renderInnerMenuItem:function(e){var t=this.$props;return(0,t.renderMenuItem)(e,t.index,t.subMenuKey)}},render:function(){var e=arguments[0],t=(0,f.Z)({},this.$props),n=t.rootPrefixCls,r=t.title,i=n+"-item-group-title",o=n+"-item-group-list",a=(0,f.Z)({},(0,k.CL)(this));return delete a.click,e("li",{on:a,class:n+"-item-group"},[e("div",{class:i,attrs:{title:"string"==typeof r?r:void 0}},[(0,k.rj)(this,"title")]),e("ul",{class:o},[this.$slots.default&&this.$slots.default.map(this.renderInnerMenuItem)])])}};var It=n(42473),Nt=n.n(It),Rt={transitionstart:{transition:"transitionstart",WebkitTransition:"webkitTransitionStart",MozTransition:"mozTransitionStart",OTransition:"oTransitionStart",msTransition:"MSTransitionStart"},animationstart:{animation:"animationstart",WebkitAnimation:"webkitAnimationStart",MozAnimation:"mozAnimationStart",OAnimation:"oAnimationStart",msAnimation:"MSAnimationStart"}},Wt={transitionend:{transition:"transitionend",WebkitTransition:"webkitTransitionEnd",MozTransition:"mozTransitionEnd",OTransition:"oTransitionEnd",msTransition:"MSTransitionEnd"},animationend:{animation:"animationend",WebkitAnimation:"webkitAnimationEnd",MozAnimation:"mozAnimationEnd",OAnimation:"oAnimationEnd",msAnimation:"MSAnimationEnd"}},Kt=[],Bt=[];function Ut(e,t,n){e.addEventListener(t,n,!1)}function qt(e,t,n){e.removeEventListener(t,n,!1)}"undefined"!=typeof window&&"undefined"!=typeof document&&function(){var e=document.createElement("div").style;function t(t,n){for(var r in t)if(t.hasOwnProperty(r)){var i=t[r];for(var o in i)if(o in e){n.push(i[o]);break}}}"AnimationEvent"in window||(delete Rt.animationstart.animation,delete Wt.animationend.animation),"TransitionEvent"in window||(delete Rt.transitionstart.transition,delete Wt.transitionend.transition),t(Rt,Kt),t(Wt,Bt)}();const Gt={startEvents:Kt,addStartEventListener:function(e,t){0!==Kt.length?Kt.forEach((function(n){Ut(e,n,t)})):window.setTimeout(t,0)},removeStartEventListener:function(e,t){0!==Kt.length&&Kt.forEach((function(n){qt(e,n,t)}))},endEvents:Bt,addEndEventListener:function(e,t){0!==Bt.length?Bt.forEach((function(n){Ut(e,n,t)})):window.setTimeout(t,0)},removeEndEventListener:function(e,t){0!==Bt.length&&Bt.forEach((function(n){qt(e,n,t)}))}};var Jt=["moz","ms","webkit"];var Xt=function(){if("undefined"==typeof window)return function(){};if(window.requestAnimationFrame)return window.requestAnimationFrame.bind(window);var e,t=Jt.filter((function(e){return e+"RequestAnimationFrame"in window}))[0];return t?window[t+"RequestAnimationFrame"]:(e=0,function(t){var n=(new Date).getTime(),r=Math.max(0,16-(n-e)),i=window.setTimeout((function(){t(n+r)}),r);return e=n+r,i})}(),Qt=function(e){return function(e){if("undefined"==typeof window)return null;if(window.cancelAnimationFrame)return window.cancelAnimationFrame(e);var t=Jt.filter((function(e){return e+"CancelAnimationFrame"in window||e+"CancelRequestAnimationFrame"in window}))[0];return t?(window[t+"CancelAnimationFrame"]||window[t+"CancelRequestAnimationFrame"]).call(this,e):clearTimeout(e)}(e.id)},en=function(e,t){var n=Date.now();var r={id:Xt((function i(){Date.now()-n>=t?e.call():r.id=Xt(i)}))};return r},tn=0!==Gt.endEvents.length,nn=["Webkit","Moz","O","ms"],rn=["-webkit-","-moz-","-o-","ms-",""];function on(e,t){for(var n=window.getComputedStyle(e,null),r="",i=0;i1&&void 0!==arguments[1]?arguments[1]:{},n=t.beforeEnter,r=t.enter,i=t.afterEnter,o=t.leave,a=t.afterLeave,s=t.appear,c=void 0===s||s,l=t.tag,u=t.nativeOn,d={props:{appear:c,css:!1},on:{beforeEnter:n||un,enter:r||function(t,n){ln(t,e+"-enter",n)},afterEnter:i||un,leave:o||function(t,n){ln(t,e+"-leave",n)},afterLeave:a||un},nativeOn:u};return l&&(d.tag=l),d};var hn,fn=n(13305);function pn(e,t){for(var n=t;n;){if(n===e)return!0;n=n.parentNode}return!1}function mn(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function vn(e){for(var t=1;t=0&&n.left>=0&&n.bottom>n.top&&n.right>n.left?n:null}function rr(e){var t,n,r;if(Xn.isWindow(e)||9===e.nodeType){var i=Xn.getWindow(e);t={left:Xn.getWindowScrollLeft(i),top:Xn.getWindowScrollTop(i)},n=Xn.viewportWidth(i),r=Xn.viewportHeight(i)}else t=Xn.offset(e),n=Xn.outerWidth(e),r=Xn.outerHeight(e);return t.width=n,t.height=r,t}function ir(e,t){var n=t.charAt(0),r=t.charAt(1),i=e.width,o=e.height,a=e.left,s=e.top;return"c"===n?s+=o/2:"b"===n&&(s+=o),"c"===r?a+=i/2:"r"===r&&(a+=i),{left:a,top:s}}function or(e,t,n,r,i){var o=ir(t,n[1]),a=ir(e,n[0]),s=[a.left-o.left,a.top-o.top];return{left:Math.round(e.left-s[0]+r[0]-i[0]),top:Math.round(e.top-s[1]+r[1]-i[1])}}function ar(e,t,n){return e.leftn.right}function sr(e,t,n){return e.topn.bottom}function cr(e,t,n){var r=[];return Xn.each(e,(function(e){r.push(e.replace(t,(function(e){return n[e]})))})),r}function lr(e,t){return e[t]=-e[t],e}function ur(e,t){return(/%$/.test(e)?parseInt(e.substring(0,e.length-1),10)/100*t:parseInt(e,10))||0}function dr(e,t){e[0]=ur(e[0],t.width),e[1]=ur(e[1],t.height)}function hr(e,t,n,r){var i=n.points,o=n.offset||[0,0],a=n.targetOffset||[0,0],s=n.overflow,c=n.source||e;o=[].concat(o),a=[].concat(a);var l={},u=0,d=nr(c,!(!(s=s||{})||!s.alwaysByViewport)),h=rr(c);dr(o,h),dr(a,t);var f=or(h,t,i,o,a),p=Xn.merge(h,f);if(d&&(s.adjustX||s.adjustY)&&r){if(s.adjustX&&ar(f,h,d)){var m=cr(i,/[lr]/gi,{l:"r",r:"l"}),v=lr(o,0),y=lr(a,0);(function(e,t,n){return e.left>n.right||e.left+t.widthn.bottom||e.top+t.height=n.left&&i.left+o.width>n.right&&(o.width-=i.left+o.width-n.right),r.adjustX&&i.left+o.width>n.right&&(i.left=Math.max(n.right-o.width,n.left)),r.adjustY&&i.top=n.top&&i.top+o.height>n.bottom&&(o.height-=i.top+o.height-n.bottom),r.adjustY&&i.top+o.height>n.bottom&&(i.top=Math.max(n.bottom-o.height,n.top)),Xn.mix(i,o)}(f,h,d,l))}return p.width!==h.width&&Xn.css(c,"width",Xn.width(c)+p.width-h.width),p.height!==h.height&&Xn.css(c,"height",Xn.height(c)+p.height-h.height),Xn.offset(c,{left:p.left,top:p.top},{useCssRight:n.useCssRight,useCssBottom:n.useCssBottom,useCssTransform:n.useCssTransform,ignoreShake:n.ignoreShake}),{points:i,offset:o,targetOffset:a,overflow:l}}function fr(e,t,n){var r=n.target||t;return hr(e,rr(r),n,!function(e,t){var n=nr(e,t),r=rr(e);return!n||r.left+r.width<=n.left||r.top+r.height<=n.top||r.left>=n.right||r.top>=n.bottom}(r,n.overflow&&n.overflow.alwaysByViewport))}fr.__getOffsetParent=er,fr.__getVisibleRectForElement=nr;function pr(e){return e&&"object"===(void 0===e?"undefined":(0,w.Z)(e))&&e.window===e}function mr(e,t){var n=Math.floor(e),r=Math.floor(t);return Math.abs(n-r)<=1}var vr=n(50361),yr=n.n(vr);function gr(e){return"function"==typeof e&&e?e():null}function _r(e){return"object"===(void 0===e?"undefined":(0,w.Z)(e))&&e?e:null}const br={props:{childrenProps:u.Z.object,align:u.Z.object.isRequired,target:u.Z.oneOfType([u.Z.func,u.Z.object]).def((function(){return window})),monitorBufferTime:u.Z.number.def(50),monitorWindowResize:u.Z.bool.def(!1),disabled:u.Z.bool.def(!1)},data:function(){return this.aligned=!1,{}},mounted:function(){var e=this;this.$nextTick((function(){e.prevProps=(0,f.Z)({},e.$props);var t=e.$props;!e.aligned&&e.forceAlign(),!t.disabled&&t.monitorWindowResize&&e.startMonitorWindowResize()}))},updated:function(){var e=this;this.$nextTick((function(){var t,n,r=e.prevProps,i=e.$props,o=!1;if(!i.disabled){var a=e.$el,s=a?a.getBoundingClientRect():null;if(r.disabled)o=!0;else{var c=gr(r.target),l=gr(i.target),u=_r(r.target),d=_r(i.target);pr(c)&&pr(l)?o=!1:(c!==l||c&&!l&&d||u&&d&&l||d&&!((t=u)===(n=d)||t&&n&&("pageX"in n&&"pageY"in n?t.pageX===n.pageX&&t.pageY===n.pageY:"clientX"in n&&"clientY"in n&&t.clientX===n.clientX&&t.clientY===n.clientY)))&&(o=!0);var h=e.sourceRect||{};o||!a||mr(h.width,s.width)&&mr(h.height,s.height)||(o=!0)}e.sourceRect=s}o&&e.forceAlign(),i.monitorWindowResize&&!i.disabled?e.startMonitorWindowResize():e.stopMonitorWindowResize(),e.prevProps=(0,f.Z)({},e.$props,{align:yr()(e.$props.align)})}))},beforeDestroy:function(){this.stopMonitorWindowResize()},methods:{startMonitorWindowResize:function(){this.resizeHandler||(this.bufferMonitor=function(e,t){var n=void 0;function r(){n&&(clearTimeout(n),n=null)}function i(){r(),n=setTimeout(e,t)}return i.clear=r,i}(this.forceAlign,this.$props.monitorBufferTime),this.resizeHandler=ae(window,"resize",this.bufferMonitor))},stopMonitorWindowResize:function(){this.resizeHandler&&(this.bufferMonitor.clear(),this.resizeHandler.remove(),this.resizeHandler=null)},forceAlign:function(){var e=this.$props,t=e.disabled,n=e.target,r=e.align;if(!t&&n){var i=this.$el,o=(0,k.CL)(this),a=void 0,s=gr(n),c=_r(n),l=document.activeElement;s?a=fr(i,s,r):c&&(a=function(e,t,n){var r,i,o=Xn.getDocument(e),a=o.defaultView||o.parentWindow,s=Xn.getWindowScrollLeft(a),c=Xn.getWindowScrollTop(a),l=Xn.viewportWidth(a),u=Xn.viewportHeight(a),d={left:r="pageX"in t?t.pageX:s+t.clientX,top:i="pageY"in t?t.pageY:c+t.clientY,width:0,height:0},h=r>=0&&r<=s+l&&i>=0&&i<=c+u,f=[n.points[0],"cc"];return hr(e,d,vn(vn({},n),{},{points:f}),h)}(i,c,r)),function(e,t){e!==document.activeElement&&pn(t,e)&&e.focus()}(l,i),this.aligned=!0,o.align&&o.align(i,a)}}},render:function(){var e=this.$props.childrenProps,t=(0,k.z9)(this)[0];return t&&e?(0,fn.Tm)(t,{props:e}):t}},Mr={props:{visible:u.Z.bool,hiddenClassName:u.Z.string},render:function(){var e=arguments[0],t=this.$props,n=t.hiddenClassName,r=(t.visible,null);if(n||!this.$slots.default||this.$slots.default.length>1){var i="";r=e("div",{class:i},[this.$slots.default])}else r=this.$slots.default[0];return r}},wr={props:{hiddenClassName:u.Z.string.def(""),prefixCls:u.Z.string,visible:u.Z.bool},render:function(){var e=arguments[0],t=this.$props,n=t.prefixCls,r=t.visible,i=t.hiddenClassName,o={on:(0,k.CL)(this)};return e("div",c()([o,{class:r?"":i}]),[e(Mr,{class:n+"-content",attrs:{visible:r}},[this.$slots.default])])}},kr={name:"VCTriggerPopup",mixins:[y.Z],props:{visible:u.Z.bool,getClassNameFromAlign:u.Z.func,getRootDomNode:u.Z.func,align:u.Z.any,destroyPopupOnHide:u.Z.bool,prefixCls:u.Z.string,getContainer:u.Z.func,transitionName:u.Z.string,animation:u.Z.any,maskAnimation:u.Z.string,maskTransitionName:u.Z.string,mask:u.Z.bool,zIndex:u.Z.number,popupClassName:u.Z.any,popupStyle:u.Z.object.def((function(){return{}})),stretch:u.Z.string,point:u.Z.shape({pageX:u.Z.number,pageY:u.Z.number})},data:function(){return this.domEl=null,{stretchChecked:!1,targetWidth:void 0,targetHeight:void 0}},mounted:function(){var e=this;this.$nextTick((function(){e.rootNode=e.getPopupDomNode(),e.setStretchSize()}))},updated:function(){var e=this;this.$nextTick((function(){e.setStretchSize()}))},beforeDestroy:function(){this.$el.parentNode?this.$el.parentNode.removeChild(this.$el):this.$el.remove&&this.$el.remove()},methods:{onAlign:function(e,t){var n=this.$props.getClassNameFromAlign(t);this.currentAlignClassName!==n&&(this.currentAlignClassName=n,e.className=this.getClassName(n));var r=(0,k.CL)(this);r.align&&r.align(e,t)},setStretchSize:function(){var e=this.$props,t=e.stretch,n=e.getRootDomNode,r=e.visible,i=this.$data,o=i.stretchChecked,a=i.targetHeight,s=i.targetWidth;if(t&&r){var c=n();if(c){var l=c.offsetHeight,u=c.offsetWidth;a===l&&s===u&&o||this.setState({stretchChecked:!0,targetHeight:l,targetWidth:u})}}else o&&this.setState({stretchChecked:!1})},getPopupDomNode:function(){return this.$refs.popupInstance?this.$refs.popupInstance.$el:null},getTargetElement:function(){return this.$props.getRootDomNode()},getAlignTarget:function(){var e=this.$props.point;return e||this.getTargetElement},getMaskTransitionName:function(){var e=this.$props,t=e.maskTransitionName,n=e.maskAnimation;return!t&&n&&(t=e.prefixCls+"-"+n),t},getTransitionName:function(){var e=this.$props,t=e.transitionName,n=e.animation;return t||("string"==typeof n?t=""+n:n&&n.props&&n.props.name&&(t=n.props.name)),t},getClassName:function(e){return this.$props.prefixCls+" "+this.$props.popupClassName+" "+e},getPopupElement:function(){var e=this,t=this.$createElement,n=this.$props,r=this.$slots,i=this.getTransitionName,o=this.$data,a=o.stretchChecked,s=o.targetHeight,c=o.targetWidth,l=n.align,u=n.visible,d=n.prefixCls,h=n.animation,p=n.popupStyle,m=n.getClassNameFromAlign,v=n.destroyPopupOnHide,y=n.stretch,g=this.getClassName(this.currentAlignClassName||m(l));u||(this.currentAlignClassName=null);var _={};y&&(-1!==y.indexOf("height")?_.height="number"==typeof s?s+"px":s:-1!==y.indexOf("minHeight")&&(_.minHeight="number"==typeof s?s+"px":s),-1!==y.indexOf("width")?_.width="number"==typeof c?c+"px":c:-1!==y.indexOf("minWidth")&&(_.minWidth="number"==typeof c?c+"px":c),a||setTimeout((function(){e.$refs.alignInstance&&e.$refs.alignInstance.forceAlign()}),0));var b={props:{prefixCls:d,visible:u},class:g,on:(0,k.CL)(this),ref:"popupInstance",style:(0,f.Z)({},_,p,this.getZIndexStyle())},M={props:{appear:!0,css:!1}},C=i(),L=!!C,x={beforeEnter:function(){},enter:function(t,n){e.$nextTick((function(){e.$refs.alignInstance?e.$refs.alignInstance.$nextTick((function(){e.domEl=t,ln(t,C+"-enter",n)})):n()}))},beforeLeave:function(){e.domEl=null},leave:function(e,t){ln(e,C+"-leave",t)}};if("object"===(void 0===h?"undefined":(0,w.Z)(h))){L=!0;var S=h.on,Z=void 0===S?{}:S,T=h.props,z=void 0===T?{}:T;M.props=(0,f.Z)({},M.props,z),M.on=(0,f.Z)({},x,Z)}else M.on=x;return L||(M={}),t("transition",M,v?[u?t(br,{attrs:{target:this.getAlignTarget(),monitorWindowResize:!0,align:l},key:"popup",ref:"alignInstance",on:{align:this.onAlign}},[t(wr,b,[r.default])]):null]:[t(br,{directives:[{name:"show",value:u}],attrs:{target:this.getAlignTarget(),monitorWindowResize:!0,disabled:!u,align:l},key:"popup",ref:"alignInstance",on:{align:this.onAlign}},[t(wr,b,[r.default])])])},getZIndexStyle:function(){var e={},t=this.$props;return void 0!==t.zIndex&&(e.zIndex=t.zIndex),e},getMaskElement:function(){var e=this.$createElement,t=this.$props,n=null;if(t.mask){var r=this.getMaskTransitionName();n=e(Mr,{directives:[{name:"show",value:t.visible}],style:this.getZIndexStyle(),key:"mask",class:t.prefixCls+"-mask",attrs:{visible:t.visible}}),r&&(n=e("transition",{attrs:{appear:!0,name:r}},[n]))}return n}},render:function(){var e=arguments[0],t=this.getMaskElement,n=this.getPopupElement;return e("div",[t(),n()])}};function Cr(e,t,n){return n?e[0]===t[0]:e[0]===t[0]&&e[1]===t[1]}function Lr(){}const xr={props:{autoMount:u.Z.bool.def(!0),autoDestroy:u.Z.bool.def(!0),visible:u.Z.bool,forceRender:u.Z.bool.def(!1),parent:u.Z.any,getComponent:u.Z.func.isRequired,getContainer:u.Z.func.isRequired,children:u.Z.func.isRequired},mounted:function(){this.autoMount&&this.renderComponent()},updated:function(){this.autoMount&&this.renderComponent()},beforeDestroy:function(){this.autoDestroy&&this.removeContainer()},methods:{removeContainer:function(){this.container&&(this._component&&this._component.$destroy(),this.container.parentNode.removeChild(this.container),this.container=null,this._component=null)},renderComponent:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=arguments[1],n=this.visible,r=this.forceRender,i=this.getContainer,o=this.parent,a=this;if(n||o._component||o.$refs._component||r){var s=this.componentEl;this.container||(this.container=i(),s=document.createElement("div"),this.componentEl=s,this.container.appendChild(s));var c={component:a.getComponent(e)};this._component?this._component.setComponent(c):this._component=new this.$root.constructor({el:s,parent:a,data:{_com:c},mounted:function(){this.$nextTick((function(){t&&t.call(a)}))},updated:function(){this.$nextTick((function(){t&&t.call(a)}))},methods:{setComponent:function(e){this.$data._com=e}},render:function(){return this.$data._com.component}})}}},render:function(){return this.children({renderComponent:this.renderComponent,removeContainer:this.removeContainer})}};r.default.use(D.Z,{name:"ant-ref"});var Sr=["click","mousedown","touchstart","mouseenter","mouseleave","focus","blur","contextmenu"];const Zr={name:"Trigger",mixins:[y.Z],props:{action:u.Z.oneOfType([u.Z.string,u.Z.arrayOf(u.Z.string)]).def([]),showAction:u.Z.any.def([]),hideAction:u.Z.any.def([]),getPopupClassNameFromAlign:u.Z.any.def((function(){return""})),afterPopupVisibleChange:u.Z.func.def(Lr),popup:u.Z.any,popupStyle:u.Z.object.def((function(){return{}})),prefixCls:u.Z.string.def("rc-trigger-popup"),popupClassName:u.Z.string.def(""),popupPlacement:u.Z.string,builtinPlacements:u.Z.object,popupTransitionName:u.Z.oneOfType([u.Z.string,u.Z.object]),popupAnimation:u.Z.any,mouseEnterDelay:u.Z.number.def(0),mouseLeaveDelay:u.Z.number.def(.1),zIndex:u.Z.number,focusDelay:u.Z.number.def(0),blurDelay:u.Z.number.def(.15),getPopupContainer:u.Z.func,getDocument:u.Z.func.def((function(){return window.document})),forceRender:u.Z.bool,destroyPopupOnHide:u.Z.bool.def(!1),mask:u.Z.bool.def(!1),maskClosable:u.Z.bool.def(!0),popupAlign:u.Z.object.def((function(){return{}})),popupVisible:u.Z.bool,defaultPopupVisible:u.Z.bool.def(!1),maskTransitionName:u.Z.oneOfType([u.Z.string,u.Z.object]),maskAnimation:u.Z.string,stretch:u.Z.string,alignPoint:u.Z.bool},provide:function(){return{vcTriggerContext:this}},inject:{vcTriggerContext:{default:function(){return{}}},savePopupRef:{default:function(){return Lr}},dialogContext:{default:function(){return null}}},data:function(){var e=this,t=this.$props,n=void 0;return n=(0,k.m2)(this,"popupVisible")?!!t.popupVisible:!!t.defaultPopupVisible,Sr.forEach((function(t){e["fire"+t]=function(n){e.fireEvents(t,n)}})),{prevPopupVisible:n,sPopupVisible:n,point:null}},watch:{popupVisible:function(e){void 0!==e&&(this.prevPopupVisible=this.sPopupVisible,this.sPopupVisible=e)}},deactivated:function(){this.setPopupVisible(!1)},mounted:function(){var e=this;this.$nextTick((function(){e.renderComponent(null),e.updatedCal()}))},updated:function(){var e=this;this.renderComponent(null,(function(){e.sPopupVisible!==e.prevPopupVisible&&e.afterPopupVisibleChange(e.sPopupVisible),e.prevPopupVisible=e.sPopupVisible})),this.$nextTick((function(){e.updatedCal()}))},beforeDestroy:function(){this.clearDelayTimer(),this.clearOutsideHandler(),clearTimeout(this.mouseDownTimeout)},methods:{updatedCal:function(){var e=this.$props;if(this.$data.sPopupVisible){var t=void 0;this.clickOutsideHandler||!this.isClickToHide()&&!this.isContextmenuToShow()||(t=e.getDocument(),this.clickOutsideHandler=ae(t,"mousedown",this.onDocumentClick)),this.touchOutsideHandler||(t=t||e.getDocument(),this.touchOutsideHandler=ae(t,"touchstart",this.onDocumentClick)),!this.contextmenuOutsideHandler1&&this.isContextmenuToShow()&&(t=t||e.getDocument(),this.contextmenuOutsideHandler1=ae(t,"scroll",this.onContextmenuClose)),!this.contextmenuOutsideHandler2&&this.isContextmenuToShow()&&(this.contextmenuOutsideHandler2=ae(window,"blur",this.onContextmenuClose))}else this.clearOutsideHandler()},onMouseenter:function(e){var t=this.$props.mouseEnterDelay;this.fireEvents("mouseenter",e),this.delaySetPopupVisible(!0,t,t?null:e)},onMouseMove:function(e){this.fireEvents("mousemove",e),this.setPoint(e)},onMouseleave:function(e){this.fireEvents("mouseleave",e),this.delaySetPopupVisible(!1,this.$props.mouseLeaveDelay)},onPopupMouseenter:function(){this.clearDelayTimer()},onPopupMouseleave:function(e){e&&e.relatedTarget&&!e.relatedTarget.setTimeout&&this._component&&this._component.getPopupDomNode&&pn(this._component.getPopupDomNode(),e.relatedTarget)||this.delaySetPopupVisible(!1,this.$props.mouseLeaveDelay)},onFocus:function(e){this.fireEvents("focus",e),this.clearDelayTimer(),this.isFocusToShow()&&(this.focusTime=Date.now(),this.delaySetPopupVisible(!0,this.$props.focusDelay))},onMousedown:function(e){this.fireEvents("mousedown",e),this.preClickTime=Date.now()},onTouchstart:function(e){this.fireEvents("touchstart",e),this.preTouchTime=Date.now()},onBlur:function(e){pn(e.target,e.relatedTarget||document.activeElement)||(this.fireEvents("blur",e),this.clearDelayTimer(),this.isBlurToHide()&&this.delaySetPopupVisible(!1,this.$props.blurDelay))},onContextmenu:function(e){e.preventDefault(),this.fireEvents("contextmenu",e),this.setPopupVisible(!0,e)},onContextmenuClose:function(){this.isContextmenuToShow()&&this.close()},onClick:function(e){if(this.fireEvents("click",e),this.focusTime){var t=void 0;if(this.preClickTime&&this.preTouchTime?t=Math.min(this.preClickTime,this.preTouchTime):this.preClickTime?t=this.preClickTime:this.preTouchTime&&(t=this.preTouchTime),Math.abs(t-this.focusTime)<20)return;this.focusTime=0}this.preClickTime=0,this.preTouchTime=0,this.isClickToShow()&&(this.isClickToHide()||this.isBlurToHide())&&e&&e.preventDefault&&e.preventDefault(),e&&e.domEvent&&e.domEvent.preventDefault();var n=!this.$data.sPopupVisible;(this.isClickToHide()&&!n||n&&this.isClickToShow())&&this.setPopupVisible(!this.$data.sPopupVisible,e)},onPopupMouseDown:function(){var e=this,t=this.vcTriggerContext,n=void 0===t?{}:t;this.hasPopupMouseDown=!0,clearTimeout(this.mouseDownTimeout),this.mouseDownTimeout=setTimeout((function(){e.hasPopupMouseDown=!1}),0),n.onPopupMouseDown&&n.onPopupMouseDown.apply(n,arguments)},onDocumentClick:function(e){if(!this.$props.mask||this.$props.maskClosable){var t=e.target;pn(this.$el,t)||this.hasPopupMouseDown||this.close()}},getPopupDomNode:function(){return this._component&&this._component.getPopupDomNode?this._component.getPopupDomNode():null},getRootDomNode:function(){return this.$el},handleGetPopupClassFromAlign:function(e){var t=[],n=this.$props,r=n.popupPlacement,i=n.builtinPlacements,o=n.prefixCls,a=n.alignPoint,s=n.getPopupClassNameFromAlign;return r&&i&&t.push(function(e,t,n,r){var i=n.points;for(var o in e)if(e.hasOwnProperty(o)&&Cr(e[o].points,i,r))return t+"-placement-"+o;return""}(i,o,e,a)),s&&t.push(s(e)),t.join(" ")},getPopupAlign:function(){var e=this.$props,t=e.popupPlacement,n=e.popupAlign,r=e.builtinPlacements;return t&&r?function(e,t,n){var r=e[t]||{};return(0,f.Z)({},r,n)}(r,t,n):n},savePopup:function(e){this._component=e,this.savePopupRef(e)},getComponent:function(){var e=this.$createElement,t=this,n={};this.isMouseEnterToShow()&&(n.mouseenter=t.onPopupMouseenter),this.isMouseLeaveToHide()&&(n.mouseleave=t.onPopupMouseleave),n.mousedown=this.onPopupMouseDown,n.touchstart=this.onPopupMouseDown;var r=t.handleGetPopupClassFromAlign,i=t.getRootDomNode,o=t.getContainer,a=t.$props,s=a.prefixCls,c=a.destroyPopupOnHide,l=a.popupClassName,u=a.action,d=a.popupAnimation,h=a.popupTransitionName,p=a.popupStyle,m=a.mask,v=a.maskAnimation,y=a.maskTransitionName,g=a.zIndex,_=a.stretch,b=a.alignPoint,M=this.$data,w=M.sPopupVisible,C=M.point,L={props:{prefixCls:s,destroyPopupOnHide:c,visible:w,point:b&&C,action:u,align:this.getPopupAlign(),animation:d,getClassNameFromAlign:r,stretch:_,getRootDomNode:i,mask:m,zIndex:g,transitionName:h,maskAnimation:v,maskTransitionName:y,getContainer:o,popupClassName:l,popupStyle:p},on:(0,f.Z)({align:(0,k.CL)(this).popupAlign||Lr},n),directives:[{name:"ant-ref",value:this.savePopup}]};return e(kr,L,[(0,k.rj)(t,"popup")])},getContainer:function(){var e=this.$props,t=this.dialogContext,n=document.createElement("div");return n.style.position="absolute",n.style.top="0",n.style.left="0",n.style.width="100%",(e.getPopupContainer?e.getPopupContainer(this.$el,t):e.getDocument().body).appendChild(n),this.popupContainer=n,n},setPopupVisible:function(e,t){var n=this.alignPoint,r=this.sPopupVisible;if(this.clearDelayTimer(),r!==e){(0,k.m2)(this,"popupVisible")||this.setState({sPopupVisible:e,prevPopupVisible:r});var i=(0,k.CL)(this);i.popupVisibleChange&&i.popupVisibleChange(e)}n&&t&&this.setPoint(t)},setPoint:function(e){this.$props.alignPoint&&e&&this.setState({point:{pageX:e.pageX,pageY:e.pageY}})},delaySetPopupVisible:function(e,t,n){var r=this,i=1e3*t;if(this.clearDelayTimer(),i){var o=n?{pageX:n.pageX,pageY:n.pageY}:null;this.delayTimer=en((function(){r.setPopupVisible(e,o),r.clearDelayTimer()}),i)}else this.setPopupVisible(e,n)},clearDelayTimer:function(){this.delayTimer&&(Qt(this.delayTimer),this.delayTimer=null)},clearOutsideHandler:function(){this.clickOutsideHandler&&(this.clickOutsideHandler.remove(),this.clickOutsideHandler=null),this.contextmenuOutsideHandler1&&(this.contextmenuOutsideHandler1.remove(),this.contextmenuOutsideHandler1=null),this.contextmenuOutsideHandler2&&(this.contextmenuOutsideHandler2.remove(),this.contextmenuOutsideHandler2=null),this.touchOutsideHandler&&(this.touchOutsideHandler.remove(),this.touchOutsideHandler=null)},createTwoChains:function(e){var t=function(){},n=(0,k.CL)(this);return this.childOriginEvents[e]&&n[e]?this["fire"+e]:t=this.childOriginEvents[e]||n[e]||t},isClickToShow:function(){var e=this.$props,t=e.action,n=e.showAction;return-1!==t.indexOf("click")||-1!==n.indexOf("click")},isContextmenuToShow:function(){var e=this.$props,t=e.action,n=e.showAction;return-1!==t.indexOf("contextmenu")||-1!==n.indexOf("contextmenu")},isClickToHide:function(){var e=this.$props,t=e.action,n=e.hideAction;return-1!==t.indexOf("click")||-1!==n.indexOf("click")},isMouseEnterToShow:function(){var e=this.$props,t=e.action,n=e.showAction;return-1!==t.indexOf("hover")||-1!==n.indexOf("mouseenter")},isMouseLeaveToHide:function(){var e=this.$props,t=e.action,n=e.hideAction;return-1!==t.indexOf("hover")||-1!==n.indexOf("mouseleave")},isFocusToShow:function(){var e=this.$props,t=e.action,n=e.showAction;return-1!==t.indexOf("focus")||-1!==n.indexOf("focus")},isBlurToHide:function(){var e=this.$props,t=e.action,n=e.hideAction;return-1!==t.indexOf("focus")||-1!==n.indexOf("blur")},forcePopupAlign:function(){this.$data.sPopupVisible&&this._component&&this._component.$refs.alignInstance&&this._component.$refs.alignInstance.forceAlign()},fireEvents:function(e,t){this.childOriginEvents[e]&&this.childOriginEvents[e](t),this.__emit(e,t)},close:function(){this.setPopupVisible(!1)}},render:function(){var e=this,t=arguments[0],n=this.sPopupVisible,r=(0,k.OU)(this.$slots.default),i=this.$props,o=i.forceRender,a=i.alignPoint;r.length>1&&re(!1,"Trigger $slots.default.length > 1, just support only one default",!0);var s=r[0];this.childOriginEvents=(0,k.Pv)(s);var c={props:{},nativeOn:{},key:"trigger"};return this.isContextmenuToShow()?c.nativeOn.contextmenu=this.onContextmenu:c.nativeOn.contextmenu=this.createTwoChains("contextmenu"),this.isClickToHide()||this.isClickToShow()?(c.nativeOn.click=this.onClick,c.nativeOn.mousedown=this.onMousedown,c.nativeOn.touchstart=this.onTouchstart):(c.nativeOn.click=this.createTwoChains("click"),c.nativeOn.mousedown=this.createTwoChains("mousedown"),c.nativeOn.touchstart=this.createTwoChains("onTouchstart")),this.isMouseEnterToShow()?(c.nativeOn.mouseenter=this.onMouseenter,a&&(c.nativeOn.mousemove=this.onMouseMove)):c.nativeOn.mouseenter=this.createTwoChains("mouseenter"),this.isMouseLeaveToHide()?c.nativeOn.mouseleave=this.onMouseleave:c.nativeOn.mouseleave=this.createTwoChains("mouseleave"),this.isFocusToShow()||this.isBlurToHide()?(c.nativeOn.focus=this.onFocus,c.nativeOn.blur=this.onBlur):(c.nativeOn.focus=this.createTwoChains("focus"),c.nativeOn.blur=function(t){!t||t.relatedTarget&&pn(t.target,t.relatedTarget)||e.createTwoChains("blur")(t)}),this.trigger=(0,fn.Tm)(s,c),t(xr,{attrs:{parent:this,visible:n,autoMount:!1,forceRender:o,getComponent:this.getComponent,getContainer:this.getContainer,children:function(t){var n=t.renderComponent;return e.renderComponent=n,e.trigger}}})}};const Tr={name:"StoreProvider",props:{store:u.Z.shape({subscribe:u.Z.func.isRequired,setState:u.Z.func.isRequired,getState:u.Z.func.isRequired}).isRequired},provide:function(){return{storeContext:this.$props}},render:function(){return this.$slots.default[0]}};var zr={adjustX:1,adjustY:1};const Or={topLeft:{points:["bl","tl"],overflow:zr,offset:[0,-7]},bottomLeft:{points:["tl","bl"],overflow:zr,offset:[0,7]},leftTop:{points:["tr","tl"],overflow:zr,offset:[-4,0]},rightTop:{points:["tl","tr"],overflow:zr,offset:[4,0]}};var Hr=0,Dr={horizontal:"bottomLeft",vertical:"rightTop","vertical-left":"rightTop","vertical-right":"leftTop"},Vr=function(e,t,n){var r=Ht(t),i=e.getState();e.setState({defaultActiveFirst:(0,f.Z)({},i.defaultActiveFirst,(0,l.Z)({},r,n))})},Pr={name:"SubMenu",props:{parentMenu:u.Z.object,title:u.Z.any,selectedKeys:u.Z.array.def([]),openKeys:u.Z.array.def([]),openChange:u.Z.func.def(zt),rootPrefixCls:u.Z.string,eventKey:u.Z.oneOfType([u.Z.string,u.Z.number]),multiple:u.Z.bool,active:u.Z.bool,isRootMenu:u.Z.bool.def(!1),index:u.Z.number,triggerSubMenuAction:u.Z.string,popupClassName:u.Z.string,getPopupContainer:u.Z.func,forceSubMenuRender:u.Z.bool,openAnimation:u.Z.oneOfType([u.Z.string,u.Z.object]),disabled:u.Z.bool,subMenuOpenDelay:u.Z.number.def(.1),subMenuCloseDelay:u.Z.number.def(.1),level:u.Z.number.def(1),inlineIndent:u.Z.number.def(24),openTransitionName:u.Z.string,popupOffset:u.Z.array,isOpen:u.Z.bool,store:u.Z.object,mode:u.Z.oneOf(["horizontal","vertical","vertical-left","vertical-right","inline"]).def("vertical"),manualRef:u.Z.func.def(zt),builtinPlacements:u.Z.object.def((function(){return{}})),itemIcon:u.Z.any,expandIcon:u.Z.any,subMenuKey:u.Z.string},mixins:[y.Z],isSubMenu:!0,data:function(){var e=this.$props,t=e.store,n=e.eventKey,r=t.getState().defaultActiveFirst,i=!1;return r&&(i=r[n]),Vr(t,n,i),{}},mounted:function(){var e=this;this.$nextTick((function(){e.handleUpdated()}))},updated:function(){var e=this;this.$nextTick((function(){e.handleUpdated()}))},beforeDestroy:function(){var e=this.eventKey;this.__emit("destroy",e),this.minWidthTimeout&&(Qt(this.minWidthTimeout),this.minWidthTimeout=null),this.mouseenterTimeout&&(Qt(this.mouseenterTimeout),this.mouseenterTimeout=null)},methods:{handleUpdated:function(){var e=this,t=this.$props,n=t.mode,r=t.parentMenu,i=t.manualRef;i&&i(this),"horizontal"===n&&r.isRootMenu&&this.isOpen&&(this.minWidthTimeout=en((function(){return e.adjustWidth()}),0))},onKeyDown:function(e){var t=e.keyCode,n=this.menuInstance,r=this.$props,i=r.store,o=r.isOpen;if(t===De.ENTER)return this.onTitleClick(e),Vr(i,this.eventKey,!0),!0;if(t===De.RIGHT)return o?n.onKeyDown(e):(this.triggerOpenChange(!0),Vr(i,this.eventKey,!0)),!0;if(t===De.LEFT){var a=void 0;if(!o)return;return(a=n.onKeyDown(e))||(this.triggerOpenChange(!1),a=!0),a}return!o||t!==De.UP&&t!==De.DOWN?void 0:n.onKeyDown(e)},onPopupVisibleChange:function(e){this.triggerOpenChange(e,e?"mouseenter":"mouseleave")},onMouseEnter:function(e){var t=this.$props,n=t.eventKey,r=t.store;Vr(r,n,!1),this.__emit("mouseenter",{key:n,domEvent:e})},onMouseLeave:function(e){var t=this.eventKey;this.parentMenu.subMenuInstance=this,this.__emit("mouseleave",{key:t,domEvent:e})},onTitleMouseEnter:function(e){var t=this.$props.eventKey;this.__emit("itemHover",{key:t,hover:!0}),this.__emit("titleMouseenter",{key:t,domEvent:e})},onTitleMouseLeave:function(e){var t=this.eventKey;this.parentMenu.subMenuInstance=this,this.__emit("itemHover",{key:t,hover:!1}),this.__emit("titleMouseleave",{key:t,domEvent:e})},onTitleClick:function(e){var t=this.$props,n=t.triggerSubMenuAction,r=t.eventKey,i=t.isOpen,o=t.store;this.__emit("titleClick",{key:r,domEvent:e}),"hover"!==n&&(this.triggerOpenChange(!i,"click"),Vr(o,r,!1))},onSubMenuClick:function(e){this.__emit("click",this.addKeyPath(e))},getPrefixCls:function(){return this.$props.rootPrefixCls+"-submenu"},getActiveClassName:function(){return this.getPrefixCls()+"-active"},getDisabledClassName:function(){return this.getPrefixCls()+"-disabled"},getSelectedClassName:function(){return this.getPrefixCls()+"-selected"},getOpenClassName:function(){return this.$props.rootPrefixCls+"-submenu-open"},saveMenuInstance:function(e){this.menuInstance=e},addKeyPath:function(e){return(0,f.Z)({},e,{keyPath:(e.keyPath||[]).concat(this.$props.eventKey)})},triggerOpenChange:function(e,t){var n=this,r=this.$props.eventKey,i=function(){n.__emit("openChange",{key:r,item:n,trigger:t,open:e})};"mouseenter"===t?this.mouseenterTimeout=en((function(){i()}),0):i()},isChildrenSelected:function(){var e={find:!1};return Vt(this.$slots.default,this.$props.selectedKeys,e),e.find},adjustWidth:function(){if(this.$refs.subMenuTitle&&this.menuInstance){var e=this.menuInstance.$el;e.offsetWidth>=this.$refs.subMenuTitle.offsetWidth||(e.style.minWidth=this.$refs.subMenuTitle.offsetWidth+"px")}},renderChildren:function(e){var t=this.$createElement,n=this.$props,r=(0,k.CL)(this),i=r.select,o=r.deselect,a=r.openChange,s={props:{mode:"horizontal"===n.mode?"vertical":n.mode,visible:n.isOpen,level:n.level+1,inlineIndent:n.inlineIndent,focusable:!1,selectedKeys:n.selectedKeys,eventKey:n.eventKey+"-menu-",openKeys:n.openKeys,openTransitionName:n.openTransitionName,openAnimation:n.openAnimation,subMenuOpenDelay:n.subMenuOpenDelay,parentMenu:this,subMenuCloseDelay:n.subMenuCloseDelay,forceSubMenuRender:n.forceSubMenuRender,triggerSubMenuAction:n.triggerSubMenuAction,builtinPlacements:n.builtinPlacements,defaultActiveFirst:n.store.getState().defaultActiveFirst[Ht(n.eventKey)],multiple:n.multiple,prefixCls:n.rootPrefixCls,manualRef:this.saveMenuInstance,itemIcon:(0,k.rj)(this,"itemIcon"),expandIcon:(0,k.rj)(this,"expandIcon"),children:e},on:{click:this.onSubMenuClick,select:i,deselect:o,openChange:a},id:this.internalMenuId},l=s.props,u=this.haveRendered;if(this.haveRendered=!0,this.haveOpened=this.haveOpened||l.visible||l.forceSubMenuRender,!this.haveOpened)return t("div");var d=u||!l.visible||"inline"===!l.mode;s.class=" "+l.prefixCls+"-sub";var h={appear:d,css:!1},p={props:h,on:{}};return l.openTransitionName?p=dn(l.openTransitionName,{appear:d}):"object"===(0,w.Z)(l.openAnimation)?(h=(0,f.Z)({},h,l.openAnimation.props||{}),d||(h.appear=!1)):"string"==typeof l.openAnimation&&(p=dn(l.openAnimation,{appear:d})),"object"===(0,w.Z)(l.openAnimation)&&l.openAnimation.on&&(p.on=l.openAnimation.on),t("transition",p,[t(Br,c()([{directives:[{name:"show",value:n.isOpen}]},s]))])}},render:function(){var e,t,n=arguments[0],r=this.$props,i=this.rootPrefixCls,o=this.parentMenu,a=r.isOpen,s=this.getPrefixCls(),u="inline"===r.mode,d=(e={},(0,l.Z)(e,s,!0),(0,l.Z)(e,s+"-"+r.mode,!0),(0,l.Z)(e,this.getOpenClassName(),a),(0,l.Z)(e,this.getActiveClassName(),r.active||a&&!u),(0,l.Z)(e,this.getDisabledClassName(),r.disabled),(0,l.Z)(e,this.getSelectedClassName(),this.isChildrenSelected()),e);this.internalMenuId||(r.eventKey?this.internalMenuId=r.eventKey+"$Menu":this.internalMenuId="$__$"+ ++Hr+"$Menu");var h={},m={},v={};r.disabled||(h={mouseleave:this.onMouseLeave,mouseenter:this.onMouseEnter},m={click:this.onTitleClick},v={mouseenter:this.onTitleMouseEnter,mouseleave:this.onTitleMouseLeave});var y={};u&&(y.paddingLeft=r.inlineIndent*r.level+"px");var g={};a&&(g={"aria-owns":this.internalMenuId});var _={attrs:(0,f.Z)({"aria-expanded":a},g,{"aria-haspopup":"true",title:"string"==typeof r.title?r.title:void 0}),on:(0,f.Z)({},v,m),style:y,class:s+"-title",ref:"subMenuTitle"},b=null;"horizontal"!==r.mode&&(b=(0,k.rj)(this,"expandIcon",r));var M=n("div",_,[(0,k.rj)(this,"title"),b||n("i",{class:s+"-arrow"})]),w=this.renderChildren((0,k.OU)(this.$slots.default)),C=this.parentMenu.isRootMenu?this.parentMenu.getPopupContainer:function(e){return e.parentNode},L=Dr[r.mode],x=r.popupOffset?{offset:r.popupOffset}:{},S="inline"===r.mode?"":r.popupClassName,Z={on:(0,f.Z)({},p((0,k.CL)(this),["click"]),h),class:d};return n("li",c()([Z,{attrs:{role:"menuitem"}}]),[u&&M,u&&w,!u&&n(Zr,{attrs:(t={prefixCls:s,popupClassName:s+"-popup "+i+"-"+o.theme+" "+(S||""),getPopupContainer:C,builtinPlacements:Or},(0,l.Z)(t,"builtinPlacements",(0,f.Z)({},Or,r.builtinPlacements)),(0,l.Z)(t,"popupPlacement",L),(0,l.Z)(t,"popupVisible",a),(0,l.Z)(t,"popupAlign",x),(0,l.Z)(t,"action",r.disabled?[]:[r.triggerSubMenuAction]),(0,l.Z)(t,"mouseEnterDelay",r.subMenuOpenDelay),(0,l.Z)(t,"mouseLeaveDelay",r.subMenuCloseDelay),(0,l.Z)(t,"forceRender",r.forceSubMenuRender),t),on:{popupVisibleChange:this.onPopupVisibleChange}},[n("template",{slot:"popup"},[w]),M])])}},Yr=dt((function(e,t){var n=e.openKeys,r=e.activeKey,i=e.selectedKeys,o=t.eventKey,a=t.subMenuKey;return{isOpen:n.indexOf(o)>-1,active:r[a]===o,selectedKeys:i}}))(Pr);Yr.isSubMenu=!0;const Ar=Yr;var jr=!("undefined"==typeof window||!window.document||!window.document.createElement),Er="menuitem-overflowed";jr&&n(98394);var $r={name:"DOMWrap",mixins:[y.Z],data:function(){return this.resizeObserver=null,this.mutationObserver=null,this.originalTotalWidth=0,this.overflowedItems=[],this.menuItemSizes=[],{lastVisibleIndex:void 0}},mounted:function(){var e=this;this.$nextTick((function(){if(e.setChildrenWidthAndResize(),1===e.level&&"horizontal"===e.mode){var t=e.$el;if(!t)return;e.resizeObserver=new m.Z((function(t){t.forEach(e.setChildrenWidthAndResize)})),[].slice.call(t.children).concat(t).forEach((function(t){e.resizeObserver.observe(t)})),"undefined"!=typeof MutationObserver&&(e.mutationObserver=new MutationObserver((function(){e.resizeObserver.disconnect(),[].slice.call(t.children).concat(t).forEach((function(t){e.resizeObserver.observe(t)})),e.setChildrenWidthAndResize()})),e.mutationObserver.observe(t,{attributes:!1,childList:!0,subTree:!1}))}}))},beforeDestroy:function(){this.resizeObserver&&this.resizeObserver.disconnect(),this.mutationObserver&&this.mutationObserver.disconnect()},methods:{getMenuItemNodes:function(){var e=this.$props.prefixCls,t=this.$el;return t?[].slice.call(t.children).filter((function(t){return t.className.split(" ").indexOf(e+"-overflowed-submenu")<0})):[]},getOverflowedSubMenuItem:function(e,t,n){var r=this.$createElement,i=this.$props,o=i.overflowedIndicator,a=i.level,s=i.mode,c=i.prefixCls,l=i.theme;if(1!==a||"horizontal"!==s)return null;var u=this.$slots.default[0],d=(0,k.TW)(u),h=(d.title,(0,Oe.Z)(d,["title"])),p=(0,k.vw)(u),m={},v=e+"-overflowed-indicator",y=e+"-overflowed-indicator";0===t.length&&!0!==n?m={display:"none"}:n&&(m={visibility:"hidden",position:"absolute"},v+="-placeholder",y+="-placeholder");var g=l?c+"-"+l:"",_={},b={};Pt.props.forEach((function(e){void 0!==h[e]&&(_[e]=h[e])})),Pt.on.forEach((function(e){void 0!==p[e]&&(b[e]=p[e])}));var M={props:(0,f.Z)({title:o,popupClassName:g},_,{eventKey:y,disabled:!1}),class:c+"-overflowed-submenu",key:v,style:m,on:b};return r(Ar,M,[t])},setChildrenWidthAndResize:function(){if("horizontal"===this.mode){var e=this.$el;if(e){var t=e.children;if(t&&0!==t.length){var n=e.children[t.length-1];At(n,"display","inline-block");var r=this.getMenuItemNodes(),i=r.filter((function(e){return e.className.split(" ").indexOf(Er)>=0}));i.forEach((function(e){At(e,"display","inline-block")})),this.menuItemSizes=r.map((function(e){return Yt(e)})),i.forEach((function(e){At(e,"display","none")})),this.overflowedIndicatorWidth=Yt(e.children[e.children.length-1]),this.originalTotalWidth=this.menuItemSizes.reduce((function(e,t){return e+t}),0),this.handleResize(),At(n,"display","none")}}}},handleResize:function(){var e=this;if("horizontal"===this.mode){var t=this.$el;if(t){var n=Yt(t);this.overflowedItems=[];var r=0,i=void 0;this.originalTotalWidth>n+.5&&(i=-1,this.menuItemSizes.forEach((function(t){(r+=t)+e.overflowedIndicatorWidth<=n&&(i+=1)}))),this.setState({lastVisibleIndex:i})}}},renderChildren:function(e){var t=this,n=this.$data.lastVisibleIndex,r=(0,k.ll)(this);return(e||[]).reduce((function(i,o,a){var s=o,c=(0,k.TW)(o).eventKey;if("horizontal"===t.mode){var l=t.getOverflowedSubMenuItem(c,[]);void 0!==n&&-1!==r[t.prefixCls+"-root"]&&(a>n&&(s=(0,fn.Tm)(o,{style:{display:"none"},props:{eventKey:c+"-hidden"},class:Er})),a===n+1&&(t.overflowedItems=e.slice(n+1).map((function(e){return(0,fn.Tm)(e,{key:(0,k.TW)(e).eventKey,props:{mode:"vertical-left"}})})),l=t.getOverflowedSubMenuItem(c,t.overflowedItems)));var u=[].concat((0,g.Z)(i),[l,s]);return a===e.length-1&&u.push(t.getOverflowedSubMenuItem(c,[],!0)),u}return[].concat((0,g.Z)(i),[s])}),[])}},render:function(){var e=arguments[0],t=this.$props.tag,n={on:(0,k.CL)(this)};return e(t,n,[this.renderChildren(this.$slots.default)])}};$r.props={mode:u.Z.oneOf(["horizontal","vertical","vertical-left","vertical-right","inline"]),prefixCls:u.Z.string,level:u.Z.number,theme:u.Z.string,overflowedIndicator:u.Z.node,visible:u.Z.bool,hiddenClassName:u.Z.string,tag:u.Z.string.def("div")};const Fr=$r;function Ir(e,t,n){var r=e.getState();e.setState({activeKey:(0,f.Z)({},r.activeKey,(0,l.Z)({},t,n))})}function Nr(e){return e.eventKey||"0-menu-"}function Rr(e,t){if(t){var n=this.instanceArrayKeyIndexMap[e];this.instanceArray[n]=t}}function Wr(e,t){var n=t,r=e.eventKey,i=e.defaultActiveFirst,o=e.children;if(null!=n){var a=void 0;if(Dt(o,(function(e,t){var i=e.componentOptions.propsData||{};e&&!i.disabled&&n===Ot(e,r,t)&&(a=!0)})),a)return n}return n=null,i?(Dt(o,(function(e,t){var i=e.componentOptions.propsData||{};null==n&&e&&!i.disabled&&(n=Ot(e,r,t))})),n):n}var Kr={name:"SubPopupMenu",props:(0,k.SQ)({prefixCls:u.Z.string,openTransitionName:u.Z.string,openAnimation:u.Z.oneOfType([u.Z.string,u.Z.object]),openKeys:u.Z.arrayOf(u.Z.oneOfType([u.Z.string,u.Z.number])),visible:u.Z.bool,parentMenu:u.Z.object,eventKey:u.Z.string,store:u.Z.object,forceSubMenuRender:u.Z.bool,focusable:u.Z.bool,multiple:u.Z.bool,defaultActiveFirst:u.Z.bool,activeKey:u.Z.oneOfType([u.Z.string,u.Z.number]),selectedKeys:u.Z.arrayOf(u.Z.oneOfType([u.Z.string,u.Z.number])),defaultSelectedKeys:u.Z.arrayOf(u.Z.oneOfType([u.Z.string,u.Z.number])),defaultOpenKeys:u.Z.arrayOf(u.Z.oneOfType([u.Z.string,u.Z.number])),level:u.Z.number,mode:u.Z.oneOf(["horizontal","vertical","vertical-left","vertical-right","inline"]),triggerSubMenuAction:u.Z.oneOf(["click","hover"]),inlineIndent:u.Z.oneOfType([u.Z.number,u.Z.string]),manualRef:u.Z.func,itemIcon:u.Z.any,expandIcon:u.Z.any,overflowedIndicator:u.Z.any,children:u.Z.any.def([]),__propsSymbol__:u.Z.any},{prefixCls:"rc-menu",mode:"vertical",level:1,inlineIndent:24,visible:!0,focusable:!0,manualRef:zt}),mixins:[y.Z],created:function(){var e=(0,k.oZ)(this);this.prevProps=(0,f.Z)({},e),e.store.setState({activeKey:(0,f.Z)({},e.store.getState().activeKey,(0,l.Z)({},e.eventKey,Wr(e,e.activeKey)))}),this.instanceArray=[]},mounted:function(){this.manualRef&&this.manualRef(this)},updated:function(){var e=(0,k.oZ)(this),t=this.prevProps,n="activeKey"in e?e.activeKey:e.store.getState().activeKey[Nr(e)],r=Wr(e,n);if(r!==n)Ir(e.store,Nr(e),r);else if("activeKey"in t){r!==Wr(t,t.activeKey)&&Ir(e.store,Nr(e),r)}this.prevProps=(0,f.Z)({},e)},methods:{onKeyDown:function(e,t){var n=e.keyCode,r=void 0;if(this.getFlatInstanceArray().forEach((function(t){t&&t.active&&t.onKeyDown&&(r=t.onKeyDown(e))})),r)return 1;var i=null;return n!==De.UP&&n!==De.DOWN||(i=this.step(n===De.UP?-1:1)),i?(e.preventDefault(),Ir(this.$props.store,Nr(this.$props),i.eventKey),"function"==typeof t&&t(i),1):void 0},onItemHover:function(e){var t=e.key,n=e.hover;Ir(this.$props.store,Nr(this.$props),n?t:null)},onDeselect:function(e){this.__emit("deselect",e)},onSelect:function(e){this.__emit("select",e)},onClick:function(e){this.__emit("click",e)},onOpenChange:function(e){this.__emit("openChange",e)},onDestroy:function(e){this.__emit("destroy",e)},getFlatInstanceArray:function(){return this.instanceArray},getOpenTransitionName:function(){return this.$props.openTransitionName},step:function(e){var t=this.getFlatInstanceArray(),n=this.$props.store.getState().activeKey[Nr(this.$props)],r=t.length;if(!r)return null;e<0&&(t=t.concat().reverse());var i=-1;if(t.every((function(e,t){return!e||e.eventKey!==n||(i=t,!1)})),this.defaultActiveFirst||-1===i||(o=t.slice(i,r-1)).length&&!o.every((function(e){return!!e.disabled}))){var o,a=(i+1)%r,s=a;do{var c=t[s];if(c&&!c.disabled)return c;s=(s+1)%r}while(s!==a);return null}},getIcon:function(e,t){if(e.$createElement){var n=e[t];return void 0!==n?n:e.$slots[t]||e.$scopedSlots[t]}var r=(0,k.TW)(e)[t];if(void 0!==r)return r;var i=[];return((e.componentOptions||{}).children||[]).forEach((function(e){e.data&&e.data.slot===t&&("template"===e.tag?i.push(e.children):i.push(e))})),i.length?i:void 0},renderCommonMenuItem:function(e,t,n){var r=this;if(void 0===e.tag)return e;var i=this.$props.store.getState(),o=this.$props,a=Ot(e,o.eventKey,t),s=e.componentOptions.propsData||{},c=a===i.activeKey[Nr(this.$props)];s.disabled||(this.instanceArrayKeyIndexMap[a]=Object.keys(this.instanceArrayKeyIndexMap).length);var l=(0,k.vw)(e),u={props:(0,f.Z)({mode:s.mode||o.mode,level:o.level,inlineIndent:o.inlineIndent,renderMenuItem:this.renderMenuItem,rootPrefixCls:o.prefixCls,index:t,parentMenu:o.parentMenu,manualRef:s.disabled?zt:Rr.bind(this,a),eventKey:a,active:!s.disabled&&c,multiple:o.multiple,openTransitionName:this.getOpenTransitionName(),openAnimation:o.openAnimation,subMenuOpenDelay:o.subMenuOpenDelay,subMenuCloseDelay:o.subMenuCloseDelay,forceSubMenuRender:o.forceSubMenuRender,builtinPlacements:o.builtinPlacements,itemIcon:this.getIcon(e,"itemIcon")||this.getIcon(this,"itemIcon"),expandIcon:this.getIcon(e,"expandIcon")||this.getIcon(this,"expandIcon")},n),on:{click:function(e){(l.click||zt)(e),r.onClick(e)},itemHover:this.onItemHover,openChange:this.onOpenChange,deselect:this.onDeselect,select:this.onSelect}};return("inline"===o.mode||Tt.any)&&(u.props.triggerSubMenuAction="click"),(0,fn.Tm)(e,u)},renderMenuItem:function(e,t,n){if(!e)return null;var r=this.$props.store.getState(),i={openKeys:r.openKeys,selectedKeys:r.selectedKeys,triggerSubMenuAction:this.triggerSubMenuAction,isRootMenu:!1,subMenuKey:n};return this.renderCommonMenuItem(e,t,i)}},render:function(){var e=this,t=arguments[0],n=(0,Oe.Z)(this.$props,[]),r=n.eventKey,i=n.prefixCls,o=n.visible,a=n.level,s=n.mode,c=n.theme;this.instanceArray=[],this.instanceArrayKeyIndexMap={};var l=h()(n.prefixCls,n.prefixCls+"-"+n.mode),u={props:{tag:"ul",visible:o,prefixCls:i,level:a,mode:s,theme:c,overflowedIndicator:(0,k.rj)(this,"overflowedIndicator")},attrs:{role:n.role||"menu"},class:l,on:p((0,k.CL)(this),["click"])};return n.focusable&&(u.attrs.tabIndex="0",u.on.keydown=this.onKeyDown),t(Fr,u,[n.children.map((function(t,n){return e.renderMenuItem(t,n,r||"0-menu-")}))])}};const Br=dt()(Kr),Ur={prefixCls:u.Z.string.def("rc-menu"),focusable:u.Z.bool.def(!0),multiple:u.Z.bool,defaultActiveFirst:u.Z.bool,visible:u.Z.bool.def(!0),activeKey:u.Z.oneOfType([u.Z.string,u.Z.number]),selectedKeys:u.Z.arrayOf(u.Z.oneOfType([u.Z.string,u.Z.number])),defaultSelectedKeys:u.Z.arrayOf(u.Z.oneOfType([u.Z.string,u.Z.number])).def([]),defaultOpenKeys:u.Z.arrayOf(u.Z.oneOfType([u.Z.string,u.Z.number])).def([]),openKeys:u.Z.arrayOf(u.Z.oneOfType([u.Z.string,u.Z.number])),openAnimation:u.Z.oneOfType([u.Z.string,u.Z.object]),mode:u.Z.oneOf(["horizontal","vertical","vertical-left","vertical-right","inline"]).def("vertical"),triggerSubMenuAction:u.Z.string.def("hover"),subMenuOpenDelay:u.Z.number.def(.1),subMenuCloseDelay:u.Z.number.def(.1),level:u.Z.number.def(1),inlineIndent:u.Z.number.def(24),theme:u.Z.oneOf(["light","dark"]).def("light"),getPopupContainer:u.Z.func,openTransitionName:u.Z.string,forceSubMenuRender:u.Z.bool,selectable:u.Z.bool,isRootMenu:u.Z.bool.def(!0),builtinPlacements:u.Z.object.def((function(){return{}})),itemIcon:u.Z.any,expandIcon:u.Z.any,overflowedIndicator:u.Z.any};const qr={name:"Menu",props:(0,f.Z)({},Ur,{selectable:u.Z.bool.def(!0)}),mixins:[y.Z],data:function(){var e,t,n,r=(0,k.oZ)(this),i=r.defaultSelectedKeys,o=r.defaultOpenKeys;return"selectedKeys"in r&&(i=r.selectedKeys||[]),"openKeys"in r&&(o=r.openKeys||[]),this.store=(e={selectedKeys:i,openKeys:o,activeKey:{"0-menu-":Wr((0,f.Z)({},r,{children:this.$slots.default||[]}),r.activeKey)}},t=e,n=[],{setState:function(e){t=(0,f.Z)({},t,e);for(var r=0;r-1}function fi(e,t){if(!ni(t)&&!function(e){return e.multiple}(t)&&"string"!=typeof e)throw new Error("Invalid `value` of type `"+(void 0===e?"undefined":(0,w.Z)(e))+"` supplied to Option, expected `string` when `tags/combobox` is `true`.")}function pi(e,t){return function(n){e[t]=n}}const mi={name:"DropdownMenu",mixins:[y.Z],props:{ariaId:u.Z.string,defaultActiveFirstOption:u.Z.bool,value:u.Z.any,dropdownMenuStyle:u.Z.object,multiple:u.Z.bool,prefixCls:u.Z.string,menuItems:u.Z.any,inputValue:u.Z.string,visible:u.Z.bool,backfillValue:u.Z.any,firstActiveValue:u.Z.string,menuItemSelectedIcon:u.Z.any},watch:{visible:function(e){var t=this;e?this.$nextTick((function(){t.scrollActiveItemToView()})):this.lastVisible=e}},created:function(){this.rafInstance=null,this.lastInputValue=this.$props.inputValue,this.lastVisible=!1},mounted:function(){var e=this;this.$nextTick((function(){e.scrollActiveItemToView()})),this.lastVisible=this.$props.visible},updated:function(){var e=this.$props;this.lastVisible=e.visible,this.lastInputValue=e.inputValue,this.prevVisible=this.visible},beforeDestroy:function(){this.rafInstance&&b().cancel(this.rafInstance)},methods:{scrollActiveItemToView:function(){var e=this,t=this.firstActiveItem&&this.firstActiveItem.$el,n=this.$props,r=n.value,i=n.visible,o=n.firstActiveValue;if(t&&i){var a={onlyScrollIfNeeded:!0};r&&0!==r.length||!o||(a.alignWithTop=!0),this.rafInstance=b()((function(){it(t,e.$refs.menuRef.$el,a)}))}},renderMenu:function(){var e=this,t=this.$createElement,n=this.$props,r=n.menuItems,i=n.defaultActiveFirstOption,o=n.value,a=n.prefixCls,s=n.multiple,c=n.inputValue,l=n.firstActiveValue,u=n.dropdownMenuStyle,d=n.backfillValue,h=n.visible,p=(0,k.rj)(this,"menuItemSelectedIcon"),m=(0,k.CL)(this),v=m.menuDeselect,y=m.menuSelect,g=m.popupScroll;if(r&&r.length){var _=ci(r,o),b={props:{multiple:s,itemIcon:s?p:null,selectedKeys:_,prefixCls:a+"-menu"},on:{},style:u,ref:"menuRef",attrs:{role:"listbox"}};g&&(b.on.scroll=g),s?(b.on.deselect=v,b.on.select=y):b.on.click=y;var M={},w=i,C=r;if(_.length||l){n.visible&&!this.lastVisible?M.activeKey=_[0]||l:h||(_[0]&&(w=!1),M.activeKey=void 0);var L=!1,x=function(t){return!L&&-1!==_.indexOf(t.key)||!L&&!_.length&&-1!==l.indexOf(t.key)?(L=!0,(0,fn.Tm)(t,{directives:[{name:"ant-ref",value:function(t){e.firstActiveItem=t}}]})):t};C=r.map((function(e){if((0,k.cV)(e).isMenuItemGroup){var t=e.componentOptions.children.map(x);return(0,fn.Tm)(e,{children:t})}return x(e)}))}else this.firstActiveItem=null;var S=o&&o[o.length-1];return c===this.lastInputValue||S&&S===d||(M.activeKey=""),b.props=(0,f.Z)({},M,b.props,{defaultActiveFirst:w}),t(qr,b,[C])}return null}},render:function(){var e=arguments[0],t=this.renderMenu(),n=(0,k.CL)(this),r=n.popupFocus,i=n.popupScroll;return t?e("div",{style:{overflow:"auto",transform:"translateZ(0)"},attrs:{id:this.$props.ariaId,tabIndex:"-1"},on:{focus:r,mousedown:oi,scroll:i},ref:"menuContainer"},[t]):null}};var vi={bottomLeft:{points:["tl","bl"],offset:[0,4],overflow:{adjustX:0,adjustY:1}},topLeft:{points:["bl","tl"],offset:[0,-4],overflow:{adjustX:0,adjustY:1}}};const yi={name:"SelectTrigger",mixins:[y.Z],props:{dropdownMatchSelectWidth:u.Z.bool,defaultActiveFirstOption:u.Z.bool,dropdownAlign:u.Z.object,visible:u.Z.bool,disabled:u.Z.bool,showSearch:u.Z.bool,dropdownClassName:u.Z.string,dropdownStyle:u.Z.object,dropdownMenuStyle:u.Z.object,multiple:u.Z.bool,inputValue:u.Z.string,filterOption:u.Z.any,empty:u.Z.bool,options:u.Z.any,prefixCls:u.Z.string,popupClassName:u.Z.string,value:u.Z.array,showAction:u.Z.arrayOf(u.Z.string),combobox:u.Z.bool,animation:u.Z.string,transitionName:u.Z.string,getPopupContainer:u.Z.func,backfillValue:u.Z.any,menuItemSelectedIcon:u.Z.any,dropdownRender:u.Z.func,ariaId:u.Z.string},data:function(){return{dropdownWidth:0}},created:function(){this.rafInstance=null,this.saveDropdownMenuRef=pi(this,"dropdownMenuRef"),this.saveTriggerRef=pi(this,"triggerRef")},mounted:function(){var e=this;this.$nextTick((function(){e.setDropdownWidth()}))},updated:function(){var e=this;this.$nextTick((function(){e.setDropdownWidth()}))},beforeDestroy:function(){this.cancelRafInstance()},methods:{setDropdownWidth:function(){var e=this;this.cancelRafInstance(),this.rafInstance=b()((function(){var t=e.$el.offsetWidth;t!==e.dropdownWidth&&e.setState({dropdownWidth:t})}))},cancelRafInstance:function(){this.rafInstance&&b().cancel(this.rafInstance)},getInnerMenu:function(){return this.dropdownMenuRef&&this.dropdownMenuRef.$refs.menuRef},getPopupDOMNode:function(){return this.triggerRef.getPopupDomNode()},getDropdownElement:function(e){var t=this.$createElement,n=this.value,r=this.firstActiveValue,i=this.defaultActiveFirstOption,o=this.dropdownMenuStyle,a=this.getDropdownPrefixCls,s=this.backfillValue,c=this.menuItemSelectedIcon,l=(0,k.CL)(this),u=l.menuSelect,d=l.menuDeselect,h=l.popupScroll,p=this.$props,m=p.dropdownRender,v=p.ariaId,y={props:(0,f.Z)({},e.props,{ariaId:v,prefixCls:a(),value:n,firstActiveValue:r,defaultActiveFirstOption:i,dropdownMenuStyle:o,backfillValue:s,menuItemSelectedIcon:c}),on:(0,f.Z)({},e.on,{menuSelect:u,menuDeselect:d,popupScroll:h}),directives:[{name:"ant-ref",value:this.saveDropdownMenuRef}]},g=t(mi,y);return m?m(g,p):null},getDropdownTransitionName:function(){var e=this.$props,t=e.transitionName;return!t&&e.animation&&(t=this.getDropdownPrefixCls()+"-"+e.animation),t},getDropdownPrefixCls:function(){return this.prefixCls+"-dropdown"}},render:function(){var e,t=arguments[0],n=this.$props,r=this.$slots,i=n.multiple,o=n.visible,a=n.inputValue,s=n.dropdownAlign,c=n.disabled,u=n.showSearch,d=n.dropdownClassName,p=n.dropdownStyle,m=n.dropdownMatchSelectWidth,v=n.options,y=n.getPopupContainer,g=n.showAction,_=n.empty,b=(0,k.CL)(this),M=b.mouseenter,w=b.mouseleave,C=b.popupFocus,L=b.dropdownVisibleChange,x=this.getDropdownPrefixCls(),S=(e={},(0,l.Z)(e,d,!!d),(0,l.Z)(e,x+"--"+(i?"multiple":"single"),1),(0,l.Z)(e,x+"--empty",_),e),Z=this.getDropdownElement({props:{menuItems:v,multiple:i,inputValue:a,visible:o},on:{popupFocus:C}}),T=void 0;T=c?[]:ni(n)&&!u?["click"]:["blur"];var z=(0,f.Z)({},p),O=m?"width":"minWidth";this.dropdownWidth&&(z[O]=this.dropdownWidth+"px");var H={props:(0,f.Z)({},n,{showAction:c?[]:g,hideAction:T,ref:"triggerRef",popupPlacement:"bottomLeft",builtinPlacements:vi,prefixCls:x,popupTransitionName:this.getDropdownTransitionName(),popupAlign:s,popupVisible:o,getPopupContainer:y,popupClassName:h()(S),popupStyle:z}),on:{popupVisibleChange:L},directives:[{name:"ant-ref",value:this.saveTriggerRef}]};return M&&(H.on.mouseenter=M),w&&(H.on.mouseleave=w),t(Zr,H,[r.default,t("template",{slot:"popup"},[Z])])}};var gi={defaultActiveFirstOption:u.Z.bool,multiple:u.Z.bool,filterOption:u.Z.any,showSearch:u.Z.bool,disabled:u.Z.bool,allowClear:u.Z.bool,showArrow:u.Z.bool,tags:u.Z.bool,prefixCls:u.Z.string,transitionName:u.Z.string,optionLabelProp:u.Z.string,optionFilterProp:u.Z.string,animation:u.Z.string,choiceTransitionName:u.Z.string,open:u.Z.bool,defaultOpen:u.Z.bool,placeholder:u.Z.any,labelInValue:u.Z.bool,loading:u.Z.bool,value:u.Z.any,defaultValue:u.Z.any,dropdownStyle:u.Z.object,dropdownClassName:u.Z.string,maxTagTextLength:u.Z.number,maxTagCount:u.Z.number,maxTagPlaceholder:u.Z.any,tokenSeparators:u.Z.arrayOf(u.Z.string),getInputElement:u.Z.func,showAction:u.Z.arrayOf(u.Z.string),autoFocus:u.Z.bool,getPopupContainer:u.Z.func,clearIcon:u.Z.any,inputIcon:u.Z.any,removeIcon:u.Z.any,menuItemSelectedIcon:u.Z.any,dropdownRender:u.Z.func,mode:u.Z.oneOf(["multiple","tags"]),backfill:u.Z.bool,dropdownAlign:u.Z.any,dropdownMatchSelectWidth:u.Z.bool,dropdownMenuStyle:u.Z.object,notFoundContent:u.Z.oneOfType([String,Number]),tabIndex:u.Z.oneOfType([String,Number])},_i="undefined"!=typeof window,bi="undefined"!=typeof WXEnvironment&&!!WXEnvironment.platform&&WXEnvironment.platform.toLowerCase(),Mi=_i&&window.navigator.userAgent.toLowerCase(),wi=Mi&&/msie|trident/.test(Mi),ki=(Mi&&Mi.indexOf("msie 9.0"),Mi&&Mi.indexOf("edge/")>0);Mi&&Mi.indexOf("android"),Mi&&/iphone|ipad|ipod|ios/.test(Mi),Mi&&/chrome\/\d+/.test(Mi),Mi&&/phantomjs/.test(Mi),Mi&&Mi.match(/firefox\/(\d+)/);r.default.use(D.Z,{name:"ant-ref"});var Ci=function(){return null};function Li(){for(var e=arguments.length,t=Array(e),n=0;n0&&void 0!==arguments[0]?arguments[0]:[],n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:[];return t.forEach((function(t){t.data&&void 0===t.data.slot&&((0,k.cV)(t).isSelectOptGroup?e.getOptionsFromChildren(t.componentOptions.children,n):n.push(t))})),n},getInputValueForCombobox:function(e,t,n){var r=[];if("value"in e&&!n&&(r=ri(e.value)),"defaultValue"in e&&n&&(r=ri(e.defaultValue)),!r.length)return"";var i=r=r[0];return e.labelInValue?i=r.label:t[ii(r)]&&(i=t[ii(r)].label),void 0===i&&(i=""),i},getLabelFromOption:function(e,t){return Xr(t,e.optionLabelProp)},getOptionsInfoFromProps:function(e,t){var n=this,r=this.getOptionsFromChildren(this.$props.children),i={};if(r.forEach((function(t){var r=Jr(t);i[ii(r)]={option:t,value:r,label:n.getLabelFromOption(e,t),title:(0,k.TV)(t,"title"),disabled:(0,k.TV)(t,"disabled")}})),t){var o=t._optionsInfo,a=t._value;a&&a.forEach((function(e){var t=ii(e);i[t]||void 0===o[t]||(i[t]=o[t])}))}return i},getValueFromProps:function(e,t){var n=[];return"value"in e&&!t&&(n=ri(e.value)),"defaultValue"in e&&t&&(n=ri(e.defaultValue)),e.labelInValue&&(n=n.map((function(e){return e.key}))),n},onInputChange:function(e){var t=e.target,n=t.value,r=t.composing,i=this.$data._inputValue,o=void 0===i?"":i;if(e.isComposing||r||o===n)this.setState({_mirrorInputValue:n});else{var a=this.$props.tokenSeparators;if(ei(this.$props)&&a.length&&function(e,t){for(var n=0;n0)return!0;return!1}(n,a)){var s=this.getValueByInput(n);return void 0!==s&&this.fireChange(s),this.setOpenState(!1,{needFocus:!0}),void this.setInputValue("",!1)}this.setInputValue(n),this.setState({_open:!0}),Qr(this.$props)&&this.fireChange([n])}},onDropdownVisibleChange:function(e){e&&!this._focused&&(this.clearBlurTime(),this.timeoutFocus(),this._focused=!0,this.updateFocusClassName()),this.setOpenState(e)},onKeyDown:function(e){var t=this.$data._open;if(!this.$props.disabled){var n=e.keyCode;t&&!this.getInputDOMNode()?this.onInputKeydown(e):n===De.ENTER||n===De.DOWN?(n!==De.ENTER||ei(this.$props)?t||this.setOpenState(!0):this.maybeFocus(!0),e.preventDefault()):n===De.SPACE&&(t||(this.setOpenState(!0),e.preventDefault()))}},onInputKeydown:function(e){var t=this,n=this.$props,r=n.disabled,i=n.combobox,o=n.defaultActiveFirstOption;if(!r){var a=this.$data,s=this.getRealOpenState(a),c=e.keyCode;if(!ei(this.$props)||e.target.value||c!==De.BACKSPACE){if(c===De.DOWN){if(!a._open)return this.openIfHasChildren(),e.preventDefault(),void e.stopPropagation()}else if(c===De.ENTER&&a._open)!s&&i||e.preventDefault(),s&&i&&!1===o&&(this.comboboxTimer=setTimeout((function(){t.setOpenState(!1)})));else if(c===De.ESC)return void(a._open&&(this.setOpenState(!1),e.preventDefault(),e.stopPropagation()));if(s&&this.selectTriggerRef){var l=this.selectTriggerRef.getInnerMenu();l&&l.onKeyDown(e,this.handleBackfill)&&(e.preventDefault(),e.stopPropagation())}}else{e.preventDefault();var u=a._value;u.length&&this.removeSelected(u[u.length-1])}}},onMenuSelect:function(e){var t=e.item;if(t){var n=this.$data._value,r=this.$props,i=Jr(t),o=n[n.length-1],a=!1;if(ei(r)?-1!==ai(n,i)?a=!0:n=n.concat([i]):Qr(r)||void 0===o||o!==i||i===this.$data._backfillValue?(n=[i],this.setOpenState(!1,{needFocus:!0,fireSearch:!1})):(this.setOpenState(!1,{needFocus:!0,fireSearch:!1}),a=!0),a||this.fireChange(n),!a){this.fireSelect(i);var s=Qr(r)?Xr(t,r.optionLabelProp):"";r.autoClearSearchValue&&this.setInputValue(s,!1)}}},onMenuDeselect:function(e){var t=e.item,n=e.domEvent;if("keydown"!==n.type||n.keyCode!==De.ENTER){var r;"click"===n.type&&this.removeSelected(Jr(t)),this.autoClearSearchValue&&this.setInputValue("")}else{var i=t.$el;(r=i)&&null!==r.offsetParent&&this.removeSelected(Jr(t))}},onArrowClick:function(e){e.stopPropagation(),e.preventDefault(),this.clearBlurTime(),this.disabled||this.setOpenState(!this.$data._open,{needFocus:!this.$data._open})},onPlaceholderClick:function(){this.getInputDOMNode()&&this.getInputDOMNode()&&this.getInputDOMNode().focus()},onPopupFocus:function(){this.maybeFocus(!0,!0)},onClearSelection:function(e){var t=this.$props,n=this.$data;if(!t.disabled){var r=n._inputValue,i=n._value;e.stopPropagation(),(r||i.length)&&(i.length&&this.fireChange([]),this.setOpenState(!1,{needFocus:!0}),r&&this.setInputValue(""))}},onChoiceAnimationLeave:function(){this.forcePopupAlign()},getOptionInfoBySingleValue:function(e,t){var n=this.$createElement,r=void 0;if((t=t||this.$data._optionsInfo)[ii(e)]&&(r=t[ii(e)]),r)return r;var i=e;if(this.$props.labelInValue){var o=si(this.$props.value,e),a=si(this.$props.defaultValue,e);void 0!==o?i=o:void 0!==a&&(i=a)}return{option:n(Te,{attrs:{value:e},key:e},[e]),value:e,label:i}},getOptionBySingleValue:function(e){return this.getOptionInfoBySingleValue(e).option},getOptionsBySingleValue:function(e){var t=this;return e.map((function(e){return t.getOptionBySingleValue(e)}))},getValueByLabel:function(e){var t=this;if(void 0===e)return null;var n=null;return Object.keys(this.$data._optionsInfo).forEach((function(r){var i=t.$data._optionsInfo[r];if(!i.disabled){var o=ri(i.label);o&&o.join("")===e&&(n=i.value)}})),n},getVLBySingleValue:function(e){return this.$props.labelInValue?{key:e,label:this.getLabelBySingleValue(e)}:e},getVLForOnChange:function(e){var t=this,n=e;return void 0!==n?(n=this.labelInValue?n.map((function(e){return{key:e,label:t.getLabelBySingleValue(e)}})):n.map((function(e){return e})),ei(this.$props)?n:n[0]):n},getLabelBySingleValue:function(e,t){return this.getOptionInfoBySingleValue(e,t).label},getDropdownContainer:function(){return this.dropdownContainer||(this.dropdownContainer=document.createElement("div"),document.body.appendChild(this.dropdownContainer)),this.dropdownContainer},getPlaceholderElement:function(){var e=this.$createElement,t=this.$props,n=this.$data,r=!1;n._mirrorInputValue&&(r=!0);var i=n._value;i.length&&(r=!0),!n._mirrorInputValue&&Qr(t)&&1===i.length&&n._value&&!n._value[0]&&(r=!1);var o=t.placeholder;return o?e("div",{on:{mousedown:oi,click:this.onPlaceholderClick},attrs:ui,style:(0,f.Z)({display:r?"none":"block"},li),class:t.prefixCls+"-selection__placeholder"},[o]):null},inputClick:function(e){this.$data._open?(this.clearBlurTime(),e.stopPropagation()):this._focused=!1},inputBlur:function(e){var t=this,n=e.relatedTarget||document.activeElement;if((wi||ki)&&(e.relatedTarget===this.$refs.arrow||n&&this.selectTriggerRef&&this.selectTriggerRef.getInnerMenu()&&this.selectTriggerRef.getInnerMenu().$el===n||pn(e.target,n)))return e.target.focus(),void e.preventDefault();this.clearBlurTime(),this.disabled?e.preventDefault():this.blurTimer=setTimeout((function(){t._focused=!1,t.updateFocusClassName();var e=t.$props,n=t.$data._value,r=t.$data._inputValue;if(ni(e)&&e.showSearch&&r&&e.defaultActiveFirstOption){var i=t._options||[];if(i.length){var o=di(i);o&&(n=[Jr(o)],t.fireChange(n))}}else if(ei(e)&&r){t._mouseDown?t.setInputValue(""):(t.$data._inputValue="",t.getInputDOMNode&&t.getInputDOMNode()&&(t.getInputDOMNode().value=""));var a=t.getValueByInput(r);void 0!==a&&(n=a,t.fireChange(n))}if(ei(e)&&t._mouseDown)return t.maybeFocus(!0,!0),void(t._mouseDown=!1);t.setOpenState(!1),t.$emit("blur",t.getVLForOnChange(n))}),200)},inputFocus:function(e){if(this.$props.disabled)e.preventDefault();else{this.clearBlurTime();var t=this.getInputDOMNode();t&&e.target===this.rootRef||(ti(this.$props)||e.target!==t)&&(this._focused||(this._focused=!0,this.updateFocusClassName(),ei(this.$props)&&this._mouseDown||this.timeoutFocus()))}},_getInputElement:function(){var e=this.$createElement,t=this.$props,n=this.$data,r=n._inputValue,i=n._mirrorInputValue,o=e("input",{attrs:{id:(0,k.TD)(this).id,autoComplete:"off"}}),a=t.getInputElement?t.getInputElement():o,s=h()((0,k.ll)(a),(0,l.Z)({},t.prefixCls+"-search__field",!0)),u=(0,k.vw)(a);return a.data=a.data||{},e("div",{class:t.prefixCls+"-search__field__wrap",on:{click:this.inputClick}},[(0,fn.Tm)(a,{props:{disabled:t.disabled,value:r},attrs:(0,f.Z)({},a.data.attrs||{},{disabled:t.disabled,value:r}),domProps:{value:r},class:s,directives:[{name:"ant-ref",value:this.saveInputRef},{name:"ant-input"}],on:{input:this.onInputChange,keydown:Li(this.onInputKeydown,u.keydown,(0,k.CL)(this).inputKeydown),focus:Li(this.inputFocus,u.focus),blur:Li(this.inputBlur,u.blur)}}),e("span",c()([{directives:[{name:"ant-ref",value:this.saveInputMirrorRef}]},{class:t.prefixCls+"-search__field__mirror"}]),[i," "])])},getInputDOMNode:function(){return this.topCtrlRef?this.topCtrlRef.querySelector("input,textarea,div[contentEditable]"):this.inputRef},getInputMirrorDOMNode:function(){return this.inputMirrorRef},getPopupDOMNode:function(){if(this.selectTriggerRef)return this.selectTriggerRef.getPopupDOMNode()},getPopupMenuComponent:function(){if(this.selectTriggerRef)return this.selectTriggerRef.getInnerMenu()},setOpenState:function(e){var t=this,n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},r=this.$props,i=this.$data,o=n.needFocus,a=n.fireSearch;if(i._open!==e){this.__emit("dropdownVisibleChange",e);var s={_open:e,_backfillValue:""};!e&&ni(r)&&r.showSearch&&this.setInputValue("",a),e||this.maybeFocus(e,!!o),this.setState(s,(function(){e&&t.maybeFocus(e,!!o)}))}else this.maybeFocus(e,!!o)},setInputValue:function(e){var t=!(arguments.length>1&&void 0!==arguments[1])||arguments[1];e!==this.$data._inputValue&&(this.setState({_inputValue:e},this.forcePopupAlign),t&&this.$emit("search",e))},getValueByInput:function(e){var t=this,n=this.$props,r=n.multiple,i=n.tokenSeparators,o=this.$data._value,a=!1;return function(e,t){var n=new RegExp("["+t.join()+"]");return e.split(n).filter((function(e){return e}))}(e,i).forEach((function(e){var n=[e];if(r){var i=t.getValueByLabel(e);i&&-1===ai(o,i)&&(o=o.concat(i),a=!0,t.fireSelect(i))}else-1===ai(o,e)&&(o=o.concat(n),a=!0,t.fireSelect(e))})),a?o:void 0},getRealOpenState:function(e){var t=this.$props.open;if("boolean"==typeof t)return t;var n=(e||this.$data)._open,r=this._options||[];return!ti(this.$props)&&this.$props.showSearch||n&&!r.length&&(n=!1),n},focus:function(){ni(this.$props)&&this.selectionRef?this.selectionRef.focus():this.getInputDOMNode()&&this.getInputDOMNode().focus()},blur:function(){ni(this.$props)&&this.selectionRef?this.selectionRef.blur():this.getInputDOMNode()&&this.getInputDOMNode().blur()},markMouseDown:function(){this._mouseDown=!0},markMouseLeave:function(){this._mouseDown=!1},handleBackfill:function(e){if(this.backfill&&(ni(this.$props)||Qr(this.$props))){var t=Jr(e);Qr(this.$props)&&this.setInputValue(t,!1),this.setState({_value:[t],_backfillValue:t})}},_filterOption:function(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:hi,r=this.$data,i=r._value,o=r._backfillValue,a=i[i.length-1];if(!e||a&&a===o)return!0;var s=this.$props.filterOption;return(0,k.m2)(this,"filterOption")?!0===s&&(s=n.bind(this)):s=n.bind(this),!s||("function"==typeof s?s.call(this,e,t):!(0,k.TV)(t,"disabled"))},timeoutFocus:function(){var e=this;this.focusTimer&&this.clearFocusTime(),this.focusTimer=window.setTimeout((function(){e.$emit("focus")}),10)},clearFocusTime:function(){this.focusTimer&&(clearTimeout(this.focusTimer),this.focusTimer=null)},clearBlurTime:function(){this.blurTimer&&(clearTimeout(this.blurTimer),this.blurTimer=null)},clearComboboxTime:function(){this.comboboxTimer&&(clearTimeout(this.comboboxTimer),this.comboboxTimer=null)},updateFocusClassName:function(){var e=this.rootRef,t=this.prefixCls;this._focused?Pe()(e).add(t+"-focused"):Pe()(e).remove(t+"-focused")},maybeFocus:function(e,t){if(t||e){var n=this.getInputDOMNode(),r=document.activeElement;n&&(e||ti(this.$props))?r!==n&&(n.focus(),this._focused=!0):r!==this.selectionRef&&this.selectionRef&&(this.selectionRef.focus(),this._focused=!0)}},removeSelected:function(e,t){var n=this.$props;if(!n.disabled&&!this.isChildDisabled(e)){t&&t.stopPropagation&&t.stopPropagation();var r=this.$data._value.filter((function(t){return t!==e}));if(ei(n)){var i=e;n.labelInValue&&(i={key:e,label:this.getLabelBySingleValue(e)}),this.$emit("deselect",i,this.getOptionBySingleValue(e))}this.fireChange(r)}},openIfHasChildren:function(){var e=this.$props;(e.children&&e.children.length||ni(e))&&this.setOpenState(!0)},fireSelect:function(e){this.$emit("select",this.getVLBySingleValue(e),this.getOptionBySingleValue(e))},fireChange:function(e){(0,k.m2)(this,"value")||this.setState({_value:e},this.forcePopupAlign);var t=this.getVLForOnChange(e),n=this.getOptionsBySingleValue(e);this._valueOptions=n,this.$emit("change",t,ei(this.$props)?n:n[0])},isChildDisabled:function(e){return(this.$props.children||[]).some((function(t){return Jr(t)===e&&(0,k.TV)(t,"disabled")}))},forcePopupAlign:function(){this.$data._open&&this.selectTriggerRef&&this.selectTriggerRef.triggerRef&&this.selectTriggerRef.triggerRef.forcePopupAlign()},renderFilterOptions:function(){var e=this.$createElement,t=this.$data._inputValue,n=this.$props,r=n.children,i=n.tags,o=n.notFoundContent,a=[],s=[],l=!1,u=this.renderFilterOptionsFromChildren(r,s,a);if(i){var d=this.$data._value;if((d=d.filter((function(e){return-1===s.indexOf(e)&&(!t||String(e).indexOf(String(t))>-1)}))).sort((function(e,t){return e.length-t.length})),d.forEach((function(t){var n=t,r=(0,f.Z)({},ui,{role:"option"}),i=e($t,c()([{style:li},{attrs:r},{attrs:{value:n},key:n}]),[n]);u.push(i),a.push(i)})),t&&a.every((function(e){return Jr(e)!==t}))){var h={attrs:ui,key:t,props:{value:t,role:"option"},style:li};u.unshift(e($t,h,[t]))}}!u.length&&o&&(l=!0,u=[e($t,{attrs:ui,key:"NOT_FOUND",props:{value:"NOT_FOUND",disabled:!0,role:"option"},style:li},[o])]);return{empty:l,options:u}},renderFilterOptionsFromChildren:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[],t=this,n=arguments[1],r=arguments[2],i=this.$createElement,o=[],a=this.$props,s=this.$data._inputValue,l=a.tags;return e.forEach((function(e){if(e.data&&void 0===e.data.slot)if((0,k.cV)(e).isSelectOptGroup){var a=(0,k.rj)(e,"label"),u=e.key;u||"string"!=typeof a?!a&&u&&(a=u):u=a;var d=(0,k.FJ)(e).default;if(d="function"==typeof d?d():d,s&&t._filterOption(s,e)){var h=d.map((function(e){var t=Jr(e)||e.key;return i($t,c()([{key:t,attrs:{value:t}},e.data]),[e.componentOptions.children])}));o.push(i(Ft,{key:u,attrs:{title:a},class:(0,k.ll)(e)},[h]))}else{var p=t.renderFilterOptionsFromChildren(d,n,r);p.length&&o.push(i(Ft,c()([{key:u,attrs:{title:a}},e.data]),[p]))}}else{Nt()((0,k.cV)(e).isSelectOption,"the children of `Select` should be `Select.Option` or `Select.OptGroup`, instead of `"+((0,k.cV)(e).name||(0,k.cV)(e))+"`.");var m=Jr(e);if(fi(m,t.$props),t._filterOption(s,e)){var v={attrs:(0,f.Z)({},ui,(0,k.TD)(e)),key:m,props:(0,f.Z)({value:m},(0,k.TW)(e),{role:"option"}),style:li,on:(0,k.vw)(e),class:(0,k.ll)(e)},y=i($t,v,[e.componentOptions.children]);o.push(y),r.push(y)}l&&n.push(m)}})),o},renderTopControlNode:function(){var e=this,t=this.$createElement,n=this.$props,r=this.$data,i=r._value,o=r._inputValue,a=r._open,s=n.choiceTransitionName,l=n.prefixCls,u=n.maxTagTextLength,d=n.maxTagCount,h=n.maxTagPlaceholder,p=n.showSearch,m=(0,k.rj)(this,"removeIcon"),v=l+"-selection__rendered",y=null;if(ni(n)){var g=null;if(i.length){var _=!1,b=1;p&&a?(_=!o)&&(b=.4):_=!0;var M=i[0],w=this.getOptionInfoBySingleValue(M),C=w.label,L=w.title;g=t("div",{key:"value",class:l+"-selection-selected-value",attrs:{title:Gr(L||C)},style:{display:_?"block":"none",opacity:b}},[C])}y=p?[g,t("div",{class:l+"-search "+l+"-search--inline",key:"input",style:{display:a?"block":"none"}},[this._getInputElement()])]:[g]}else{var x=[],S=i,Z=void 0;if(void 0!==d&&i.length>d){S=S.slice(0,d);var T=this.getVLForOnChange(i.slice(d,i.length)),z="+ "+(i.length-d)+" ...";h&&(z="function"==typeof h?h(T):h);var O=(0,f.Z)({},ui,{role:"presentation",title:Gr(z)});Z=t("li",c()([{style:li},{attrs:O},{on:{mousedown:oi},class:l+"-selection__choice "+l+"-selection__choice__disabled",key:"maxTagPlaceholder"}]),[t("div",{class:l+"-selection__choice__content"},[z])])}if(ei(n)&&(x=S.map((function(n){var r=e.getOptionInfoBySingleValue(n),i=r.label,o=r.title||i;u&&"string"==typeof i&&i.length>u&&(i=i.slice(0,u)+"...");var a=e.isChildDisabled(n),s=a?l+"-selection__choice "+l+"-selection__choice__disabled":l+"-selection__choice",d=(0,f.Z)({},ui,{role:"presentation",title:Gr(o)});return t("li",c()([{style:li},{attrs:d},{on:{mousedown:oi},class:s,key:n||"RC_SELECT_EMPTY_VALUE_KEY"}]),[t("div",{class:l+"-selection__choice__content"},[i]),a?null:t("span",{on:{click:function(t){e.removeSelected(n,t)}},class:l+"-selection__choice__remove"},[m||t("i",{class:l+"-selection__choice__remove-icon"},["×"])])])}))),Z&&x.push(Z),x.push(t("li",{class:l+"-search "+l+"-search--inline",key:"__input"},[this._getInputElement()])),ei(n)&&s){var H=dn(s,{tag:"ul",afterLeave:this.onChoiceAnimationLeave});y=t("transition-group",H,[x])}else y=t("ul",[x])}return t("div",c()([{class:v},{directives:[{name:"ant-ref",value:this.saveTopCtrlRef}]},{on:{click:this.topCtrlContainerClick}}]),[this.getPlaceholderElement(),y])},renderArrow:function(e){var t=this.$createElement,n=this.$props,r=n.showArrow,i=void 0===r?!e:r,o=n.loading,a=n.prefixCls,s=(0,k.rj)(this,"inputIcon");if(!i&&!o)return null;var l=t("i",o?{class:a+"-arrow-loading"}:{class:a+"-arrow-icon"});return t("span",c()([{key:"arrow",class:a+"-arrow",style:li},{attrs:ui},{on:{click:this.onArrowClick},ref:"arrow"}]),[s||l])},topCtrlContainerClick:function(e){this.$data._open&&!ni(this.$props)&&e.stopPropagation()},renderClear:function(){var e=this.$createElement,t=this.$props,n=t.prefixCls,r=t.allowClear,i=this.$data,o=i._value,a=i._inputValue,s=(0,k.rj)(this,"clearIcon"),l=e("span",c()([{key:"clear",class:n+"-selection__clear",on:{mousedown:oi},style:li},{attrs:ui},{on:{click:this.onClearSelection}}]),[s||e("i",{class:n+"-selection__clear-icon"},["×"])]);return r?Qr(this.$props)?a?l:null:a||o.length?l:null:null},selectionRefClick:function(){if(!this.disabled){var e=this.getInputDOMNode();this._focused&&this.$data._open?(this.setOpenState(!1,!1),e&&e.blur()):(this.clearBlurTime(),this.setOpenState(!0,!0),e&&e.focus())}},selectionRefFocus:function(e){this._focused||this.disabled||ti(this.$props)?e.preventDefault():(this._focused=!0,this.updateFocusClassName(),this.$emit("focus"))},selectionRefBlur:function(e){ti(this.$props)?e.preventDefault():this.inputBlur(e)}},render:function(){var e,t=arguments[0],n=this.$props,r=ei(n),i=n.showArrow,o=void 0===i||i,a=this.$data,s=n.disabled,u=n.prefixCls,d=n.loading,f=this.renderTopControlNode(),p=this.$data,m=p._open,v=p._inputValue,y=p._value;if(m){var g=this.renderFilterOptions();this._empty=g.empty,this._options=g.options}var _=this.getRealOpenState(),b=this._empty,M=this._options||[],w=(0,k.CL)(this),C=w.mouseenter,L=void 0===C?Ci:C,x=w.mouseleave,S=void 0===x?Ci:x,Z=w.popupScroll,T=void 0===Z?Ci:Z,z={props:{},attrs:{role:"combobox","aria-autocomplete":"list","aria-haspopup":"true","aria-expanded":_,"aria-controls":this.$data._ariaId},on:{},class:u+"-selection "+u+"-selection--"+(r?"multiple":"single"),key:"selection"},O={attrs:{tabIndex:-1}};ti(n)||(O.attrs.tabIndex=n.disabled?-1:n.tabIndex);var H=(e={},(0,l.Z)(e,u,!0),(0,l.Z)(e,u+"-open",m),(0,l.Z)(e,u+"-focused",m||!!this._focused),(0,l.Z)(e,u+"-combobox",Qr(n)),(0,l.Z)(e,u+"-disabled",s),(0,l.Z)(e,u+"-enabled",!s),(0,l.Z)(e,u+"-allow-clear",!!n.allowClear),(0,l.Z)(e,u+"-no-arrow",!o),(0,l.Z)(e,u+"-loading",!!d),e);return t(yi,c()([{attrs:{dropdownAlign:n.dropdownAlign,dropdownClassName:n.dropdownClassName,dropdownMatchSelectWidth:n.dropdownMatchSelectWidth,defaultActiveFirstOption:n.defaultActiveFirstOption,dropdownMenuStyle:n.dropdownMenuStyle,transitionName:n.transitionName,animation:n.animation,prefixCls:n.prefixCls,dropdownStyle:n.dropdownStyle,combobox:n.combobox,showSearch:n.showSearch,options:M,empty:b,multiple:r,disabled:s,visible:_,inputValue:v,value:y,backfillValue:a._backfillValue,firstActiveValue:n.firstActiveValue,getPopupContainer:n.getPopupContainer,showAction:n.showAction,menuItemSelectedIcon:(0,k.rj)(this,"menuItemSelectedIcon")},on:{dropdownVisibleChange:this.onDropdownVisibleChange,menuSelect:this.onMenuSelect,menuDeselect:this.onMenuDeselect,popupScroll:T,popupFocus:this.onPopupFocus,mouseenter:L,mouseleave:S}},{directives:[{name:"ant-ref",value:this.saveSelectTriggerRef}]},{attrs:{dropdownRender:n.dropdownRender,ariaId:this.$data._ariaId}}]),[t("div",c()([{directives:[{name:"ant-ref",value:Li(this.saveRootRef,this.saveSelectionRef)}]},{style:(0,k.C2)(this),class:h()(H),on:{mousedown:this.markMouseDown,mouseup:this.markMouseLeave,mouseout:this.markMouseLeave}},O,{on:{blur:this.selectionRefBlur,focus:this.selectionRefFocus,click:this.selectionRefClick,keydown:ti(n)?Ci:this.onKeyDown}}]),[t("div",z,[f,this.renderClear(),this.renderArrow(!!r)])])])}};ct(xi);var Si=n(58749),Zi=n(99663),Ti=n(22600),zi=n(39086),Oi=n(34155);function Hi(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return Object.keys(e).reduce((function(t,n){var r=e[n];switch(n){case"class":t.className=r,delete t.class;break;default:t[n]=r}return t}),{})}var Di=function(){function e(){(0,Zi.Z)(this,e),this.collection={}}return(0,Ti.Z)(e,[{key:"clear",value:function(){this.collection={}}},{key:"delete",value:function(e){return delete this.collection[e]}},{key:"get",value:function(e){return this.collection[e]}},{key:"has",value:function(e){return Boolean(this.collection[e])}},{key:"set",value:function(e,t){return this.collection[e]=t,this}},{key:"size",get:function(){return Object.keys(this.collection).length}}]),e}();function Vi(e,t,n,r){return e(t.tag,r?(0,f.Z)({key:n},r,{attrs:(0,f.Z)({},Hi(t.attrs),r.attrs)}):{key:n,attrs:(0,f.Z)({},Hi(t.attrs))},(t.children||[]).map((function(r,i){return Vi(e,r,n+"-"+t.tag+"-"+i)})))}function Pi(e){return(0,zi.generate)(e)[0]}function Yi(e,t){switch(t){case"fill":return e+"-fill";case"outline":return e+"-o";case"twotone":return e+"-twotone";default:throw new TypeError("Unknown theme type: "+t+", name: "+e)}}var Ai={primaryColor:"#333",secondaryColor:"#E6E6E6"},ji={name:"AntdIcon",props:["type","primaryColor","secondaryColor"],displayName:"IconVue",definitions:new Di,data:function(){return{twoToneColorPalette:Ai}},add:function(){for(var e=arguments.length,t=Array(e),n=0;n1&&void 0!==arguments[1]?arguments[1]:Ai;if(e){var n=ji.definitions.get(e);return n&&"function"==typeof n.icon&&(n=(0,f.Z)({},n,{icon:n.icon(t.primaryColor,t.secondaryColor)})),n}},setTwoToneColors:function(e){var t=e.primaryColor,n=e.secondaryColor;Ai.primaryColor=t,Ai.secondaryColor=n||Pi(t)},getTwoToneColors:function(){return(0,f.Z)({},Ai)},render:function(e){var t=this.$props,n=t.type,r=t.primaryColor,i=t.secondaryColor,o=void 0,a=Ai;if(r&&(a={primaryColor:r,secondaryColor:i||Pi(r)}),function(e){return"object"==typeof e&&"string"==typeof e.name&&"string"==typeof e.theme&&("object"==typeof e.icon||"function"==typeof e.icon)}(n))o=n;else if("string"==typeof n&&!(o=ji.get(n,a)))return null;return o?(o&&"function"==typeof o.icon&&(o=(0,f.Z)({},o,{icon:o.icon(a.primaryColor,a.secondaryColor)})),Vi(e,o.icon,"svg-"+o.name,{attrs:{"data-icon":o.name,width:"1em",height:"1em",fill:"currentColor","aria-hidden":"true"},on:this.$listeners})):(function(e){Oi&&Oi.env||console.error("[@ant-design/icons-vue]: "+e+".")}("type should be string or icon definiton, but got "+n),null)},install:function(e){e.component(ji.name,ji)}};const Ei=ji;var $i=new Set;var Fi={width:"1em",height:"1em",fill:"currentColor","aria-hidden":"true",focusable:"false"},Ii=/-fill$/,Ni=/-o$/,Ri=/-twotone$/;function Wi(e){return Ei.setTwoToneColors({primaryColor:e})}Ei.add.apply(Ei,(0,g.Z)(Object.keys(Si).map((function(e){return Si[e]})))),Wi("#1890ff");function Ki(e,t,n){var r,i=n.$props,o=n.$slots,a=(0,k.CL)(n),s=i.type,u=i.component,d=i.viewBox,p=i.spin,m=i.theme,v=i.twoToneColor,y=i.rotate,g=i.tabIndex,_=(0,k.OU)(o.default);_=0===_.length?void 0:_,re(Boolean(s||u||_),"Icon","Icon should have `type` prop or `component` prop or `children`.");var b=h()((r={},(0,l.Z)(r,"anticon",!0),(0,l.Z)(r,"anticon-"+s,!!s),r)),M=h()((0,l.Z)({},"anticon-spin",!!p||"loading"===s)),w=y?{msTransform:"rotate("+y+"deg)",transform:"rotate("+y+"deg)"}:void 0,C={attrs:(0,f.Z)({},Fi,{viewBox:d}),class:M,style:w};d||delete C.attrs.viewBox;var L=g;void 0===L&&"click"in a&&(L=-1);var x={attrs:{"aria-label":s&&t.icon+": "+s,tabIndex:L},on:a,class:b,staticClass:""};return e("i",x,[function(){if(u)return e(u,C,[_]);if(_){re(Boolean(d)||1===_.length&&"use"===_[0].tag,"Icon","Make sure that you provide correct `viewBox` prop (default `0 0 1024 1024`) to the icon.");var t={attrs:(0,f.Z)({},Fi),class:M,style:w};return e("svg",c()([t,{attrs:{viewBox:d}}]),[_])}if("string"==typeof s){var n=s;if(m){var r=function(e){var t=null;return Ii.test(e)?t="filled":Ni.test(e)?t="outlined":Ri.test(e)&&(t="twoTone"),t}(s);re(!r||m===r,"Icon","The icon name '"+s+"' already specify a theme '"+r+"', the 'theme' prop '"+m+"' will be ignored.")}return n=function(e,t){var n=e;return"filled"===t?n+="-fill":"outlined"===t?n+="-o":"twoTone"===t?n+="-twotone":re(!1,"Icon","This icon '"+e+"' has unknown theme '"+t+"'"),n}(function(e){return e.replace(Ii,"").replace(Ni,"").replace(Ri,"")}(function(e){var t=e;switch(e){case"cross":t="close";break;case"interation":t="interaction";break;case"canlendar":t="calendar";break;case"colum-height":t="column-height"}return re(t===e,"Icon","Icon '"+e+"' was a typo and is now deprecated, please use '"+t+"' instead."),t}(n)),m||"outlined"),e(Ei,{attrs:{focusable:"false",type:n,primaryColor:v},class:M,style:w})}}()])}var Bi={name:"AIcon",props:{tabIndex:u.Z.number,type:u.Z.string,component:u.Z.any,viewBox:u.Z.any,spin:u.Z.bool.def(!1),rotate:u.Z.number,theme:u.Z.oneOf(["filled","outlined","twoTone"]),twoToneColor:u.Z.string,role:u.Z.string},render:function(e){var t=this;return e(O,{attrs:{componentName:"Icon"},scopedSlots:{default:function(n){return Ki(e,n,t)}}})},createFromIconfontCN:function(e){var t=e.scriptUrl,n=e.extraCommonProps,r=void 0===n?{}:n;if("undefined"!=typeof document&&"undefined"!=typeof window&&"function"==typeof document.createElement&&"string"==typeof t&&t.length&&!$i.has(t)){var i=document.createElement("script");i.setAttribute("src",t),i.setAttribute("data-namespace",t),$i.add(t),document.body.appendChild(i)}return{functional:!0,name:"AIconfont",props:Ui.props,render:function(e,t){var n=t.props,i=t.slots,o=t.listeners,a=t.data,s=n.type,c=(0,Oe.Z)(n,["type"]),l=i().default,u=null;s&&(u=e("use",{attrs:{"xlink:href":"#"+s}})),l&&(u=l);var d=(0,k.dG)(r,a,{props:c,on:o});return e(Ui,d,[u])}}},getTwoToneColor:function(){return Ei.getTwoToneColors().primaryColor}};Bi.setTwoToneColor=Wi,Bi.install=function(e){e.use(B),e.component(Bi.name,Bi)};const Ui=Bi;var qi=function(){return{prefixCls:u.Z.string,size:u.Z.oneOf(["small","large","default"]),showAction:u.Z.oneOfType([u.Z.string,u.Z.arrayOf(String)]),notFoundContent:u.Z.any,transitionName:u.Z.string,choiceTransitionName:u.Z.string,showSearch:u.Z.bool,allowClear:u.Z.bool,disabled:u.Z.bool,tabIndex:u.Z.number,placeholder:u.Z.any,defaultActiveFirstOption:u.Z.bool,dropdownClassName:u.Z.string,dropdownStyle:u.Z.any,dropdownMenuStyle:u.Z.any,dropdownMatchSelectWidth:u.Z.bool,filterOption:u.Z.oneOfType([u.Z.bool,u.Z.func]),autoFocus:u.Z.bool,backfill:u.Z.bool,showArrow:u.Z.bool,getPopupContainer:u.Z.func,open:u.Z.bool,defaultOpen:u.Z.bool,autoClearSearchValue:u.Z.bool,dropdownRender:u.Z.func,loading:u.Z.bool}},Gi=u.Z.shape({key:u.Z.oneOfType([u.Z.string,u.Z.number])}).loose,Ji=u.Z.oneOfType([u.Z.string,u.Z.number,u.Z.arrayOf(u.Z.oneOfType([Gi,u.Z.string,u.Z.number])),Gi]),Xi=(0,f.Z)({},qi(),{value:Ji,defaultValue:Ji,mode:u.Z.string,optionLabelProp:u.Z.string,firstActiveValue:u.Z.oneOfType([String,u.Z.arrayOf(String)]),maxTagCount:u.Z.number,maxTagPlaceholder:u.Z.any,maxTagTextLength:u.Z.number,dropdownMatchSelectWidth:u.Z.bool,optionFilterProp:u.Z.string,labelInValue:u.Z.boolean,getPopupContainer:u.Z.func,tokenSeparators:u.Z.arrayOf(u.Z.string),getInputElement:u.Z.func,options:u.Z.array,suffixIcon:u.Z.any,removeIcon:u.Z.any,clearIcon:u.Z.any,menuItemSelectedIcon:u.Z.any}),Qi={prefixCls:u.Z.string,size:u.Z.oneOf(["default","large","small"]),notFoundContent:u.Z.any,showSearch:u.Z.bool,optionLabelProp:u.Z.string,transitionName:u.Z.string,choiceTransitionName:u.Z.string},eo="SECRET_COMBOBOX_MODE_DO_NOT_USE",to={SECRET_COMBOBOX_MODE_DO_NOT_USE:eo,Option:(0,f.Z)({},Te,{name:"ASelectOption"}),OptGroup:(0,f.Z)({},ze,{name:"ASelectOptGroup"}),name:"ASelect",props:(0,f.Z)({},Xi,{showSearch:u.Z.bool.def(!1),transitionName:u.Z.string.def("slide-up"),choiceTransitionName:u.Z.string.def("zoom")}),propTypes:Qi,model:{prop:"value",event:"change"},provide:function(){return{savePopupRef:this.savePopupRef}},inject:{configProvider:{default:function(){return X}}},created:function(){re("combobox"!==this.$props.mode,"Select","The combobox mode of Select is deprecated,it will be removed in next major version,please use AutoComplete instead")},methods:{getNotFoundContent:function(e){var t=this.$createElement,n=(0,k.rj)(this,"notFoundContent");return void 0!==n?n:this.isCombobox()?null:e(t,"Select")},savePopupRef:function(e){this.popupRef=e},focus:function(){this.$refs.vcSelect.focus()},blur:function(){this.$refs.vcSelect.blur()},isCombobox:function(){var e=this.mode;return"combobox"===e||e===eo},renderSuffixIcon:function(e){var t=this.$createElement,n=this.$props.loading,r=(0,k.rj)(this,"suffixIcon");return(r=Array.isArray(r)?r[0]:r)?(0,k.l$)(r)?(0,fn.Tm)(r,{class:e+"-arrow-icon"}):r:t(Ui,n?{attrs:{type:"loading"}}:{attrs:{type:"down"},class:e+"-arrow-icon"})}},render:function(){var e,t=arguments[0],n=(0,k.oZ)(this),r=n.prefixCls,i=n.size,o=n.mode,a=n.options,s=n.getPopupContainer,u=n.showArrow,d=(0,Oe.Z)(n,["prefixCls","size","mode","options","getPopupContainer","showArrow"]),h=this.configProvider.getPrefixCls,m=this.configProvider.renderEmpty,v=h("select",r),y=this.configProvider.getPopupContainer,g=(0,k.rj)(this,"removeIcon");g=Array.isArray(g)?g[0]:g;var _=(0,k.rj)(this,"clearIcon");_=Array.isArray(_)?_[0]:_;var b=(0,k.rj)(this,"menuItemSelectedIcon");b=Array.isArray(b)?b[0]:b;var M=p(d,["inputIcon","removeIcon","clearIcon","suffixIcon","menuItemSelectedIcon"]),w=(e={},(0,l.Z)(e,v+"-lg","large"===i),(0,l.Z)(e,v+"-sm","small"===i),(0,l.Z)(e,v+"-show-arrow",u),e),C=this.$props.optionLabelProp;this.isCombobox()&&(C=C||"value");var L={multiple:"multiple"===o,tags:"tags"===o,combobox:this.isCombobox()},x=g&&((0,k.l$)(g)?(0,fn.Tm)(g,{class:v+"-remove-icon"}):g)||t(Ui,{attrs:{type:"close"},class:v+"-remove-icon"}),S=_&&((0,k.l$)(_)?(0,fn.Tm)(_,{class:v+"-clear-icon"}):_)||t(Ui,{attrs:{type:"close-circle",theme:"filled"},class:v+"-clear-icon"}),Z=b&&((0,k.l$)(b)?(0,fn.Tm)(b,{class:v+"-selected-icon"}):b)||t(Ui,{attrs:{type:"check"},class:v+"-selected-icon"}),T={props:(0,f.Z)({inputIcon:this.renderSuffixIcon(v),removeIcon:x,clearIcon:S,menuItemSelectedIcon:Z,showArrow:u},M,L,{prefixCls:v,optionLabelProp:C||"children",notFoundContent:this.getNotFoundContent(m),maxTagPlaceholder:(0,k.rj)(this,"maxTagPlaceholder"),placeholder:(0,k.rj)(this,"placeholder"),children:a?a.map((function(e){var n=e.key,r=e.label,i=void 0===r?e.title:r,o=e.on,a=e.class,s=e.style,l=(0,Oe.Z)(e,["key","label","on","class","style"]);return t(Te,c()([{key:n},{props:l,on:o,class:a,style:s}]),[i])})):(0,k.OU)(this.$slots.default),__propsSymbol__:Symbol(),dropdownRender:(0,k.rj)(this,"dropdownRender",{},!1),getPopupContainer:s||y}),on:(0,k.CL)(this),class:w,ref:"vcSelect"};return t(xi,T)},install:function(e){e.use(B),e.component(to.name,to),e.component(to.Option.name,to.Option),e.component(to.OptGroup.name,to.OptGroup)}};const no=to;var ro=["text","input"];const io={props:{prefixCls:u.Z.string,inputType:u.Z.oneOf(ro),value:u.Z.any,defaultValue:u.Z.any,allowClear:u.Z.bool,element:u.Z.any,handleReset:u.Z.func,disabled:u.Z.bool,size:u.Z.oneOf(["small","large","default"]),suffix:u.Z.any,prefix:u.Z.any,addonBefore:u.Z.any,addonAfter:u.Z.any,className:u.Z.string,readOnly:u.Z.bool},methods:{renderClearIcon:function(e){var t=this.$createElement,n=this.$props,r=n.allowClear,i=n.value,o=n.disabled,a=n.readOnly,s=n.inputType,c=n.handleReset;return!r||o||a||null==i||""===i?null:t(Ui,{attrs:{type:"close-circle",theme:"filled",role:"button"},on:{click:c},class:s===ro[0]?e+"-textarea-clear-icon":e+"-clear-icon"})},renderSuffix:function(e){var t=this.$createElement,n=this.$props,r=n.suffix,i=n.allowClear;return r||i?t("span",{class:e+"-suffix"},[this.renderClearIcon(e),r]):null},renderLabeledIcon:function(e,t){var n,r,i=this.$createElement,o=this.$props,a=this.renderSuffix(e);if(r=this,!((0,k.rj)(r,"prefix")||(0,k.rj)(r,"suffix")||r.$props.allowClear))return(0,fn.Tm)(t,{props:{value:o.value}});var s=o.prefix?i("span",{class:e+"-prefix"},[o.prefix]):null;return i("span",{class:h()(o.className,e+"-affix-wrapper",(n={},(0,l.Z)(n,e+"-affix-wrapper-sm","small"===o.size),(0,l.Z)(n,e+"-affix-wrapper-lg","large"===o.size),(0,l.Z)(n,e+"-affix-wrapper-input-with-clear-btn",o.suffix&&o.allowClear&&this.$props.value),n)),style:o.style},[s,(0,fn.Tm)(t,{style:null,props:{value:o.value},class:Mo(e,o.size,o.disabled)}),a])},renderInputWithLabel:function(e,t){var n,r=this.$createElement,i=this.$props,o=i.addonBefore,a=i.addonAfter,s=i.style,c=i.size,u=i.className;if(!o&&!a)return t;var d=e+"-group",f=d+"-addon",p=o?r("span",{class:f},[o]):null,m=a?r("span",{class:f},[a]):null,v=h()(e+"-wrapper",(0,l.Z)({},d,o||a));return r("span",{class:h()(u,e+"-group-wrapper",(n={},(0,l.Z)(n,e+"-group-wrapper-sm","small"===c),(0,l.Z)(n,e+"-group-wrapper-lg","large"===c),n)),style:s},[r("span",{class:v},[p,(0,fn.Tm)(t,{style:null}),m])])},renderTextAreaWithClearIcon:function(e,t){var n=this.$createElement,r=this.$props,i=r.value,o=r.allowClear,a=r.className,s=r.style;return o?n("span",{class:h()(a,e+"-affix-wrapper",e+"-affix-wrapper-textarea-with-clear-btn"),style:s},[(0,fn.Tm)(t,{style:null,props:{value:i}}),this.renderClearIcon(e)]):(0,fn.Tm)(t,{props:{value:i}})},renderClearableLabeledInput:function(){var e=this.$props,t=e.prefixCls,n=e.inputType,r=e.element;return n===ro[0]?this.renderTextAreaWithClearIcon(t,r):this.renderInputWithLabel(t,this.renderLabeledIcon(t,r))}},render:function(){return this.renderClearableLabeledInput()}};var oo="\n min-height:0 !important;\n max-height:none !important;\n height:0 !important;\n visibility:hidden !important;\n overflow:hidden !important;\n position:absolute !important;\n z-index:-1000 !important;\n top:0 !important;\n right:0 !important\n",ao=["letter-spacing","line-height","padding-top","padding-bottom","font-family","font-weight","font-size","font-variant","text-rendering","text-transform","width","text-indent","padding-left","padding-right","border-width","box-sizing"],so={},co=void 0;function lo(e){var t=arguments.length>1&&void 0!==arguments[1]&&arguments[1],n=e.getAttribute("id")||e.getAttribute("data-reactid")||e.getAttribute("name");if(t&&so[n])return so[n];var r=window.getComputedStyle(e),i=r.getPropertyValue("box-sizing")||r.getPropertyValue("-moz-box-sizing")||r.getPropertyValue("-webkit-box-sizing"),o=parseFloat(r.getPropertyValue("padding-bottom"))+parseFloat(r.getPropertyValue("padding-top")),a=parseFloat(r.getPropertyValue("border-bottom-width"))+parseFloat(r.getPropertyValue("border-top-width")),s=ao.map((function(e){return e+":"+r.getPropertyValue(e)})).join(";"),c={sizingStyle:s,paddingSize:o,borderSize:a,boxSizing:i};return t&&n&&(so[n]=c),c}var uo=0,ho={};function fo(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:1,n=uo++,r=t;function i(){(r-=1)<=0?(e(),delete ho[n]):ho[n]=b()(i)}return ho[n]=b()(i),n}fo.cancel=function(e){void 0!==e&&(b().cancel(ho[e]),delete ho[e])},fo.ids=ho;const po={prefixCls:u.Z.string,inputPrefixCls:u.Z.string,defaultValue:u.Z.oneOfType([u.Z.string,u.Z.number]),value:u.Z.oneOfType([u.Z.string,u.Z.number]),placeholder:[String,Number],type:{default:"text",type:String},name:String,size:u.Z.oneOf(["small","large","default"]),disabled:u.Z.bool,readOnly:u.Z.bool,addonBefore:u.Z.any,addonAfter:u.Z.any,prefix:u.Z.any,suffix:u.Z.any,autoFocus:Boolean,allowClear:Boolean,lazy:{default:!0,type:Boolean},maxLength:u.Z.number,loading:u.Z.bool,className:u.Z.string};const mo={name:"ResizableTextArea",props:(0,f.Z)({},po,{autosize:u.Z.oneOfType([Object,Boolean]),autoSize:u.Z.oneOfType([Object,Boolean])}),data:function(){return{textareaStyles:{},resizeStatus:0}},mixins:[y.Z],mounted:function(){var e=this;this.$nextTick((function(){e.resizeTextarea()}))},beforeDestroy:function(){fo.cancel(this.nextFrameActionId),fo.cancel(this.resizeFrameId)},watch:{value:function(){var e=this;this.$nextTick((function(){e.resizeTextarea()}))}},methods:{handleResize:function(e){var t=this.$data.resizeStatus,n=this.$props.autoSize;0===t&&(this.$emit("resize",e),n&&this.resizeOnNextFrame())},resizeOnNextFrame:function(){fo.cancel(this.nextFrameActionId),this.nextFrameActionId=fo(this.resizeTextarea)},resizeTextarea:function(){var e=this,t=this.$props.autoSize||this.$props.autosize;if(t&&this.$refs.textArea){var n=t.minRows,r=t.maxRows,i=function(e){var t=arguments.length>1&&void 0!==arguments[1]&&arguments[1],n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:null,r=arguments.length>3&&void 0!==arguments[3]?arguments[3]:null;co||(co=document.createElement("textarea"),document.body.appendChild(co)),e.getAttribute("wrap")?co.setAttribute("wrap",e.getAttribute("wrap")):co.removeAttribute("wrap");var i=lo(e,t),o=i.paddingSize,a=i.borderSize,s=i.boxSizing,c=i.sizingStyle;co.setAttribute("style",c+";"+oo),co.value=e.value||e.placeholder||"";var l=Number.MIN_SAFE_INTEGER,u=Number.MAX_SAFE_INTEGER,d=co.scrollHeight,h=void 0;if("border-box"===s?d+=a:"content-box"===s&&(d-=o),null!==n||null!==r){co.value=" ";var f=co.scrollHeight-o;null!==n&&(l=f*n,"border-box"===s&&(l=l+o+a),d=Math.max(l,d)),null!==r&&(u=f*r,"border-box"===s&&(u=u+o+a),h=d>u?"":"hidden",d=Math.min(u,d))}return{height:d+"px",minHeight:l+"px",maxHeight:u+"px",overflowY:h}}(this.$refs.textArea,!1,n,r);this.setState({textareaStyles:i,resizeStatus:1},(function(){fo.cancel(e.resizeFrameId),e.resizeFrameId=fo((function(){e.setState({resizeStatus:2},(function(){e.resizeFrameId=fo((function(){e.setState({resizeStatus:0}),e.fixFirefoxAutoScroll()}))}))}))}))}},fixFirefoxAutoScroll:function(){try{if(document.activeElement===this.$refs.textArea){var e=this.$refs.textArea.selectionStart,t=this.$refs.textArea.selectionEnd;this.$refs.textArea.setSelectionRange(e,t)}}catch(e){}},renderTextArea:function(){var e=this.$createElement,t=(0,k.oZ)(this),n=t.prefixCls,r=t.autoSize,i=t.autosize,o=t.disabled,a=this.$data,s=a.textareaStyles,u=a.resizeStatus;re(void 0===i,"Input.TextArea","autosize is deprecated, please use autoSize instead.");var d=p(t,["prefixCls","autoSize","autosize","defaultValue","allowClear","type","lazy","value"]),m=h()(n,(0,l.Z)({},n+"-disabled",o)),y={};"value"in t&&(y.value=t.value||"");var g={attrs:d,domProps:y,style:(0,f.Z)({},s,1===u?{overflowX:"hidden",overflowY:"hidden"}:null),class:m,on:p((0,k.CL)(this),"pressEnter"),directives:[{name:"ant-input"}]};return e(v,{on:{resize:this.handleResize},attrs:{disabled:!(r||i)}},[e("textarea",c()([g,{ref:"textArea"}]))])}},render:function(){return this.renderTextArea()}};var vo=(0,f.Z)({},po,{autosize:u.Z.oneOfType([Object,Boolean]),autoSize:u.Z.oneOfType([Object,Boolean])});const yo={name:"ATextarea",inheritAttrs:!1,model:{prop:"value",event:"change.value"},props:(0,f.Z)({},vo),inject:{configProvider:{default:function(){return X}}},data:function(){var e=void 0===this.value?this.defaultValue:this.value;return{stateValue:void 0===e?"":e}},computed:{},watch:{value:function(e){this.stateValue=e}},mounted:function(){var e=this;this.$nextTick((function(){e.autoFocus&&e.focus()}))},methods:{setValue:function(e,t){(0,k.ZP)(this,"value")||(this.stateValue=e,this.$nextTick((function(){t&&t()})))},handleKeyDown:function(e){13===e.keyCode&&this.$emit("pressEnter",e),this.$emit("keydown",e)},onChange:function(e){this.$emit("change.value",e.target.value),this.$emit("change",e),this.$emit("input",e)},handleChange:function(e){var t=this,n=e.target,r=n.value,i=n.composing;(e.isComposing||i)&&this.lazy||this.stateValue===r||(this.setValue(e.target.value,(function(){t.$refs.resizableTextArea.resizeTextarea()})),bo(this.$refs.resizableTextArea.$refs.textArea,e,this.onChange))},focus:function(){this.$refs.resizableTextArea.$refs.textArea.focus()},blur:function(){this.$refs.resizableTextArea.$refs.textArea.blur()},handleReset:function(e){var t=this;this.setValue("",(function(){t.$refs.resizableTextArea.renderTextArea(),t.focus()})),bo(this.$refs.resizableTextArea.$refs.textArea,e,this.onChange)},renderTextArea:function(e){var t=this.$createElement,n=(0,k.oZ)(this),r={props:(0,f.Z)({},n,{prefixCls:e}),on:(0,f.Z)({},(0,k.CL)(this),{input:this.handleChange,keydown:this.handleKeyDown}),attrs:this.$attrs};return t(mo,c()([r,{ref:"resizableTextArea"}]))}},render:function(){var e=arguments[0],t=this.stateValue,n=this.prefixCls,r=this.configProvider.getPrefixCls,i=r("input",n),o={props:(0,f.Z)({},(0,k.oZ)(this),{prefixCls:i,inputType:"text",value:_o(t),element:this.renderTextArea(i),handleReset:this.handleReset}),on:(0,k.CL)(this)};return e(io,o)}};function go(){}function _o(e){return null==e?"":e}function bo(e,t,n){if(n){var r=t;if("click"===t.type){Object.defineProperty(r,"target",{writable:!0}),Object.defineProperty(r,"currentTarget",{writable:!0}),r.target=e,r.currentTarget=e;var i=e.value;return e.value="",n(r),void(e.value=i)}n(r)}}function Mo(e,t,n){var r;return h()(e,(r={},(0,l.Z)(r,e+"-sm","small"===t),(0,l.Z)(r,e+"-lg","large"===t),(0,l.Z)(r,e+"-disabled",n),r))}const wo={name:"AInput",inheritAttrs:!1,model:{prop:"value",event:"change.value"},props:(0,f.Z)({},po),inject:{configProvider:{default:function(){return X}}},data:function(){var e=this.$props,t=void 0===e.value?e.defaultValue:e.value;return{stateValue:void 0===t?"":t}},watch:{value:function(e){this.stateValue=e}},mounted:function(){var e=this;this.$nextTick((function(){e.autoFocus&&e.focus(),e.clearPasswordValueAttribute()}))},beforeDestroy:function(){this.removePasswordTimeout&&clearTimeout(this.removePasswordTimeout)},methods:{onBlur:function(e){this.$forceUpdate();var t=(0,k.CL)(this).blur;t&&t(e)},focus:function(){this.$refs.input.focus()},blur:function(){this.$refs.input.blur()},select:function(){this.$refs.input.select()},setValue:function(e,t){this.stateValue!==e&&((0,k.m2)(this,"value")||(this.stateValue=e,this.$nextTick((function(){t&&t()}))))},onChange:function(e){this.$emit("change.value",e.target.value),this.$emit("change",e),this.$emit("input",e)},handleReset:function(e){var t=this;this.setValue("",(function(){t.focus()})),bo(this.$refs.input,e,this.onChange)},renderInput:function(e){var t=this.$createElement,n=p(this.$props,["prefixCls","addonBefore","addonAfter","prefix","suffix","allowClear","value","defaultValue","lazy","size","inputType","className"]),r=this.stateValue,i=this.handleKeyDown,o=this.handleChange,a=this.size,s=this.disabled;return t("input",{directives:[{name:"ant-input"}],domProps:{value:_o(r)},attrs:(0,f.Z)({},n,this.$attrs),on:(0,f.Z)({},(0,k.CL)(this),{keydown:i,input:o,change:go,blur:this.onBlur}),class:Mo(e,a,s),ref:"input",key:"ant-input"})},clearPasswordValueAttribute:function(){var e=this;this.removePasswordTimeout=setTimeout((function(){e.$refs.input&&e.$refs.input.getAttribute&&"password"===e.$refs.input.getAttribute("type")&&e.$refs.input.hasAttribute("value")&&e.$refs.input.removeAttribute("value")}))},handleChange:function(e){var t=e.target,n=t.value,r=t.composing;(e.isComposing||r)&&this.lazy||this.stateValue===n||(this.setValue(n,this.clearPasswordValueAttribute),bo(this.$refs.input,e,this.onChange))},handleKeyDown:function(e){13===e.keyCode&&this.$emit("pressEnter",e),this.$emit("keydown",e)}},render:function(){var e=arguments[0];if("textarea"===this.$props.type){var t={props:this.$props,attrs:this.$attrs,on:(0,f.Z)({},(0,k.CL)(this),{input:this.handleChange,keydown:this.handleKeyDown,change:go,blur:this.onBlur})};return e(yo,c()([t,{ref:"input"}]))}var n=this.$props.prefixCls,r=this.$data.stateValue,i=this.configProvider.getPrefixCls,o=i("input",n),a=(0,k.rj)(this,"addonAfter"),s=(0,k.rj)(this,"addonBefore"),l=(0,k.rj)(this,"suffix"),u=(0,k.rj)(this,"prefix"),d={props:(0,f.Z)({},(0,k.oZ)(this),{prefixCls:o,inputType:"input",value:_o(r),element:this.renderInput(o),handleReset:this.handleReset,addonAfter:a,addonBefore:s,suffix:l,prefix:u}),on:(0,k.CL)(this)};return e(io,d)}},ko={name:"AInputGroup",props:{prefixCls:u.Z.string,size:{validator:function(e){return["small","large","default"].includes(e)}},compact:Boolean},inject:{configProvider:{default:function(){return X}}},computed:{classes:function(){var e,t=this.prefixCls,n=this.size,r=this.compact,i=void 0!==r&&r,o=(0,this.configProvider.getPrefixCls)("input-group",t);return e={},(0,l.Z)(e,""+o,!0),(0,l.Z)(e,o+"-lg","large"===n),(0,l.Z)(e,o+"-sm","small"===n),(0,l.Z)(e,o+"-compact",i),e}},methods:{},render:function(){var e=arguments[0];return e("span",c()([{class:this.classes},{on:(0,k.CL)(this)}]),[(0,k.OU)(this.$slots.default)])}};var Co=n(63805),Lo=void 0;function xo(e){return!e||null===e.offsetParent}const So={name:"Wave",props:["insertExtraNode"],mounted:function(){var e=this;this.$nextTick((function(){var t=e.$el;1===t.nodeType&&(e.instance=e.bindAnimationEvent(t))}))},inject:{configProvider:{default:function(){return X}}},beforeDestroy:function(){this.instance&&this.instance.cancel(),this.clickWaveTimeoutId&&clearTimeout(this.clickWaveTimeoutId),this.destroy=!0},methods:{onClick:function(e,t){if(!(!e||xo(e)||e.className.indexOf("-leave")>=0)){var n=this.$props.insertExtraNode;this.extraNode=document.createElement("div");var r=this.extraNode;r.className="ant-click-animating-node";var i=this.getAttributeName();e.removeAttribute(i),e.setAttribute(i,"true"),Lo=Lo||document.createElement("style"),t&&"#ffffff"!==t&&"rgb(255, 255, 255)"!==t&&function(e){var t=(e||"").match(/rgba?\((\d*), (\d*), (\d*)(, [\.\d]*)?\)/);return!(t&&t[1]&&t[2]&&t[3]&&t[1]===t[2]&&t[2]===t[3])}(t)&&!/rgba\(\d*, \d*, \d*, 0\)/.test(t)&&"transparent"!==t&&(this.csp&&this.csp.nonce&&(Lo.nonce=this.csp.nonce),r.style.borderColor=t,Lo.innerHTML="\n [ant-click-animating-without-extra-node='true']::after, .ant-click-animating-node {\n --antd-wave-shadow-color: "+t+";\n }",document.body.contains(Lo)||document.body.appendChild(Lo)),n&&e.appendChild(r),Gt.addStartEventListener(e,this.onTransitionStart),Gt.addEndEventListener(e,this.onTransitionEnd)}},onTransitionStart:function(e){if(!this.destroy){var t=this.$el;e&&e.target===t&&(this.animationStart||this.resetEffect(t))}},onTransitionEnd:function(e){e&&"fadeEffect"===e.animationName&&this.resetEffect(e.target)},getAttributeName:function(){return this.$props.insertExtraNode?"ant-click-animating":"ant-click-animating-without-extra-node"},bindAnimationEvent:function(e){var t=this;if(e&&e.getAttribute&&!e.getAttribute("disabled")&&!(e.className.indexOf("disabled")>=0)){var n=function(n){if("INPUT"!==n.target.tagName&&!xo(n.target)){t.resetEffect(e);var r=getComputedStyle(e).getPropertyValue("border-top-color")||getComputedStyle(e).getPropertyValue("border-color")||getComputedStyle(e).getPropertyValue("background-color");t.clickWaveTimeoutId=window.setTimeout((function(){return t.onClick(e,r)}),0),fo.cancel(t.animationStartId),t.animationStart=!0,t.animationStartId=fo((function(){t.animationStart=!1}),10)}};return e.addEventListener("click",n,!0),{cancel:function(){e.removeEventListener("click",n,!0)}}}},resetEffect:function(e){if(e&&e!==this.extraNode&&e instanceof Element){var t=this.$props.insertExtraNode,n=this.getAttributeName();e.setAttribute(n,"false"),Lo&&(Lo.innerHTML=""),t&&this.extraNode&&e.contains(this.extraNode)&&e.removeChild(this.extraNode),Gt.removeStartEventListener(e,this.onTransitionStart),Gt.removeEndEventListener(e,this.onTransitionEnd)}}},render:function(){return this.configProvider.csp&&(this.csp=this.configProvider.csp),this.$slots.default&&this.$slots.default[0]}},Zo=function(){return{prefixCls:u.Z.string,type:u.Z.string,htmlType:u.Z.oneOf(["button","submit","reset"]).def("button"),icon:u.Z.any,shape:u.Z.oneOf(["circle","circle-outline","round"]),size:u.Z.oneOf(["small","large","default"]).def("default"),loading:u.Z.oneOfType([u.Z.bool,u.Z.object]),disabled:u.Z.bool,ghost:u.Z.bool,block:u.Z.bool}};var To=/^[\u4e00-\u9fa5]{2}$/,zo=To.test.bind(To);const Oo={name:"AButton",inheritAttrs:!1,__ANT_BUTTON:!0,props:Zo(),inject:{configProvider:{default:function(){return X}}},data:function(){return{sizeMap:{large:"lg",small:"sm"},sLoading:!!this.loading,hasTwoCNChar:!1}},computed:{classes:function(){var e,t=this.prefixCls,n=this.type,r=this.shape,i=this.size,o=this.hasTwoCNChar,a=this.sLoading,s=this.ghost,c=this.block,u=this.icon,d=this.$slots,h=(0,this.configProvider.getPrefixCls)("btn",t),f=!1!==this.configProvider.autoInsertSpaceInButton,p="";switch(i){case"large":p="lg";break;case"small":p="sm"}var m=a?"loading":u,v=(0,k.OU)(d.default);return e={},(0,l.Z)(e,""+h,!0),(0,l.Z)(e,h+"-"+n,n),(0,l.Z)(e,h+"-"+r,r),(0,l.Z)(e,h+"-"+p,p),(0,l.Z)(e,h+"-icon-only",0===v.length&&m),(0,l.Z)(e,h+"-loading",a),(0,l.Z)(e,h+"-background-ghost",s||"ghost"===n),(0,l.Z)(e,h+"-two-chinese-chars",o&&f),(0,l.Z)(e,h+"-block",c),e}},watch:{loading:function(e,t){var n=this;t&&"boolean"!=typeof t&&clearTimeout(this.delayTimeout),e&&"boolean"!=typeof e&&e.delay?this.delayTimeout=setTimeout((function(){n.sLoading=!!e}),e.delay):this.sLoading=!!e}},mounted:function(){this.fixTwoCNChar()},updated:function(){this.fixTwoCNChar()},beforeDestroy:function(){this.delayTimeout&&clearTimeout(this.delayTimeout)},methods:{fixTwoCNChar:function(){var e=this.$refs.buttonNode;if(e){var t=e.textContent;this.isNeedInserted()&&zo(t)?this.hasTwoCNChar||(this.hasTwoCNChar=!0):this.hasTwoCNChar&&(this.hasTwoCNChar=!1)}},handleClick:function(e){this.$data.sLoading||this.$emit("click",e)},insertSpace:function(e,t){var n=this.$createElement,r=t?" ":"";if("string"==typeof e.text){var i=e.text.trim();return zo(i)&&(i=i.split("").join(r)),n("span",[i])}return e},isNeedInserted:function(){var e=this.$slots,t=this.type,n=(0,k.rj)(this,"icon");return e.default&&1===e.default.length&&!n&&"link"!==t}},render:function(){var e=this,t=arguments[0],n=this.type,r=this.htmlType,i=this.classes,o=this.disabled,a=this.handleClick,s=this.sLoading,l=this.$slots,u=this.$attrs,d=(0,k.rj)(this,"icon"),h={attrs:(0,f.Z)({},u,{disabled:o}),class:i,on:(0,f.Z)({},(0,k.CL)(this),{click:a})},p=s?"loading":d,m=p?t(Ui,{attrs:{type:p}}):null,v=(0,k.OU)(l.default),y=!1!==this.configProvider.autoInsertSpaceInButton,g=v.map((function(t){return e.insertSpace(t,e.isNeedInserted()&&y)}));if(void 0!==u.href)return t("a",c()([h,{ref:"buttonNode"}]),[m,g]);var _=t("button",c()([h,{ref:"buttonNode",attrs:{type:r||"button"}}]),[m,g]);return"link"===n?_:t(So,[_])}};var Ho={prefixCls:u.Z.string,size:{validator:function(e){return["small","large","default"].includes(e)}}};const Do={name:"AButtonGroup",props:Ho,inject:{configProvider:{default:function(){return X}}},data:function(){return{sizeMap:{large:"lg",small:"sm"}}},render:function(){var e,t=arguments[0],n=this.prefixCls,r=this.size,i=this.$slots,o=this.configProvider.getPrefixCls,a=o("btn-group",n),s="";switch(r){case"large":s="lg";break;case"small":s="sm"}var c=(e={},(0,l.Z)(e,""+a,!0),(0,l.Z)(e,a+"-"+s,s),e);return t("div",{class:c},[(0,k.OU)(i.default)])}};Oo.Group=Do,Oo.install=function(e){e.use(B),e.component(Oo.name,Oo),e.component(Do.name,Do)};const Vo=Oo,Po={name:"AInputSearch",inheritAttrs:!1,model:{prop:"value",event:"change.value"},props:(0,f.Z)({},po,{enterButton:u.Z.any}),inject:{configProvider:{default:function(){return X}}},methods:{onChange:function(e){e&&e.target&&"click"===e.type&&this.$emit("search",e.target.value,e),this.$emit("change",e)},onSearch:function(e){this.loading||this.disabled||(this.$emit("search",this.$refs.input.stateValue,e),(0,Co.isMobile)({tablet:!0})||this.$refs.input.focus())},focus:function(){this.$refs.input.focus()},blur:function(){this.$refs.input.blur()},renderLoading:function(e){var t=this.$createElement,n=this.$props.size,r=(0,k.rj)(this,"enterButton");return(r=r||""===r)?t(Vo,{class:e+"-button",attrs:{type:"primary",size:n},key:"enterButton"},[t(Ui,{attrs:{type:"loading"}})]):t(Ui,{class:e+"-icon",attrs:{type:"loading"},key:"loadingIcon"})},renderSuffix:function(e){var t=this.$createElement,n=this.loading,r=(0,k.rj)(this,"suffix"),i=(0,k.rj)(this,"enterButton");if(i=i||""===i,n&&!i)return[r,this.renderLoading(e)];if(i)return r;var o=t(Ui,{class:e+"-icon",attrs:{type:"search"},key:"searchIcon",on:{click:this.onSearch}});return r?[r,o]:o},renderAddonAfter:function(e){var t=this.$createElement,n=this.size,r=this.disabled,i=this.loading,o=e+"-button",a=(0,k.rj)(this,"enterButton");a=a||""===a;var s=(0,k.rj)(this,"addonAfter");if(i&&a)return[this.renderLoading(e),s];if(!a)return s;var c=Array.isArray(a)?a[0]:a,l=void 0,u=c.componentOptions&&c.componentOptions.Ctor.extendOptions.__ANT_BUTTON;return l="button"===c.tag||u?(0,fn.Tm)(c,{key:"enterButton",class:u?o:"",props:u?{size:n}:{},on:{click:this.onSearch}}):t(Vo,{class:o,attrs:{type:"primary",size:n,disabled:r},key:"enterButton",on:{click:this.onSearch}},[!0===a||""===a?t(Ui,{attrs:{type:"search"}}):a]),s?[l,s]:l}},render:function(){var e,t=arguments[0],n=(0,k.oZ)(this),r=n.prefixCls,i=n.inputPrefixCls,o=n.size,a=(n.loading,(0,Oe.Z)(n,["prefixCls","inputPrefixCls","size","loading"])),s=this.configProvider.getPrefixCls,c=s("input-search",r),u=s("input",i),d=(0,k.rj)(this,"enterButton"),p=(0,k.rj)(this,"addonBefore"),m=void 0;(d=d||""===d)?m=h()(c,(e={},(0,l.Z)(e,c+"-enter-button",!!d),(0,l.Z)(e,c+"-"+o,!!o),e)):m=c;var v=(0,f.Z)({},(0,k.CL)(this));delete v.search;var y={props:(0,f.Z)({},a,{prefixCls:u,size:o,suffix:this.renderSuffix(c),prefix:(0,k.rj)(this,"prefix"),addonAfter:this.renderAddonAfter(c),addonBefore:p,className:m}),attrs:this.$attrs,ref:"input",on:(0,f.Z)({pressEnter:this.onSearch},v,{change:this.onChange})};return t(wo,y)}};var Yo={click:"click",hover:"mouseover"};const Ao={name:"AInputPassword",mixins:[y.Z],inheritAttrs:!1,model:{prop:"value",event:"change.value"},props:(0,f.Z)({},po,{prefixCls:u.Z.string.def("ant-input-password"),inputPrefixCls:u.Z.string.def("ant-input"),action:u.Z.string.def("click"),visibilityToggle:u.Z.bool.def(!0)}),data:function(){return{visible:!1}},methods:{focus:function(){this.$refs.input.focus()},blur:function(){this.$refs.input.blur()},onVisibleChange:function(){this.disabled||this.setState({visible:!this.visible})},getIcon:function(){var e,t=this.$createElement,n=this.$props,r=n.prefixCls,i=n.action,o=Yo[i]||"",a={props:{type:this.visible?"eye":"eye-invisible"},on:(e={},(0,l.Z)(e,o,this.onVisibleChange),(0,l.Z)(e,"mousedown",(function(e){e.preventDefault()})),(0,l.Z)(e,"mouseup",(function(e){e.preventDefault()})),e),class:r+"-icon",key:"passwordIcon"};return t(Ui,a)}},render:function(){var e=arguments[0],t=(0,k.oZ)(this),n=t.prefixCls,r=t.inputPrefixCls,i=t.size,o=(t.suffix,t.visibilityToggle),a=(0,Oe.Z)(t,["prefixCls","inputPrefixCls","size","suffix","visibilityToggle"]),s=o&&this.getIcon(),c=h()(n,(0,l.Z)({},n+"-"+i,!!i)),u={props:(0,f.Z)({},a,{prefixCls:r,size:i,suffix:s,prefix:(0,k.rj)(this,"prefix"),addonAfter:(0,k.rj)(this,"addonAfter"),addonBefore:(0,k.rj)(this,"addonBefore")}),attrs:(0,f.Z)({},this.$attrs,{type:this.visible?"text":"password"}),class:c,ref:"input",on:(0,k.CL)(this)};return e(wo,u)}};r.default.use(F),wo.Group=ko,wo.Search=Po,wo.TextArea=yo,wo.Password=Ao,wo.install=function(e){e.use(B),e.component(wo.name,wo),e.component(wo.Group.name,wo.Group),e.component(wo.Search.name,wo.Search),e.component(wo.TextArea.name,wo.TextArea),e.component(wo.Password.name,wo.Password)};const jo=wo;function Eo(){for(var e=arguments.length,t=Array(e),n=0;ne})}},render:function(){var e=arguments[0],t=this.prefixCls,n=this.$slots,r=this.configProvider.getPrefixCls,i=r("back-top",t),o=e("div",{class:i+"-content"},[e("div",{class:i+"-icon"})]),a={on:(0,f.Z)({},(0,k.CL)(this),{click:this.scrollToTop}),class:i},s=this.visible?e("div",a,[n.default||o]):null,c=dn("fade");return e("transition",c,[s])},install:function(e){e.use(B),e.component(Go.name,Go)}};const Jo=Go;function Xo(e){return e?e.toString().split("").reverse().map((function(e){var t=Number(e);return isNaN(t)?e:t})):[]}var Qo={prefixCls:u.Z.string,count:u.Z.any,component:u.Z.string,title:u.Z.oneOfType([u.Z.number,u.Z.string,null]),displayComponent:u.Z.any,className:u.Z.object};const ea={mixins:[y.Z],props:Qo,inject:{configProvider:{default:function(){return X}}},data:function(){return{animateStarted:!0,sCount:this.count}},watch:{count:function(){this.lastCount=this.sCount,this.setState({animateStarted:!0})}},updated:function(){var e=this,t=this.animateStarted,n=this.count;t&&(this.clearTimeout(),this.timeout=setTimeout((function(){e.setState({animateStarted:!1,sCount:n},e.onAnimated)})))},beforeDestroy:function(){this.clearTimeout()},methods:{clearTimeout:function(e){function t(){return e.apply(this,arguments)}return t.toString=function(){return e.toString()},t}((function(){this.timeout&&(clearTimeout(this.timeout),this.timeout=void 0)})),getPositionByNum:function(e,t){var n=this.sCount,r=Math.abs(Number(n)),i=Math.abs(Number(this.lastCount)),o=Math.abs(Xo(n)[t]),a=Math.abs(Xo(this.lastCount)[t]);return this.animateStarted?10+e:r>i?o>=a?10+e:20+e:o<=a?10+e:e},onAnimated:function(){this.$emit("animated")},renderNumberList:function(e,t){for(var n=this.$createElement,r=[],i=0;i<30;i++)r.push(n("p",{key:i.toString(),class:h()(t,{current:e===i})},[i%10]));return r},renderCurrentNumber:function(e,t,n){var r=this.$createElement;if("number"==typeof t){var i=this.getPositionByNum(t,n);return r("span",{class:e+"-only",style:{transition:this.animateStarted||void 0===Xo(this.lastCount)[n]?"none":void 0,msTransform:"translateY("+100*-i+"%)",WebkitTransform:"translateY("+100*-i+"%)",transform:"translateY("+100*-i+"%)"},key:n},[this.renderNumberList(i,e+"-only-unit")])}return r("span",{key:"symbol",class:e+"-symbol"},[t])},renderNumberElement:function(e){var t=this,n=this.sCount;return n&&Number(n)%1==0?Xo(n).map((function(n,r){return t.renderCurrentNumber(e,n,r)})).reverse():n}},render:function(){var e=arguments[0],t=this.prefixCls,n=this.title,r=this.component,i=void 0===r?"sup":r,o=this.displayComponent,a=this.className,s=this.configProvider.getPrefixCls,c=s("scroll-number",t);if(o)return(0,fn.Tm)(o,{class:c+"-custom-component"});var l=(0,k.C2)(this,!0),u=p(this.$props,["count","component","prefixCls","displayComponent"]),d={props:(0,f.Z)({},u),attrs:{title:n},style:l,class:h()(c,a)};return l&&l.borderColor&&(d.style.boxShadow="0 0 0 1px "+l.borderColor+" inset"),e(i,d,[this.renderNumberElement(c)])}};var ta=function(){for(var e=arguments.length,t=Array(e),n=0;ne?e+"+":t},getDispayCount:function(){return this.isDot()?"":this.getNumberedDispayCount()},getScrollNumberTitle:function(){var e=this.$props.title,t=this.badgeCount;return e||("string"==typeof t||"number"==typeof t?t:void 0)},getStyleWithOffset:function(){var e=this.$props,t=e.offset,n=e.numberStyle;return t?(0,f.Z)({right:-parseInt(t[0],10)+"px",marginTop:na(t[1])?t[1]+"px":t[1]},n):(0,f.Z)({},n)},getBadgeClassName:function(e){var t,n=(0,k.OU)(this.$slots.default),r=this.hasStatus();return h()(e,(t={},(0,l.Z)(t,e+"-status",r),(0,l.Z)(t,e+"-dot-status",r&&this.dot&&!this.isZero()),(0,l.Z)(t,e+"-not-a-wrapper",!n.length),t))},hasStatus:function(){var e=this.$props,t=e.status,n=e.color;return!!t||!!n},isZero:function(){var e=this.getNumberedDispayCount();return"0"===e||0===e},isDot:function(){var e=this.$props.dot,t=this.isZero();return e&&!t||this.hasStatus()},isHidden:function(){var e=this.$props.showZero,t=this.getDispayCount(),n=this.isZero(),r=this.isDot();return(null==t||""===t||n&&!e)&&!r},renderStatusText:function(e){var t=this.$createElement,n=this.$props.text;return this.isHidden()||!n?null:t("span",{class:e+"-status-text"},[n])},renderDispayComponent:function(){var e=this.badgeCount;if(e&&"object"===(void 0===e?"undefined":(0,w.Z)(e)))return(0,fn.Tm)(e,{style:this.getStyleWithOffset()})},renderBadgeNumber:function(e,t){var n,r=this.$createElement,i=this.$props,o=i.status,a=i.color,s=this.badgeCount,c=this.getDispayCount(),u=this.isDot(),d=this.isHidden(),h=(n={},(0,l.Z)(n,e+"-dot",u),(0,l.Z)(n,e+"-count",!u),(0,l.Z)(n,e+"-multiple-words",!u&&s&&s.toString&&s.toString().length>1),(0,l.Z)(n,e+"-status-"+o,!!o),(0,l.Z)(n,e+"-status-"+a,ia(a)),n),f=this.getStyleWithOffset();return a&&!ia(a)&&((f=f||{}).background=a),d?null:r(ea,{attrs:{prefixCls:t,"data-show":!d,className:h,count:c,displayComponent:this.renderDispayComponent(),title:this.getScrollNumberTitle()},directives:[{name:"show",value:!d}],style:f,key:"scrollNumber"})}},render:function(){var e,t=arguments[0],n=this.prefixCls,r=this.scrollNumberPrefixCls,i=this.status,o=this.text,a=this.color,s=this.$slots,u=this.configProvider.getPrefixCls,d=u("badge",n),f=u("scroll-number",r),p=(0,k.OU)(s.default),m=(0,k.rj)(this,"count");Array.isArray(m)&&(m=m[0]),this.badgeCount=m;var v=this.renderBadgeNumber(d,f),y=this.renderStatusText(d),g=h()((e={},(0,l.Z)(e,d+"-status-dot",this.hasStatus()),(0,l.Z)(e,d+"-status-"+i,!!i),(0,l.Z)(e,d+"-status-"+a,ia(a)),e)),_={};if(a&&!ia(a)&&(_.background=a),!p.length&&this.hasStatus()){var b=this.getStyleWithOffset(),M=b&&b.color;return t("span",c()([{on:(0,k.CL)(this)},{class:this.getBadgeClassName(d),style:b}]),[t("span",{class:g,style:_}),t("span",{style:{color:M},class:d+"-status-text"},[o])])}var w=dn(p.length?d+"-zoom":"");return t("span",c()([{on:(0,k.CL)(this)},{class:this.getBadgeClassName(d)}]),[p,t("transition",w,[v]),y])},install:function(e){e.use(B),e.component(oa.name,oa)}},aa=oa;var sa={adjustX:1,adjustY:1},ca=[0,0];const la={topLeft:{points:["bl","tl"],overflow:sa,offset:[0,-4],targetOffset:ca},topCenter:{points:["bc","tc"],overflow:sa,offset:[0,-4],targetOffset:ca},topRight:{points:["br","tr"],overflow:sa,offset:[0,-4],targetOffset:ca},bottomLeft:{points:["tl","bl"],overflow:sa,offset:[0,4],targetOffset:ca},bottomCenter:{points:["tc","bc"],overflow:sa,offset:[0,4],targetOffset:ca},bottomRight:{points:["tr","br"],overflow:sa,offset:[0,4],targetOffset:ca}},ua={mixins:[y.Z],props:{minOverlayWidthMatchTrigger:u.Z.bool,prefixCls:u.Z.string.def("rc-dropdown"),transitionName:u.Z.string,overlayClassName:u.Z.string.def(""),openClassName:u.Z.string,animation:u.Z.any,align:u.Z.object,overlayStyle:u.Z.object.def((function(){return{}})),placement:u.Z.string.def("bottomLeft"),overlay:u.Z.any,trigger:u.Z.array.def(["hover"]),alignPoint:u.Z.bool,showAction:u.Z.array.def([]),hideAction:u.Z.array.def([]),getPopupContainer:u.Z.func,visible:u.Z.bool,defaultVisible:u.Z.bool.def(!1),mouseEnterDelay:u.Z.number.def(.15),mouseLeaveDelay:u.Z.number.def(.1)},data:function(){var e=this.defaultVisible;return(0,k.m2)(this,"visible")&&(e=this.visible),{sVisible:e}},watch:{visible:function(e){void 0!==e&&this.setState({sVisible:e})}},methods:{onClick:function(e){(0,k.m2)(this,"visible")||this.setState({sVisible:!1}),this.$emit("overlayClick",e),this.childOriginEvents.click&&this.childOriginEvents.click(e)},onVisibleChange:function(e){(0,k.m2)(this,"visible")||this.setState({sVisible:e}),this.__emit("visibleChange",e)},getMinOverlayWidthMatchTrigger:function(){var e=(0,k.oZ)(this),t=e.minOverlayWidthMatchTrigger,n=e.alignPoint;return"minOverlayWidthMatchTrigger"in e?t:!n},getOverlayElement:function(){var e=this.overlay||this.$slots.overlay||this.$scopedSlots.overlay;return"function"==typeof e?e():e},getMenuElement:function(){var e=this,t=this.onClick,n=this.prefixCls,r=this.$slots;this.childOriginEvents=(0,k.vw)(r.overlay[0]);var i={props:{prefixCls:n+"-menu",getPopupContainer:function(){return e.getPopupDomNode()}},on:{click:t}};return"string"==typeof this.getOverlayElement().type&&delete i.props.prefixCls,(0,fn.Tm)(r.overlay[0],i)},getMenuElementOrLambda:function(){return"function"==typeof(this.overlay||this.$slots.overlay||this.$scopedSlots.overlay)?this.getMenuElement:this.getMenuElement()},getPopupDomNode:function(){return this.$refs.trigger.getPopupDomNode()},getOpenClassName:function(){var e=this.$props,t=e.openClassName,n=e.prefixCls;return void 0!==t?t:n+"-open"},afterVisibleChange:function(e){if(e&&this.getMinOverlayWidthMatchTrigger()){var t=this.getPopupDomNode(),n=this.$el;n&&t&&n.offsetWidth>t.offsetWidth&&(t.style.minWidth=n.offsetWidth+"px",this.$refs.trigger&&this.$refs.trigger._component&&this.$refs.trigger._component.$refs&&this.$refs.trigger._component.$refs.alignInstance&&this.$refs.trigger._component.$refs.alignInstance.forceAlign())}},renderChildren:function(){var e=this.$slots.default&&this.$slots.default[0];return this.sVisible&&e?(0,fn.Tm)(e,{class:this.getOpenClassName()}):e}},render:function(){var e=arguments[0],t=this.$props,n=t.prefixCls,r=t.transitionName,i=t.animation,o=t.align,a=t.placement,s=t.getPopupContainer,c=t.showAction,l=t.hideAction,u=t.overlayClassName,d=t.overlayStyle,h=t.trigger,p=(0,Oe.Z)(t,["prefixCls","transitionName","animation","align","placement","getPopupContainer","showAction","hideAction","overlayClassName","overlayStyle","trigger"]),m=l;m||-1===h.indexOf("contextmenu")||(m=["click"]);var v={props:(0,f.Z)({},p,{prefixCls:n,popupClassName:u,popupStyle:d,builtinPlacements:la,action:h,showAction:c,hideAction:m||[],popupPlacement:a,popupAlign:o,popupTransitionName:r,popupAnimation:i,popupVisible:this.sVisible,afterPopupVisibleChange:this.afterVisibleChange,getPopupContainer:s}),on:{popupVisibleChange:this.onVisibleChange},ref:"trigger"};return e(Zr,v,[this.renderChildren(),e("template",{slot:"popup"},[this.$slots.overlay&&this.getMenuElement()])])}},da=function(){return{trigger:u.Z.array.def(["hover"]),overlay:u.Z.any,visible:u.Z.bool,disabled:u.Z.bool,align:u.Z.object,getPopupContainer:u.Z.func,prefixCls:u.Z.string,transitionName:u.Z.string,placement:u.Z.oneOf(["topLeft","topCenter","topRight","bottomLeft","bottomCenter","bottomRight"]),overlayClassName:u.Z.string,overlayStyle:u.Z.object,forceRender:u.Z.bool,mouseEnterDelay:u.Z.number,mouseLeaveDelay:u.Z.number,openClassName:u.Z.string,minOverlayWidthMatchTrigger:u.Z.bool}};var ha=Zo(),fa=da(),pa=Vo.Group;const ma={name:"ADropdownButton",model:{prop:"visible",event:"visibleChange"},props:(0,f.Z)({},Ho,fa,{type:u.Z.oneOf(["primary","ghost","dashed","danger","default"]).def("default"),size:u.Z.oneOf(["small","large","default"]).def("default"),htmlType:ha.htmlType,href:u.Z.string,disabled:u.Z.bool,prefixCls:u.Z.string,placement:fa.placement.def("bottomRight"),icon:u.Z.any,title:u.Z.string}),provide:function(){return{savePopupRef:this.savePopupRef}},inject:{configProvider:{default:function(){return X}}},methods:{savePopupRef:function(e){this.popupRef=e},onClick:function(e){this.$emit("click",e)},onVisibleChange:function(e){this.$emit("visibleChange",e)}},render:function(){var e=arguments[0],t=this.$props,n=t.type,r=t.disabled,i=t.htmlType,o=t.prefixCls,a=t.trigger,s=t.align,c=t.visible,l=t.placement,u=t.getPopupContainer,d=t.href,h=t.title,p=(0,Oe.Z)(t,["type","disabled","htmlType","prefixCls","trigger","align","visible","placement","getPopupContainer","href","title"]),m=(0,k.rj)(this,"icon")||e(Ui,{attrs:{type:"ellipsis"}}),v=this.configProvider.getPopupContainer,y=this.configProvider.getPrefixCls,g=y("dropdown-button",o),_={props:{align:s,disabled:r,trigger:r?[]:a,placement:l,getPopupContainer:u||v},on:{visibleChange:this.onVisibleChange}};(0,k.m2)(this,"visible")&&(_.props.visible=c);var b={props:(0,f.Z)({},p),class:g};return e(pa,b,[e(Vo,{attrs:{type:n,disabled:r,htmlType:i,href:d,title:h},on:{click:this.onClick}},[this.$slots.default]),e(ga,_,[e("template",{slot:"overlay"},[(0,k.rj)(this,"overlay")]),e(Vo,{attrs:{type:n}},[m])])])}};var va=da(),ya={name:"ADropdown",props:(0,f.Z)({},va,{prefixCls:u.Z.string,mouseEnterDelay:u.Z.number.def(.15),mouseLeaveDelay:u.Z.number.def(.1),placement:va.placement.def("bottomLeft")}),model:{prop:"visible",event:"visibleChange"},provide:function(){return{savePopupRef:this.savePopupRef}},inject:{configProvider:{default:function(){return X}}},methods:{savePopupRef:function(e){this.popupRef=e},getTransitionName:function(){var e=this.$props,t=e.placement,n=void 0===t?"":t,r=e.transitionName;return void 0!==r?r:n.indexOf("top")>=0?"slide-down":"slide-up"},renderOverlay:function(e){var t=this.$createElement,n=(0,k.rj)(this,"overlay"),r=Array.isArray(n)?n[0]:n,i=r&&(0,k.TW)(r)||{},o=i.selectable,a=void 0!==o&&o,s=i.focusable,c=void 0===s||s,l=t("span",{class:e+"-menu-submenu-arrow"},[t(Ui,{attrs:{type:"right"},class:e+"-menu-submenu-arrow-icon"})]);return r&&r.componentOptions?(0,fn.Tm)(r,{props:{mode:"vertical",selectable:a,focusable:c,expandIcon:l}}):n}},render:function(){var e=arguments[0],t=this.$slots,n=(0,k.oZ)(this),r=n.prefixCls,i=n.trigger,o=n.disabled,a=n.getPopupContainer,s=this.configProvider.getPopupContainer,c=this.configProvider.getPrefixCls,l=c("dropdown",r),u=(0,fn.Tm)(t.default,{class:l+"-trigger",props:{disabled:o}}),d=o?[]:i,h=void 0;d&&-1!==d.indexOf("contextmenu")&&(h=!0);var p={props:(0,f.Z)({alignPoint:h},n,{prefixCls:l,getPopupContainer:a||s,transitionName:this.getTransitionName(),trigger:d}),on:(0,k.CL)(this)};return e(ua,p,[u,e("template",{slot:"overlay"},[this.renderOverlay(l)])])}};ya.Button=ma;const ga=ya,_a={name:"ABreadcrumbItem",__ANT_BREADCRUMB_ITEM:!0,props:{prefixCls:u.Z.string,href:u.Z.string,separator:u.Z.any.def("/"),overlay:u.Z.any},inject:{configProvider:{default:function(){return X}}},methods:{renderBreadcrumbNode:function(e,t){var n=this.$createElement,r=(0,k.rj)(this,"overlay");return r?n(ga,{attrs:{overlay:r,placement:"bottomCenter"}},[n("span",{class:t+"-overlay-link"},[e,n(Ui,{attrs:{type:"down"}})])]):e}},render:function(){var e=arguments[0],t=this.prefixCls,n=this.$slots,r=this.configProvider.getPrefixCls,i=r("breadcrumb",t),o=(0,k.rj)(this,"separator"),a=n.default,s=void 0;return s=(0,k.m2)(this,"href")?e("a",{class:i+"-link"},[a]):e("span",{class:i+"-link"},[a]),s=this.renderBreadcrumbNode(s,i),a?e("span",[s,o&&""!==o&&e("span",{class:i+"-separator"},[o])]):null}},ba={name:"MenuDivider",props:{disabled:{type:Boolean,default:!0},rootPrefixCls:String},render:function(){var e=arguments[0],t=this.$props.rootPrefixCls;return e("li",{class:t+"-item-divider"})}},Ma={name:"ASubMenu",isSubMenu:!0,props:(0,f.Z)({},Ar.props),inject:{menuPropsContext:{default:function(){return{}}}},methods:{onKeyDown:function(e){this.$refs.subMenu.onKeyDown(e)}},render:function(){var e=arguments[0],t=this.$slots,n=this.$scopedSlots,r=this.$props,i=r.rootPrefixCls,o=r.popupClassName,a=this.menuPropsContext.theme,s={props:(0,f.Z)({},this.$props,{popupClassName:h()(i+"-"+a,o)}),ref:"subMenu",on:(0,k.CL)(this),scopedSlots:n},c=Object.keys(t);return e(Ar,s,[c.length?c.map((function(n){return e("template",{slot:n},[t[n]])})):null])}};function wa(e,t,n){var r=void 0,i=void 0,o=void 0;return ln(e,"ant-motion-collapse-legacy",{start:function(){o&&b().cancel(o),t?0===(r=e.offsetHeight)?o=b()((function(){r=e.offsetHeight,e.style.height="0px",e.style.opacity="0"})):(e.style.height="0px",e.style.opacity="0"):(e.style.height=e.offsetHeight+"px",e.style.opacity="1")},active:function(){i&&b().cancel(i),i=b()((function(){e.style.height=(t?r:0)+"px",e.style.opacity=t?"1":"0"}))},end:function(){o&&b().cancel(o),i&&b().cancel(i),e.style.height="",e.style.opacity="",n&&n()}})}const ka={enter:function(e,t){r.default.nextTick((function(){wa(e,!0,t)}))},leave:function(e,t){return wa(e,!1,t)}};var Ca={adjustX:1,adjustY:1},La=[0,0],xa={left:{points:["cr","cl"],overflow:Ca,offset:[-4,0],targetOffset:La},right:{points:["cl","cr"],overflow:Ca,offset:[4,0],targetOffset:La},top:{points:["bc","tc"],overflow:Ca,offset:[0,-4],targetOffset:La},bottom:{points:["tc","bc"],overflow:Ca,offset:[0,4],targetOffset:La},topLeft:{points:["bl","tl"],overflow:Ca,offset:[0,-4],targetOffset:La},leftTop:{points:["tr","tl"],overflow:Ca,offset:[-4,0],targetOffset:La},topRight:{points:["br","tr"],overflow:Ca,offset:[0,-4],targetOffset:La},rightTop:{points:["tl","tr"],overflow:Ca,offset:[4,0],targetOffset:La},bottomRight:{points:["tr","br"],overflow:Ca,offset:[0,4],targetOffset:La},rightBottom:{points:["bl","br"],overflow:Ca,offset:[4,0],targetOffset:La},bottomLeft:{points:["tl","bl"],overflow:Ca,offset:[0,4],targetOffset:La},leftBottom:{points:["br","bl"],overflow:Ca,offset:[-4,0],targetOffset:La}};const Sa={props:{prefixCls:u.Z.string,overlay:u.Z.any,trigger:u.Z.any},updated:function(){var e=this.trigger;e&&e.forcePopupAlign()},render:function(){var e=arguments[0],t=this.overlay,n=this.prefixCls;return e("div",{class:n+"-inner",attrs:{role:"tooltip"}},["function"==typeof t?t():t])}};function Za(){}const Ta={props:{trigger:u.Z.any.def(["hover"]),defaultVisible:u.Z.bool,visible:u.Z.bool,placement:u.Z.string.def("right"),transitionName:u.Z.oneOfType([u.Z.string,u.Z.object]),animation:u.Z.any,afterVisibleChange:u.Z.func.def((function(){})),overlay:u.Z.any,overlayStyle:u.Z.object,overlayClassName:u.Z.string,prefixCls:u.Z.string.def("rc-tooltip"),mouseEnterDelay:u.Z.number.def(0),mouseLeaveDelay:u.Z.number.def(.1),getTooltipContainer:u.Z.func,destroyTooltipOnHide:u.Z.bool.def(!1),align:u.Z.object.def((function(){return{}})),arrowContent:u.Z.any.def(null),tipId:u.Z.string,builtinPlacements:u.Z.object},methods:{getPopupElement:function(){var e=this.$createElement,t=this.$props,n=t.prefixCls,r=t.tipId;return[e("div",{class:n+"-arrow",key:"arrow"},[(0,k.rj)(this,"arrowContent")]),e(Sa,{key:"content",attrs:{trigger:this.$refs.trigger,prefixCls:n,id:r,overlay:(0,k.rj)(this,"overlay")}})]},getPopupDomNode:function(){return this.$refs.trigger.getPopupDomNode()}},render:function(e){var t=(0,k.oZ)(this),n=t.overlayClassName,r=t.trigger,i=t.mouseEnterDelay,o=t.mouseLeaveDelay,a=t.overlayStyle,s=t.prefixCls,c=t.afterVisibleChange,l=t.transitionName,u=t.animation,d=t.placement,h=t.align,p=t.destroyTooltipOnHide,m=t.defaultVisible,v=t.getTooltipContainer,y=(0,Oe.Z)(t,["overlayClassName","trigger","mouseEnterDelay","mouseLeaveDelay","overlayStyle","prefixCls","afterVisibleChange","transitionName","animation","placement","align","destroyTooltipOnHide","defaultVisible","getTooltipContainer"]),g=(0,f.Z)({},y);(0,k.m2)(this,"visible")&&(g.popupVisible=this.$props.visible);var _=(0,k.CL)(this),b={props:(0,f.Z)({popupClassName:n,prefixCls:s,action:r,builtinPlacements:xa,popupPlacement:d,popupAlign:h,getPopupContainer:v,afterPopupVisibleChange:c,popupTransitionName:l,popupAnimation:u,defaultPopupVisible:m,destroyPopupOnHide:p,mouseLeaveDelay:o,popupStyle:a,mouseEnterDelay:i},g),on:(0,f.Z)({},_,{popupVisibleChange:_.visibleChange||Za,popupAlign:_.popupAlign||Za}),ref:"trigger"};return e(Zr,b,[e("template",{slot:"popup"},[this.getPopupElement(e)]),this.$slots.default])}};var za={adjustX:1,adjustY:1},Oa={adjustX:0,adjustY:0},Ha=[0,0];function Da(e){return"boolean"==typeof e?e?za:Oa:(0,f.Z)({},Oa,e)}var Va=u.Z.oneOf(["hover","focus","click","contextmenu"]);const Pa=function(){return{trigger:u.Z.oneOfType([Va,u.Z.arrayOf(Va)]).def("hover"),visible:u.Z.bool,defaultVisible:u.Z.bool,placement:u.Z.oneOf(["top","left","right","bottom","topLeft","topRight","bottomLeft","bottomRight","leftTop","leftBottom","rightTop","rightBottom"]).def("top"),transitionName:u.Z.string.def("zoom-big-fast"),overlayStyle:u.Z.object.def((function(){return{}})),overlayClassName:u.Z.string,prefixCls:u.Z.string,mouseEnterDelay:u.Z.number.def(.1),mouseLeaveDelay:u.Z.number.def(.1),getPopupContainer:u.Z.func,arrowPointAtCenter:u.Z.bool.def(!1),autoAdjustOverflow:u.Z.oneOfType([u.Z.bool,u.Z.object]).def(!0),destroyTooltipOnHide:u.Z.bool.def(!1),align:u.Z.object.def((function(){return{}})),builtinPlacements:u.Z.object}};var Ya=Pa();const Aa={name:"ATooltip",model:{prop:"visible",event:"visibleChange"},props:(0,f.Z)({},Ya,{title:u.Z.any}),inject:{configProvider:{default:function(){return X}}},data:function(){return{sVisible:!!this.$props.visible||!!this.$props.defaultVisible}},watch:{visible:function(e){this.sVisible=e}},methods:{onVisibleChange:function(e){(0,k.m2)(this,"visible")||(this.sVisible=!this.isNoTitle()&&e),this.isNoTitle()||this.$emit("visibleChange",e)},getPopupDomNode:function(){return this.$refs.tooltip.getPopupDomNode()},getPlacements:function(){var e=this.$props,t=e.builtinPlacements,n=e.arrowPointAtCenter,r=e.autoAdjustOverflow;return t||function(e){var t=e.arrowWidth,n=void 0===t?5:t,r=e.horizontalArrowShift,i=void 0===r?16:r,o=e.verticalArrowShift,a=void 0===o?12:o,s=e.autoAdjustOverflow,c=void 0===s||s,l={left:{points:["cr","cl"],offset:[-4,0]},right:{points:["cl","cr"],offset:[4,0]},top:{points:["bc","tc"],offset:[0,-4]},bottom:{points:["tc","bc"],offset:[0,4]},topLeft:{points:["bl","tc"],offset:[-(i+n),-4]},leftTop:{points:["tr","cl"],offset:[-4,-(a+n)]},topRight:{points:["br","tc"],offset:[i+n,-4]},rightTop:{points:["tl","cr"],offset:[4,-(a+n)]},bottomRight:{points:["tr","bc"],offset:[i+n,4]},rightBottom:{points:["bl","cr"],offset:[4,a+n]},bottomLeft:{points:["tl","bc"],offset:[-(i+n),4]},leftBottom:{points:["br","cl"],offset:[-4,a+n]}};return Object.keys(l).forEach((function(t){l[t]=e.arrowPointAtCenter?(0,f.Z)({},l[t],{overflow:Da(c),targetOffset:Ha}):(0,f.Z)({},xa[t],{overflow:Da(c)}),l[t].ignoreShake=!0})),l}({arrowPointAtCenter:n,verticalArrowShift:8,autoAdjustOverflow:r})},getDisabledCompatibleChildren:function(e){var t=this.$createElement,n=e.componentOptions&&e.componentOptions.Ctor.options||{};if((!0===n.__ANT_BUTTON||!0===n.__ANT_SWITCH||!0===n.__ANT_CHECKBOX)&&(e.componentOptions.propsData.disabled||""===e.componentOptions.propsData.disabled)||"button"===e.tag&&e.data&&e.data.attrs&&void 0!==e.data.attrs.disabled){var r=function(e,t){var n={},r=(0,f.Z)({},e);return t.forEach((function(t){e&&t in e&&(n[t]=e[t],delete r[t])})),{picked:n,omitted:r}}((0,k.C2)(e),["position","left","right","top","bottom","float","display","zIndex"]),i=r.picked,o=r.omitted,a=(0,f.Z)({display:"inline-block"},i,{cursor:"not-allowed",width:e.componentOptions.propsData.block?"100%":null}),s=(0,f.Z)({},o,{pointerEvents:"none"});return t("span",{style:a,class:(0,k.ll)(e)},[(0,fn.Tm)(e,{style:s,class:null})])}return e},isNoTitle:function(){var e=(0,k.rj)(this,"title");return!e&&0!==e},getOverlay:function(){var e=(0,k.rj)(this,"title");return 0===e?e:e||""},onPopupAlign:function(e,t){var n=this.getPlacements(),r=Object.keys(n).filter((function(e){return n[e].points[0]===t.points[0]&&n[e].points[1]===t.points[1]}))[0];if(r){var i=e.getBoundingClientRect(),o={top:"50%",left:"50%"};r.indexOf("top")>=0||r.indexOf("Bottom")>=0?o.top=i.height-t.offset[1]+"px":(r.indexOf("Top")>=0||r.indexOf("bottom")>=0)&&(o.top=-t.offset[1]+"px"),r.indexOf("left")>=0||r.indexOf("Right")>=0?o.left=i.width-t.offset[0]+"px":(r.indexOf("right")>=0||r.indexOf("Left")>=0)&&(o.left=-t.offset[0]+"px"),e.style.transformOrigin=o.left+" "+o.top}}},render:function(){var e=arguments[0],t=this.$props,n=this.$data,r=this.$slots,i=t.prefixCls,o=t.openClassName,a=t.getPopupContainer,s=this.configProvider.getPopupContainer,c=this.configProvider.getPrefixCls,u=c("tooltip",i),d=(r.default||[]).filter((function(e){return e.tag||""!==e.text.trim()}));d=1===d.length?d[0]:d;var h=n.sVisible;if(!(0,k.m2)(this,"visible")&&this.isNoTitle()&&(h=!1),!d)return null;var p=this.getDisabledCompatibleChildren((0,k.l$)(d)?d:e("span",[d])),m=(0,l.Z)({},o||u+"-open",!0),v={props:(0,f.Z)({},t,{prefixCls:u,getTooltipContainer:a||s,builtinPlacements:this.getPlacements(),overlay:this.getOverlay(),visible:h}),ref:"tooltip",on:(0,f.Z)({},(0,k.CL)(this),{visibleChange:this.onVisibleChange,popupAlign:this.onPopupAlign})};return e(Ta,v,[h?(0,fn.Tm)(p,{class:m}):p])},install:function(e){e.use(B),e.component(Aa.name,Aa)}},ja=Aa;function Ea(){}const $a={name:"MenuItem",inheritAttrs:!1,props:jt,inject:{getInlineCollapsed:{default:function(){return Ea}},layoutSiderContext:{default:function(){return{}}}},isMenuItem:!0,methods:{onKeyDown:function(e){this.$refs.menuItem.onKeyDown(e)}},render:function(){var e=arguments[0],t=(0,k.oZ)(this),n=t.level,r=t.title,i=t.rootPrefixCls,o=this.getInlineCollapsed,a=this.$slots,s=this.$attrs,l=o(),u=r;void 0===r?u=1===n?a.default:"":!1===r&&(u="");var d={title:u},h=this.layoutSiderContext.sCollapsed;h||l||(d.title=null,d.visible=!1);var p={props:(0,f.Z)({},t,{title:r}),attrs:s,on:(0,k.CL)(this)},m={props:(0,f.Z)({},d,{placement:"right",overlayClassName:i+"-inline-collapsed-tooltip"})};return e(ja,m,[e($t,c()([p,{ref:"menuItem"}]),[a.default])])}};var Fa=u.Z.oneOf(["vertical","vertical-left","vertical-right","horizontal","inline"]),Ia={name:"AMenu",props:(0,f.Z)({},Ur,{theme:u.Z.oneOf(["light","dark"]).def("light"),mode:Fa.def("vertical"),selectable:u.Z.bool,selectedKeys:u.Z.arrayOf(u.Z.oneOfType([u.Z.string,u.Z.number])),defaultSelectedKeys:u.Z.array,openKeys:u.Z.array,defaultOpenKeys:u.Z.array,openAnimation:u.Z.oneOfType([u.Z.string,u.Z.object]),openTransitionName:u.Z.string,prefixCls:u.Z.string,multiple:u.Z.bool,inlineIndent:u.Z.number.def(24),inlineCollapsed:u.Z.bool,isRootMenu:u.Z.bool.def(!0),focusable:u.Z.bool.def(!1)}),Divider:(0,f.Z)({},ba,{name:"AMenuDivider"}),Item:(0,f.Z)({},$a,{name:"AMenuItem"}),SubMenu:(0,f.Z)({},Ma,{name:"ASubMenu"}),ItemGroup:(0,f.Z)({},Ft,{name:"AMenuItemGroup"}),provide:function(){return{getInlineCollapsed:this.getInlineCollapsed,menuPropsContext:this.$props}},mixins:[y.Z],inject:{layoutSiderContext:{default:function(){return{}}},configProvider:{default:function(){return X}}},model:{prop:"selectedKeys",event:"selectChange"},updated:function(){this.propsUpdating=!1},watch:{mode:function(e,t){"inline"===t&&"inline"!==e&&(this.switchingModeFromInline=!0)},openKeys:function(e){this.setState({sOpenKeys:e})},inlineCollapsed:function(e){this.collapsedChange(e)},"layoutSiderContext.sCollapsed":function(e){this.collapsedChange(e)}},data:function(){var e=(0,k.oZ)(this);re(!("inlineCollapsed"in e&&"inline"!==e.mode),"Menu","`inlineCollapsed` should only be used when Menu's `mode` is inline."),this.switchingModeFromInline=!1,this.leaveAnimationExecutedWhenInlineCollapsed=!1,this.inlineOpenKeys=[];var t=void 0;return"openKeys"in e?t=e.openKeys:"defaultOpenKeys"in e&&(t=e.defaultOpenKeys),{sOpenKeys:t}},methods:{collapsedChange:function(e){this.propsUpdating||(this.propsUpdating=!0,(0,k.m2)(this,"openKeys")?e&&(this.switchingModeFromInline=!0):e?(this.switchingModeFromInline=!0,this.inlineOpenKeys=this.sOpenKeys,this.setState({sOpenKeys:[]})):(this.setState({sOpenKeys:this.inlineOpenKeys}),this.inlineOpenKeys=[]))},restoreModeVerticalFromInline:function(){this.switchingModeFromInline&&(this.switchingModeFromInline=!1,this.$forceUpdate())},handleMouseEnter:function(e){this.restoreModeVerticalFromInline(),this.$emit("mouseenter",e)},handleTransitionEnd:function(e){var t="width"===e.propertyName&&e.target===e.currentTarget,n=e.target.className,r="[object SVGAnimatedString]"===Object.prototype.toString.call(n)?n.animVal:n,i="font-size"===e.propertyName&&r.indexOf("anticon")>=0;(t||i)&&this.restoreModeVerticalFromInline()},handleClick:function(e){this.handleOpenChange([]),this.$emit("click",e)},handleSelect:function(e){this.$emit("select",e),this.$emit("selectChange",e.selectedKeys)},handleDeselect:function(e){this.$emit("deselect",e),this.$emit("selectChange",e.selectedKeys)},handleOpenChange:function(e){this.setOpenKeys(e),this.$emit("openChange",e),this.$emit("update:openKeys",e)},setOpenKeys:function(e){(0,k.m2)(this,"openKeys")||this.setState({sOpenKeys:e})},getRealMenuMode:function(){var e=this.getInlineCollapsed();if(this.switchingModeFromInline&&e)return"inline";var t=this.$props.mode;return e?"vertical":t},getInlineCollapsed:function(){var e=this.$props.inlineCollapsed;return void 0!==this.layoutSiderContext.sCollapsed?this.layoutSiderContext.sCollapsed:e},getMenuOpenAnimation:function(e){var t=this.$props,n=t.openAnimation,r=t.openTransitionName,i=n||r;return void 0===n&&void 0===r&&("horizontal"===e?i="slide-up":"inline"===e?i={on:ka}:this.switchingModeFromInline?(i="",this.switchingModeFromInline=!1):i="zoom-big"),i}},render:function(){var e,t=this,n=arguments[0],r=this.layoutSiderContext,i=this.$slots,o=r.collapsedWidth,a=this.configProvider.getPopupContainer,s=(0,k.oZ)(this),u=s.prefixCls,d=s.theme,h=s.getPopupContainer,m=this.configProvider.getPrefixCls,v=m("menu",u),y=this.getRealMenuMode(),g=this.getMenuOpenAnimation(y),_=(e={},(0,l.Z)(e,v+"-"+d,!0),(0,l.Z)(e,v+"-inline-collapsed",this.getInlineCollapsed()),e),b={props:(0,f.Z)({},p(s,["inlineCollapsed"]),{getPopupContainer:h||a,openKeys:this.sOpenKeys,mode:y,prefixCls:v}),on:(0,f.Z)({},(0,k.CL)(this),{select:this.handleSelect,deselect:this.handleDeselect,openChange:this.handleOpenChange,mouseenter:this.handleMouseEnter}),nativeOn:{transitionend:this.handleTransitionEnd}};(0,k.m2)(this,"selectedKeys")||delete b.props.selectedKeys,"inline"!==y?(b.on.click=this.handleClick,b.props.openTransitionName=g):(b.on.click=function(e){t.$emit("click",e)},b.props.openAnimation=g);var M=this.getInlineCollapsed()&&(0===o||"0"===o||"0px"===o);return M&&(b.props.openKeys=[]),n(qr,c()([b,{class:_}]),[i.default])},install:function(e){e.use(B),e.component(Ia.name,Ia),e.component(Ia.Item.name,Ia.Item),e.component(Ia.SubMenu.name,Ia.SubMenu),e.component(Ia.Divider.name,Ia.Divider),e.component(Ia.ItemGroup.name,Ia.ItemGroup)}};const Na=Ia;var Ra=u.Z.shape({path:u.Z.string,breadcrumbName:u.Z.string,children:u.Z.array}).loose;const Wa={name:"ABreadcrumb",props:{prefixCls:u.Z.string,routes:u.Z.arrayOf(Ra),params:u.Z.any,separator:u.Z.any,itemRender:u.Z.func},inject:{configProvider:{default:function(){return X}}},methods:{defaultItemRender:function(e){var t=e.route,n=e.params,r=e.routes,i=e.paths,o=this.$createElement,a=r.indexOf(t)===r.length-1,s=function(e,t){if(!e.breadcrumbName)return null;var n=Object.keys(t).join("|");return e.breadcrumbName.replace(new RegExp(":("+n+")","g"),(function(e,n){return t[n]||e}))}(t,n);return a?o("span",[s]):o("a",{attrs:{href:"#/"+i.join("/")}},[s])},getPath:function(e,t){return e=(e||"").replace(/^\//,""),Object.keys(t).forEach((function(n){e=e.replace(":"+n,t[n])})),e},addChildPath:function(e,t,n){var r=[].concat((0,g.Z)(e)),i=this.getPath(t,n);return i&&r.push(i),r},genForRoutes:function(e){var t=this,n=e.routes,r=void 0===n?[]:n,i=e.params,o=void 0===i?{}:i,a=e.separator,s=e.itemRender,c=void 0===s?this.defaultItemRender:s,l=this.$createElement,u=[];return r.map((function(e){var n=t.getPath(e.path,o);n&&u.push(n);var i=null;return e.children&&e.children.length&&(i=l(Na,[e.children.map((function(e){return l(Na.Item,{key:e.path||e.breadcrumbName},[c({route:e,params:o,routes:r,paths:t.addChildPath(u,e.path,o),h:t.$createElement})])}))])),l(_a,{attrs:{overlay:i,separator:a},key:n||e.breadcrumbName},[c({route:e,params:o,routes:r,paths:u,h:t.$createElement})])}))}},render:function(){var e=arguments[0],t=void 0,n=this.prefixCls,r=this.routes,i=this.params,o=void 0===i?{}:i,a=this.$slots,s=this.$scopedSlots,c=this.configProvider.getPrefixCls,l=c("breadcrumb",n),u=(0,k.OU)(a.default),d=(0,k.rj)(this,"separator"),h=this.itemRender||s.itemRender||this.defaultItemRender;return r&&r.length>0?t=this.genForRoutes({routes:r,params:o,separator:d,itemRender:h}):u.length&&(t=u.map((function(e,t){return re((0,k.cV)(e).__ANT_BREADCRUMB_ITEM||(0,k.cV)(e).__ANT_BREADCRUMB_SEPARATOR,"Breadcrumb","Only accepts Breadcrumb.Item and Breadcrumb.Separator as it's children"),(0,fn.Tm)(e,{props:{separator:d},key:t})}))),e("div",{class:l},[t])}},Ka={name:"ABreadcrumbSeparator",__ANT_BREADCRUMB_SEPARATOR:!0,props:{prefixCls:u.Z.string},inject:{configProvider:{default:function(){return X}}},render:function(){var e=arguments[0],t=this.prefixCls,n=this.$slots,r=this.configProvider.getPrefixCls,i=r("breadcrumb",t),o=n.default;return e("span",{class:i+"-separator"},[o||"/"])}};Wa.Item=_a,Wa.Separator=Ka,Wa.install=function(e){e.use(B),e.component(Wa.name,Wa),e.component(_a.name,_a),e.component(Ka.name,Ka)};const Ba=Wa;var Ua=n(30381),qa=n.n(Ua);const Ga=6,Ja=7,Xa={functional:!0,render:function(e,t){for(var n=arguments[0],r=t.props,i=r.value,o=i.localeData(),a=r.prefixCls,s=[],c=[],l=o.firstDayOfWeek(),u=void 0,d=qa()(),h=0;ht.year()?1:e.year()===t.year()&&e.month()>t.month()}function hs(e){return"rc-calendar-"+e.year()+"-"+e.month()+"-"+e.date()}const fs={props:{contentRender:u.Z.func,dateRender:u.Z.func,disabledDate:u.Z.func,prefixCls:u.Z.string,selectedValue:u.Z.oneOfType([u.Z.any,u.Z.arrayOf(u.Z.any)]),value:u.Z.object,hoverValue:u.Z.any.def([]),showWeekNumber:u.Z.bool},render:function(){var e=arguments[0],t=(0,k.oZ)(this),n=t.contentRender,r=t.prefixCls,i=t.selectedValue,o=t.value,a=t.showWeekNumber,s=t.dateRender,c=t.disabledDate,u=t.hoverValue,d=(0,k.CL)(this),f=d.select,p=void 0===f?cs:f,m=d.dayHover,v=void 0===m?cs:m,y=void 0,g=void 0,_=void 0,b=[],M=es(o),w=r+"-cell",C=r+"-week-number-cell",L=r+"-date",x=r+"-today",S=r+"-selected-day",Z=r+"-selected-date",T=r+"-selected-start-date",z=r+"-selected-end-date",O=r+"-in-range-cell",H=r+"-last-month-cell",D=r+"-next-month-btn-day",V=r+"-disabled-cell",P=r+"-disabled-cell-first-of-row",Y=r+"-disabled-cell-last-of-row",A=r+"-last-day-of-month",j=o.clone();j.date(1);var E=j.day(),$=(E+7-o.localeData().firstDayOfWeek())%7,F=j.clone();F.add(0-$,"days");var I=0;for(y=0;y0&&(G=b[I-1]);var J=w,X=!1,Q=!1;ls(_,M)&&(J+=" "+x,W=!0);var ee=us(_,o),te=ds(_,o);if(i&&Array.isArray(i)){var ne=u.length?u:i;if(!ee&&!te){var re=ne[0],ie=ne[1];re&&ls(_,re)&&(Q=!0,B=!0,J+=" "+T),(re||ie)&&(ls(_,ie)?(Q=!0,B=!0,J+=" "+z):(null==re&&_.isBefore(ie,"day")||null==ie&&_.isAfter(re,"day")||_.isAfter(re,"day")&&_.isBefore(ie,"day"))&&(J+=" "+O))}}else ls(_,o)&&(Q=!0,B=!0);ls(_,i)&&(J+=" "+Z),ee&&(J+=" "+H),te&&(J+=" "+D),_.clone().endOf("month").date()===_.date()&&(J+=" "+A),c&&c(_,o)&&(X=!0,G&&c(G,o)||(J+=" "+P),q&&c(q,o)||(J+=" "+Y)),Q&&(J+=" "+S),X&&(J+=" "+V);var oe=void 0;if(s)oe=s(_,o);else{var ae=n?n(_,o):_.date();oe=e("div",{key:hs(_),class:L,attrs:{"aria-selected":Q,"aria-disabled":X}},[ae])}U.push(e("td",{key:I,on:{click:X?cs:p.bind(null,_),mouseenter:X?cs:v.bind(null,_)},attrs:{role:"gridcell",title:ts(_)},class:J},[oe])),I++}N.push(e("tr",{key:y,attrs:{role:"row"},class:h()((R={},(0,l.Z)(R,r+"-current-week",W),(0,l.Z)(R,r+"-active-week",B),R))},[K,U]))}return e("tbody",{class:r+"-tbody"},[N])}},ps={functional:!0,render:function(e,t){var n=arguments[0],r=t.props,i=t.listeners,o=void 0===i?{}:i,a=r.prefixCls,s={props:r,on:o};return n("table",{class:a+"-table",attrs:{cellSpacing:"0",role:"grid"}},[n(Xa,s),n(fs,s)])}};function ms(){}const vs={name:"MonthTable",mixins:[y.Z],props:{cellRender:u.Z.func,prefixCls:u.Z.string,value:u.Z.object,locale:u.Z.any,contentRender:u.Z.any,disabledDate:u.Z.func},data:function(){return{sValue:this.value}},watch:{value:function(e){this.setState({sValue:e})}},methods:{setAndSelectValue:function(e){this.setState({sValue:e}),this.__emit("select",e)},chooseMonth:function(e){var t=this.sValue.clone();t.month(e),this.setAndSelectValue(t)},months:function(){for(var e=this.sValue.clone(),t=[],n=0,r=0;r<4;r++){t[r]=[];for(var i=0;i<3;i++){e.month(n);var o=rs(e);t[r][i]={value:n,content:o,title:o},n++}}return t}},render:function(){var e=this,t=arguments[0],n=this.$props,r=this.sValue,i=es(r),o=this.months(),a=r.month(),s=n.prefixCls,c=n.locale,u=n.contentRender,d=n.cellRender,h=n.disabledDate,f=o.map((function(n,o){var f=n.map((function(n){var o,f=!1;if(h){var p=r.clone();p.month(n.value),f=h(p)}var m=(o={},(0,l.Z)(o,s+"-cell",1),(0,l.Z)(o,s+"-cell-disabled",f),(0,l.Z)(o,s+"-selected-cell",n.value===a),(0,l.Z)(o,s+"-current-cell",i.year()===r.year()&&n.value===i.month()),o),v=void 0;if(d){var y=r.clone();y.month(n.value),v=d(y,c)}else{var g=void 0;if(u){var _=r.clone();_.month(n.value),g=u(_,c)}else g=n.content;v=t("a",{class:s+"-month"},[g])}return t("td",{attrs:{role:"gridcell",title:n.title},key:n.value,on:{click:f?ms:function(){return e.chooseMonth(n.value)}},class:m},[v])}));return t("tr",{key:o,attrs:{role:"row"}},[f])}));return t("table",{class:s+"-table",attrs:{cellSpacing:"0",role:"grid"}},[t("tbody",{class:s+"-tbody"},[f])])}};function ys(){}function gs(e){return e?es(e):qa()()}var _s=u.Z.custom((function(e){return Array.isArray(e)?0===e.length||-1!==e.findIndex((function(e){return void 0===e||qa().isMoment(e)})):void 0===e||qa().isMoment(e)}));const bs={mixins:[y.Z],name:"CalendarMixinWrapper",props:{value:_s,defaultValue:_s},data:function(){var e=this.$props;return{sValue:e.value||e.defaultValue||gs(),sSelectedValue:e.selectedValue||e.defaultSelectedValue}},watch:{value:function(e){var t=e||this.defaultValue||gs(this.sValue);this.setState({sValue:t})},selectedValue:function(e){this.setState({sSelectedValue:e})}},methods:{onSelect:function(e,t){e&&this.setValue(e),this.setSelectedValue(e,t)},renderRoot:function(e){var t,n=this.$createElement,r=this.$props,i=r.prefixCls;return n("div",{ref:"rootInstance",class:(t={},(0,l.Z)(t,i,1),(0,l.Z)(t,i+"-hidden",!r.visible),(0,l.Z)(t,e.class,!!e.class),t),attrs:{tabIndex:"0"},on:{keydown:this.onKeyDown||ys,blur:this.onBlur||ys}},[e.children])},setSelectedValue:function(e,t){(0,k.m2)(this,"selectedValue")||this.setState({sSelectedValue:e}),this.__emit("select",e,t)},setValue:function(e){var t=this.sValue;(0,k.m2)(this,"value")||this.setState({sValue:e}),(t&&e&&!t.isSame(e)||!t&&e||t&&!e)&&this.__emit("change",e)},isAllowedDate:function(e){return as(e,this.disabledDate,this.disabledTime)}}},Ms={methods:{getFormat:function(){var e=this.format,t=this.locale,n=this.timePicker;return e||(e=n?t.dateTimeFormat:t.dateFormat),e},focus:function(){this.focusElement?this.focusElement.focus():this.$refs.rootInstance&&this.$refs.rootInstance.focus()},saveFocusElement:function(e){this.focusElement=e}}};const ws={name:"CalendarHeader",mixins:[y.Z],props:{value:u.Z.object,locale:u.Z.object,yearSelectOffset:u.Z.number.def(10),yearSelectTotal:u.Z.number.def(20),Select:u.Z.object,prefixCls:u.Z.string,type:u.Z.string,showTypeSwitch:u.Z.bool,headerComponents:u.Z.array},methods:{onYearChange:function(e){var t=this.value.clone();t.year(parseInt(e,10)),this.__emit("valueChange",t)},onMonthChange:function(e){var t=this.value.clone();t.month(parseInt(e,10)),this.__emit("valueChange",t)},yearSelectElement:function(e){for(var t=this.$createElement,n=this.yearSelectOffset,r=this.yearSelectTotal,i=this.prefixCls,o=this.Select,a=e-n,s=a+r,c=[],l=a;l0&&(y=u.map((function(n){return"string"==typeof n?t(xs,{key:n,attrs:{prefixCls:p,disabled:s.disabled,value:n,checked:e.stateValue===n}},[n]):t(xs,{key:"radio-group-value-options-"+n.value,attrs:{prefixCls:p,disabled:n.disabled||s.disabled,value:n.value,checked:e.stateValue===n.value}},[n.label])}))),t("div",{class:v,on:{mouseenter:i,mouseleave:a}},[y])}},Ts={name:"ARadioButton",props:(0,f.Z)({},xs.props),inject:{radioGroupContext:{default:void 0},configProvider:{default:function(){return X}}},render:function(){var e=arguments[0],t=(0,k.oZ)(this),n=t.prefixCls,r=(0,Oe.Z)(t,["prefixCls"]),i=this.configProvider.getPrefixCls,o=i("radio-button",n),a={props:(0,f.Z)({},r,{prefixCls:o}),on:(0,k.CL)(this)};return this.radioGroupContext&&(a.on.change=this.radioGroupContext.onRadioChange,a.props.checked=this.$props.value===this.radioGroupContext.stateValue,a.props.disabled=this.$props.disabled||this.radioGroupContext.disabled),e(xs,a,[this.$slots.default])}};var zs=no.Option;var Os={prefixCls:u.Z.string,locale:u.Z.any,fullscreen:u.Z.boolean,yearSelectOffset:u.Z.number,yearSelectTotal:u.Z.number,type:u.Z.string,value:u.Z.any,validRange:u.Z.array,headerRender:u.Z.func};const Hs={props:(0,k.SQ)(Os,{yearSelectOffset:10,yearSelectTotal:20}),inject:{configProvider:{default:function(){return X}}},methods:{getYearSelectElement:function(e,t){var n=this,r=this.$createElement,i=this.yearSelectOffset,o=this.yearSelectTotal,a=this.locale,s=void 0===a?{}:a,c=this.fullscreen,l=this.validRange,u=t-i,d=u+o;l&&(u=l[0].get("year"),d=l[1].get("year")+1);for(var h="年"===s.year?"年":"",f=[],p=u;pa.get("month")&&r.month(a.get("month")),s===o.get("year")&&c=0}(e,this.$data._activeKey)||this.setState({_activeKey:ec(e)})}},beforeDestroy:function(){this.destroy=!0,b().cancel(this.sentinelId)},methods:{onTabClick:function(e,t){this.tabBar.componentOptions&&this.tabBar.componentOptions.listeners&&this.tabBar.componentOptions.listeners.tabClick&&this.tabBar.componentOptions.listeners.tabClick(e,t),this.setActiveKey(e)},onNavKeyDown:function(e){var t=e.keyCode;if(t===qs||t===Gs){e.preventDefault();var n=this.getNextActiveKey(!0);this.onTabClick(n)}else if(t===Bs||t===Us){e.preventDefault();var r=this.getNextActiveKey(!1);this.onTabClick(r)}},onScroll:function(e){var t=e.target;t===e.currentTarget&&t.scrollLeft>0&&(t.scrollLeft=0)},setSentinelStart:function(e){this.sentinelStart=e},setSentinelEnd:function(e){this.sentinelEnd=e},setPanelSentinelStart:function(e){e!==this.panelSentinelStart&&this.updateSentinelContext(),this.panelSentinelStart=e},setPanelSentinelEnd:function(e){e!==this.panelSentinelEnd&&this.updateSentinelContext(),this.panelSentinelEnd=e},setActiveKey:function(e){this.$data._activeKey!==e&&("activeKey"in(0,k.oZ)(this)||this.setState({_activeKey:e}),this.__emit("change",e))},getNextActiveKey:function(e){var t=this.$data._activeKey,n=[];this.$props.children.forEach((function(t){var r=(0,k.TV)(t,"disabled");t&&!r&&""!==r&&(e?n.push(t):n.unshift(t))}));var r=n.length,i=r&&n[0].key;return n.forEach((function(e,o){e.key===t&&(i=o===r-1?n[0].key:n[o+1].key)})),i},updateSentinelContext:function(){var e=this;this.destroy||(b().cancel(this.sentinelId),this.sentinelId=b()((function(){e.destroy||e.$forceUpdate()})))}},render:function(){var e,t=arguments[0],n=this.$props,r=n.prefixCls,i=n.navWrapper,o=n.tabBarPosition,a=n.renderTabContent,s=n.renderTabBar,c=n.destroyInactiveTabPane,u=n.direction,d=n.tabBarGutter,h=(e={},(0,l.Z)(e,r,1),(0,l.Z)(e,r+"-"+o,1),(0,l.Z)(e,r+"-rtl","rtl"===u),e);this.tabBar=s();var m=(0,fn.Tm)(this.tabBar,{props:{prefixCls:r,navWrapper:i,tabBarPosition:o,panels:n.children,activeKey:this.$data._activeKey,direction:u,tabBarGutter:d},on:{keydown:this.onNavKeyDown,tabClick:this.onTabClick},key:"tabBar"}),v=(0,fn.Tm)(a(),{props:{prefixCls:r,tabBarPosition:o,activeKey:this.$data._activeKey,destroyInactiveTabPane:c,direction:u},on:{change:this.setActiveKey},children:n.children,key:"tabContent"}),y=t(Xs,{key:"sentinelStart",attrs:{setRef:this.setSentinelStart,nextElement:this.panelSentinelStart}}),g=t(Xs,{key:"sentinelEnd",attrs:{setRef:this.setSentinelEnd,prevElement:this.panelSentinelEnd}}),_=[];"bottom"===o?_.push(y,v,g,m):_.push(m,y,v,g);var b=(0,f.Z)({},p((0,k.CL)(this),["change"]),{scroll:this.onScroll});return t("div",{on:b,class:h},[_])}};r.default.use(D.Z,{name:"ant-ref"});const nc=tc,rc={name:"TabPane",props:{active:u.Z.bool,destroyInactiveTabPane:u.Z.bool,forceRender:u.Z.bool,placeholder:u.Z.any,rootPrefixCls:u.Z.string,tab:u.Z.any,closable:u.Z.bool,disabled:u.Z.bool},inject:{sentinelContext:{default:function(){return{}}}},render:function(){var e,t=arguments[0],n=this.$props,r=n.destroyInactiveTabPane,i=n.active,o=n.forceRender,a=n.rootPrefixCls,s=this.$slots.default,c=(0,k.rj)(this,"placeholder");this._isActived=this._isActived||i;var u=a+"-tabpane",d=(e={},(0,l.Z)(e,u,1),(0,l.Z)(e,u+"-inactive",!i),(0,l.Z)(e,u+"-active",i),e),h=r?i:this._isActived,f=h||o,p=this.sentinelContext,m=p.sentinelStart,v=p.sentinelEnd,y=p.setPanelSentinelStart,g=p.setPanelSentinelEnd,_=void 0,b=void 0;return i&&f&&(_=t(Xs,{attrs:{setRef:y,prevElement:m}}),b=t(Xs,{attrs:{setRef:g,nextElement:v}})),t("div",{class:d,attrs:{role:"tabpanel","aria-hidden":i?"false":"true"}},[_,f?s:c,b])}};function ic(e){var t=[];return e.forEach((function(e){e.data&&t.push(e)})),t}function oc(e,t){for(var n=ic(e),r=0;r2&&void 0!==arguments[2]?arguments[2]:"ltr",r=lc(t)?"translateY":"translateX";return lc(t)||"rtl"!==n?r+"("+100*-e+"%) translateZ(0)":r+"("+100*e+"%) translateZ(0)"}function dc(e,t){var n=lc(t)?"marginTop":"marginLeft";return(0,l.Z)({},n,100*-e+"%")}function hc(e,t){return+window.getComputedStyle(e).getPropertyValue(t).replace("px","")}function fc(e,t){return+e.getPropertyValue(t).replace("px","")}function pc(e,t,n,r,i){var o=hc(i,"padding-"+e);if(!r||!r.parentNode)return o;var a=r.parentNode.childNodes;return Array.prototype.some.call(a,(function(i){var a=window.getComputedStyle(i);return i!==r?(o+=fc(a,"margin-"+e),o+=i[t],o+=fc(a,"margin-"+n),"content-box"===a.boxSizing&&(o+=fc(a,"border-"+e+"-width")+fc(a,"border-"+n+"-width")),!1):(o+=fc(a,"margin-"+e),!0)})),o}const mc={name:"TabContent",props:{animated:{type:Boolean,default:!0},animatedWithMargin:{type:Boolean,default:!0},prefixCls:{default:"ant-tabs",type:String},activeKey:u.Z.oneOfType([u.Z.string,u.Z.number]),tabBarPosition:String,direction:u.Z.string,destroyInactiveTabPane:u.Z.bool},computed:{classes:function(){var e,t=this.animated,n=this.prefixCls;return e={},(0,l.Z)(e,n+"-content",!0),(0,l.Z)(e,t?n+"-content-animated":n+"-content-no-animated",!0),e}},methods:{getTabPanes:function(){var e=this.$props,t=e.activeKey,n=this.$slots.default||[],r=[];return n.forEach((function(n){if(n){var i=n.key,o=t===i;r.push((0,fn.Tm)(n,{props:{active:o,destroyInactiveTabPane:e.destroyInactiveTabPane,rootPrefixCls:e.prefixCls}}))}})),r}},render:function(){var e=arguments[0],t=this.activeKey,n=this.tabBarPosition,r=this.animated,i=this.animatedWithMargin,o=this.direction,a=this.classes,s={};if(r&&this.$slots.default){var c=oc(this.$slots.default,t);if(-1!==c){var l=i?dc(c,n):cc(uc(c,n,o));s=l}else s={display:"none"}}return e("div",{class:a,style:s},[this.getTabPanes()])}};var vc=function(e){if("undefined"!=typeof window&&window.document&&window.document.documentElement){var t=Array.isArray(e)?e:[e],n=window.document.documentElement;return t.some((function(e){return e in n.style}))}return!1},yc=vc(["flex","webkitFlex","Flex","msFlex"]);function gc(e,t){var n=e.$props,r=n.styles,i=void 0===r?{}:r,o=n.panels,a=n.activeKey,s=n.direction,c=e.getRef("root"),l=e.getRef("nav")||c,u=e.getRef("inkBar"),d=e.getRef("activeTab"),h=u.style,f=e.$props.tabBarPosition,p=oc(o,a);if(t&&(h.display="none"),d){var m=d,v=sc(h);if(ac(h,""),h.width="",h.height="",h.left="",h.top="",h.bottom="",h.right="","top"===f||"bottom"===f){var y=function(e,t){return pc("left","offsetWidth","right",e,t)}(m,l),g=m.offsetWidth;g===c.offsetWidth?g=0:i.inkBar&&void 0!==i.inkBar.width&&(g=parseFloat(i.inkBar.width,10))&&(y+=(m.offsetWidth-g)/2),"rtl"===s&&(y=hc(m,"margin-left")-y),v?ac(h,"translate3d("+y+"px,0,0)"):h.left=y+"px",h.width=g+"px"}else{var _=function(e,t){return pc("top","offsetHeight","bottom",e,t)}(m,l),b=m.offsetHeight;i.inkBar&&void 0!==i.inkBar.height&&(b=parseFloat(i.inkBar.height,10))&&(_+=(m.offsetHeight-b)/2),v?(ac(h,"translate3d(0,"+_+"px,0)"),h.top="0"):h.top=_+"px",h.height=b+"px"}}h.display=-1!==p?"block":"none"}const _c={name:"InkTabBarNode",mixins:[y.Z],props:{inkBarAnimated:{type:Boolean,default:!0},direction:u.Z.string,prefixCls:String,styles:Object,tabBarPosition:String,saveRef:u.Z.func.def((function(){})),getRef:u.Z.func.def((function(){})),panels:u.Z.array,activeKey:u.Z.oneOfType([u.Z.string,u.Z.number])},updated:function(){this.$nextTick((function(){gc(this)}))},mounted:function(){this.$nextTick((function(){gc(this,!0)}))},render:function(){var e,t=arguments[0],n=this.prefixCls,r=this.styles,i=void 0===r?{}:r,o=this.inkBarAnimated,a=n+"-ink-bar",s=(e={},(0,l.Z)(e,a,!0),(0,l.Z)(e,o?a+"-animated":a+"-no-animated",!0),e);return t("div",c()([{style:i.inkBar,class:s,key:"inkBar"},{directives:[{name:"ant-ref",value:this.saveRef("inkBar")}]}]))}};function bc(){}const Mc={name:"TabBarTabsNode",mixins:[y.Z],props:{activeKey:u.Z.oneOfType([u.Z.string,u.Z.number]),panels:u.Z.any.def([]),prefixCls:u.Z.string.def(""),tabBarGutter:u.Z.any.def(null),onTabClick:u.Z.func,saveRef:u.Z.func.def(bc),getRef:u.Z.func.def(bc),renderTabBarNode:u.Z.func,tabBarPosition:u.Z.string,direction:u.Z.string},render:function(){var e=this,t=arguments[0],n=this.$props,r=n.panels,i=n.activeKey,o=n.prefixCls,a=n.tabBarGutter,s=n.saveRef,u=n.tabBarPosition,d=n.direction,h=[],f=this.renderTabBarNode||this.$scopedSlots.renderTabBarNode;return r.forEach((function(n,p){if(n){var m=(0,k.oZ)(n),v=n.key,y=i===v?o+"-tab-active":"";y+=" "+o+"-tab";var g={on:{}},_=m.disabled||""===m.disabled;_?y+=" "+o+"-tab-disabled":g.on.click=function(){e.__emit("tabClick",v)};var b=[];i===v&&b.push({name:"ant-ref",value:s("activeTab")});var M=(0,k.rj)(n,"tab"),w=a&&p===r.length-1?0:a;w="number"==typeof w?w+"px":w;var C="rtl"===d?"marginLeft":"marginRight",L=(0,l.Z)({},lc(u)?"marginBottom":C,w);Nt()(void 0!==M,"There must be `tab` property or slot on children of Tabs.");var x=t("div",c()([{attrs:{role:"tab","aria-disabled":_?"true":"false","aria-selected":i===v?"true":"false"}},g,{class:y,key:v,style:L},{directives:b}]),[M]);f&&(x=f(x)),h.push(x)}})),t("div",{directives:[{name:"ant-ref",value:this.saveRef("navTabsContainer")}]},[h])}};function wc(){}const kc={name:"TabBarRootNode",mixins:[y.Z],props:{saveRef:u.Z.func.def(wc),getRef:u.Z.func.def(wc),prefixCls:u.Z.string.def(""),tabBarPosition:u.Z.string.def("top"),extraContent:u.Z.any},methods:{onKeyDown:function(e){this.__emit("keydown",e)}},render:function(){var e=arguments[0],t=this.prefixCls,n=this.onKeyDown,r=this.tabBarPosition,i=this.extraContent,o=(0,l.Z)({},t+"-bar",!0),a="top"===r||"bottom"===r,s=a?{float:"right"}:{},u=this.$slots.default,d=u;return i&&(d=[(0,fn.Tm)(i,{key:"extra",style:(0,f.Z)({},s)}),(0,fn.Tm)(u,{key:"content"})],d=a?d:d.reverse()),e("div",c()([{attrs:{role:"tablist",tabIndex:"0"},class:o,on:{keydown:n}},{directives:[{name:"ant-ref",value:this.saveRef("root")}]}]),[d])}};var Cc=n(23279),Lc=n.n(Cc);function xc(){}const Sc={name:"ScrollableTabBarNode",mixins:[y.Z],props:{activeKey:u.Z.any,getRef:u.Z.func.def((function(){})),saveRef:u.Z.func.def((function(){})),tabBarPosition:u.Z.oneOf(["left","right","top","bottom"]).def("left"),prefixCls:u.Z.string.def(""),scrollAnimated:u.Z.bool.def(!0),navWrapper:u.Z.func.def((function(e){return e})),prevIcon:u.Z.any,nextIcon:u.Z.any,direction:u.Z.string},data:function(){return this.offset=0,this.prevProps=(0,f.Z)({},this.$props),{next:!1,prev:!1}},watch:{tabBarPosition:function(){var e=this;this.tabBarPositionChange=!0,this.$nextTick((function(){e.setOffset(0)}))}},mounted:function(){var e=this;this.$nextTick((function(){e.updatedCal(),e.debouncedResize=Lc()((function(){e.setNextPrev(),e.scrollToActiveTab()}),200),e.resizeObserver=new m.Z(e.debouncedResize),e.resizeObserver.observe(e.$props.getRef("container"))}))},updated:function(){var e=this;this.$nextTick((function(){e.updatedCal(e.prevProps),e.prevProps=(0,f.Z)({},e.$props)}))},beforeDestroy:function(){this.resizeObserver&&this.resizeObserver.disconnect(),this.debouncedResize&&this.debouncedResize.cancel&&this.debouncedResize.cancel()},methods:{updatedCal:function(e){var t=this,n=this.$props;e&&e.tabBarPosition!==n.tabBarPosition?this.setOffset(0):this.isNextPrevShown(this.$data)!==this.isNextPrevShown(this.setNextPrev())?(this.$forceUpdate(),this.$nextTick((function(){t.scrollToActiveTab()}))):e&&n.activeKey===e.activeKey||this.scrollToActiveTab()},setNextPrev:function(){var e=this.$props.getRef("nav"),t=this.$props.getRef("navTabsContainer"),n=this.getScrollWH(t||e),r=this.getOffsetWH(this.$props.getRef("container"))+1,i=this.getOffsetWH(this.$props.getRef("navWrap")),o=this.offset,a=r-n,s=this.next,c=this.prev;if(a>=0)s=!1,this.setOffset(0,!1),o=0;else if(a1&&void 0!==arguments[1])||arguments[1],n=Math.min(0,e);if(this.offset!==n){this.offset=n;var r={},i=this.$props.tabBarPosition,o=this.$props.getRef("nav").style,a=sc(o);"left"===i||"right"===i?r=a?{value:"translate3d(0,"+n+"px,0)"}:{name:"top",value:n+"px"}:a?("rtl"===this.$props.direction&&(n=-n),r={value:"translate3d("+n+"px,0,0)"}):r={name:"left",value:n+"px"},a?ac(o,r.value):o[r.name]=r.value,t&&this.setNextPrev()}},setPrev:function(e){this.prev!==e&&(this.prev=e)},setNext:function(e){this.next!==e&&(this.next=e)},isNextPrevShown:function(e){return e?e.next||e.prev:this.next||this.prev},prevTransitionEnd:function(e){if("opacity"===e.propertyName){var t=this.$props.getRef("container");this.scrollToActiveTab({target:t,currentTarget:t})}},scrollToActiveTab:function(e){var t=this.$props.getRef("activeTab"),n=this.$props.getRef("navWrap");if((!e||e.target===e.currentTarget)&&t){var r=this.isNextPrevShown()&&this.lastNextPrevShown;if(this.lastNextPrevShown=this.isNextPrevShown(),r){var i=this.getScrollWH(t),o=this.getOffsetWH(n),a=this.offset,s=this.getOffsetLT(n),c=this.getOffsetLT(t);s>c?(a+=s-c,this.setOffset(a)):s+o=0),e),C={props:(0,f.Z)({},this.$props,this.$attrs,{inkBarAnimated:m,extraContent:s,prevIcon:_,nextIcon:b}),style:r,on:(0,k.CL)(this),class:M},L=void 0;return a?(L=a(C,Tc),(0,fn.Tm)(L,C)):t(Tc,C)}},Oc={TabPane:rc,name:"ATabs",model:{prop:"activeKey",event:"change"},props:{prefixCls:u.Z.string,activeKey:u.Z.oneOfType([u.Z.string,u.Z.number]),defaultActiveKey:u.Z.oneOfType([u.Z.string,u.Z.number]),hideAdd:u.Z.bool.def(!1),tabBarStyle:u.Z.object,tabBarExtraContent:u.Z.any,destroyInactiveTabPane:u.Z.bool.def(!1),type:u.Z.oneOf(["line","card","editable-card"]),tabPosition:u.Z.oneOf(["top","right","bottom","left"]).def("top"),size:u.Z.oneOf(["default","small","large"]),animated:u.Z.oneOfType([u.Z.bool,u.Z.object]),tabBarGutter:u.Z.number,renderTabBar:u.Z.func},inject:{configProvider:{default:function(){return X}}},mounted:function(){var e=" no-flex",t=this.$el;t&&!yc&&-1===t.className.indexOf(e)&&(t.className+=e)},methods:{removeTab:function(e,t){t.stopPropagation(),Qs(e)&&this.$emit("edit",e,"remove")},handleChange:function(e){this.$emit("change",e)},createNewTab:function(e){this.$emit("edit",e,"add")},onTabClick:function(e){this.$emit("tabClick",e)},onPrevClick:function(e){this.$emit("prevClick",e)},onNextClick:function(e){this.$emit("nextClick",e)}},render:function(){var e,t,n=this,r=arguments[0],i=(0,k.oZ)(this),o=i.prefixCls,a=i.size,s=i.type,u=void 0===s?"line":s,d=i.tabPosition,h=i.animated,p=void 0===h||h,m=i.hideAdd,v=i.renderTabBar,y=this.configProvider.getPrefixCls,g=y("tabs",o),_=(0,k.OU)(this.$slots.default),b=(0,k.rj)(this,"tabBarExtraContent"),M="object"===(void 0===p?"undefined":(0,w.Z)(p))?p.tabPane:p;"line"!==u&&(M="animated"in i&&M);var C=(e={},(0,l.Z)(e,g+"-vertical","left"===d||"right"===d),(0,l.Z)(e,g+"-"+a,!!a),(0,l.Z)(e,g+"-card",u.indexOf("card")>=0),(0,l.Z)(e,g+"-"+u,!0),(0,l.Z)(e,g+"-no-animation",!M),e),L=[];"editable-card"===u&&(L=[],_.forEach((function(e,t){var i=(0,k.oZ)(e).closable,o=(i=void 0===i||i)?r(Ui,{attrs:{type:"close"},class:g+"-close-x",on:{click:function(t){return n.removeTab(e.key,t)}}}):null;L.push((0,fn.Tm)(e,{props:{tab:r("div",{class:i?void 0:g+"-tab-unclosable"},[(0,k.rj)(e,"tab"),o])},key:e.key||t}))})),m||(b=r("span",[r(Ui,{attrs:{type:"plus"},class:g+"-new-tab",on:{click:this.createNewTab}}),b]))),b=b?r("div",{class:g+"-extra-content"},[b]):null;var x=v||this.$scopedSlots.renderTabBar,S=(0,k.CL)(this),Z={props:(0,f.Z)({},this.$props,{prefixCls:g,tabBarExtraContent:b,renderTabBar:x}),on:S},T=(t={},(0,l.Z)(t,g+"-"+d+"-content",!0),(0,l.Z)(t,g+"-card-content",u.indexOf("card")>=0),t),z={props:(0,f.Z)({},(0,k.oZ)(this),{prefixCls:g,tabBarPosition:d,renderTabBar:function(){return r(zc,c()([{key:"tabBar"},Z]))},renderTabContent:function(){return r(mc,{class:T,attrs:{animated:M,animatedWithMargin:!0}})},children:L.length>0?L:_,__propsSymbol__:Symbol()}),on:(0,f.Z)({},S,{change:this.handleChange}),class:C};return r(nc,z)}};Oc.TabPane=(0,f.Z)({},rc,{name:"ATabPane",__ANT_TAB_PANE:!0}),Oc.TabContent=(0,f.Z)({},mc,{name:"ATabContent"}),r.default.use(D.Z,{name:"ant-ref"}),Oc.install=function(e){e.use(B),e.component(Oc.name,Oc),e.component(Oc.TabPane.name,Oc.TabPane),e.component(Oc.TabContent.name,Oc.TabContent)};const Hc=Oc;var Dc=void 0;if("undefined"!=typeof window){window.matchMedia||(window.matchMedia=function(e){return{media:e,matches:!1,addListener:function(){},removeListener:function(){}}}),Dc=n(24974)}var Vc=["xxl","xl","lg","md","sm","xs"],Pc={xs:"(max-width: 575px)",sm:"(min-width: 576px)",md:"(min-width: 768px)",lg:"(min-width: 992px)",xl:"(min-width: 1200px)",xxl:"(min-width: 1600px)"},Yc=[],Ac=-1,jc={};const Ec={dispatch:function(e){return jc=e,!(Yc.length<1)&&(Yc.forEach((function(e){e.func(jc)})),!0)},subscribe:function(e){0===Yc.length&&this.register();var t=(++Ac).toString();return Yc.push({token:t,func:e}),e(jc),t},unsubscribe:function(e){0===(Yc=Yc.filter((function(t){return t.token!==e}))).length&&this.unregister()},unregister:function(){Object.keys(Pc).map((function(e){return Dc.unregister(Pc[e])}))},register:function(){var e=this;Object.keys(Pc).map((function(t){return Dc.register(Pc[t],{match:function(){var n=(0,f.Z)({},jc,(0,l.Z)({},t,!0));e.dispatch(n)},unmatch:function(){var n=(0,f.Z)({},jc,(0,l.Z)({},t,!1));e.dispatch(n)},destroy:function(){}})}))}};var $c={gutter:u.Z.oneOfType([u.Z.object,u.Z.number,u.Z.array]),type:u.Z.oneOf(["flex"]),align:u.Z.oneOf(["top","middle","bottom","stretch"]),justify:u.Z.oneOf(["start","end","center","space-around","space-between"]),prefixCls:u.Z.string},Fc=["xxl","xl","lg","md","sm","xs"];const Ic={name:"ARow",mixins:[y.Z],props:(0,f.Z)({},$c,{gutter:u.Z.oneOfType([u.Z.object,u.Z.number,u.Z.array]).def(0)}),provide:function(){return{rowContext:this}},inject:{configProvider:{default:function(){return X}}},data:function(){return{screens:{}}},mounted:function(){var e=this;this.$nextTick((function(){e.token=Ec.subscribe((function(t){var n=e.gutter;("object"===(void 0===n?"undefined":(0,w.Z)(n))||Array.isArray(n)&&("object"===(0,w.Z)(n[0])||"object"===(0,w.Z)(n[1])))&&(e.screens=t)}))}))},beforeDestroy:function(){Ec.unsubscribe(this.token)},methods:{getGutter:function(){var e=[0,0],t=this.gutter,n=this.screens;return(Array.isArray(t)?t:[t,0]).forEach((function(t,r){if("object"===(void 0===t?"undefined":(0,w.Z)(t)))for(var i=0;i0?{marginLeft:u[0]/-2+"px",marginRight:u[0]/-2+"px"}:{},u[1]>0?{marginTop:u[1]/-2+"px",marginBottom:u[1]/-2+"px"}:{});return t("div",{class:d,style:h},[a.default])},install:function(e){e.use(B),e.component(Ic.name,Ic)}},Nc=Ic;var Rc=u.Z.oneOfType([u.Z.string,u.Z.number]),Wc=u.Z.shape({span:Rc,order:Rc,offset:Rc,push:Rc,pull:Rc}).loose,Kc=u.Z.oneOfType([u.Z.string,u.Z.number,Wc]),Bc={span:Rc,order:Rc,offset:Rc,push:Rc,pull:Rc,xs:Kc,sm:Kc,md:Kc,lg:Kc,xl:Kc,xxl:Kc,prefixCls:u.Z.string,flex:Rc};const Uc={name:"ACol",props:Bc,inject:{configProvider:{default:function(){return X}},rowContext:{default:function(){return null}}},methods:{parseFlex:function(e){return"number"==typeof e?e+" "+e+" auto":/^\d+(\.\d+)?(px|em|rem|%)$/.test(e)?"0 0 "+e:e}},render:function(){var e,t=this,n=arguments[0],r=this.span,i=this.order,o=this.offset,a=this.push,s=this.pull,c=this.flex,u=this.prefixCls,d=this.$slots,h=this.rowContext,p=this.configProvider.getPrefixCls,m=p("col",u),v={};["xs","sm","md","lg","xl","xxl"].forEach((function(e){var n,r={},i=t[e];"number"==typeof i?r.span=i:"object"===(void 0===i?"undefined":(0,w.Z)(i))&&(r=i||{}),v=(0,f.Z)({},v,(n={},(0,l.Z)(n,m+"-"+e+"-"+r.span,void 0!==r.span),(0,l.Z)(n,m+"-"+e+"-order-"+r.order,r.order||0===r.order),(0,l.Z)(n,m+"-"+e+"-offset-"+r.offset,r.offset||0===r.offset),(0,l.Z)(n,m+"-"+e+"-push-"+r.push,r.push||0===r.push),(0,l.Z)(n,m+"-"+e+"-pull-"+r.pull,r.pull||0===r.pull),n))}));var y=(0,f.Z)((e={},(0,l.Z)(e,""+m,!0),(0,l.Z)(e,m+"-"+r,void 0!==r),(0,l.Z)(e,m+"-order-"+i,i),(0,l.Z)(e,m+"-offset-"+o,o),(0,l.Z)(e,m+"-push-"+a,a),(0,l.Z)(e,m+"-pull-"+s,s),e),v),g={on:(0,k.CL)(this),class:y,style:{}};if(h){var _=h.getGutter();_&&(g.style=(0,f.Z)({},_[0]>0?{paddingLeft:_[0]/2+"px",paddingRight:_[0]/2+"px"}:{},_[1]>0?{paddingTop:_[1]/2+"px",paddingBottom:_[1]/2+"px"}:{}))}return c&&(g.style.flex=this.parseFlex(c)),n("div",g,[d.default])},install:function(e){e.use(B),e.component(Uc.name,Uc)}},qc=Uc;var Gc=Hc.TabPane;const Jc={name:"ACard",mixins:[y.Z],props:{prefixCls:u.Z.string,title:u.Z.any,extra:u.Z.any,bordered:u.Z.bool.def(!0),bodyStyle:u.Z.object,headStyle:u.Z.object,loading:u.Z.bool.def(!1),hoverable:u.Z.bool.def(!1),type:u.Z.string,size:u.Z.oneOf(["default","small"]),actions:u.Z.any,tabList:u.Z.array,tabProps:u.Z.object,tabBarExtraContent:u.Z.any,activeTabKey:u.Z.string,defaultActiveTabKey:u.Z.string},inject:{configProvider:{default:function(){return X}}},data:function(){return{widerPadding:!1}},methods:{getAction:function(e){var t=this.$createElement;return e.map((function(n,r){return t("li",{style:{width:100/e.length+"%"},key:"action-"+r},[t("span",[n])])}))},onTabChange:function(e){this.$emit("tabChange",e)},isContainGrid:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[],t=void 0;return e.forEach((function(e){e&&(0,k.cV)(e).__ANT_CARD_GRID&&(t=!0)})),t}},render:function(){var e,t,n=arguments[0],r=this.$props,i=r.prefixCls,o=r.headStyle,a=void 0===o?{}:o,s=r.bodyStyle,u=void 0===s?{}:s,d=r.loading,h=r.bordered,m=void 0===h||h,v=r.size,y=void 0===v?"default":v,g=r.type,_=r.tabList,b=r.tabProps,M=void 0===b?{}:b,w=r.hoverable,C=r.activeTabKey,L=r.defaultActiveTabKey,x=this.configProvider.getPrefixCls,S=x("card",i),Z=this.$slots,T=this.$scopedSlots,z=(0,k.rj)(this,"tabBarExtraContent"),O=(e={},(0,l.Z)(e,""+S,!0),(0,l.Z)(e,S+"-loading",d),(0,l.Z)(e,S+"-bordered",m),(0,l.Z)(e,S+"-hoverable",!!w),(0,l.Z)(e,S+"-contain-grid",this.isContainGrid(Z.default)),(0,l.Z)(e,S+"-contain-tabs",_&&_.length),(0,l.Z)(e,S+"-"+y,"default"!==y),(0,l.Z)(e,S+"-type-"+g,!!g),e),H=0===u.padding||"0px"===u.padding?{padding:24}:void 0,D=n("div",{class:S+"-loading-content",style:H},[n(Nc,{attrs:{gutter:8}},[n(qc,{attrs:{span:22}},[n("div",{class:S+"-loading-block"})])]),n(Nc,{attrs:{gutter:8}},[n(qc,{attrs:{span:8}},[n("div",{class:S+"-loading-block"})]),n(qc,{attrs:{span:15}},[n("div",{class:S+"-loading-block"})])]),n(Nc,{attrs:{gutter:8}},[n(qc,{attrs:{span:6}},[n("div",{class:S+"-loading-block"})]),n(qc,{attrs:{span:18}},[n("div",{class:S+"-loading-block"})])]),n(Nc,{attrs:{gutter:8}},[n(qc,{attrs:{span:13}},[n("div",{class:S+"-loading-block"})]),n(qc,{attrs:{span:9}},[n("div",{class:S+"-loading-block"})])]),n(Nc,{attrs:{gutter:8}},[n(qc,{attrs:{span:4}},[n("div",{class:S+"-loading-block"})]),n(qc,{attrs:{span:3}},[n("div",{class:S+"-loading-block"})]),n(qc,{attrs:{span:16}},[n("div",{class:S+"-loading-block"})])])]),V=void 0!==C,P={props:(0,f.Z)({size:"large"},M,(t={},(0,l.Z)(t,V?"activeKey":"defaultActiveKey",V?C:L),(0,l.Z)(t,"tabBarExtraContent",z),t)),on:{change:this.onTabChange},class:S+"-head-tabs"},Y=void 0,A=_&&_.length?n(Hc,P,[_.map((function(e){var t=e.tab,r=e.scopedSlots,i=(void 0===r?{}:r).tab,o=void 0!==t?t:T[i]?T[i](e):null;return n(Gc,{attrs:{tab:o,disabled:e.disabled},key:e.key})}))]):null,j=(0,k.rj)(this,"title"),E=(0,k.rj)(this,"extra");(j||E||A)&&(Y=n("div",{class:S+"-head",style:a},[n("div",{class:S+"-head-wrapper"},[j&&n("div",{class:S+"-head-title"},[j]),E&&n("div",{class:S+"-extra"},[E])]),A]));var $=Z.default,F=(0,k.rj)(this,"cover"),I=F?n("div",{class:S+"-cover"},[F]):null,N=n("div",{class:S+"-body",style:u},[d?D:$]),R=(0,k.OU)(this.$slots.actions),W=R&&R.length?n("ul",{class:S+"-actions"},[this.getAction(R)]):null;return n("div",c()([{class:O,ref:"cardContainerRef"},{on:p((0,k.CL)(this),["tabChange","tab-change"])}]),[Y,I,$?N:null,W])}},Xc={name:"ACardMeta",props:{prefixCls:u.Z.string,title:u.Z.any,description:u.Z.any},inject:{configProvider:{default:function(){return X}}},render:function(){var e=arguments[0],t=this.$props.prefixCls,n=this.configProvider.getPrefixCls,r=n("card",t),i=(0,l.Z)({},r+"-meta",!0),o=(0,k.rj)(this,"avatar"),a=(0,k.rj)(this,"title"),s=(0,k.rj)(this,"description"),u=o?e("div",{class:r+"-meta-avatar"},[o]):null,d=a?e("div",{class:r+"-meta-title"},[a]):null,h=s?e("div",{class:r+"-meta-description"},[s]):null,f=d||h?e("div",{class:r+"-meta-detail"},[d,h]):null;return e("div",c()([{on:(0,k.CL)(this)},{class:i}]),[u,f])}},Qc={name:"ACardGrid",__ANT_CARD_GRID:!0,props:{prefixCls:u.Z.string,hoverable:u.Z.bool},inject:{configProvider:{default:function(){return X}}},render:function(){var e,t=arguments[0],n=this.$props,r=n.prefixCls,i=n.hoverable,o=void 0===i||i,a=this.configProvider.getPrefixCls,s=a("card",r),u=(e={},(0,l.Z)(e,s+"-grid",!0),(0,l.Z)(e,s+"-grid-hoverable",o),e);return t("div",c()([{on:(0,k.CL)(this)},{class:u}]),[this.$slots.default])}};Jc.Meta=Xc,Jc.Grid=Qc,Jc.install=function(e){e.use(B),e.component(Jc.name,Jc),e.component(Xc.name,Xc),e.component(Qc.name,Qc)};const el=Jc,tl={name:"PanelContent",props:{prefixCls:u.Z.string,isActive:u.Z.bool,destroyInactivePanel:u.Z.bool,forceRender:u.Z.bool,role:u.Z.any},data:function(){return{_isActive:void 0}},render:function(){var e,t=arguments[0];if(this._isActive=this.forceRender||this._isActive||this.isActive,!this._isActive)return null;var n=this.$props,r=n.prefixCls,i=n.isActive,o=n.destroyInactivePanel,a=n.forceRender,s=n.role,c=this.$slots,u=(e={},(0,l.Z)(e,r+"-content",!0),(0,l.Z)(e,r+"-content-active",i),e),d=a||i||!o?t("div",{class:r+"-content-box"},[c.default]):null;return t("div",{class:u,attrs:{role:s}},[d])}};var nl=function(){return{prefixCls:u.Z.string,activeKey:u.Z.oneOfType([u.Z.string,u.Z.number,u.Z.arrayOf(u.Z.oneOfType([u.Z.string,u.Z.number]))]),defaultActiveKey:u.Z.oneOfType([u.Z.string,u.Z.number,u.Z.arrayOf(u.Z.oneOfType([u.Z.string,u.Z.number]))]),accordion:u.Z.bool,destroyInactivePanel:u.Z.bool,bordered:u.Z.bool,expandIcon:u.Z.func,openAnimation:u.Z.object,expandIconPosition:u.Z.oneOf(["left","right"])}},rl=function(){return{openAnimation:u.Z.object,prefixCls:u.Z.string,header:u.Z.oneOfType([u.Z.string,u.Z.number,u.Z.node]),headerClass:u.Z.string,showArrow:u.Z.bool,isActive:u.Z.bool,destroyInactivePanel:u.Z.bool,disabled:u.Z.bool,accordion:u.Z.bool,forceRender:u.Z.bool,expandIcon:u.Z.func,extra:u.Z.any,panelKey:u.Z.any}};const il={name:"Panel",props:(0,k.SQ)(rl(),{showArrow:!0,isActive:!1,destroyInactivePanel:!1,headerClass:"",forceRender:!1}),methods:{handleItemClick:function(){this.$emit("itemClick",this.panelKey)},handleKeyPress:function(e){"Enter"!==e.key&&13!==e.keyCode&&13!==e.which||this.handleItemClick()}},render:function(){var e,t,n=arguments[0],r=this.$props,i=r.prefixCls,o=r.headerClass,a=r.isActive,s=r.showArrow,c=r.destroyInactivePanel,u=r.disabled,d=r.openAnimation,h=r.accordion,p=r.forceRender,m=r.expandIcon,v=r.extra,y=this.$slots,g={props:(0,f.Z)({appear:!0,css:!1}),on:(0,f.Z)({},d)},_=(e={},(0,l.Z)(e,i+"-header",!0),(0,l.Z)(e,o,o),e),b=(0,k.rj)(this,"header"),M=(t={},(0,l.Z)(t,i+"-item",!0),(0,l.Z)(t,i+"-item-active",a),(0,l.Z)(t,i+"-item-disabled",u),t),w=n("i",{class:"arrow"});return s&&"function"==typeof m&&(w=m(this.$props)),n("div",{class:M,attrs:{role:"tablist"}},[n("div",{class:_,on:{click:this.handleItemClick.bind(this),keypress:this.handleKeyPress},attrs:{role:h?"tab":"button",tabIndex:u?-1:0,"aria-expanded":a}},[s&&w,b,v&&n("div",{class:i+"-extra"},[v])]),n("transition",g,[n(tl,{directives:[{name:"show",value:a}],attrs:{prefixCls:i,isActive:a,destroyInactivePanel:c,forceRender:p,role:h?"tabpanel":null}},[y.default])])])}};function ol(e,t,n,r){var i=void 0;return ln(e,n,{start:function(){t?(i=e.offsetHeight,e.style.height=0):e.style.height=e.offsetHeight+"px"},active:function(){e.style.height=(t?i:0)+"px"},end:function(){e.style.height="",r()}})}const al=function(e){return{enter:function(t,n){return ol(t,!0,e+"-anim",n)},leave:function(t,n){return ol(t,!1,e+"-anim",n)}}};function sl(e){var t=e;return Array.isArray(t)||(t=t?[t]:[]),t.map((function(e){return String(e)}))}const cl={name:"Collapse",mixins:[y.Z],model:{prop:"activeKey",event:"change"},props:(0,k.SQ)(nl(),{prefixCls:"rc-collapse",accordion:!1,destroyInactivePanel:!1}),data:function(){var e=this.$props,t=e.activeKey,n=e.defaultActiveKey,r=e.openAnimation,i=e.prefixCls,o=n;return(0,k.m2)(this,"activeKey")&&(o=t),{currentOpenAnimations:r||al(i),stateActiveKey:sl(o)}},watch:{activeKey:function(e){this.setState({stateActiveKey:sl(e)})},openAnimation:function(e){this.setState({currentOpenAnimations:e})}},methods:{onClickItem:function(e){var t=this.stateActiveKey;if(this.accordion)t=t[0]===e?[]:[e];else{var n=(t=[].concat((0,g.Z)(t))).indexOf(e);n>-1?t.splice(n,1):t.push(e)}this.setActiveKey(t)},getNewChild:function(e,t){if(!(0,k.V2)(e)){var n=this.stateActiveKey,r=this.$props,i=r.prefixCls,o=r.accordion,a=r.destroyInactivePanel,s=r.expandIcon,c=e.key||String(t),l=(0,k.TW)(e),u=l.header,d=l.headerClass,h=l.disabled,f=!1;f=o?n[0]===c:n.indexOf(c)>-1;var p={};h||""===h||(p={itemClick:this.onClickItem});var m={key:c,props:{panelKey:c,header:u,headerClass:d,isActive:f,prefixCls:i,destroyInactivePanel:a,openAnimation:this.currentOpenAnimations,accordion:o,expandIcon:s},on:p};return(0,fn.Tm)(e,m)}},getItems:function(){var e=this,t=[];return this.$slots.default&&this.$slots.default.forEach((function(n,r){t.push(e.getNewChild(n,r))})),t},setActiveKey:function(e){this.setState({stateActiveKey:e}),this.$emit("change",this.accordion?e[0]:e)}},render:function(){var e=arguments[0],t=this.$props,n=t.prefixCls,r=t.accordion,i=(0,l.Z)({},n,!0);return e("div",{class:i,attrs:{role:r?"tablist":null}},[this.getItems()])}};cl.Panel=il;const ll=cl,ul={name:"ACollapse",model:{prop:"activeKey",event:"change"},props:(0,k.SQ)(nl(),{bordered:!0,openAnimation:ka,expandIconPosition:"left"}),inject:{configProvider:{default:function(){return X}}},methods:{renderExpandIcon:function(e,t){var n=this.$createElement,r=(0,k.rj)(this,"expandIcon",e),i=r||n(Ui,{attrs:{type:"right",rotate:e.isActive?90:void 0}});return(0,k.l$)(Array.isArray(r)?i[0]:i)?(0,fn.Tm)(i,{class:t+"-arrow"}):i}},render:function(){var e,t=this,n=arguments[0],r=this.prefixCls,i=this.bordered,o=this.expandIconPosition,a=this.configProvider.getPrefixCls,s=a("collapse",r),c=(e={},(0,l.Z)(e,s+"-borderless",!i),(0,l.Z)(e,s+"-icon-position-"+o,!0),e),u={props:(0,f.Z)({},(0,k.oZ)(this),{prefixCls:s,expandIcon:function(e){return t.renderExpandIcon(e,s)}}),class:c,on:(0,k.CL)(this)};return n(ll,u,[this.$slots.default])}},dl={name:"ACollapsePanel",props:(0,f.Z)({},rl()),inject:{configProvider:{default:function(){return X}}},render:function(){var e=arguments[0],t=this.prefixCls,n=this.showArrow,r=void 0===n||n,i=this.configProvider.getPrefixCls,o=i("collapse",t),a=(0,l.Z)({},o+"-no-arrow",!r),s={props:(0,f.Z)({},(0,k.oZ)(this),{prefixCls:o,extra:(0,k.rj)(this,"extra")}),class:a,on:(0,k.CL)(this)},c=(0,k.rj)(this,"header");return e(ll.Panel,s,[this.$slots.default,c?e("template",{slot:"header"},[c]):null])}};ul.Panel=dl,ul.install=function(e){e.use(B),e.component(ul.name,ul),e.component(dl.name,dl)};const hl=ul;if("undefined"!=typeof window){window.matchMedia||(window.matchMedia=function(e){return{media:e,matches:!1,addListener:function(){},removeListener:function(){}}})}var fl=n(67931).Z,pl={effect:u.Z.oneOf(["scrollx","fade"]),dots:u.Z.bool,vertical:u.Z.bool,autoplay:u.Z.bool,easing:u.Z.string,beforeChange:u.Z.func,afterChange:u.Z.func,prefixCls:u.Z.string,accessibility:u.Z.bool,nextArrow:u.Z.any,prevArrow:u.Z.any,pauseOnHover:u.Z.bool,adaptiveHeight:u.Z.bool,arrows:u.Z.bool,autoplaySpeed:u.Z.number,centerMode:u.Z.bool,centerPadding:u.Z.string,cssEase:u.Z.string,dotsClass:u.Z.string,draggable:u.Z.bool,fade:u.Z.bool,focusOnSelect:u.Z.bool,infinite:u.Z.bool,initialSlide:u.Z.number,lazyLoad:u.Z.bool,rtl:u.Z.bool,slide:u.Z.string,slidesToShow:u.Z.number,slidesToScroll:u.Z.number,speed:u.Z.number,swipe:u.Z.bool,swipeToSlide:u.Z.bool,touchMove:u.Z.bool,touchThreshold:u.Z.number,variableWidth:u.Z.bool,useCSS:u.Z.bool,slickGoTo:u.Z.number,responsive:u.Z.array,dotPosition:u.Z.oneOf(["top","bottom","left","right"])},ml={name:"ACarousel",props:(0,k.SQ)(pl,{dots:!0,arrows:!1,draggable:!1}),inject:{configProvider:{default:function(){return X}}},beforeMount:function(){this.onWindowResized=Lc()(this.onWindowResized,500,{leading:!1})},mounted:function(){(0,k.ZP)(this,"vertical")&&re(!this.vertical,"Carousel","`vertical` is deprecated, please use `dotPosition` instead."),this.autoplay&&window.addEventListener("resize",this.onWindowResized),this.innerSlider=this.$refs.slick&&this.$refs.slick.innerSlider},beforeDestroy:function(){this.autoplay&&(window.removeEventListener("resize",this.onWindowResized),this.onWindowResized.cancel())},methods:{getDotPosition:function(){return this.dotPosition?this.dotPosition:(0,k.ZP)(this,"vertical")&&this.vertical?"right":"bottom"},onWindowResized:function(){this.autoplay&&this.$refs.slick&&this.$refs.slick.innerSlider&&this.$refs.slick.innerSlider.autoPlay&&this.$refs.slick.innerSlider.autoPlay()},next:function(){this.$refs.slick.slickNext()},prev:function(){this.$refs.slick.slickPrev()},goTo:function(e){var t=arguments.length>1&&void 0!==arguments[1]&&arguments[1];this.$refs.slick.slickGoTo(e,t)}},render:function(){var e=arguments[0],t=(0,f.Z)({},this.$props),n=this.$slots;"fade"===t.effect&&(t.fade=!0);var r=this.configProvider.getPrefixCls,i=r("carousel",t.prefixCls),o="slick-dots",a=this.getDotPosition();t.vertical="left"===a||"right"===a,t.dotsClass=h()(""+o,o+"-"+(a||"bottom"),(0,l.Z)({},""+t.dotsClass,!!t.dotsClass)),t.vertical&&(i=i+" "+i+"-vertical");var s={props:(0,f.Z)({},t,{nextArrow:(0,k.rj)(this,"nextArrow"),prevArrow:(0,k.rj)(this,"prevArrow")}),on:(0,k.CL)(this),scopedSlots:this.$scopedSlots},u=(0,k.OU)(n.default);return e("div",{class:i},[e(fl,c()([{ref:"slick"},s]),[u])])},install:function(e){e.use(B),e.component(ml.name,ml)}};const vl=ml;var yl=n(67071),gl=n.n(yl);const _l={name:"CascaderMenus",mixins:[y.Z],props:{value:u.Z.array.def([]),activeValue:u.Z.array.def([]),options:u.Z.array,prefixCls:u.Z.string.def("rc-cascader-menus"),expandTrigger:u.Z.string.def("click"),visible:u.Z.bool.def(!1),dropdownMenuColumnStyle:u.Z.object,defaultFieldNames:u.Z.object,fieldNames:u.Z.object,expandIcon:u.Z.any,loadingIcon:u.Z.any},data:function(){return this.menuItems={},{}},watch:{visible:function(e){var t=this;e&&this.$nextTick((function(){t.scrollActiveItemToView()}))}},mounted:function(){var e=this;this.$nextTick((function(){e.scrollActiveItemToView()}))},methods:{getFieldName:function(e){var t=this.$props,n=t.fieldNames,r=t.defaultFieldNames;return n[e]||r[e]},getOption:function(e,t){var n=this,r=this.$createElement,i=this.prefixCls,o=this.expandTrigger,a=(0,k.rj)(this,"loadingIcon"),s=(0,k.rj)(this,"expandIcon"),c=function(r){n.__emit("select",e,t,r)},l=e[this.getFieldName("value")],u={attrs:{role:"menuitem"},on:{click:c,dblclick:function(r){n.__emit("itemDoubleClick",e,t,r)},mousedown:function(e){return e.preventDefault()}},key:Array.isArray(l)?l.join("__ant__"):l},d=i+"-menu-item",h=null,f=e[this.getFieldName("children")]&&e[this.getFieldName("children")].length>0;(f||!1===e.isLeaf)&&(d+=" "+i+"-menu-item-expand",e.loading||(h=r("span",{class:i+"-menu-item-expand-icon"},[s]))),"hover"!==o||!f&&!1!==e.isLeaf||(u.on={mouseenter:this.delayOnSelect.bind(this,c),mouseleave:this.delayOnSelect.bind(this),click:c}),this.isActiveOption(e,t)&&(d+=" "+i+"-menu-item-active",u.ref=this.getMenuItemRef(t)),e.disabled&&(d+=" "+i+"-menu-item-disabled");var p=null;e.loading&&(d+=" "+i+"-menu-item-loading",p=a||null);var m="";return e.title?m=e.title:"string"==typeof e[this.getFieldName("label")]&&(m=e[this.getFieldName("label")]),u.attrs.title=m,u.class=d,r("li",u,[e[this.getFieldName("label")],h,p])},getActiveOptions:function(e){var t=this,n=e||this.activeValue,r=this.options;return gl()(r,(function(e,r){return e[t.getFieldName("value")]===n[r]}),{childrenKeyName:this.getFieldName("children")})},getShowOptions:function(){var e=this,t=this.options,n=this.getActiveOptions().map((function(t){return t[e.getFieldName("children")]})).filter((function(e){return!!e}));return n.unshift(t),n},delayOnSelect:function(e){for(var t=this,n=arguments.length,r=Array(n>1?n-1:0),i=1;i=s.length?0:l:(l-=1)<0?s.length-1:l:0,o[a]=s[l][this.getFieldName("value")]}else if(e.keyCode===De.LEFT||e.keyCode===De.BACKSPACE)e.preventDefault(),o.splice(o.length-1,1);else if(e.keyCode===De.RIGHT)e.preventDefault(),s[c]&&s[c][this.getFieldName("children")]&&o.push(s[c][this.getFieldName("children")][0][this.getFieldName("value")]);else if(e.keyCode===De.ESC||e.keyCode===De.TAB)return void this.setPopupVisible(!1);o&&0!==o.length||this.setPopupVisible(!1);var u=this.getActiveOptions(o),d=u[u.length-1];this.handleMenuSelect(d,u.length-1,e),this.__emit("keydown",e)}else this.setPopupVisible(!0)}},render:function(){var e=arguments[0],t=this.$props,n=this.sActiveValue,r=this.handleMenuSelect,i=this.sPopupVisible,o=this.handlePopupVisibleChange,a=this.handleKeyDown,s=(0,k.CL)(this),c=t.prefixCls,l=t.transitionName,u=t.popupClassName,d=t.options,h=void 0===d?[]:d,p=t.disabled,m=t.builtinPlacements,v=t.popupPlacement,y=(0,Oe.Z)(t,["prefixCls","transitionName","popupClassName","options","disabled","builtinPlacements","popupPlacement"]),g=e("div"),_="";if(h&&h.length>0){var b=(0,k.rj)(this,"loadingIcon"),M=(0,k.rj)(this,"expandIcon")||">",w={props:(0,f.Z)({},t,{fieldNames:this.getFieldNames(),defaultFieldNames:this.defaultFieldNames,activeValue:n,visible:i,loadingIcon:b,expandIcon:M}),on:(0,f.Z)({},s,{select:r,itemDoubleClick:this.handleItemDoubleClick})};g=e(_l,w)}else _=" "+c+"-menus-empty";var C={props:(0,f.Z)({},y,{disabled:p,popupPlacement:v,builtinPlacements:m,popupTransitionName:l,action:p?[]:["click"],popupVisible:!p&&i,prefixCls:c+"-menus",popupClassName:u+_}),on:(0,f.Z)({},s,{popupVisibleChange:o}),ref:"trigger"},L=(0,k.z9)(this,"default")[0];return e(Zr,C,[L&&(0,fn.Tm)(L,{on:{keydown:a},attrs:{tabIndex:p?void 0:0}}),e("template",{slot:"popup"},[g])])}};var kl=u.Z.shape({value:u.Z.oneOfType([u.Z.string,u.Z.number]),label:u.Z.any,disabled:u.Z.bool,children:u.Z.array,key:u.Z.oneOfType([u.Z.string,u.Z.number])}).loose,Cl=u.Z.shape({value:u.Z.string.isRequired,label:u.Z.string.isRequired,children:u.Z.string}).loose,Ll=u.Z.oneOf(["click","hover"]),xl=u.Z.shape({filter:u.Z.func,render:u.Z.func,sort:u.Z.func,matchInputWidth:u.Z.bool,limit:u.Z.oneOfType([Boolean,Number])}).loose;function Sl(){}var Zl={options:u.Z.arrayOf(kl).def([]),defaultValue:u.Z.array,value:u.Z.array,displayRender:u.Z.func,transitionName:u.Z.string.def("slide-up"),popupStyle:u.Z.object.def((function(){return{}})),popupClassName:u.Z.string,popupPlacement:u.Z.oneOf(["bottomLeft","bottomRight","topLeft","topRight"]).def("bottomLeft"),placeholder:u.Z.string.def("Please select"),size:u.Z.oneOf(["large","default","small"]),disabled:u.Z.bool.def(!1),allowClear:u.Z.bool.def(!0),showSearch:u.Z.oneOfType([Boolean,xl]),notFoundContent:u.Z.any,loadData:u.Z.func,expandTrigger:Ll,changeOnSelect:u.Z.bool,prefixCls:u.Z.string,inputPrefixCls:u.Z.string,getPopupContainer:u.Z.func,popupVisible:u.Z.bool,fieldNames:Cl,autoFocus:u.Z.bool,suffixIcon:u.Z.any};function Tl(e,t,n){return t.some((function(t){return t[n.label].indexOf(e)>-1}))}function zl(e,t,n,r){function i(e){return e[r.label].indexOf(n)>-1}return e.findIndex(i)-t.findIndex(i)}function Ol(e){var t=e.fieldNames,n=void 0===t?{}:t;return{children:n.children||"children",label:n.label||"label",value:n.value||"value"}}function Hl(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[],t=arguments[1],n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:[],r=Ol(t),i=[],o=r.children;return e.forEach((function(e){var r=n.concat(e);!t.changeOnSelect&&e[o]&&e[o].length||i.push(r),e[o]&&(i=i.concat(Hl(e[o],t,r)))})),i}var Dl=function(e){return e.labels.join(" / ")},Vl={inheritAttrs:!1,name:"ACascader",mixins:[y.Z],props:Zl,model:{prop:"value",event:"change"},provide:function(){return{savePopupRef:this.savePopupRef}},inject:{configProvider:{default:function(){return X}},localeData:{default:function(){return{}}}},data:function(){this.cachedOptions=[];var e=this.value,t=this.defaultValue,n=this.popupVisible,r=this.showSearch,i=this.options;return{sValue:e||t||[],inputValue:"",inputFocused:!1,sPopupVisible:n,flattenOptions:r?Hl(i,this.$props):void 0}},mounted:function(){var e=this;this.$nextTick((function(){!e.autoFocus||e.showSearch||e.disabled||e.$refs.picker.focus()}))},watch:{value:function(e){this.setState({sValue:e||[]})},popupVisible:function(e){this.setState({sPopupVisible:e})},options:function(e){this.showSearch&&this.setState({flattenOptions:Hl(e,this.$props)})}},methods:{savePopupRef:function(e){this.popupRef=e},highlightKeyword:function(e,t,n){var r=this.$createElement;return e.split(t).map((function(e,i){return 0===i?e:[r("span",{class:n+"-menu-item-keyword"},[t]),e]}))},defaultRenderFilteredOption:function(e){var t=this,n=e.inputValue,r=e.path,i=e.prefixCls,o=e.names;return r.map((function(e,r){var a=e[o.label],s=a.indexOf(n)>-1?t.highlightKeyword(a,n,i):a;return 0===r?s:[" / ",s]}))},handleChange:function(e,t){if(this.setState({inputValue:""}),t[0].__IS_FILTERED_OPTION){var n=e[0],r=t[0].path;this.setValue(n,r)}else this.setValue(e,t)},handlePopupVisibleChange:function(e){(0,k.m2)(this,"popupVisible")||this.setState((function(t){return{sPopupVisible:e,inputFocused:e,inputValue:e?t.inputValue:""}})),this.$emit("popupVisibleChange",e)},handleInputFocus:function(e){this.$emit("focus",e)},handleInputBlur:function(e){this.setState({inputFocused:!1}),this.$emit("blur",e)},handleInputClick:function(e){var t=this.inputFocused,n=this.sPopupVisible;(t||n)&&(e.stopPropagation(),e.nativeEvent&&e.nativeEvent.stopImmediatePropagation&&e.nativeEvent.stopImmediatePropagation())},handleKeyDown:function(e){e.keyCode!==De.BACKSPACE&&e.keyCode!==De.SPACE||e.stopPropagation()},handleInputChange:function(e){var t=e.target.value;this.setState({inputValue:t}),this.$emit("search",t)},setValue:function(e,t){(0,k.m2)(this,"value")||this.setState({sValue:e}),this.$emit("change",e,t)},getLabel:function(){var e=this.options,t=this.$scopedSlots,n=Ol(this.$props),r=this.displayRender||t.displayRender||Dl,i=this.sValue,o=Array.isArray(i[0])?i[0]:i,a=gl()(e,(function(e,t){return e[n.value]===o[t]}),{childrenKeyName:n.children});return r({labels:a.map((function(e){return e[n.label]})),selectedOptions:a})},clearSelection:function(e){e.preventDefault(),e.stopPropagation(),this.inputValue?this.setState({inputValue:""}):(this.setValue([]),this.handlePopupVisibleChange(!1))},generateFilteredOptions:function(e,t){var n,r=this.$createElement,i=this.showSearch,o=this.notFoundContent,a=this.$scopedSlots,s=Ol(this.$props),c=i.filter,u=void 0===c?Tl:c,d=i.sort,h=void 0===d?zl:d,f=i.limit,p=void 0===f?50:f,m=i.render||a.showSearchRender||this.defaultRenderFilteredOption,v=this.$data,y=v.flattenOptions,g=void 0===y?[]:y,_=v.inputValue,b=void 0;if(p>0){b=[];var M=0;g.some((function(e){return u(_,e,s)&&(b.push(e),M+=1),M>=p}))}else re("number"!=typeof p,"Cascader","'limit' of showSearch in Cascader should be positive number or false."),b=g.filter((function(e){return u(_,e,s)}));return b.sort((function(e,t){return h(e,t,_,s)})),b.length>0?b.map((function(t){var n;return n={__IS_FILTERED_OPTION:!0,path:t},(0,l.Z)(n,s.label,m({inputValue:_,path:t,prefixCls:e,names:s})),(0,l.Z)(n,s.value,t.map((function(e){return e[s.value]}))),(0,l.Z)(n,"disabled",t.some((function(e){return!!e.disabled}))),n})):[(n={},(0,l.Z)(n,s.label,o||t(r,"Cascader")),(0,l.Z)(n,s.value,"ANT_CASCADER_NOT_FOUND"),(0,l.Z)(n,"disabled",!0),n)]},focus:function(){this.showSearch?this.$refs.input.focus():this.$refs.picker.focus()},blur:function(){this.showSearch?this.$refs.input.blur():this.$refs.picker.blur()}},render:function(){var e,t,n,r=arguments[0],i=this.$slots,o=this.sPopupVisible,a=this.inputValue,s=this.configProvider,c=this.localeData,u=this.$data,d=u.sValue,m=u.inputFocused,v=(0,k.oZ)(this),y=(0,k.rj)(this,"suffixIcon");y=Array.isArray(y)?y[0]:y;var g,_=s.getPopupContainer,b=v.prefixCls,M=v.inputPrefixCls,w=v.placeholder,C=void 0===w?c.placeholder:w,L=v.size,x=v.disabled,S=v.allowClear,Z=v.showSearch,T=void 0!==Z&&Z,z=v.notFoundContent,O=(0,Oe.Z)(v,["prefixCls","inputPrefixCls","placeholder","size","disabled","allowClear","showSearch","notFoundContent"]),H=this.configProvider.getPrefixCls,D=this.configProvider.renderEmpty,V=H("cascader",b),P=H("input",M),Y=h()((e={},(0,l.Z)(e,P+"-lg","large"===L),(0,l.Z)(e,P+"-sm","small"===L),e)),A=S&&!x&&d.length>0||a?r(Ui,{attrs:{type:"close-circle",theme:"filled"},class:V+"-picker-clear",on:{click:this.clearSelection},key:"clear-icon"}):null,j=h()((t={},(0,l.Z)(t,V+"-picker-arrow",!0),(0,l.Z)(t,V+"-picker-arrow-expand",o),t)),E=h()((0,k.ll)(this),V+"-picker",(n={},(0,l.Z)(n,V+"-picker-with-value",a),(0,l.Z)(n,V+"-picker-disabled",x),(0,l.Z)(n,V+"-picker-"+L,!!L),(0,l.Z)(n,V+"-picker-show-search",!!T),(0,l.Z)(n,V+"-picker-focused",m),n)),$=p(O,["options","popupPlacement","transitionName","displayRender","changeOnSelect","expandTrigger","popupVisible","getPopupContainer","loadData","popupClassName","filterOption","renderFilteredOption","sortFilteredOption","notFoundContent","defaultValue","fieldNames"]),F=v.options,I=Ol(this.$props);F&&F.length>0?a&&(F=this.generateFilteredOptions(V,D)):F=[(g={},(0,l.Z)(g,I.label,z||D(r,"Cascader")),(0,l.Z)(g,I.value,"ANT_CASCADER_NOT_FOUND"),(0,l.Z)(g,"disabled",!0),g)];o?this.cachedOptions=F:F=this.cachedOptions;var N={},R=1===(F||[]).length&&"ANT_CASCADER_NOT_FOUND"===F[0].value;R&&(N.height="auto");var W=!1!==T.matchInputWidth;W&&(a||R)&&this.$refs.input&&(N.width=this.$refs.input.$el.offsetWidth+"px");var K={props:(0,f.Z)({},$,{prefixCls:P,placeholder:d&&d.length>0?void 0:C,value:a,disabled:x,readOnly:!T,autoComplete:"off"}),class:V+"-input "+Y,ref:"input",on:{focus:T?this.handleInputFocus:Sl,click:T?this.handleInputClick:Sl,blur:T?this.handleInputBlur:Sl,keydown:this.handleKeyDown,change:T?this.handleInputChange:Sl},attrs:(0,k.TD)(this)},B=(0,k.OU)(i.default),U=y&&((0,k.l$)(y)?(0,fn.Tm)(y,{class:(0,l.Z)({},V+"-picker-arrow",!0)}):r("span",{class:V+"-picker-arrow"},[y]))||r(Ui,{attrs:{type:"down"},class:j}),q=B.length?B:r("span",{class:E,style:(0,k.C2)(this),ref:"picker"},[T?r("span",{class:V+"-picker-label"},[this.getLabel()]):null,r(jo,K),T?null:r("span",{class:V+"-picker-label"},[this.getLabel()]),A,U]),G=r(Ui,{attrs:{type:"right"}}),J=r("span",{class:V+"-menu-item-loading-icon"},[r(Ui,{attrs:{type:"redo",spin:!0}})]),X=v.getPopupContainer||_,Q={props:(0,f.Z)({},v,{getPopupContainer:X,options:F,prefixCls:V,value:d,popupVisible:o,dropdownMenuColumnStyle:N,expandIcon:G,loadingIcon:J}),on:(0,f.Z)({},(0,k.CL)(this),{popupVisibleChange:this.handlePopupVisibleChange,change:this.handleChange})};return r(wl,Q,[q])},install:function(e){e.use(B),e.component(Vl.name,Vl)}};const Pl=Vl;function Yl(){}const Al={name:"ACheckbox",inheritAttrs:!1,__ANT_CHECKBOX:!0,model:{prop:"checked"},props:{prefixCls:u.Z.string,defaultChecked:u.Z.bool,checked:u.Z.bool,disabled:u.Z.bool,isGroup:u.Z.bool,value:u.Z.any,name:u.Z.string,id:u.Z.string,indeterminate:u.Z.bool,type:u.Z.string.def("checkbox"),autoFocus:u.Z.bool},inject:{configProvider:{default:function(){return X}},checkboxGroupContext:{default:function(){}}},watch:{value:function(e,t){var n=this;this.$nextTick((function(){var r=n.checkboxGroupContext,i=void 0===r?{}:r;i.registerValue&&i.cancelValue&&(i.cancelValue(t),i.registerValue(e))}))}},mounted:function(){var e=this.value,t=this.checkboxGroupContext,n=void 0===t?{}:t;n.registerValue&&n.registerValue(e),re((0,k.ZP)(this,"checked")||this.checkboxGroupContext||!(0,k.ZP)(this,"value"),"Checkbox","`value` is not validate prop, do you mean `checked`?")},beforeDestroy:function(){var e=this.value,t=this.checkboxGroupContext,n=void 0===t?{}:t;n.cancelValue&&n.cancelValue(e)},methods:{handleChange:function(e){var t=e.target.checked;this.$emit("input",t),this.$emit("change",e)},focus:function(){this.$refs.vcCheckbox.focus()},blur:function(){this.$refs.vcCheckbox.blur()}},render:function(){var e,t=this,n=arguments[0],r=this.checkboxGroupContext,i=this.$slots,o=(0,k.oZ)(this),a=i.default,s=(0,k.CL)(this),u=s.mouseenter,d=void 0===u?Yl:u,p=s.mouseleave,m=void 0===p?Yl:p,v=(s.input,(0,Oe.Z)(s,["mouseenter","mouseleave","input"])),y=o.prefixCls,g=o.indeterminate,_=(0,Oe.Z)(o,["prefixCls","indeterminate"]),b=this.configProvider.getPrefixCls,M=b("checkbox",y),w={props:(0,f.Z)({},_,{prefixCls:M}),on:v,attrs:(0,k.TD)(this)};r?(w.on.change=function(){for(var e=arguments.length,n=Array(e),i=0;i0&&(c=this.getOptions().map((function(r){return e(Al,{attrs:{prefixCls:s,disabled:"disabled"in r?r.disabled:t.disabled,indeterminate:r.indeterminate,value:r.value,checked:-1!==n.sValue.indexOf(r.value)},key:r.value.toString(),on:{change:r.onChange||jl},class:l+"-item"},[r.label])}))),e("div",{class:l},[c])}};Al.Group=El,Al.install=function(e){e.use(B),e.component(Al.name,Al),e.component(El.name,El)};const $l=Al;function Fl(e){this.changeYear(e)}function Il(){}const Nl={name:"MonthPanel",mixins:[y.Z],props:{value:u.Z.any,defaultValue:u.Z.any,cellRender:u.Z.any,contentRender:u.Z.any,locale:u.Z.any,rootPrefixCls:u.Z.string,disabledDate:u.Z.func,renderFooter:u.Z.func,changeYear:u.Z.func.def(Il)},data:function(){var e=this.value,t=this.defaultValue;return this.nextYear=Fl.bind(this,1),this.previousYear=Fl.bind(this,-1),{sValue:e||t}},watch:{value:function(e){this.setState({sValue:e})}},methods:{setAndSelectValue:function(e){this.setValue(e),this.__emit("select",e)},setValue:function(e){(0,k.m2)(this,"value")&&this.setState({sValue:e})}},render:function(){var e=arguments[0],t=this.sValue,n=this.cellRender,r=this.contentRender,i=this.locale,o=this.rootPrefixCls,a=this.disabledDate,s=this.renderFooter,c=t.year(),l=o+"-month-panel",u=s&&s("month");return e("div",{class:l},[e("div",[e("div",{class:l+"-header"},[e("a",{class:l+"-prev-year-btn",attrs:{role:"button",title:i.previousYear},on:{click:this.previousYear}}),e("a",{class:l+"-year-select",attrs:{role:"button",title:i.yearSelect},on:{click:(0,k.CL)(this).yearPanelShow||Il}},[e("span",{class:l+"-year-select-content"},[c]),e("span",{class:l+"-year-select-arrow"},["x"])]),e("a",{class:l+"-next-year-btn",attrs:{role:"button",title:i.nextYear},on:{click:this.nextYear}})]),e("div",{class:l+"-body"},[e(vs,{attrs:{disabledDate:a,locale:i,value:t,cellRender:n,contentRender:r,prefixCls:l},on:{select:this.setAndSelectValue}})]),u&&e("div",{class:l+"-footer"},[u])])])}};function Rl(){}function Wl(e){var t=this.sValue.clone();t.add(e,"year"),this.setState({sValue:t})}function Kl(e){var t=this.sValue.clone();t.year(e),t.month(this.sValue.month()),this.sValue=t,this.__emit("select",t)}const Bl={mixins:[y.Z],props:{rootPrefixCls:u.Z.string,value:u.Z.object,defaultValue:u.Z.object,locale:u.Z.object,renderFooter:u.Z.func,disabledDate:u.Z.func},data:function(){return this.nextDecade=Wl.bind(this,10),this.previousDecade=Wl.bind(this,-10),{sValue:this.value||this.defaultValue}},watch:{value:function(e){this.sValue=e}},methods:{years:function(){for(var e=this.sValue.year(),t=10*parseInt(e/10,10)-1,n=[],r=0,i=0;i<4;i++){n[i]=[];for(var o=0;o<3;o++){var a=t+r,s=String(a);n[i][o]={content:s,year:a,title:s},r++}}return n}},render:function(){var e=this,t=arguments[0],n=this.sValue,r=this.locale,i=this.renderFooter,o=this.$props,a=(0,k.CL)(this).decadePanelShow||Rl,s=this.years(),c=n.year(),u=10*parseInt(c/10,10),d=u+9,h=this.rootPrefixCls+"-year-panel",f=o.disabledDate,p=s.map((function(r,i){var o=r.map((function(r){var i,o=!1;if(f){var a=n.clone();a.year(r.year),o=f(a)}var s=(i={},(0,l.Z)(i,h+"-cell",1),(0,l.Z)(i,h+"-cell-disabled",o),(0,l.Z)(i,h+"-selected-cell",r.year===c),(0,l.Z)(i,h+"-last-decade-cell",r.yeard),i),p=Rl;return p=r.yeard?e.nextDecade:Kl.bind(e,r.year),t("td",{attrs:{role:"gridcell",title:r.title},key:r.content,on:{click:o?Rl:p},class:s},[t("a",{class:h+"-year"},[r.content])])}));return t("tr",{key:i,attrs:{role:"row"}},[o])})),m=i&&i("year");return t("div",{class:h},[t("div",[t("div",{class:h+"-header"},[t("a",{class:h+"-prev-decade-btn",attrs:{role:"button",title:r.previousDecade},on:{click:this.previousDecade}}),t("a",{class:h+"-decade-select",attrs:{role:"button",title:r.decadeSelect},on:{click:a}},[t("span",{class:h+"-decade-select-content"},[u,"-",d]),t("span",{class:h+"-decade-select-arrow"},["x"])]),t("a",{class:h+"-next-decade-btn",attrs:{role:"button",title:r.nextDecade},on:{click:this.nextDecade}})]),t("div",{class:h+"-body"},[t("table",{class:h+"-table",attrs:{cellSpacing:"0",role:"grid"}},[t("tbody",{class:h+"-tbody"},[p])])]),m&&t("div",{class:h+"-footer"},[m])])])}};function Ul(){}function ql(e){var t=this.sValue.clone();t.add(e,"years"),this.setState({sValue:t})}function Gl(e,t){var n=this.sValue.clone();n.year(e),n.month(this.sValue.month()),this.__emit("select",n),t.preventDefault()}const Jl={mixins:[y.Z],props:{locale:u.Z.object,value:u.Z.object,defaultValue:u.Z.object,rootPrefixCls:u.Z.string,renderFooter:u.Z.func},data:function(){return this.nextCentury=ql.bind(this,100),this.previousCentury=ql.bind(this,-100),{sValue:this.value||this.defaultValue}},watch:{value:function(e){this.sValue=e}},render:function(){for(var e=this,t=arguments[0],n=this.sValue,r=this.$props,i=r.locale,o=r.renderFooter,a=n.year(),s=100*parseInt(a/100,10),c=s-10,u=s+99,d=[],h=0,f=this.rootPrefixCls+"-decade-panel",p=0;p<4;p++){d[p]=[];for(var m=0;m<3;m++){var v=c+10*h,y=c+10*h+9;d[p][m]={startDecade:v,endDecade:y},h++}}var g=o&&o("decade"),_=d.map((function(n,r){var i=n.map((function(n){var r,i=n.startDecade,o=n.endDecade,c=iu,h=(r={},(0,l.Z)(r,f+"-cell",1),(0,l.Z)(r,f+"-selected-cell",i<=a&&a<=o),(0,l.Z)(r,f+"-last-century-cell",c),(0,l.Z)(r,f+"-next-century-cell",d),r),p=i+"-"+o,m=Ul;return m=c?e.previousCentury:d?e.nextCentury:Gl.bind(e,i),t("td",{key:i,on:{click:m},attrs:{role:"gridcell"},class:h},[t("a",{class:f+"-decade"},[p])])}));return t("tr",{key:r,attrs:{role:"row"}},[i])}));return t("div",{class:f},[t("div",{class:f+"-header"},[t("a",{class:f+"-prev-century-btn",attrs:{role:"button",title:i.previousCentury},on:{click:this.previousCentury}}),t("div",{class:f+"-century"},[s,"-",u]),t("a",{class:f+"-next-century-btn",attrs:{role:"button",title:i.nextCentury},on:{click:this.nextCentury}})]),t("div",{class:f+"-body"},[t("table",{class:f+"-table",attrs:{cellSpacing:"0",role:"grid"}},[t("tbody",{class:f+"-tbody"},[_])])]),g&&t("div",{class:f+"-footer"},[g])])}};function Xl(){}function Ql(e){var t=this.value.clone();t.add(e,"months"),this.__emit("valueChange",t)}function eu(e){var t=this.value.clone();t.add(e,"years"),this.__emit("valueChange",t)}function tu(e,t){return e?t:null}const nu={name:"CalendarHeader",mixins:[y.Z],props:{prefixCls:u.Z.string,value:u.Z.object,showTimePicker:u.Z.bool,locale:u.Z.object,enablePrev:u.Z.any.def(1),enableNext:u.Z.any.def(1),disabledMonth:u.Z.func,mode:u.Z.any,monthCellRender:u.Z.func,monthCellContentRender:u.Z.func,renderFooter:u.Z.func},data:function(){return this.nextMonth=Ql.bind(this,1),this.previousMonth=Ql.bind(this,-1),this.nextYear=eu.bind(this,1),this.previousYear=eu.bind(this,-1),{yearPanelReferer:null}},methods:{onMonthSelect:function(e){this.__emit("panelChange",e,"date"),(0,k.CL)(this).monthSelect?this.__emit("monthSelect",e):this.__emit("valueChange",e)},onYearSelect:function(e){var t=this.yearPanelReferer;this.setState({yearPanelReferer:null}),this.__emit("panelChange",e,t),this.__emit("valueChange",e)},onDecadeSelect:function(e){this.__emit("panelChange",e,"year"),this.__emit("valueChange",e)},changeYear:function(e){e>0?this.nextYear():this.previousYear()},monthYearElement:function(e){var t=this,n=this.$createElement,r=this.$props,i=r.prefixCls,o=r.locale,a=r.value,s=a.localeData(),c=o.monthBeforeYear,l=i+"-"+(c?"my-select":"ym-select"),u=e?" "+i+"-time-status":"",d=n("a",{class:i+"-year-select"+u,attrs:{role:"button",title:e?null:o.yearSelect},on:{click:e?Xl:function(){return t.showYearPanel("date")}}},[a.format(o.yearFormat)]),h=n("a",{class:i+"-month-select"+u,attrs:{role:"button",title:e?null:o.monthSelect},on:{click:e?Xl:this.showMonthPanel}},[o.monthFormat?a.format(o.monthFormat):s.monthsShort(a)]),f=void 0;e&&(f=n("a",{class:i+"-day-select"+u,attrs:{role:"button"}},[a.format(o.dayFormat)]));return n("span",{class:l},[c?[h,f,d]:[d,h,f]])},showMonthPanel:function(){this.__emit("panelChange",null,"month")},showYearPanel:function(e){this.setState({yearPanelReferer:e}),this.__emit("panelChange",null,"year")},showDecadePanel:function(){this.__emit("panelChange",null,"decade")}},render:function(){var e=this,t=arguments[0],n=(0,k.oZ)(this),r=n.prefixCls,i=n.locale,o=n.mode,a=n.value,s=n.showTimePicker,c=n.enableNext,l=n.enablePrev,u=n.disabledMonth,d=n.renderFooter,h=null;return"month"===o&&(h=t(Nl,{attrs:{locale:i,value:a,rootPrefixCls:r,disabledDate:u,cellRender:n.monthCellRender,contentRender:n.monthCellContentRender,renderFooter:d,changeYear:this.changeYear},on:{select:this.onMonthSelect,yearPanelShow:function(){return e.showYearPanel("month")}}})),"year"===o&&(h=t(Bl,{attrs:{locale:i,value:a,rootPrefixCls:r,renderFooter:d,disabledDate:u},on:{select:this.onYearSelect,decadePanelShow:this.showDecadePanel}})),"decade"===o&&(h=t(Jl,{attrs:{locale:i,value:a,rootPrefixCls:r,renderFooter:d},on:{select:this.onDecadeSelect}})),t("div",{class:r+"-header"},[t("div",{style:{position:"relative"}},[tu(l&&!s,t("a",{class:r+"-prev-year-btn",attrs:{role:"button",title:i.previousYear},on:{click:this.previousYear}})),tu(l&&!s,t("a",{class:r+"-prev-month-btn",attrs:{role:"button",title:i.previousMonth},on:{click:this.previousMonth}})),this.monthYearElement(s),tu(c&&!s,t("a",{class:r+"-next-month-btn",on:{click:this.nextMonth},attrs:{title:i.nextMonth}})),tu(c&&!s,t("a",{class:r+"-next-year-btn",on:{click:this.nextYear},attrs:{title:i.nextYear}}))]),h])}};function ru(){}const iu={functional:!0,render:function(e,t){var n=arguments[0],r=t.props,i=t.listeners,o=void 0===i?{}:i,a=r.prefixCls,s=r.locale,c=r.value,l=r.timePicker,u=r.disabled,d=r.disabledDate,h=r.text,f=o.today,p=void 0===f?ru:f,m=(!h&&l?s.now:h)||s.today,v=d&&!as(es(c),d),y=v||u,g=y?a+"-today-btn-disabled":"";return n("a",{class:a+"-today-btn "+g,attrs:{role:"button",title:ns(c)},on:{click:y?ru:p}},[m])}};function ou(){}const au={functional:!0,render:function(e,t){var n=arguments[0],r=t.props,i=t.listeners,o=void 0===i?{}:i,a=r.prefixCls,s=r.locale,c=r.okDisabled,l=o.ok,u=void 0===l?ou:l,d=a+"-ok-btn";return c&&(d+=" "+a+"-ok-btn-disabled"),n("a",{class:d,attrs:{role:"button"},on:{click:c?ou:u}},[s.ok])}};function su(){}const cu={functional:!0,render:function(e,t){var n,r=t.props,i=t.listeners,o=void 0===i?{}:i,a=r.prefixCls,s=r.locale,c=r.showTimePicker,u=r.timePickerDisabled,d=o.closeTimePicker,h=void 0===d?su:d,f=o.openTimePicker,p=su;return u||(p=c?h:void 0===f?su:f),e("a",{class:(n={},(0,l.Z)(n,a+"-time-picker-btn",!0),(0,l.Z)(n,a+"-time-picker-btn-disabled",u),n),attrs:{role:"button"},on:{click:p}},[c?s.dateSelect:s.timeSelect])}};const lu={mixins:[y.Z],props:{prefixCls:u.Z.string,showDateInput:u.Z.bool,disabledTime:u.Z.any,timePicker:u.Z.any,selectedValue:u.Z.any,showOk:u.Z.bool,value:u.Z.object,renderFooter:u.Z.func,defaultValue:u.Z.object,locale:u.Z.object,showToday:u.Z.bool,disabledDate:u.Z.func,showTimePicker:u.Z.bool,okDisabled:u.Z.bool,mode:u.Z.string},methods:{onSelect:function(e){this.__emit("select",e)},getRootDOMNode:function(){return this.$el}},render:function(){var e=arguments[0],t=(0,k.oZ)(this),n=t.value,r=t.prefixCls,i=t.showOk,o=t.timePicker,a=t.renderFooter,s=t.showToday,u=t.mode,d=null,h=a&&a(u);if(s||o||h){var p,m={props:(0,f.Z)({},t,{value:n}),on:(0,k.CL)(this)},v=null;s&&(v=e(iu,c()([{key:"todayButton"},m]))),delete m.props.value;var y=null;(!0===i||!1!==i&&o)&&(y=e(au,c()([{key:"okButton"},m])));var g=null;o&&(g=e(cu,c()([{key:"timePickerButton"},m])));var _=void 0;(v||g||y||h)&&(_=e("span",{class:r+"-footer-btn"},[h,v,g,y]));var b=(p={},(0,l.Z)(p,r+"-footer",!0),(0,l.Z)(p,r+"-footer-show-ok",!!y),p);d=e("div",{class:b},[_])}return d}};var uu=void 0,du=void 0,hu=void 0;const fu={mixins:[y.Z],props:{prefixCls:u.Z.string,timePicker:u.Z.object,value:u.Z.object,disabledTime:u.Z.any,format:u.Z.oneOfType([u.Z.string,u.Z.arrayOf(u.Z.string),u.Z.func]),locale:u.Z.object,disabledDate:u.Z.func,placeholder:u.Z.string,selectedValue:u.Z.object,clearIcon:u.Z.any,inputMode:u.Z.string,inputReadOnly:u.Z.bool},data:function(){return{str:ss(this.selectedValue,this.format),invalid:!1,hasFocus:!1}},watch:{selectedValue:function(){this.setState()},format:function(){this.setState()}},updated:function(){var e=this;this.$nextTick((function(){!hu||!e.$data.hasFocus||e.invalid||0===uu&&0===du||hu.setSelectionRange(uu,du)}))},getInstance:function(){return hu},methods:{getDerivedStateFromProps:function(e,t){var n={};hu&&(uu=hu.selectionStart,du=hu.selectionEnd);var r=e.selectedValue;return t.hasFocus||(n={str:ss(r,this.format),invalid:!1}),n},onClear:function(){this.setState({str:""}),this.__emit("clear",null)},onInputChange:function(e){var t=e.target,n=t.value,r=t.composing,i=this.str,o=void 0===i?"":i;if(!e.isComposing&&!r&&o!==n){var a=this.$props,s=a.disabledDate,c=a.format,l=a.selectedValue;if(!n)return this.__emit("change",null),void this.setState({invalid:!1,str:n});var u=qa()(n,c,!0);if(u.isValid()){var d=this.value.clone();d.year(u.year()).month(u.month()).date(u.date()).hour(u.hour()).minute(u.minute()).second(u.second()),!d||s&&s(d)?this.setState({invalid:!0,str:n}):(l!==d||l&&d&&!l.isSame(d))&&(this.setState({invalid:!1,str:n}),this.__emit("change",d))}else this.setState({invalid:!0,str:n})}},onFocus:function(){this.setState({hasFocus:!0})},onBlur:function(){this.setState((function(e,t){return{hasFocus:!1,str:ss(t.value,t.format)}}))},onKeyDown:function(e){var t=e.keyCode,n=this.$props,r=n.value,i=n.disabledDate;t===De.ENTER&&((!i||!i(r))&&this.__emit("select",r.clone()),e.preventDefault())},getRootDOMNode:function(){return this.$el},focus:function(){hu&&hu.focus()},saveDateInput:function(e){hu=e}},render:function(){var e=arguments[0],t=this.invalid,n=this.str,r=this.locale,i=this.prefixCls,o=this.placeholder,a=this.disabled,s=this.showClear,l=this.inputMode,u=this.inputReadOnly,d=(0,k.rj)(this,"clearIcon"),h=t?i+"-input-invalid":"";return e("div",{class:i+"-input-wrap"},[e("div",{class:i+"-date-input-wrap"},[e("input",c()([{directives:[{name:"ant-ref",value:this.saveDateInput},{name:"ant-input"}]},{class:i+"-input "+h,domProps:{value:n},attrs:{disabled:a,placeholder:o,inputMode:l,readOnly:u},on:{input:this.onInputChange,keydown:this.onKeyDown,focus:this.onFocus,blur:this.onBlur}}]))]),s?e("a",{attrs:{role:"button",title:r.clear},on:{click:this.onClear}},[d||e("span",{class:i+"-clear-btn"})]):null])}};function pu(e){return e.clone().startOf("month")}function mu(e){return e.clone().endOf("month")}function vu(e,t,n){return e.clone().add(t,n)}var yu=function(e){return!(!qa().isMoment(e)||!e.isValid())&&e};const gu={name:"Calendar",props:{locale:u.Z.object.def(L),format:u.Z.oneOfType([u.Z.string,u.Z.arrayOf(u.Z.string),u.Z.func]),visible:u.Z.bool.def(!0),prefixCls:u.Z.string.def("rc-calendar"),defaultValue:u.Z.object,value:u.Z.object,selectedValue:u.Z.object,defaultSelectedValue:u.Z.object,mode:u.Z.oneOf(["time","date","month","year","decade"]),showDateInput:u.Z.bool.def(!0),showWeekNumber:u.Z.bool,showToday:u.Z.bool.def(!0),showOk:u.Z.bool,timePicker:u.Z.any,dateInputPlaceholder:u.Z.any,disabledDate:u.Z.func,disabledTime:u.Z.any,dateRender:u.Z.func,renderFooter:u.Z.func.def((function(){return null})),renderSidebar:u.Z.func.def((function(){return null})),clearIcon:u.Z.any,focusablePanel:u.Z.bool.def(!0),inputMode:u.Z.string,inputReadOnly:u.Z.bool},mixins:[y.Z,Ms,bs],data:function(){var e=this.$props;return{sMode:this.mode||"date",sValue:yu(e.value)||yu(e.defaultValue)||qa()(),sSelectedValue:e.selectedValue||e.defaultSelectedValue}},watch:{mode:function(e){this.setState({sMode:e})},value:function(e){this.setState({sValue:yu(e)||yu(this.defaultValue)||gs(this.sValue)})},selectedValue:function(e){this.setState({sSelectedValue:e})}},mounted:function(){var e=this;this.$nextTick((function(){e.saveFocusElement(fu.getInstance())}))},methods:{onPanelChange:function(e,t){var n=this.sValue;(0,k.m2)(this,"mode")||this.setState({sMode:t}),this.__emit("panelChange",e||n,t)},onKeyDown:function(e){if("input"!==e.target.nodeName.toLowerCase()){var t=e.keyCode,n=e.ctrlKey||e.metaKey,r=this.disabledDate,i=this.sValue;switch(t){case De.DOWN:return this.goTime(1,"weeks"),e.preventDefault(),1;case De.UP:return this.goTime(-1,"weeks"),e.preventDefault(),1;case De.LEFT:return n?this.goTime(-1,"years"):this.goTime(-1,"days"),e.preventDefault(),1;case De.RIGHT:return n?this.goTime(1,"years"):this.goTime(1,"days"),e.preventDefault(),1;case De.HOME:return this.setValue(pu(i)),e.preventDefault(),1;case De.END:return this.setValue(mu(i)),e.preventDefault(),1;case De.PAGE_DOWN:return this.goTime(1,"month"),e.preventDefault(),1;case De.PAGE_UP:return this.goTime(-1,"month"),e.preventDefault(),1;case De.ENTER:return r&&r(i)||this.onSelect(i,{source:"keyboard"}),e.preventDefault(),1;default:return this.__emit("keydown",e),1}}},onClear:function(){this.onSelect(null),this.__emit("clear")},onOk:function(){var e=this.sSelectedValue;this.isAllowedDate(e)&&this.__emit("ok",e)},onDateInputChange:function(e){this.onSelect(e,{source:"dateInput"})},onDateInputSelect:function(e){this.onSelect(e,{source:"dateInputSelect"})},onDateTableSelect:function(e){var t=this.timePicker;if(!this.sSelectedValue&&t){var n=(0,k.oZ)(t).defaultValue;n&&is(n,e)}this.onSelect(e)},onToday:function(){var e=es(this.sValue);this.onSelect(e,{source:"todayButton"})},onBlur:function(e){var t=this;setTimeout((function(){var n=fu.getInstance(),r=t.rootInstance;!r||r.contains(document.activeElement)||n&&n.contains(document.activeElement)||t.$emit("blur",e)}),0)},getRootDOMNode:function(){return this.$el},openTimePicker:function(){this.onPanelChange(null,"time")},closeTimePicker:function(){this.onPanelChange(null,"date")},goTime:function(e,t){this.setValue(vu(this.sValue,e,t))}},render:function(){var e=arguments[0],t=this.locale,n=this.prefixCls,r=this.disabledDate,i=this.dateInputPlaceholder,o=this.timePicker,a=this.disabledTime,s=this.showDateInput,c=this.sValue,l=this.sSelectedValue,u=this.sMode,d=this.renderFooter,h=this.inputMode,p=this.inputReadOnly,m=this.monthCellRender,v=this.monthCellContentRender,y=this.$props,g=(0,k.rj)(this,"clearIcon"),_="time"===u,b=_&&a&&o?os(l,a):null,M=null;if(o&&_){var w=(0,k.oZ)(o),C={props:(0,f.Z)({showHour:!0,showSecond:!0,showMinute:!0},w,b,{value:l,disabledTime:a}),on:{change:this.onDateInputChange}};void 0!==w.defaultValue&&(C.props.defaultOpenValue=w.defaultValue),M=(0,fn.Tm)(o,C)}var L=s?e(fu,{attrs:{format:this.getFormat(),value:c,locale:t,placeholder:i,showClear:!0,disabledTime:a,disabledDate:r,prefixCls:n,selectedValue:l,clearIcon:g,inputMode:h,inputReadOnly:p},key:"date-input",on:{clear:this.onClear,change:this.onDateInputChange,select:this.onDateInputSelect}}):null,x=[];return y.renderSidebar&&x.push(y.renderSidebar()),x.push(e("div",{class:n+"-panel",key:"panel"},[L,e("div",{attrs:{tabIndex:y.focusablePanel?0:void 0},class:n+"-date-panel"},[e(nu,{attrs:{locale:t,mode:u,value:c,disabledMonth:r,renderFooter:d,showTimePicker:_,prefixCls:n,monthCellRender:m,monthCellContentRender:v},on:{valueChange:this.setValue,panelChange:this.onPanelChange}}),o&&_?e("div",{class:n+"-time-picker"},[e("div",{class:n+"-time-picker-panel"},[M])]):null,e("div",{class:n+"-body"},[e(ps,{attrs:{locale:t,value:c,selectedValue:l,prefixCls:n,dateRender:y.dateRender,disabledDate:r,showWeekNumber:y.showWeekNumber},on:{select:this.onDateTableSelect}})]),e(lu,{attrs:{showOk:y.showOk,mode:u,renderFooter:y.renderFooter,locale:t,prefixCls:n,showToday:y.showToday,disabledTime:a,showTimePicker:_,showDateInput:y.showDateInput,timePicker:o,selectedValue:l,timePickerDisabled:!l,value:c,disabledDate:r,okDisabled:!(!1===y.showOk||l&&this.isAllowedDate(l))},on:{ok:this.onOk,select:this.onSelect,today:this.onToday,openTimePicker:this.openTimePicker,closeTimePicker:this.closeTimePicker}})])])),this.renderRoot({children:x,class:y.showWeekNumber?n+"-week-number":""})}};r.default.use(D.Z,{name:"ant-ref"});const _u=gu;const bu={name:"MonthCalendar",props:{locale:u.Z.object.def(L),format:u.Z.string,visible:u.Z.bool.def(!0),prefixCls:u.Z.string.def("rc-calendar"),monthCellRender:u.Z.func,value:u.Z.object,defaultValue:u.Z.object,selectedValue:u.Z.object,defaultSelectedValue:u.Z.object,disabledDate:u.Z.func,monthCellContentRender:u.Z.func,renderFooter:u.Z.func.def((function(){return null})),renderSidebar:u.Z.func.def((function(){return null}))},mixins:[y.Z,Ms,bs],data:function(){var e=this.$props;return{mode:"month",sValue:e.value||e.defaultValue||qa()(),sSelectedValue:e.selectedValue||e.defaultSelectedValue}},methods:{onKeyDown:function(e){var t=e.keyCode,n=e.ctrlKey||e.metaKey,r=this.sValue,i=this.disabledDate,o=r;switch(t){case De.DOWN:(o=r.clone()).add(3,"months");break;case De.UP:(o=r.clone()).add(-3,"months");break;case De.LEFT:o=r.clone(),n?o.add(-1,"years"):o.add(-1,"months");break;case De.RIGHT:o=r.clone(),n?o.add(1,"years"):o.add(1,"months");break;case De.ENTER:return i&&i(r)||this.onSelect(r),e.preventDefault(),1;default:return}if(o!==r)return this.setValue(o),e.preventDefault(),1},handlePanelChange:function(e,t){"date"!==t&&this.setState({mode:t})}},render:function(){var e=arguments[0],t=this.mode,n=this.sValue,r=this.$props,i=this.$scopedSlots,o=r.prefixCls,a=r.locale,s=r.disabledDate,c=this.monthCellRender||i.monthCellRender,l=this.monthCellContentRender||i.monthCellContentRender,u=this.renderFooter||i.renderFooter,d=e("div",{class:o+"-month-calendar-content"},[e("div",{class:o+"-month-header-wrap"},[e(nu,{attrs:{prefixCls:o,mode:t,value:n,locale:a,disabledMonth:s,monthCellRender:c,monthCellContentRender:l},on:{monthSelect:this.onSelect,valueChange:this.setValue,panelChange:this.handlePanelChange}})]),e(lu,{attrs:{prefixCls:o,renderFooter:u}})]);return this.renderRoot({class:r.prefixCls+"-month-calendar",children:d})}};var Mu=n(57557),wu=n.n(Mu);function ku(){var e=[].slice.call(arguments,0);return 1===e.length?e[0]:function(){for(var t=0;t1&&void 0!==arguments[1]?arguments[1]:{},n=this.$props;(0,k.m2)(this,"value")||this.setState({sValue:e});var r=(0,k.oZ)(n.calendar);("keyboard"===t.source||"dateInputSelect"===t.source||!r.timePicker&&"dateInput"!==t.source||"todayButton"===t.source)&&this.closeCalendar(this.focus),this.__emit("change",e)},onKeyDown:function(e){this.sOpen||e.keyCode!==De.DOWN&&e.keyCode!==De.ENTER||(this.openCalendar(),e.preventDefault())},onCalendarOk:function(){this.closeCalendar(this.focus)},onCalendarClear:function(){this.closeCalendar(this.focus)},onCalendarBlur:function(){this.setOpen(!1)},onVisibleChange:function(e){this.setOpen(e)},getCalendarElement:function(){var e=this.$props,t=(0,k.oZ)(e.calendar),n=(0,k.vw)(e.calendar),r=this.sValue,i={ref:"calendarInstance",props:{defaultValue:r||t.defaultValue,selectedValue:r},on:{keydown:this.onCalendarKeyDown,ok:ku(n.ok,this.onCalendarOk),select:ku(n.select,this.onCalendarSelect),clear:ku(n.clear,this.onCalendarClear),blur:ku(n.blur,this.onCalendarBlur)}};return(0,fn.Tm)(e.calendar,i)},setOpen:function(e,t){this.sOpen!==e&&((0,k.m2)(this,"open")||this.setState({sOpen:e},t),this.__emit("openChange",e))},openCalendar:function(e){this.setOpen(!0,e)},closeCalendar:function(e){this.setOpen(!1,e)},focus:function(){this.sOpen||this.$el.focus()},focusCalendar:function(){this.sOpen&&this.calendarInstance&&this.calendarInstance.componentInstance&&this.calendarInstance.componentInstance.focus()}},render:function(){var e=arguments[0],t=(0,k.oZ)(this),n=(0,k.C2)(this),r=t.prefixCls,i=t.placement,o=t.getCalendarContainer,a=t.align,s=t.animation,c=t.disabled,l=t.dropdownClassName,u=t.transitionName,d=this.sValue,h=this.sOpen,f=this.$scopedSlots.default,p={value:d,open:h};return!this.sOpen&&this.calendarInstance||(this.calendarInstance=this.getCalendarElement()),e(Zr,{attrs:{popupAlign:a,builtinPlacements:xu,popupPlacement:i,action:c&&!h?[]:["click"],destroyPopupOnHide:!0,getPopupContainer:o,popupStyle:n,popupAnimation:s,popupTransitionName:u,popupVisible:h,prefixCls:r,popupClassName:l},on:{popupVisibleChange:this.onVisibleChange}},[e("template",{slot:"popup"},[this.calendarInstance]),(0,fn.Tm)(f(p,t),{on:{keydown:this.onKeyDown}})])}};function Tu(e,t){if(!e)return"";if(Array.isArray(t)&&(t=t[0]),"function"==typeof t){var n=t(e);if("string"==typeof n)return n;throw new Error("The function of format does not return a string")}return e.format(t)}function zu(){}function Ou(e,t){return{props:(0,k.SQ)(t,{allowClear:!0,showToday:!0}),mixins:[y.Z],model:{prop:"value",event:"change"},inject:{configProvider:{default:function(){return X}}},data:function(){var e=this.value||this.defaultValue;if(e&&!Ds(Ua).isMoment(e))throw new Error("The value/defaultValue of DatePicker or MonthPicker must be a moment object");return{sValue:e,showDate:e,_open:!!this.open}},watch:{open:function(e){var t=(0,k.oZ)(this),n={};n._open=e,"value"in t&&!e&&t.value!==this.showDate&&(n.showDate=t.value),this.setState(n)},value:function(e){var t={};t.sValue=e,e!==this.sValue&&(t.showDate=e),this.setState(t)},_open:function(e,t){var n=this;this.$nextTick((function(){(0,k.m2)(n,"open")||!t||e||n.focus()}))}},methods:{clearSelection:function(e){e.preventDefault(),e.stopPropagation(),this.handleChange(null)},handleChange:function(e){(0,k.m2)(this,"value")||this.setState({sValue:e,showDate:e}),this.$emit("change",e,Tu(e,this.format))},handleCalendarChange:function(e){this.setState({showDate:e})},handleOpenChange:function(e){"open"in(0,k.oZ)(this)||this.setState({_open:e}),this.$emit("openChange",e)},focus:function(){this.$refs.input.focus()},blur:function(){this.$refs.input.blur()},renderFooter:function(){var e=this.$createElement,t=this.$scopedSlots,n=this.$slots,r=this._prefixCls,i=this.renderExtraFooter||t.renderExtraFooter||n.renderExtraFooter;return i?e("div",{class:r+"-footer-extra"},["function"==typeof i?i.apply(void 0,arguments):i]):null},onMouseEnter:function(e){this.$emit("mouseenter",e)},onMouseLeave:function(e){this.$emit("mouseleave",e)}},render:function(){var t,n=this,r=arguments[0],i=this.$scopedSlots,o=this.$data,a=o.sValue,s=o.showDate,c=o._open,u=(0,k.rj)(this,"suffixIcon");u=Array.isArray(u)?u[0]:u;var d=(0,k.CL)(this),p=d.panelChange,m=void 0===p?zu:p,v=d.focus,y=void 0===v?zu:v,g=d.blur,_=void 0===g?zu:g,b=d.ok,M=void 0===b?zu:b,w=(0,k.oZ)(this),C=w.prefixCls,L=w.locale,x=w.localeCode,S=w.inputReadOnly,Z=this.configProvider.getPrefixCls,T=Z("calendar",C);this._prefixCls=T;var z=w.dateRender||i.dateRender,O=w.monthCellContentRender||i.monthCellContentRender,H="placeholder"in w?w.placeholder:L.lang.placeholder,D=w.showTime?w.disabledTime:null,V=h()((t={},(0,l.Z)(t,T+"-time",w.showTime),(0,l.Z)(t,T+"-month",bu===e),t));a&&x&&a.locale(x);var P={props:{},on:{}},Y={props:{},on:{}},A={};w.showTime?(Y.on.select=this.handleChange,A.minWidth="195px"):P.on.change=this.handleChange,"mode"in w&&(Y.props.mode=w.mode);var j=(0,k.dG)(Y,{props:{disabledDate:w.disabledDate,disabledTime:D,locale:L.lang,timePicker:w.timePicker,defaultValue:w.defaultPickerValue||Ds(Ua)(),dateInputPlaceholder:H,prefixCls:T,dateRender:z,format:w.format,showToday:w.showToday,monthCellContentRender:O,renderFooter:this.renderFooter,value:s,inputReadOnly:S},on:{ok:M,panelChange:m,change:this.handleCalendarChange},class:V,scopedSlots:i}),E=r(e,j),$=!w.disabled&&w.allowClear&&a?r(Ui,{attrs:{type:"close-circle",theme:"filled"},class:T+"-picker-clear",on:{click:this.clearSelection}}):null,F=u&&((0,k.l$)(u)?(0,fn.Tm)(u,{class:T+"-picker-icon"}):r("span",{class:T+"-picker-icon"},[u]))||r(Ui,{attrs:{type:"calendar"},class:T+"-picker-icon"}),I=function(e){var t=e.value;return r("div",[r("input",{ref:"input",attrs:{disabled:w.disabled,readOnly:!0,placeholder:H,tabIndex:w.tabIndex,name:n.name},on:{focus:y,blur:_},domProps:{value:Tu(t,n.format)},class:w.pickerInputClass}),$,F])},N={props:(0,f.Z)({},w,P.props,{calendar:E,value:a,prefixCls:T+"-picker-container"}),on:(0,f.Z)({},wu()(d,"change"),P.on,{open:c,onOpenChange:this.handleOpenChange}),style:w.popupStyle,scopedSlots:(0,f.Z)({default:I},i)};return r("span",{class:w.pickerClass,style:A,on:{mouseenter:this.onMouseEnter,mouseleave:this.onMouseLeave}},[r(Zu,N)])}}}const Hu={mixins:[y.Z],props:{format:u.Z.string,prefixCls:u.Z.string,disabledDate:u.Z.func,placeholder:u.Z.string,clearText:u.Z.string,value:u.Z.object,inputReadOnly:u.Z.bool.def(!1),hourOptions:u.Z.array,minuteOptions:u.Z.array,secondOptions:u.Z.array,disabledHours:u.Z.func,disabledMinutes:u.Z.func,disabledSeconds:u.Z.func,allowEmpty:u.Z.bool,defaultOpenValue:u.Z.object,currentSelectPanel:u.Z.string,focusOnOpen:u.Z.bool,clearIcon:u.Z.any},data:function(){var e=this.value,t=this.format;return{str:e&&e.format(t)||"",invalid:!1}},mounted:function(){var e=this;this.focusOnOpen&&(window.requestAnimationFrame||window.setTimeout)((function(){e.$refs.input.focus(),e.$refs.input.select()}))},watch:{value:function(e){var t=this;this.$nextTick((function(){t.setState({str:e&&e.format(t.format)||"",invalid:!1})}))}},methods:{onInputChange:function(e){var t=e.target,n=t.value,r=t.composing,i=this.str,o=void 0===i?"":i;if(!e.isComposing&&!r&&o!==n){this.setState({str:n});var a=this.format,s=this.hourOptions,c=this.minuteOptions,l=this.secondOptions,u=this.disabledHours,d=this.disabledMinutes,h=this.disabledSeconds,f=this.value;if(n){var p=this.getProtoValue().clone(),m=qa()(n,a,!0);if(!m.isValid())return void this.setState({invalid:!0});if(p.hour(m.hour()).minute(m.minute()).second(m.second()),s.indexOf(p.hour())<0||c.indexOf(p.minute())<0||l.indexOf(p.second())<0)return void this.setState({invalid:!0});var v=u(),y=d(p.hour()),g=h(p.hour(),p.minute());if(v&&v.indexOf(p.hour())>=0||y&&y.indexOf(p.minute())>=0||g&&g.indexOf(p.second())>=0)return void this.setState({invalid:!0});if(f){if(f.hour()!==p.hour()||f.minute()!==p.minute()||f.second()!==p.second()){var _=f.clone();_.hour(p.hour()),_.minute(p.minute()),_.second(p.second()),this.__emit("change",_)}}else f!==p&&this.__emit("change",p)}else this.__emit("change",null);this.setState({invalid:!1})}},onKeyDown:function(e){27===e.keyCode&&this.__emit("esc"),this.__emit("keydown",e)},getProtoValue:function(){return this.value||this.defaultOpenValue},getInput:function(){var e=this.$createElement,t=this.prefixCls,n=this.placeholder,r=this.inputReadOnly,i=this.invalid,o=this.str,a=i?t+"-input-invalid":"";return e("input",c()([{class:t+"-input "+a,ref:"input",on:{keydown:this.onKeyDown,input:this.onInputChange},domProps:{value:o},attrs:{placeholder:n,readOnly:!!r}},{directives:[{name:"ant-input"}]}]))}},render:function(){var e=arguments[0],t=this.prefixCls;return e("div",{class:t+"-input-wrap"},[this.getInput()])}};function Du(){}var Vu=function e(t,n,r){if(r<=0)b()((function(){t.scrollTop=n}));else{var i=(n-t.scrollTop)/r*10;b()((function(){t.scrollTop+=i,t.scrollTop!==n&&e(t,n,r-10)}))}};const Pu={mixins:[y.Z],props:{prefixCls:u.Z.string,options:u.Z.array,selectedIndex:u.Z.number,type:u.Z.string},data:function(){return{active:!1}},mounted:function(){var e=this;this.$nextTick((function(){e.scrollToSelected(0)}))},watch:{selectedIndex:function(){var e=this;this.$nextTick((function(){e.scrollToSelected(120)}))}},methods:{onSelect:function(e){var t=this.type;this.__emit("select",t,e)},onEsc:function(e){this.__emit("esc",e)},getOptions:function(){var e=this,t=this.$createElement,n=this.options,r=this.selectedIndex,i=this.prefixCls;return n.map((function(n,o){var a,s=h()((a={},(0,l.Z)(a,i+"-select-option-selected",r===o),(0,l.Z)(a,i+"-select-option-disabled",n.disabled),a)),c=n.disabled?Du:function(){e.onSelect(n.value)};return t("li",{attrs:{role:"button",disabled:n.disabled,tabIndex:"0"},on:{click:c,keydown:function(t){13===t.keyCode?c():27===t.keyCode&&e.onEsc()}},class:s,key:o},[n.value])}))},handleMouseEnter:function(e){this.setState({active:!0}),this.__emit("mouseenter",e)},handleMouseLeave:function(){this.setState({active:!1})},scrollToSelected:function(e){var t=this.$el,n=this.$refs.list;if(n){var r=this.selectedIndex;r<0&&(r=0);var i=n.children[r].offsetTop;Vu(t,i,e)}}},render:function(){var e,t=arguments[0],n=this.prefixCls,r=this.options,i=this.active;if(0===r.length)return null;var o=(e={},(0,l.Z)(e,n+"-select",1),(0,l.Z)(e,n+"-select-active",i),e);return t("div",{class:o,on:{mouseenter:this.handleMouseEnter,mouseleave:this.handleMouseLeave}},[t("ul",{ref:"list"},[this.getOptions()])])}};var Yu=function(e,t){var n=""+e;e<10&&(n="0"+e);var r=!1;return t&&t.indexOf(e)>=0&&(r=!0),{value:n,disabled:r}};const Au={mixins:[y.Z],name:"Combobox",props:{format:u.Z.string,defaultOpenValue:u.Z.object,prefixCls:u.Z.string,value:u.Z.object,showHour:u.Z.bool,showMinute:u.Z.bool,showSecond:u.Z.bool,hourOptions:u.Z.array,minuteOptions:u.Z.array,secondOptions:u.Z.array,disabledHours:u.Z.func,disabledMinutes:u.Z.func,disabledSeconds:u.Z.func,use12Hours:u.Z.bool,isAM:u.Z.bool},methods:{onItemChange:function(e,t){var n=this.defaultOpenValue,r=this.use12Hours,i=this.value,o=this.isAM,a=(i||n).clone();if("hour"===e)r?o?a.hour(+t%12):a.hour(+t%12+12):a.hour(+t);else if("minute"===e)a.minute(+t);else if("ampm"===e){var s=t.toUpperCase();r&&("PM"===s&&a.hour()<12&&a.hour(a.hour()%12+12),"AM"===s&&a.hour()>=12&&a.hour(a.hour()-12)),this.__emit("amPmChange",s)}else a.second(+t);this.__emit("change",a)},onEnterSelectPanel:function(e){this.__emit("currentSelectPanelChange",e)},onEsc:function(e){this.__emit("esc",e)},getHourSelect:function(e){var t=this,n=this.$createElement,r=this.prefixCls,i=this.hourOptions,o=this.disabledHours,a=this.showHour,s=this.use12Hours;if(!a)return null;var c=o(),l=void 0,u=void 0;return s?(l=[12].concat(i.filter((function(e){return e<12&&e>0}))),u=e%12||12):(l=i,u=e),n(Pu,{attrs:{prefixCls:r,options:l.map((function(e){return Yu(e,c)})),selectedIndex:l.indexOf(u),type:"hour"},on:{select:this.onItemChange,mouseenter:function(){return t.onEnterSelectPanel("hour")},esc:this.onEsc}})},getMinuteSelect:function(e){var t=this,n=this.$createElement,r=this.prefixCls,i=this.minuteOptions,o=this.disabledMinutes,a=this.defaultOpenValue,s=this.showMinute,c=this.value;if(!s)return null;var l=o((c||a).hour());return n(Pu,{attrs:{prefixCls:r,options:i.map((function(e){return Yu(e,l)})),selectedIndex:i.indexOf(e),type:"minute"},on:{select:this.onItemChange,mouseenter:function(){return t.onEnterSelectPanel("minute")},esc:this.onEsc}})},getSecondSelect:function(e){var t=this,n=this.$createElement,r=this.prefixCls,i=this.secondOptions,o=this.disabledSeconds,a=this.showSecond,s=this.defaultOpenValue,c=this.value;if(!a)return null;var l=c||s,u=o(l.hour(),l.minute());return n(Pu,{attrs:{prefixCls:r,options:i.map((function(e){return Yu(e,u)})),selectedIndex:i.indexOf(e),type:"second"},on:{select:this.onItemChange,mouseenter:function(){return t.onEnterSelectPanel("second")},esc:this.onEsc}})},getAMPMSelect:function(){var e=this,t=this.$createElement,n=this.prefixCls,r=this.use12Hours,i=this.format,o=this.isAM;if(!r)return null;var a=["am","pm"].map((function(e){return i.match(/\sA/)?e.toUpperCase():e})).map((function(e){return{value:e}}));return t(Pu,{attrs:{prefixCls:n,options:a,selectedIndex:o?0:1,type:"ampm"},on:{select:this.onItemChange,mouseenter:function(){return e.onEnterSelectPanel("ampm")},esc:this.onEsc}})}},render:function(){var e=arguments[0],t=this.prefixCls,n=this.defaultOpenValue,r=this.value,i=r||n;return e("div",{class:t+"-combobox"},[this.getHourSelect(i.hour()),this.getMinuteSelect(i.minute()),this.getSecondSelect(i.second()),this.getAMPMSelect(i.hour())])}};function ju(){}function Eu(e,t,n){for(var r=arguments.length>3&&void 0!==arguments[3]?arguments[3]:1,i=[],o=0;o=0&&e.hour()<12}},render:function(){var e=arguments[0],t=this.prefixCls,n=this.placeholder,r=this.disabledMinutes,i=this.addon,o=this.disabledSeconds,a=this.hideDisabledOptions,s=this.showHour,c=this.showMinute,l=this.showSecond,u=this.format,d=this.defaultOpenValue,h=this.clearText,f=this.use12Hours,p=this.focusOnOpen,m=this.hourStep,v=this.minuteStep,y=this.secondStep,g=this.inputReadOnly,_=this.sValue,b=this.currentSelectPanel,M=(0,k.rj)(this,"clearIcon"),w=(0,k.CL)(this),C=w.esc,L=void 0===C?ju:C,x=w.keydown,S=void 0===x?ju:x,Z=this.disabledHours2(),T=r(_?_.hour():null),z=o(_?_.hour():null,_?_.minute():null),O=Eu(24,Z,a,m),H=Eu(60,T,a,v),D=Eu(60,z,a,y),V=$u(d,O,H,D);return e("div",{class:t+"-inner"},[e(Hu,{attrs:{clearText:h,prefixCls:t,defaultOpenValue:V,value:_,currentSelectPanel:b,format:u,placeholder:n,hourOptions:O,minuteOptions:H,secondOptions:D,disabledHours:this.disabledHours2,disabledMinutes:r,disabledSeconds:o,focusOnOpen:p,inputReadOnly:g,clearIcon:M},on:{esc:L,change:this.onChange,keydown:S}}),e(Au,{attrs:{prefixCls:t,value:_,defaultOpenValue:V,format:u,showHour:s,showMinute:c,showSecond:l,hourOptions:O,minuteOptions:H,secondOptions:D,disabledHours:this.disabledHours2,disabledMinutes:r,disabledSeconds:o,use12Hours:f,isAM:this.isAM()},on:{change:this.onChange,amPmChange:this.onAmPmChange,currentSelectPanelChange:this.onCurrentSelectPanelChange,esc:this.onEsc}}),i(this)])}};var Iu={adjustX:1,adjustY:1},Nu=[0,0];const Ru={bottomLeft:{points:["tl","tl"],overflow:Iu,offset:[0,-3],targetOffset:Nu},bottomRight:{points:["tr","tr"],overflow:Iu,offset:[0,-3],targetOffset:Nu},topRight:{points:["br","br"],overflow:Iu,offset:[0,3],targetOffset:Nu},topLeft:{points:["bl","bl"],overflow:Iu,offset:[0,3],targetOffset:Nu}};function Wu(){}const Ku={name:"VcTimePicker",mixins:[y.Z],props:(0,k.SQ)({prefixCls:u.Z.string,clearText:u.Z.string,value:u.Z.any,defaultOpenValue:{type:Object,default:function(){return qa()()}},inputReadOnly:u.Z.bool,disabled:u.Z.bool,allowEmpty:u.Z.bool,defaultValue:u.Z.any,open:u.Z.bool,defaultOpen:u.Z.bool,align:u.Z.object,placement:u.Z.any,transitionName:u.Z.string,getPopupContainer:u.Z.func,placeholder:u.Z.string,format:u.Z.string,showHour:u.Z.bool,showMinute:u.Z.bool,showSecond:u.Z.bool,popupClassName:u.Z.string,popupStyle:u.Z.object,disabledHours:u.Z.func,disabledMinutes:u.Z.func,disabledSeconds:u.Z.func,hideDisabledOptions:u.Z.bool,name:u.Z.string,autoComplete:u.Z.string,use12Hours:u.Z.bool,hourStep:u.Z.number,minuteStep:u.Z.number,secondStep:u.Z.number,focusOnOpen:u.Z.bool,autoFocus:u.Z.bool,id:u.Z.string,inputIcon:u.Z.any,clearIcon:u.Z.any,addon:u.Z.func},{clearText:"clear",prefixCls:"rc-time-picker",defaultOpen:!1,inputReadOnly:!1,popupClassName:"",popupStyle:{},align:{},allowEmpty:!0,showHour:!0,showMinute:!0,showSecond:!0,disabledHours:Wu,disabledMinutes:Wu,disabledSeconds:Wu,hideDisabledOptions:!1,placement:"bottomLeft",use12Hours:!1,focusOnOpen:!1}),data:function(){var e=this.defaultOpen,t=this.defaultValue,n=this.open,r=void 0===n?e:n,i=this.value;return{sOpen:r,sValue:void 0===i?t:i}},watch:{value:function(e){this.setState({sValue:e})},open:function(e){void 0!==e&&this.setState({sOpen:e})}},mounted:function(){var e=this;this.$nextTick((function(){e.autoFocus&&e.focus()}))},methods:{onPanelChange:function(e){this.setValue(e)},onAmPmChange:function(e){this.__emit("amPmChange",e)},onClear:function(e){e.stopPropagation(),this.setValue(null),this.setOpen(!1)},onVisibleChange:function(e){this.setOpen(e)},onEsc:function(){this.setOpen(!1),this.focus()},onKeyDown:function(e){40===e.keyCode&&this.setOpen(!0)},onKeyDown2:function(e){this.__emit("keydown",e)},setValue:function(e){(0,k.m2)(this,"value")||this.setState({sValue:e}),this.__emit("change",e)},getFormat:function(){var e=this.format,t=this.showHour,n=this.showMinute,r=this.showSecond,i=this.use12Hours;return e||(i?[t?"h":"",n?"mm":"",r?"ss":""].filter((function(e){return!!e})).join(":").concat(" a"):[t?"HH":"",n?"mm":"",r?"ss":""].filter((function(e){return!!e})).join(":"))},getPanelElement:function(){var e=this.$createElement,t=this.prefixCls,n=this.placeholder,r=this.disabledHours,i=this.addon,o=this.disabledMinutes,a=this.disabledSeconds,s=this.hideDisabledOptions,c=this.inputReadOnly,l=this.showHour,u=this.showMinute,d=this.showSecond,h=this.defaultOpenValue,f=this.clearText,p=this.use12Hours,m=this.focusOnOpen,v=this.onKeyDown2,y=this.hourStep,g=this.minuteStep,_=this.secondStep,b=this.sValue,M=(0,k.rj)(this,"clearIcon");return e(Fu,{attrs:{clearText:f,prefixCls:t+"-panel",value:b,inputReadOnly:c,defaultOpenValue:h,showHour:l,showMinute:u,showSecond:d,format:this.getFormat(),placeholder:n,disabledHours:r,disabledMinutes:o,disabledSeconds:a,hideDisabledOptions:s,use12Hours:p,hourStep:y,minuteStep:g,secondStep:_,focusOnOpen:m,clearIcon:M,addon:i},ref:"panel",on:{change:this.onPanelChange,amPmChange:this.onAmPmChange,esc:this.onEsc,keydown:v}})},getPopupClassName:function(){var e=this.showHour,t=this.showMinute,n=this.showSecond,r=this.use12Hours,i=this.prefixCls,o=this.popupClassName,a=0;return e&&(a+=1),t&&(a+=1),n&&(a+=1),r&&(a+=1),h()(o,(0,l.Z)({},i+"-panel-narrow",!(e&&t&&n||r)),i+"-panel-column-"+a)},setOpen:function(e){this.sOpen!==e&&((0,k.m2)(this,"open")||this.setState({sOpen:e}),e?this.__emit("open",{open:e}):this.__emit("close",{open:e}))},focus:function(){this.$refs.picker.focus()},blur:function(){this.$refs.picker.blur()},onFocus:function(e){this.__emit("focus",e)},onBlur:function(e){this.__emit("blur",e)},renderClearButton:function(){var e=this,t=this.$createElement,n=this.sValue,r=this.$props,i=r.prefixCls,o=r.allowEmpty,a=r.clearText,s=r.disabled;if(!o||!n||s)return null;var c=(0,k.rj)(this,"clearIcon");if((0,k.l$)(c)){var l=((0,k.vw)(c)||{}).click;return(0,fn.Tm)(c,{on:{click:function(){l&&l.apply(void 0,arguments),e.onClear.apply(e,arguments)}}})}return t("a",{attrs:{role:"button",title:a,tabIndex:0},class:i+"-clear",on:{click:this.onClear}},[c||t("i",{class:i+"-clear-icon"})])}},render:function(){var e=arguments[0],t=this.prefixCls,n=this.placeholder,r=this.placement,i=this.align,o=this.id,a=this.disabled,s=this.transitionName,c=this.getPopupContainer,l=this.name,u=this.autoComplete,d=this.autoFocus,h=this.inputReadOnly,f=this.sOpen,p=this.sValue,m=this.onFocus,v=this.onBlur,y=this.popupStyle,g=this.getPopupClassName(),_=(0,k.rj)(this,"inputIcon");return e(Zr,{attrs:{prefixCls:t+"-panel",popupClassName:g,popupStyle:y,popupAlign:i,builtinPlacements:Ru,popupPlacement:r,action:a?[]:["click"],destroyPopupOnHide:!0,getPopupContainer:c,popupTransitionName:s,popupVisible:f},on:{popupVisibleChange:this.onVisibleChange}},[e("template",{slot:"popup"},[this.getPanelElement()]),e("span",{class:""+t},[e("input",{class:t+"-input",ref:"picker",attrs:{type:"text",placeholder:n,name:l,disabled:a,autoComplete:u,autoFocus:d,readOnly:!!h,id:o},on:{keydown:this.onKeyDown,focus:m,blur:v},domProps:{value:p&&p.format(this.getFormat())||""}}),_||e("span",{class:t+"-icon"}),this.renderClearButton()])])}};function Bu(e){return{showHour:e.indexOf("H")>-1||e.indexOf("h")>-1||e.indexOf("k")>-1,showMinute:e.indexOf("m")>-1,showSecond:e.indexOf("s")>-1}}var Uu={name:"ATimePicker",mixins:[y.Z],props:(0,k.SQ)({size:u.Z.oneOf(["large","default","small"]),value:js,defaultValue:js,open:u.Z.bool,format:u.Z.string,disabled:u.Z.bool,placeholder:u.Z.string,prefixCls:u.Z.string,hideDisabledOptions:u.Z.bool,disabledHours:u.Z.func,disabledMinutes:u.Z.func,disabledSeconds:u.Z.func,getPopupContainer:u.Z.func,use12Hours:u.Z.bool,focusOnOpen:u.Z.bool,hourStep:u.Z.number,minuteStep:u.Z.number,secondStep:u.Z.number,allowEmpty:u.Z.bool,allowClear:u.Z.bool,inputReadOnly:u.Z.bool,clearText:u.Z.string,defaultOpenValue:u.Z.object,popupClassName:u.Z.string,popupStyle:u.Z.object,suffixIcon:u.Z.any,align:u.Z.object,placement:u.Z.any,transitionName:u.Z.string,autoFocus:u.Z.bool,addon:u.Z.any,clearIcon:u.Z.any,locale:u.Z.object,valueFormat:u.Z.string},{align:{offset:[0,-2]},disabled:!1,disabledHours:void 0,disabledMinutes:void 0,disabledSeconds:void 0,hideDisabledOptions:!1,placement:"bottomLeft",transitionName:"slide-up",focusOnOpen:!0,allowClear:!0}),model:{prop:"value",event:"change"},provide:function(){return{savePopupRef:this.savePopupRef}},inject:{configProvider:{default:function(){return X}}},data:function(){var e=this.value,t=this.defaultValue,n=this.valueFormat;return Es("TimePicker",t,"defaultValue",n),Es("TimePicker",e,"value",n),re(!(0,k.m2)(this,"allowEmpty"),"TimePicker","`allowEmpty` is deprecated. Please use `allowClear` instead."),{sValue:$s(e||t,n)}},watch:{value:function(e){Es("TimePicker",e,"value",this.valueFormat),this.setState({sValue:$s(e,this.valueFormat)})}},methods:{getDefaultFormat:function(){var e=this.format,t=this.use12Hours;return e||(t?"h:mm:ss a":"HH:mm:ss")},getAllowClear:function(){var e=this.$props,t=e.allowClear,n=e.allowEmpty;return(0,k.m2)(this,"allowClear")?t:n},getDefaultLocale:function(){return(0,f.Z)({},x,this.$props.locale)},savePopupRef:function(e){this.popupRef=e},handleChange:function(e){(0,k.m2)(this,"value")||this.setState({sValue:e});var t=this.format,n=void 0===t?"HH:mm:ss":t;this.$emit("change",this.valueFormat?Fs(e,this.valueFormat):e,e&&e.format(n)||"")},handleOpenClose:function(e){var t=e.open;this.$emit("openChange",t),this.$emit("update:open",t)},focus:function(){this.$refs.timePicker.focus()},blur:function(){this.$refs.timePicker.blur()},renderInputIcon:function(e){var t=this.$createElement,n=(0,k.rj)(this,"suffixIcon"),r=(n=Array.isArray(n)?n[0]:n)&&(0,k.l$)(n)&&(0,fn.Tm)(n,{class:e+"-clock-icon"})||t(Ui,{attrs:{type:"clock-circle"},class:e+"-clock-icon"});return t("span",{class:e+"-icon"},[r])},renderClearIcon:function(e){var t=this.$createElement,n=(0,k.rj)(this,"clearIcon"),r=e+"-clear";return n&&(0,k.l$)(n)?(0,fn.Tm)(n,{class:r}):t(Ui,{attrs:{type:"close-circle",theme:"filled"},class:r})},renderTimePicker:function(e){var t=this.$createElement,n=(0,k.oZ)(this),r=n=p(n,["defaultValue","suffixIcon","allowEmpty","allowClear"]),i=r.prefixCls,o=r.getPopupContainer,a=r.placeholder,s=r.size,c=(0,this.configProvider.getPrefixCls)("time-picker",i),u=this.getDefaultFormat(),d=(0,l.Z)({},c+"-"+s,!!s),h=(0,k.rj)(this,"addon",{},!1),m=this.renderInputIcon(c),v=this.renderClearIcon(c),y=this.configProvider.getPopupContainer,g={props:(0,f.Z)({},Bu(u),n,{allowEmpty:this.getAllowClear(),prefixCls:c,getPopupContainer:o||y,format:u,value:this.sValue,placeholder:void 0===a?e.placeholder:a,addon:function(e){return h?t("div",{class:c+"-panel-addon"},["function"==typeof h?h(e):h]):null},inputIcon:m,clearIcon:v}),class:d,ref:"timePicker",on:(0,f.Z)({},(0,k.CL)(this),{change:this.handleChange,open:this.handleOpenClose,close:this.handleOpenClose})};return t(Ku,g)}},render:function(){var e=arguments[0];return e(O,{attrs:{componentName:"TimePicker",defaultLocale:this.getDefaultLocale()},scopedSlots:{default:this.renderTimePicker}})},install:function(e){e.use(B),e.component(Uu.name,Uu)}};const qu=Uu;var Gu={date:"YYYY-MM-DD",dateTime:"YYYY-MM-DD HH:mm:ss",week:"gggg-wo",month:"YYYY-MM"},Ju={date:"dateFormat",dateTime:"dateTimeFormat",week:"weekFormat",month:"monthFormat"};function Xu(e,t,n){return{name:e.name,props:(0,k.SQ)(t,{transitionName:"slide-up",popupStyle:{},locale:{}}),model:{prop:"value",event:"change"},inject:{configProvider:{default:function(){return X}}},provide:function(){return{savePopupRef:this.savePopupRef}},mounted:function(){var e=this,t=this.autoFocus,n=this.disabled,r=this.value,i=this.defaultValue,o=this.valueFormat;Es("DatePicker",i,"defaultValue",o),Es("DatePicker",r,"value",o),t&&!n&&this.$nextTick((function(){e.focus()}))},watch:{value:function(e){Es("DatePicker",e,"value",this.valueFormat)}},methods:{getDefaultLocale:function(){var e=(0,f.Z)({},S,this.locale);return e.lang=(0,f.Z)({},e.lang,(this.locale||{}).lang),e},savePopupRef:function(e){this.popupRef=e},handleOpenChange:function(e){this.$emit("openChange",e)},handleFocus:function(e){this.$emit("focus",e)},handleBlur:function(e){this.$emit("blur",e)},handleMouseEnter:function(e){this.$emit("mouseenter",e)},handleMouseLeave:function(e){this.$emit("mouseleave",e)},handleChange:function(e,t){this.$emit("change",this.valueFormat?Fs(e,this.valueFormat):e,t)},handleOk:function(e){this.$emit("ok",this.valueFormat?Fs(e,this.valueFormat):e)},handleCalendarChange:function(e,t){this.$emit("calendarChange",this.valueFormat?Fs(e,this.valueFormat):e,t)},focus:function(){this.$refs.picker.focus()},blur:function(){this.$refs.picker.blur()},transformValue:function(e){"value"in e&&(e.value=$s(e.value,this.valueFormat)),"defaultValue"in e&&(e.defaultValue=$s(e.defaultValue,this.valueFormat)),"defaultPickerValue"in e&&(e.defaultPickerValue=$s(e.defaultPickerValue,this.valueFormat))},renderPicker:function(t,r){var i,o=this,a=this.$createElement,s=(0,k.oZ)(this);this.transformValue(s);var c,u,d=s.prefixCls,p=s.inputPrefixCls,m=s.getCalendarContainer,v=s.size,y=s.showTime,g=s.disabled,_=s.format,b=y?n+"Time":n,M=_||t[Ju[b]]||Gu[b],w=this.configProvider,C=w.getPrefixCls,L=w.getPopupContainer,x=m||L,S=C("calendar",d),Z=C("input",p),T=h()(S+"-picker",(0,l.Z)({},S+"-picker-"+v,!!v)),z=h()(S+"-picker-input",Z,(i={},(0,l.Z)(i,Z+"-lg","large"===v),(0,l.Z)(i,Z+"-sm","small"===v),(0,l.Z)(i,Z+"-disabled",g),i)),O=y&&y.format||"HH:mm:ss",H=(0,f.Z)({},Bu(O),{format:O,use12Hours:y&&y.use12Hours}),D=S+"-time-picker-column-"+(u=0,(c=H).showHour&&(u+=1),c.showMinute&&(u+=1),c.showSecond&&(u+=1),c.use12Hours&&(u+=1),u),V={props:(0,f.Z)({},H,y,{prefixCls:S+"-time-picker",placeholder:t.timePickerLocale.placeholder,transitionName:"slide-up"}),class:D,on:{esc:function(){}}},P=y?a(Fu,V):null,Y={props:(0,f.Z)({},s,{getCalendarContainer:x,format:M,pickerClass:T,pickerInputClass:z,locale:t,localeCode:r,timePicker:P}),on:(0,f.Z)({},(0,k.CL)(this),{openChange:this.handleOpenChange,focus:this.handleFocus,blur:this.handleBlur,mouseenter:this.handleMouseEnter,mouseleave:this.handleMouseLeave,change:this.handleChange,ok:this.handleOk,calendarChange:this.handleCalendarChange}),ref:"picker",scopedSlots:this.$scopedSlots||{}};return a(e,Y,[this.$slots&&Object.keys(this.$slots).map((function(e){return a("template",{slot:e,key:e},[o.$slots[e]])}))])}},render:function(){var e=arguments[0];return e(O,{attrs:{componentName:"DatePicker",defaultLocale:this.getDefaultLocale},scopedSlots:{default:this.renderPicker}})}}}function Qu(){}const ed={mixins:[y.Z],props:{prefixCls:u.Z.string,value:u.Z.any,hoverValue:u.Z.any,selectedValue:u.Z.any,direction:u.Z.any,locale:u.Z.any,showDateInput:u.Z.bool,showTimePicker:u.Z.bool,showWeekNumber:u.Z.bool,format:u.Z.any,placeholder:u.Z.any,disabledDate:u.Z.any,timePicker:u.Z.any,disabledTime:u.Z.any,disabledMonth:u.Z.any,mode:u.Z.any,timePickerDisabledTime:u.Z.object,enableNext:u.Z.any,enablePrev:u.Z.any,clearIcon:u.Z.any,dateRender:u.Z.func,inputMode:u.Z.string,inputReadOnly:u.Z.bool},render:function(){var e=arguments[0],t=this.$props,n=t.prefixCls,r=t.value,i=t.hoverValue,o=t.selectedValue,a=t.mode,s=t.direction,c=t.locale,l=t.format,u=t.placeholder,d=t.disabledDate,h=t.timePicker,p=t.disabledTime,m=t.timePickerDisabledTime,v=t.showTimePicker,y=t.enablePrev,g=t.enableNext,_=t.disabledMonth,b=t.showDateInput,M=t.dateRender,w=t.showWeekNumber,C=t.showClear,L=t.inputMode,x=t.inputReadOnly,S=(0,k.rj)(this,"clearIcon"),Z=(0,k.CL)(this),T=Z.inputChange,z=void 0===T?Qu:T,O=Z.inputSelect,H=void 0===O?Qu:O,D=Z.valueChange,V=void 0===D?Qu:D,P=Z.panelChange,Y=void 0===P?Qu:P,A=Z.select,j=void 0===A?Qu:A,E=Z.dayHover,$=void 0===E?Qu:E,F=v&&h,I=F&&p?os(o,p):null,N=n+"-range",R={locale:c,value:r,prefixCls:n,showTimePicker:v},W="left"===s?0:1,K=null;if(F){var B=(0,k.oZ)(h);K=(0,fn.Tm)(h,{props:(0,f.Z)({showHour:!0,showMinute:!0,showSecond:!0},B,I,m,{defaultOpenValue:r,value:o[W]}),on:{change:z}})}var U=b&&e(fu,{attrs:{format:l,locale:c,prefixCls:n,timePicker:h,disabledDate:d,placeholder:u,disabledTime:p,value:r,showClear:C||!1,selectedValue:o[W],clearIcon:S,inputMode:L,inputReadOnly:x},on:{change:z,select:H}}),q={props:(0,f.Z)({},R,{mode:a,enableNext:g,enablePrev:y,disabledMonth:_}),on:{valueChange:V,panelChange:Y}},G={props:(0,f.Z)({},R,{hoverValue:i,selectedValue:o,dateRender:M,disabledDate:d,showWeekNumber:w}),on:{select:j,dayHover:$}};return e("div",{class:N+"-part "+N+"-"+s},[U,e("div",{style:{outline:"none"}},[e(nu,q),v?e("div",{class:n+"-time-picker"},[e("div",{class:n+"-time-picker-panel"},[K])]):null,e("div",{class:n+"-body"},[e(ps,G)])])])}};function td(){}function nd(e,t){if(e===t)return!0;if(null==e||null==t)return!1;if(e.length!==t.length)return!1;for(var n=0;n0&&(r[1-i]=this.sShowTimePicker?r[i]:void 0),this.__emit("inputSelect",r),this.fireSelectValueChange(r,null,n||{source:"dateInput"})}}const sd={props:{locale:u.Z.object.def(L),visible:u.Z.bool.def(!0),prefixCls:u.Z.string.def("rc-calendar"),dateInputPlaceholder:u.Z.any,seperator:u.Z.string.def("~"),defaultValue:u.Z.any,value:u.Z.any,hoverValue:u.Z.any,mode:u.Z.arrayOf(u.Z.oneOf(["time","date","month","year","decade"])),showDateInput:u.Z.bool.def(!0),timePicker:u.Z.any,showOk:u.Z.bool,showToday:u.Z.bool.def(!0),defaultSelectedValue:u.Z.array.def([]),selectedValue:u.Z.array,showClear:u.Z.bool,showWeekNumber:u.Z.bool,format:u.Z.oneOfType([u.Z.string,u.Z.arrayOf(u.Z.string),u.Z.func]),type:u.Z.any.def("both"),disabledDate:u.Z.func,disabledTime:u.Z.func.def(td),renderFooter:u.Z.func.def((function(){return null})),renderSidebar:u.Z.func.def((function(){return null})),dateRender:u.Z.func,clearIcon:u.Z.any,inputReadOnly:u.Z.bool},mixins:[y.Z,Ms],data:function(){var e=this.$props,t=e.selectedValue||e.defaultSelectedValue,n=id(e,1);return{sSelectedValue:t,prevSelectedValue:t,firstSelectedValue:null,sHoverValue:e.hoverValue||[],sValue:n,sShowTimePicker:!1,sMode:e.mode||["date","date"],sPanelTriggerSource:""}},watch:{value:function(){var e={};e.sValue=id(this.$props,0),this.setState(e)},hoverValue:function(e){nd(this.sHoverValue,e)||this.setState({sHoverValue:e})},selectedValue:function(e){var t={};t.sSelectedValue=e,t.prevSelectedValue=e,this.setState(t)},mode:function(e){nd(this.sMode,e)||this.setState({sMode:e})}},methods:{onDatePanelEnter:function(){this.hasSelectedValue()&&this.fireHoverValueChange(this.sSelectedValue.concat())},onDatePanelLeave:function(){this.hasSelectedValue()&&this.fireHoverValueChange([])},onSelect:function(e){var t=this.type,n=this.sSelectedValue,r=this.prevSelectedValue,i=this.firstSelectedValue,o=void 0;if("both"===t)i?this.compare(i,e)<0?(is(r[1],e),o=[i,e]):(is(r[0],e),is(r[1],i),o=[e,i]):(is(r[0],e),o=[e]);else if("start"===t){is(r[0],e);var a=n[1];o=a&&this.compare(a,e)>0?[e,a]:[e]}else{var s=n[0];s&&this.compare(s,e)<=0?(is(r[1],e),o=[s,e]):(is(r[0],e),o=[e])}this.fireSelectValueChange(o)},onKeyDown:function(e){var t=this;if("input"!==e.target.nodeName.toLowerCase()){var n=e.keyCode,r=e.ctrlKey||e.metaKey,i=this.$data,o=i.sSelectedValue,a=i.sHoverValue,s=i.firstSelectedValue,c=i.sValue,l=this.$props.disabledDate,u=function(n){var r=void 0,i=void 0,l=void 0;if(s?1===a.length?(r=a[0].clone(),i=n(r),l=t.onDayHover(i)):(r=a[0].isSame(s,"day")?a[1]:a[0],i=n(r),l=t.onDayHover(i)):(r=a[0]||o[0]||c[0]||qa()(),l=[i=n(r)],t.fireHoverValueChange(l)),l.length>=2){if(l.some((function(e){return!function(){var e=arguments[1],t=arguments[2];return(arguments.length>0&&void 0!==arguments[0]?arguments[0]:[]).some((function(n){return n.isSame(e,t)}))}(c,e,"month")}))){var u=l.slice().sort((function(e,t){return e.valueOf()-t.valueOf()}));u[0].isSame(u[1],"month")&&(u[1]=u[0].clone().add(1,"month")),t.fireValueChange(u)}}else if(1===l.length){var d=c.findIndex((function(e){return e.isSame(r,"month")}));if(-1===d&&(d=0),c.every((function(e){return!e.isSame(i,"month")}))){var h=c.slice();h[d]=i.clone(),t.fireValueChange(h)}}return e.preventDefault(),i};switch(n){case De.DOWN:return void u((function(e){return vu(e,1,"weeks")}));case De.UP:return void u((function(e){return vu(e,-1,"weeks")}));case De.LEFT:return void u(r?function(e){return vu(e,-1,"years")}:function(e){return vu(e,-1,"days")});case De.RIGHT:return void u(r?function(e){return vu(e,1,"years")}:function(e){return vu(e,1,"days")});case De.HOME:return void u((function(e){return pu(e)}));case De.END:return void u((function(e){return mu(e)}));case De.PAGE_DOWN:return void u((function(e){return vu(e,1,"month")}));case De.PAGE_UP:return void u((function(e){return vu(e,-1,"month")}));case De.ENTER:var d=void 0;return!(d=0===a.length?u((function(e){return e})):1===a.length?a[0]:a[0].isSame(s,"day")?a[1]:a[0])||l&&l(d)||this.onSelect(d),void e.preventDefault();default:this.__emit("keydown",e)}}},onDayHover:function(e){var t=[],n=this.sSelectedValue,r=this.firstSelectedValue,i=this.type;if("start"===i&&n[1])t=this.compare(e,n[1])<0?[e,n[1]]:[e];else if("end"===i&&n[0])t=this.compare(e,n[0])>0?[n[0],e]:[];else{if(!r)return this.sHoverValue.length&&this.setState({sHoverValue:[]}),t;t=this.compare(e,r)<0?[e,r]:[r,e]}return this.fireHoverValueChange(t),t},onToday:function(){var e=es(this.sValue[0]),t=e.clone().add(1,"months");this.setState({sValue:[e,t]})},onOpenTimePicker:function(){this.setState({sShowTimePicker:!0})},onCloseTimePicker:function(){this.setState({sShowTimePicker:!1})},onOk:function(){var e=this.sSelectedValue;this.isAllowedDateAndTime(e)&&this.__emit("ok",e)},onStartInputChange:function(){for(var e=arguments.length,t=Array(e),n=0;n-1},hasSelectedValue:function(){var e=this.sSelectedValue;return!!e[1]&&!!e[0]},compare:function(e,t){return this.timePicker?e.diff(t):e.diff(t,"days")},fireSelectValueChange:function(e,t,n){var r=this.timePicker,i=this.prevSelectedValue;if(r){var o=(0,k.oZ)(r);if(o.defaultValue){var a=o.defaultValue;!i[0]&&e[0]&&is(a[0],e[0]),!i[1]&&e[1]&&is(a[1],e[1])}}if(!this.sSelectedValue[0]||!this.sSelectedValue[1]){var s=e[0]||qa()(),c=e[1]||s.clone().add(1,"months");this.setState({sSelectedValue:e,sValue:e&&2===e.length?rd([s,c]):this.sValue})}e[0]&&!e[1]&&(this.setState({firstSelectedValue:e[0]}),this.fireHoverValueChange(e.concat())),this.__emit("change",e),(t||e[0]&&e[1])&&(this.setState({prevSelectedValue:e,firstSelectedValue:null}),this.fireHoverValueChange([]),this.__emit("select",e,n)),(0,k.m2)(this,"selectedValue")||this.setState({sSelectedValue:e})},fireValueChange:function(e){(0,k.m2)(this,"value")||this.setState({sValue:e}),this.__emit("valueChange",e)},fireHoverValueChange:function(e){(0,k.m2)(this,"hoverValue")||this.setState({sHoverValue:e}),this.__emit("hoverChange",e)},clear:function(){this.fireSelectValueChange([],!0),this.__emit("clear")},disabledStartTime:function(e){return this.disabledTime(e,"start")},disabledEndTime:function(e){return this.disabledTime(e,"end")},disabledStartMonth:function(e){var t=this.sValue;return e.isAfter(t[1],"month")},disabledEndMonth:function(e){var t=this.sValue;return e.isBefore(t[0],"month")}},render:function(){var e,t,n=arguments[0],r=(0,k.oZ)(this),i=r.prefixCls,o=r.dateInputPlaceholder,a=r.timePicker,s=r.showOk,u=r.locale,d=r.showClear,h=r.showToday,f=r.type,p=r.seperator,m=(0,k.rj)(this,"clearIcon"),v=this.sHoverValue,y=this.sSelectedValue,g=this.sMode,_=this.sShowTimePicker,b=this.sValue,M=(e={},(0,l.Z)(e,i,1),(0,l.Z)(e,i+"-hidden",!r.visible),(0,l.Z)(e,i+"-range",1),(0,l.Z)(e,i+"-show-time-picker",_),(0,l.Z)(e,i+"-week-number",r.showWeekNumber),e),w={props:r,on:(0,k.CL)(this)},C={props:{selectedValue:y},on:{select:this.onSelect,dayHover:"start"===f&&y[1]||"end"===f&&y[0]||v.length?this.onDayHover:td}},L=void 0,x=void 0;if(o)if(Array.isArray(o)){var S=(0,ht.Z)(o,2);L=S[0],x=S[1]}else L=x=o;var Z=!0===s||!1!==s&&!!a,T=(t={},(0,l.Z)(t,i+"-footer",!0),(0,l.Z)(t,i+"-range-bottom",!0),(0,l.Z)(t,i+"-footer-show-ok",Z),t),z=this.getStartValue(),O=this.getEndValue(),H=es(z),D=H.month(),V=H.year(),P=z.year()===V&&z.month()===D||O.year()===V&&O.month()===D,Y=z.clone().add(1,"months"),A=Y.year()===O.year()&&Y.month()===O.month(),j=(0,k.dG)(w,C,{props:{hoverValue:v,direction:"left",disabledTime:this.disabledStartTime,disabledMonth:this.disabledStartMonth,format:this.getFormat(),value:z,mode:g[0],placeholder:L,showDateInput:this.showDateInput,timePicker:a,showTimePicker:_||"time"===g[0],enablePrev:!0,enableNext:!A||this.isMonthYearPanelShow(g[1]),clearIcon:m},on:{inputChange:this.onStartInputChange,inputSelect:this.onStartInputSelect,valueChange:this.onStartValueChange,panelChange:this.onStartPanelChange}}),E=(0,k.dG)(w,C,{props:{hoverValue:v,direction:"right",format:this.getFormat(),timePickerDisabledTime:this.getEndDisableTime(),placeholder:x,value:O,mode:g[1],showDateInput:this.showDateInput,timePicker:a,showTimePicker:_||"time"===g[1],disabledTime:this.disabledEndTime,disabledMonth:this.disabledEndMonth,enablePrev:!A||this.isMonthYearPanelShow(g[0]),enableNext:!0,clearIcon:m},on:{inputChange:this.onEndInputChange,inputSelect:this.onEndInputSelect,valueChange:this.onEndValueChange,panelChange:this.onEndPanelChange}}),$=null;if(h){var F=(0,k.dG)(w,{props:{disabled:P,value:b[0],text:u.backToToday},on:{today:this.onToday}});$=n(iu,c()([{key:"todayButton"},F]))}var I=null;if(r.timePicker){var N=(0,k.dG)(w,{props:{showTimePicker:_||"time"===g[0]&&"time"===g[1],timePickerDisabled:!this.hasSelectedValue()||v.length},on:{openTimePicker:this.onOpenTimePicker,closeTimePicker:this.onCloseTimePicker}});I=n(cu,c()([{key:"timePickerButton"},N]))}var R=null;if(Z){var W=(0,k.dG)(w,{props:{okDisabled:!this.isAllowedDateAndTime(y)||!this.hasSelectedValue()||v.length},on:{ok:this.onOk}});R=n(au,c()([{key:"okButtonNode"},W]))}var K=this.renderFooter(g);return n("div",{ref:"rootInstance",class:M,attrs:{tabIndex:"0"},on:{keydown:this.onKeyDown}},[r.renderSidebar(),n("div",{class:i+"-panel"},[d&&y[0]&&y[1]?n("a",{attrs:{role:"button",title:u.clear},on:{click:this.clear}},[m||n("span",{class:i+"-clear-btn"})]):null,n("div",{class:i+"-date-panel",on:{mouseleave:"both"!==f?this.onDatePanelLeave:td,mouseenter:"both"!==f?this.onDatePanelEnter:td}},[n(ed,j),n("span",{class:i+"-range-middle"},[p]),n(ed,E)]),n("div",{class:T},[h||r.timePicker||Z||K?n("div",{class:i+"-footer-btn"},[K,$,I,R]):null])])])}};var cd=new RegExp("^("+["pink","red","yellow","orange","cyan","green","blue","purple","geekblue","magenta","volcano","gold","lime"].join("|")+")(-inverse)?$");const ld={name:"ATag",mixins:[y.Z],model:{prop:"visible",event:"close.visible"},props:{prefixCls:u.Z.string,color:u.Z.string,closable:u.Z.bool.def(!1),visible:u.Z.bool,afterClose:u.Z.func},inject:{configProvider:{default:function(){return X}}},data:function(){var e=!0,t=(0,k.oZ)(this);return"visible"in t&&(e=this.visible),re(!("afterClose"in t),"Tag","'afterClose' will be deprecated, please use 'close' event, we will remove this in the next version."),{_visible:e}},watch:{visible:function(e){this.setState({_visible:e})}},methods:{setVisible:function(e,t){this.$emit("close",t),this.$emit("close.visible",!1);var n=this.afterClose;n&&n(),t.defaultPrevented||(0,k.m2)(this,"visible")||this.setState({_visible:e})},handleIconClick:function(e){e.stopPropagation(),this.setVisible(!1,e)},isPresetColor:function(){var e=this.$props.color;return!!e&&cd.test(e)},getTagStyle:function(){var e=this.$props.color,t=this.isPresetColor();return{backgroundColor:e&&!t?e:void 0}},getTagClassName:function(e){var t,n=this.$props.color,r=this.isPresetColor();return t={},(0,l.Z)(t,e,!0),(0,l.Z)(t,e+"-"+n,r),(0,l.Z)(t,e+"-has-color",n&&!r),t},renderCloseIcon:function(){var e=this.$createElement;return this.$props.closable?e(Ui,{attrs:{type:"close"},on:{click:this.handleIconClick}}):null}},render:function(){var e=arguments[0],t=this.$props.prefixCls,n=this.configProvider.getPrefixCls,r=n("tag",t),i=this.$data._visible,o=e("span",c()([{directives:[{name:"show",value:i}]},{on:p((0,k.CL)(this),["close"])},{class:this.getTagClassName(r),style:this.getTagStyle()}]),[this.$slots.default,this.renderCloseIcon()]),a=dn(r+"-zoom",{appear:!1});return e(So,[e("transition",a,[o])])}},ud={name:"ACheckableTag",model:{prop:"checked"},props:{prefixCls:u.Z.string,checked:Boolean},inject:{configProvider:{default:function(){return X}}},computed:{classes:function(){var e,t=this.checked,n=this.prefixCls,r=(0,this.configProvider.getPrefixCls)("tag",n);return e={},(0,l.Z)(e,""+r,!0),(0,l.Z)(e,r+"-checkable",!0),(0,l.Z)(e,r+"-checkable-checked",t),e}},methods:{handleClick:function(){var e=this.checked;this.$emit("input",!e),this.$emit("change",!e)}},render:function(){var e=arguments[0],t=this.classes,n=this.handleClick,r=this.$slots;return e("div",{class:t,on:{click:n}},[r.default])}};ld.CheckableTag=ud,ld.install=function(e){e.use(B),e.component(ld.name,ld),e.component(ld.CheckableTag.name,ld.CheckableTag)};const dd=ld;var hd=function(){return{name:u.Z.string,transitionName:u.Z.string,prefixCls:u.Z.string,inputPrefixCls:u.Z.string,format:u.Z.oneOfType([u.Z.string,u.Z.array,u.Z.func]),disabled:u.Z.bool,allowClear:u.Z.bool,suffixIcon:u.Z.any,popupStyle:u.Z.object,dropdownClassName:u.Z.string,locale:u.Z.any,localeCode:u.Z.string,size:u.Z.oneOf(["large","small","default"]),getCalendarContainer:u.Z.func,open:u.Z.bool,disabledDate:u.Z.func,showToday:u.Z.bool,dateRender:u.Z.any,pickerClass:u.Z.string,pickerInputClass:u.Z.string,timePicker:u.Z.any,autoFocus:u.Z.bool,tagPrefixCls:u.Z.string,tabIndex:u.Z.oneOfType([u.Z.string,u.Z.number]),align:u.Z.object.def((function(){return{}})),inputReadOnly:u.Z.bool,valueFormat:u.Z.string}},fd=function(){return{value:Ys,defaultValue:Ys,defaultPickerValue:Ys,renderExtraFooter:u.Z.any,placeholder:u.Z.string}},pd=function(){return(0,f.Z)({},hd(),fd(),{showTime:u.Z.oneOfType([u.Z.object,u.Z.bool]),open:u.Z.bool,disabledTime:u.Z.func,mode:u.Z.oneOf(["time","date","month","year","decade"])})},md=function(){return(0,f.Z)({},hd(),fd(),{placeholder:u.Z.string,monthCellContentRender:u.Z.func})},vd=function(){return(0,f.Z)({},hd(),{tagPrefixCls:u.Z.string,value:As,defaultValue:As,defaultPickerValue:As,timePicker:u.Z.any,showTime:u.Z.oneOfType([u.Z.object,u.Z.bool]),ranges:u.Z.object,placeholder:u.Z.arrayOf(String),mode:u.Z.oneOfType([u.Z.string,u.Z.arrayOf(String)]),separator:u.Z.any,disabledTime:u.Z.func,showToday:u.Z.bool,renderExtraFooter:u.Z.any})},yd=function(){return(0,f.Z)({},hd(),fd(),{placeholder:u.Z.string})};const gd={functional:!0,render:function(e,t){var n=t.props,r=n.suffixIcon,i=n.prefixCls;return(r&&(0,k.l$)(r)?(0,fn.Tm)(r,{class:i+"-picker-icon"}):e("span",{class:i+"-picker-icon"},[r]))||e(Ui,{attrs:{type:"calendar"},class:i+"-picker-icon"})}};function _d(){}function bd(e,t){var n=(0,ht.Z)(e,2),r=n[0],i=n[1];if(r||i)return t&&"month"===t[0]?[r,i]:[r,i&&i.isSame(r,"month")?i.clone().add(1,"month"):i]}function Md(e){if(e)return Array.isArray(e)?e:[e,e.clone().add(1,"month")]}function wd(e,t){if(t&&e&&0!==e.length){var n=(0,ht.Z)(e,2),r=n[0],i=n[1];r&&r.locale(t),i&&i.locale(t)}}const kd={name:"ARangePicker",mixins:[y.Z],model:{prop:"value",event:"change"},props:(0,k.SQ)(vd(),{allowClear:!0,showToday:!1,separator:"~"}),inject:{configProvider:{default:function(){return X}}},data:function(){var e,t=this.value||this.defaultValue||[],n=(0,ht.Z)(t,2),r=n[0],i=n[1];if(r&&!Ds(Ua).isMoment(r)||i&&!Ds(Ua).isMoment(i))throw new Error("The value/defaultValue of RangePicker must be a moment object array after `antd@2.0`, see: https://u.ant.design/date-picker-value");return{sValue:t,sShowDate:Md((t&&(e=t,!Array.isArray(e)||0!==e.length&&!e.every((function(e){return!e})))?t:this.defaultPickerValue)||Ds(Ua)()),sOpen:this.open,sHoverValue:[]}},watch:{value:function(e){var t=e||[],n={sValue:t};at()(e,this.sValue)||(n=(0,f.Z)({},n,{sShowDate:bd(t,this.mode)||this.sShowDate})),this.setState(n)},open:function(e){var t={sOpen:e};this.setState(t)},sOpen:function(e,t){var n=this;this.$nextTick((function(){(0,k.m2)(n,"open")||!t||e||n.focus()}))}},methods:{setValue:function(e,t){this.handleChange(e),!t&&this.showTime||(0,k.m2)(this,"open")||this.setState({sOpen:!1})},clearSelection:function(e){e.preventDefault(),e.stopPropagation(),this.setState({sValue:[]}),this.handleChange([])},clearHoverValue:function(){this.setState({sHoverValue:[]})},handleChange:function(e){(0,k.m2)(this,"value")||this.setState((function(t){var n=t.sShowDate;return{sValue:e,sShowDate:bd(e)||n}})),e[0]&&e[1]&&e[0].diff(e[1])>0&&(e[1]=void 0);var t=(0,ht.Z)(e,2),n=t[0],r=t[1];this.$emit("change",e,[Tu(n,this.format),Tu(r,this.format)])},handleOpenChange:function(e){(0,k.m2)(this,"open")||this.setState({sOpen:e}),!1===e&&this.clearHoverValue(),this.$emit("openChange",e)},handleShowDateChange:function(e){this.setState({sShowDate:e})},handleHoverChange:function(e){this.setState({sHoverValue:e})},handleRangeMouseLeave:function(){this.sOpen&&this.clearHoverValue()},handleCalendarInputSelect:function(e){(0,ht.Z)(e,1)[0]&&this.setState((function(t){var n=t.sShowDate;return{sValue:e,sShowDate:bd(e)||n}}))},handleRangeClick:function(e){"function"==typeof e&&(e=e()),this.setValue(e,!0),this.$emit("ok",e),this.$emit("openChange",!1)},onMouseEnter:function(e){this.$emit("mouseenter",e)},onMouseLeave:function(e){this.$emit("mouseleave",e)},focus:function(){this.$refs.picker.focus()},blur:function(){this.$refs.picker.blur()},renderFooter:function(){var e=this,t=this.$createElement,n=this.ranges,r=this.$scopedSlots,i=this.$slots,o=this._prefixCls,a=this._tagPrefixCls,s=this.renderExtraFooter||r.renderExtraFooter||i.renderExtraFooter;if(!n&&!s)return null;var c=s?t("div",{class:o+"-footer-extra",key:"extra"},["function"==typeof s?s():s]):null,l=n&&Object.keys(n).map((function(r){var i=n[r],o="function"==typeof i?i.call(e):i;return t(dd,{key:r,attrs:{prefixCls:a,color:"blue"},on:{click:function(){return e.handleRangeClick(i)},mouseenter:function(){return e.setState({sHoverValue:o})},mouseleave:e.handleRangeMouseLeave}},[r])}));return[l&&l.length>0?t("div",{class:o+"-footer-extra "+o+"-range-quick-selector",key:"range"},[l]):null,c]}},render:function(){var e,t=this,n=arguments[0],r=(0,k.oZ)(this),i=(0,k.rj)(this,"suffixIcon");i=Array.isArray(i)?i[0]:i;var o=this.sValue,a=this.sShowDate,s=this.sHoverValue,c=this.sOpen,u=this.$scopedSlots,d=(0,k.CL)(this),p=d.calendarChange,m=void 0===p?_d:p,v=d.ok,y=void 0===v?_d:v,g=d.focus,_=void 0===g?_d:g,b=d.blur,M=void 0===b?_d:b,w=d.panelChange,C=void 0===w?_d:w,L=r.prefixCls,x=r.tagPrefixCls,S=r.popupStyle,Z=r.disabledDate,T=r.disabledTime,z=r.showTime,O=r.showToday,H=r.ranges,D=r.locale,V=r.localeCode,P=r.format,Y=r.separator,A=r.inputReadOnly,j=this.configProvider.getPrefixCls,E=j("calendar",L),$=j("tag",x);this._prefixCls=E,this._tagPrefixCls=$;var F=r.dateRender||u.dateRender;wd(o,V),wd(a,V);var I=h()((e={},(0,l.Z)(e,E+"-time",z),(0,l.Z)(e,E+"-range-with-ranges",H),e)),N={on:{change:this.handleChange}},R={on:{ok:this.handleChange},props:{}};r.timePicker?N.on.change=function(e){return t.handleChange(e)}:R={on:{},props:{}},"mode"in r&&(R.props.mode=r.mode);var W=Array.isArray(r.placeholder)?r.placeholder[0]:D.lang.rangePlaceholder[0],K=Array.isArray(r.placeholder)?r.placeholder[1]:D.lang.rangePlaceholder[1],B=(0,k.dG)(R,{props:{separator:Y,format:P,prefixCls:E,renderFooter:this.renderFooter,timePicker:r.timePicker,disabledDate:Z,disabledTime:T,dateInputPlaceholder:[W,K],locale:D.lang,dateRender:F,value:a,hoverValue:s,showToday:O,inputReadOnly:A},on:{change:m,ok:y,valueChange:this.handleShowDateChange,hoverChange:this.handleHoverChange,panelChange:C,inputSelect:this.handleCalendarInputSelect},class:I,scopedSlots:u}),U=n(sd,B),q={};r.showTime&&(q.width="350px");var G=(0,ht.Z)(o,2),J=G[0],X=G[1],Q=!r.disabled&&r.allowClear&&o&&(J||X)?n(Ui,{attrs:{type:"close-circle",theme:"filled"},class:E+"-picker-clear",on:{click:this.clearSelection}}):null,ee=n(gd,{attrs:{suffixIcon:i,prefixCls:E}}),te=function(e){var t=e.value,i=(0,ht.Z)(t,2),o=i[0],a=i[1];return n("span",{class:r.pickerInputClass},[n("input",{attrs:{disabled:r.disabled,readOnly:!0,placeholder:W,tabIndex:-1},domProps:{value:Tu(o,r.format)},class:E+"-range-picker-input"}),n("span",{class:E+"-range-picker-separator"},[" ",Y," "]),n("input",{attrs:{disabled:r.disabled,readOnly:!0,placeholder:K,tabIndex:-1},domProps:{value:Tu(a,r.format)},class:E+"-range-picker-input"}),Q,ee])},ne=(0,k.dG)({props:r,on:d},N,{props:{calendar:U,value:o,open:c,prefixCls:E+"-picker-container"},on:{openChange:this.handleOpenChange},style:S,scopedSlots:(0,f.Z)({default:te},u)});return n("span",{ref:"picker",class:r.pickerClass,style:q,attrs:{tabIndex:r.disabled?-1:0},on:{focus:_,blur:M,mouseenter:this.onMouseEnter,mouseleave:this.onMouseLeave}},[n(Zu,ne)])}};function Cd(){}const Ld={name:"AWeekPicker",mixins:[y.Z],model:{prop:"value",event:"change"},props:(0,k.SQ)(yd(),{format:"gggg-wo",allowClear:!0}),inject:{configProvider:{default:function(){return X}}},data:function(){var e=this.value||this.defaultValue;if(e&&!Ds(Ua).isMoment(e))throw new Error("The value/defaultValue of WeekPicker or MonthPicker must be a moment object");return{_value:e,_open:this.open}},watch:{value:function(e){var t={_value:e};this.setState(t),this.prevState=(0,f.Z)({},this.$data,t)},open:function(e){var t={_open:e};this.setState(t),this.prevState=(0,f.Z)({},this.$data,t)},_open:function(e,t){var n=this;this.$nextTick((function(){(0,k.m2)(n,"open")||!t||e||n.focus()}))}},mounted:function(){this.prevState=(0,f.Z)({},this.$data)},updated:function(){var e=this;this.$nextTick((function(){(0,k.m2)(e,"open")||!e.prevState._open||e._open||e.focus()}))},methods:{weekDateRender:function(e){var t=this.$createElement,n=this.$data._value,r=this._prefixCls,i=this.$scopedSlots,o=this.dateRender||i.dateRender,a=o?o(e):e.date();return n&&e.year()===n.year()&&e.week()===n.week()?t("div",{class:r+"-selected-day"},[t("div",{class:r+"-date"},[a])]):t("div",{class:r+"-date"},[a])},handleChange:function(e){(0,k.m2)(this,"value")||this.setState({_value:e}),this.$emit("change",e,function(e,t){return e&&e.format(t)||""}(e,this.format))},handleOpenChange:function(e){(0,k.m2)(this,"open")||this.setState({_open:e}),this.$emit("openChange",e)},clearSelection:function(e){e.preventDefault(),e.stopPropagation(),this.handleChange(null)},focus:function(){this.$refs.input.focus()},blur:function(){this.$refs.input.blur()},renderFooter:function(){var e=this.$createElement,t=this._prefixCls,n=this.$scopedSlots,r=this.renderExtraFooter||n.renderExtraFooter;return r?e("div",{class:t+"-footer-extra"},[r.apply(void 0,arguments)]):null}},render:function(){var e=arguments[0],t=(0,k.oZ)(this),n=(0,k.rj)(this,"suffixIcon");n=Array.isArray(n)?n[0]:n;var r=this.prefixCls,i=this.disabled,o=this.pickerClass,a=this.popupStyle,s=this.pickerInputClass,c=this.format,l=this.allowClear,u=this.locale,d=this.localeCode,h=this.disabledDate,p=this.defaultPickerValue,m=this.$data,v=this.$scopedSlots,y=(0,k.CL)(this),g=this.configProvider.getPrefixCls,_=g("calendar",r);this._prefixCls=_;var b=m._value,M=m._open,w=y.focus,C=void 0===w?Cd:w,L=y.blur,x=void 0===L?Cd:L;b&&d&&b.locale(d);var S=(0,k.m2)(this,"placeholder")?this.placeholder:u.lang.placeholder,Z=this.dateRender||v.dateRender||this.weekDateRender,T=e(_u,{attrs:{showWeekNumber:!0,dateRender:Z,prefixCls:_,format:c,locale:u.lang,showDateInput:!1,showToday:!1,disabledDate:h,renderFooter:this.renderFooter,defaultValue:p}}),z=!i&&l&&m._value?e(Ui,{attrs:{type:"close-circle",theme:"filled"},class:_+"-picker-clear",on:{click:this.clearSelection}}):null,O=e(gd,{attrs:{suffixIcon:n,prefixCls:_}}),H=function(t){var n=t.value;return e("span",{style:{display:"inline-block",width:"100%"}},[e("input",{ref:"input",attrs:{disabled:i,readOnly:!0,placeholder:S},domProps:{value:n&&n.format(c)||""},class:s,on:{focus:C,blur:x}}),z,O])},D={props:(0,f.Z)({},t,{calendar:T,prefixCls:_+"-picker-container",value:b,open:M}),on:(0,f.Z)({},y,{change:this.handleChange,openChange:this.handleOpenChange}),style:a,scopedSlots:(0,f.Z)({default:H},v)};return e("span",{class:o},[e(Zu,D)])}};var xd=Xu((0,f.Z)({},Ou(_u,pd()),{name:"ADatePicker"}),pd(),"date"),Sd=Xu((0,f.Z)({},Ou(bu,md()),{name:"AMonthPicker"}),md(),"month");(0,f.Z)(xd,{RangePicker:Xu(kd,vd(),"date"),MonthPicker:Sd,WeekPicker:Xu(Ld,yd(),"week")}),xd.install=function(e){e.use(B),e.component(xd.name,xd),e.component(xd.RangePicker.name,xd.RangePicker),e.component(xd.MonthPicker.name,xd.MonthPicker),e.component(xd.WeekPicker.name,xd.WeekPicker)};const Zd=xd;var Td={name:"ADivider",props:{prefixCls:u.Z.string,type:u.Z.oneOf(["horizontal","vertical",""]).def("horizontal"),dashed:u.Z.bool,orientation:u.Z.oneOf(["left","right","center"])},inject:{configProvider:{default:function(){return X}}},render:function(){var e,t=arguments[0],n=this.prefixCls,r=this.type,i=this.$slots,o=this.dashed,a=this.orientation,s=void 0===a?"center":a,c=this.configProvider.getPrefixCls,u=c("divider",n),d=s.length>0?"-"+s:s,h=(e={},(0,l.Z)(e,u,!0),(0,l.Z)(e,u+"-"+r,!0),(0,l.Z)(e,u+"-with-text"+d,i.default),(0,l.Z)(e,u+"-dashed",!!o),e);return t("div",{class:h,attrs:{role:"separator"}},[i.default&&t("span",{class:u+"-inner-text"},[i.default])])},install:function(e){e.use(B),e.component(Td.name,Td)}};const zd=Td;ga.Button=ma,ga.install=function(e){e.use(B),e.component(ga.name,ga),e.component(ma.name,ma)};const Od=ga;var Hd=n(96347),Dd=n.n(Hd),Vd=n(18721),Pd=n.n(Vd),Yd=n(34155);function Ad(){return(Ad=Object.assign||function(e){for(var t=1;t=o)return e;switch(e){case"%s":return String(t[r++]);case"%d":return Number(t[r++]);case"%j":try{return JSON.stringify(t[r++])}catch(e){return"[Circular]"}break;default:return e}}));return a}return i}function Bd(e,t){return null==e||(!("array"!==t||!Array.isArray(e)||e.length)||!(!function(e){return"string"===e||"url"===e||"hex"===e||"email"===e||"date"===e||"pattern"===e}(t)||"string"!=typeof e||e))}function Ud(e,t,n){var r=0,i=e.length;!function o(a){if(a&&a.length)n(a);else{var s=r;r+=1,s()\[\]\\.,;:\s@"]+(\.[^<>()\[\]\\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/,url:new RegExp("^(?!mailto:)(?:(?:http|https|ftp)://|//)(?:\\S+(?::\\S*)?@)?(?:(?:(?:[1-9]\\d?|1\\d\\d|2[01]\\d|22[0-3])(?:\\.(?:1?\\d{1,2}|2[0-4]\\d|25[0-5])){2}(?:\\.(?:[0-9]\\d?|1\\d\\d|2[0-4]\\d|25[0-4]))|(?:(?:[a-z\\u00a1-\\uffff0-9]+-*)*[a-z\\u00a1-\\uffff0-9]+)(?:\\.(?:[a-z\\u00a1-\\uffff0-9]+-*)*[a-z\\u00a1-\\uffff0-9]+)*(?:\\.(?:[a-z\\u00a1-\\uffff]{2,})))|localhost)(?::\\d{2,5})?(?:(/|\\?|#)[^\\s]*)?$","i"),hex:/^#?([a-f0-9]{6}|[a-f0-9]{3})$/i},th={integer:function(e){return th.number(e)&&parseInt(e,10)===e},float:function(e){return th.number(e)&&!th.integer(e)},array:function(e){return Array.isArray(e)},regexp:function(e){if(e instanceof RegExp)return!0;try{return!!new RegExp(e)}catch(e){return!1}},date:function(e){return"function"==typeof e.getTime&&"function"==typeof e.getMonth&&"function"==typeof e.getYear&&!isNaN(e.getTime())},number:function(e){return!isNaN(e)&&"number"==typeof e},object:function(e){return"object"==typeof e&&!th.array(e)},method:function(e){return"function"==typeof e},email:function(e){return"string"==typeof e&&!!e.match(eh.email)&&e.length<255},url:function(e){return"string"==typeof e&&!!e.match(eh.url)},hex:function(e){return"string"==typeof e&&!!e.match(eh.hex)}};var nh={required:Qd,whitespace:function(e,t,n,r,i){(/^\s+$/.test(t)||""===t)&&r.push(Kd(i.messages.whitespace,e.fullField))},type:function(e,t,n,r,i){if(e.required&&void 0===t)Qd(e,t,n,r,i);else{var o=e.type;["integer","float","array","regexp","object","method","email","number","date","url","hex"].indexOf(o)>-1?th[o](t)||r.push(Kd(i.messages.types[o],e.fullField,e.type)):o&&typeof t!==e.type&&r.push(Kd(i.messages.types[o],e.fullField,e.type))}},range:function(e,t,n,r,i){var o="number"==typeof e.len,a="number"==typeof e.min,s="number"==typeof e.max,c=t,l=null,u="number"==typeof t,d="string"==typeof t,h=Array.isArray(t);if(u?l="number":d?l="string":h&&(l="array"),!l)return!1;h&&(c=t.length),d&&(c=t.replace(/[\uD800-\uDBFF][\uDC00-\uDFFF]/g,"_").length),o?c!==e.len&&r.push(Kd(i.messages[l].len,e.fullField,e.len)):a&&!s&&ce.max?r.push(Kd(i.messages[l].max,e.fullField,e.max)):a&&s&&(ce.max)&&r.push(Kd(i.messages[l].range,e.fullField,e.min,e.max))},enum:function(e,t,n,r,i){e.enum=Array.isArray(e.enum)?e.enum:[],-1===e.enum.indexOf(t)&&r.push(Kd(i.messages.enum,e.fullField,e.enum.join(", ")))},pattern:function(e,t,n,r,i){if(e.pattern)if(e.pattern instanceof RegExp)e.pattern.lastIndex=0,e.pattern.test(t)||r.push(Kd(i.messages.pattern.mismatch,e.fullField,t,e.pattern));else if("string"==typeof e.pattern){new RegExp(e.pattern).test(t)||r.push(Kd(i.messages.pattern.mismatch,e.fullField,t,e.pattern))}}};function rh(e,t,n,r,i){var o=e.type,a=[];if(e.required||!e.required&&r.hasOwnProperty(e.field)){if(Bd(t,o)&&!e.required)return n();nh.required(e,t,r,a,i,o),Bd(t,o)||nh.type(e,t,r,a,i)}n(a)}var ih={string:function(e,t,n,r,i){var o=[];if(e.required||!e.required&&r.hasOwnProperty(e.field)){if(Bd(t,"string")&&!e.required)return n();nh.required(e,t,r,o,i,"string"),Bd(t,"string")||(nh.type(e,t,r,o,i),nh.range(e,t,r,o,i),nh.pattern(e,t,r,o,i),!0===e.whitespace&&nh.whitespace(e,t,r,o,i))}n(o)},method:function(e,t,n,r,i){var o=[];if(e.required||!e.required&&r.hasOwnProperty(e.field)){if(Bd(t)&&!e.required)return n();nh.required(e,t,r,o,i),void 0!==t&&nh.type(e,t,r,o,i)}n(o)},number:function(e,t,n,r,i){var o=[];if(e.required||!e.required&&r.hasOwnProperty(e.field)){if(""===t&&(t=void 0),Bd(t)&&!e.required)return n();nh.required(e,t,r,o,i),void 0!==t&&(nh.type(e,t,r,o,i),nh.range(e,t,r,o,i))}n(o)},boolean:function(e,t,n,r,i){var o=[];if(e.required||!e.required&&r.hasOwnProperty(e.field)){if(Bd(t)&&!e.required)return n();nh.required(e,t,r,o,i),void 0!==t&&nh.type(e,t,r,o,i)}n(o)},regexp:function(e,t,n,r,i){var o=[];if(e.required||!e.required&&r.hasOwnProperty(e.field)){if(Bd(t)&&!e.required)return n();nh.required(e,t,r,o,i),Bd(t)||nh.type(e,t,r,o,i)}n(o)},integer:function(e,t,n,r,i){var o=[];if(e.required||!e.required&&r.hasOwnProperty(e.field)){if(Bd(t)&&!e.required)return n();nh.required(e,t,r,o,i),void 0!==t&&(nh.type(e,t,r,o,i),nh.range(e,t,r,o,i))}n(o)},float:function(e,t,n,r,i){var o=[];if(e.required||!e.required&&r.hasOwnProperty(e.field)){if(Bd(t)&&!e.required)return n();nh.required(e,t,r,o,i),void 0!==t&&(nh.type(e,t,r,o,i),nh.range(e,t,r,o,i))}n(o)},array:function(e,t,n,r,i){var o=[];if(e.required||!e.required&&r.hasOwnProperty(e.field)){if(null==t&&!e.required)return n();nh.required(e,t,r,o,i,"array"),null!=t&&(nh.type(e,t,r,o,i),nh.range(e,t,r,o,i))}n(o)},object:function(e,t,n,r,i){var o=[];if(e.required||!e.required&&r.hasOwnProperty(e.field)){if(Bd(t)&&!e.required)return n();nh.required(e,t,r,o,i),void 0!==t&&nh.type(e,t,r,o,i)}n(o)},enum:function(e,t,n,r,i){var o=[];if(e.required||!e.required&&r.hasOwnProperty(e.field)){if(Bd(t)&&!e.required)return n();nh.required(e,t,r,o,i),void 0!==t&&nh.enum(e,t,r,o,i)}n(o)},pattern:function(e,t,n,r,i){var o=[];if(e.required||!e.required&&r.hasOwnProperty(e.field)){if(Bd(t,"string")&&!e.required)return n();nh.required(e,t,r,o,i),Bd(t,"string")||nh.pattern(e,t,r,o,i)}n(o)},date:function(e,t,n,r,i){var o=[];if(e.required||!e.required&&r.hasOwnProperty(e.field)){if(Bd(t,"date")&&!e.required)return n();var a;if(nh.required(e,t,r,o,i),!Bd(t,"date"))a=t instanceof Date?t:new Date(t),nh.type(e,a,r,o,i),a&&nh.range(e,a.getTime(),r,o,i)}n(o)},url:rh,hex:rh,email:rh,required:function(e,t,n,r,i){var o=[],a=Array.isArray(t)?"array":typeof t;nh.required(e,t,r,o,i,a),n(o)},any:function(e,t,n,r,i){var o=[];if(e.required||!e.required&&r.hasOwnProperty(e.field)){if(Bd(t)&&!e.required)return n();nh.required(e,t,r,o,i)}n(o)}};function oh(){return{default:"Validation error on field %s",required:"%s is required",enum:"%s must be one of %s",whitespace:"%s cannot be empty",date:{format:"%s date %s is invalid for format %s",parse:"%s date could not be parsed, %s is invalid ",invalid:"%s date %s is invalid"},types:{string:"%s is not a %s",method:"%s is not a %s (function)",array:"%s is not an %s",object:"%s is not an %s",number:"%s is not a %s",date:"%s is not a %s",boolean:"%s is not a %s",integer:"%s is not an %s",float:"%s is not a %s",regexp:"%s is not a valid %s",email:"%s is not a valid %s",url:"%s is not a valid %s",hex:"%s is not a valid %s"},string:{len:"%s must be exactly %s characters",min:"%s must be at least %s characters",max:"%s cannot be longer than %s characters",range:"%s must be between %s and %s characters"},number:{len:"%s must equal %s",min:"%s cannot be less than %s",max:"%s cannot be greater than %s",range:"%s must be between %s and %s"},array:{len:"%s must be exactly %s in length",min:"%s cannot be less than %s in length",max:"%s cannot be greater than %s in length",range:"%s must be between %s and %s in length"},pattern:{mismatch:"%s value %s does not match pattern %s"},clone:function(){var e=JSON.parse(JSON.stringify(this));return e.clone=this.clone,e}}}var ah=oh();function sh(e){this.rules=null,this._messages=ah,this.define(e)}sh.prototype={messages:function(e){return e&&(this._messages=Xd(oh(),e)),this._messages},define:function(e){if(!e)throw new Error("Cannot configure a schema with no rules");if("object"!=typeof e||Array.isArray(e))throw new Error("Rules must be an object");var t,n;for(t in this.rules={},e)e.hasOwnProperty(t)&&(n=e[t],this.rules[t]=Array.isArray(n)?n:[n])},validate:function(e,t,n){var r=this;void 0===t&&(t={}),void 0===n&&(n=function(){});var i,o,a=e,s=t,c=n;if("function"==typeof s&&(c=s,s={}),!this.rules||0===Object.keys(this.rules).length)return c&&c(),Promise.resolve();if(s.messages){var l=this.messages();l===ah&&(l=oh()),Xd(l,s.messages),s.messages=l}else s.messages=this.messages();var u={};(s.keys||Object.keys(this.rules)).forEach((function(t){i=r.rules[t],o=a[t],i.forEach((function(n){var i=n;"function"==typeof i.transform&&(a===e&&(a=Ad({},a)),o=a[t]=i.transform(o)),(i="function"==typeof i?{validator:i}:Ad({},i)).validator=r.getValidationMethod(i),i.field=t,i.fullField=i.fullField||t,i.type=r.getType(i),i.validator&&(u[t]=u[t]||[],u[t].push({rule:i,value:o,source:a,field:t}))}))}));var d={};return Gd(u,s,(function(e,t){var n,r=e.rule,i=!("object"!==r.type&&"array"!==r.type||"object"!=typeof r.fields&&"object"!=typeof r.defaultField);function o(e,t){return Ad({},t,{fullField:r.fullField+"."+e})}function a(n){void 0===n&&(n=[]);var a=n;if(Array.isArray(a)||(a=[a]),!s.suppressWarning&&a.length&&sh.warning("async-validator:",a),a.length&&void 0!==r.message&&(a=[].concat(r.message)),a=a.map(Jd(r)),s.first&&a.length)return d[r.field]=1,t(a);if(i){if(r.required&&!e.value)return void 0!==r.message?a=[].concat(r.message).map(Jd(r)):s.error&&(a=[s.error(r,Kd(s.messages.required,r.field))]),t(a);var c={};if(r.defaultField)for(var l in e.value)e.value.hasOwnProperty(l)&&(c[l]=r.defaultField);for(var u in c=Ad({},c,e.rule.fields))if(c.hasOwnProperty(u)){var h=Array.isArray(c[u])?c[u]:[c[u]];c[u]=h.map(o.bind(null,u))}var f=new sh(c);f.messages(s.messages),e.rule.options&&(e.rule.options.messages=s.messages,e.rule.options.error=s.error),f.validate(e.value,e.rule.options||s,(function(e){var n=[];a&&a.length&&n.push.apply(n,a),e&&e.length&&n.push.apply(n,e),t(n.length?n:null)}))}else t(a)}i=i&&(r.required||!r.required&&e.value),r.field=e.field,r.asyncValidator?n=r.asyncValidator(r,e.value,a,e.source,s):r.validator&&(!0===(n=r.validator(r,e.value,a,e.source,s))?a():!1===n?a(r.message||r.field+" fails"):n instanceof Array?a(n):n instanceof Error&&a(n.message)),n&&n.then&&n.then((function(){return a()}),(function(e){return a(e)}))}),(function(e){!function(e){var t,n,r,i=[],o={};for(t=0;t0&&void 0!==arguments[0]?arguments[0]:"",t=arguments[1],n=arguments[2],r=arguments[3],i=arguments[4];if(n(e,t))i(e,t);else if(null==t);else if(Array.isArray(t))t.forEach((function(t,o){return Mh(e+"["+o+"]",t,n,r,i)}));else{if("object"!==(void 0===t?"undefined":(0,w.Z)(t)))return void Nt()(!1,r);Object.keys(t).forEach((function(o){var a=t[o];Mh(e+(e?".":"")+o,a,n,r,i)}))}}function wh(e,t,n){var r={};return Mh(void 0,e,t,n,(function(e,t){r[e]=t})),r}function kh(e,t,n){var r=e.map((function(e){var t=(0,f.Z)({},e,{trigger:e.trigger||[]});return"string"==typeof t.trigger&&(t.trigger=[t.trigger]),t}));return t&&r.push({trigger:n?[].concat(n):[],rules:t}),r}function Ch(e){return e.filter((function(e){return!!e.rules&&e.rules.length})).map((function(e){return e.trigger})).reduce((function(e,t){return e.concat(t)}),[])}function Lh(e){if(!e||!e.target)return e;var t=e.target;return"checkbox"===t.type?t.checked:t.value}function xh(e,t,n){var r=e,i=t,o=n;return void 0===n&&("function"==typeof r?(o=r,i={},r=void 0):Array.isArray(r)?"function"==typeof i?(o=i,i={}):i=i||{}:(o=i,i=r||{},r=void 0)),{names:r,options:i,callback:o}}function Sh(e){return 0===Object.keys(e).length}function Zh(e){return!!e&&e.some((function(e){return e.rules&&e.rules.length}))}function Th(e,t){return 0===t.indexOf(e)&&-1!==[".","["].indexOf(t[e.length])}function zh(e){return wh(e,(function(e,t){return vh(t)}),"You must wrap field data with `createFormField`.")}var Oh=function(){function e(t){(0,Zi.Z)(this,e),Hh.call(this),this.fields=zh(t),this.fieldsMeta={}}return(0,Ti.Z)(e,[{key:"updateFields",value:function(e){this.fields=zh(e)}},{key:"flattenRegisteredFields",value:function(e){var t=this.getAllFieldsName();return wh(e,(function(e){return t.indexOf(e)>=0}),'You cannot set a form field before rendering a field associated with the value. You can use `getFieldDecorator(id, options)` instead `v-decorator="[id, options]"` to register it before render.')}},{key:"setFields",value:function(e){var t=this,n=this.fieldsMeta,r=(0,f.Z)({},this.fields,e),i={};Object.keys(n).forEach((function(e){i[e]=t.getValueFromFields(e,r)})),Object.keys(i).forEach((function(e){var n=i[e],o=t.getFieldMeta(e);if(o&&o.normalize){var a=o.normalize(n,t.getValueFromFields(e,t.fields),i);a!==n&&(r[e]=(0,f.Z)({},r[e],{value:a}))}})),this.fields=r}},{key:"resetFields",value:function(e){var t=this.fields;return(e?this.getValidFieldsFullName(e):this.getAllFieldsName()).reduce((function(e,n){var r=t[n];return r&&"value"in r&&(e[n]={}),e}),{})}},{key:"setFieldMeta",value:function(e,t){this.fieldsMeta[e]=t}},{key:"setFieldsAsDirty",value:function(){var e=this;Object.keys(this.fields).forEach((function(t){var n=e.fields[t],r=e.fieldsMeta[t];n&&r&&Zh(r.validate)&&(e.fields[t]=(0,f.Z)({},n,{dirty:!0}))}))}},{key:"getFieldMeta",value:function(e){return this.fieldsMeta[e]=this.fieldsMeta[e]||{},this.fieldsMeta[e]}},{key:"getValueFromFields",value:function(e,t){var n=t[e];if(n&&"value"in n)return n.value;var r=this.getFieldMeta(e);return r&&r.initialValue}},{key:"getValidFieldsName",value:function(){var e=this,t=this.fieldsMeta;return t?Object.keys(t).filter((function(t){return!e.getFieldMeta(t).hidden})):[]}},{key:"getAllFieldsName",value:function(){var e=this.fieldsMeta;return e?Object.keys(e):[]}},{key:"getValidFieldsFullName",value:function(e){var t=Array.isArray(e)?e:[e];return this.getValidFieldsName().filter((function(e){return t.some((function(t){return e===t||(n=t,0===e.lastIndexOf(n,0)&&[".","["].indexOf(e[t.length])>=0);var n}))}))}},{key:"getFieldValuePropValue",value:function(e){var t=e.name,n=e.getValueProps,r=e.valuePropName,i=this.getField(t),o="value"in i?i.value:e.initialValue;return n?n(o):(0,l.Z)({},r,o)}},{key:"getField",value:function(e){return(0,f.Z)({},this.fields[e],{name:e})}},{key:"getNotCollectedFields",value:function(){var e=this;return this.getValidFieldsName().filter((function(t){return!e.fields[t]})).map((function(t){return{name:t,dirty:!1,value:e.getFieldMeta(t).initialValue}})).reduce((function(e,t){return hh()(e,t.name,yh(t))}),{})}},{key:"getNestedAllFields",value:function(){var e=this;return Object.keys(this.fields).reduce((function(t,n){return hh()(t,n,yh(e.fields[n]))}),this.getNotCollectedFields())}},{key:"getFieldMember",value:function(e,t){return this.getField(e)[t]}},{key:"getNestedFields",value:function(e,t){return(e||this.getValidFieldsName()).reduce((function(e,n){return hh()(e,n,t(n))}),{})}},{key:"getNestedField",value:function(e,t){var n=this.getValidFieldsFullName(e);if(0===n.length||1===n.length&&n[0]===e)return t(e);var r="["===n[0][e.length],i=r?e.length:e.length+1;return n.reduce((function(e,n){return hh()(e,n.slice(i),t(n))}),r?[]:{})}},{key:"isValidNestedFieldName",value:function(e){return this.getAllFieldsName().every((function(t){return!Th(t,e)&&!Th(e,t)}))}},{key:"clearField",value:function(e){delete this.fields[e],delete this.fieldsMeta[e]}}]),e}(),Hh=function(){var e=this;this.setFieldsInitialValue=function(t){var n=e.flattenRegisteredFields(t),r=e.fieldsMeta;Object.keys(n).forEach((function(t){r[t]&&e.setFieldMeta(t,(0,f.Z)({},e.getFieldMeta(t),{initialValue:n[t]}))}))},this.getAllValues=function(){var t=e.fieldsMeta,n=e.fields;return Object.keys(t).reduce((function(t,r){return hh()(t,r,e.getValueFromFields(r,n))}),{})},this.getFieldsValue=function(t){return e.getNestedFields(t,e.getFieldValue)},this.getFieldValue=function(t){var n=e.fields;return e.getNestedField(t,(function(t){return e.getValueFromFields(t,n)}))},this.getFieldsError=function(t){return e.getNestedFields(t,e.getFieldError)},this.getFieldError=function(t){return e.getNestedField(t,(function(t){return(n=e.getFieldMember(t,"errors"))?n.map((function(e){return e&&e.message?e.message:e})):n;var n}))},this.isFieldValidating=function(t){return e.getFieldMember(t,"validating")},this.isFieldsValidating=function(t){return(t||e.getValidFieldsName()).some((function(t){return e.isFieldValidating(t)}))},this.isFieldTouched=function(t){return e.getFieldMember(t,"touched")},this.isFieldsTouched=function(t){return(t||e.getValidFieldsName()).some((function(t){return e.isFieldTouched(t)}))}};function Dh(e){return new Oh(e)}var Vh="change";const Ph=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:[],n=e.validateMessages,r=e.onFieldsChange,i=e.onValuesChange,o=e.mapProps,a=void 0===o?_h:o,s=e.mapPropsToFields,c=e.fieldNameProp,d=e.fieldMetaProp,h=e.fieldDataProp,p=e.formPropName,m=void 0===p?"form":p,v=e.name,_=e.props,b=void 0===_?{}:_,M=e.templateContext;return function(e){var o={};Array.isArray(b)?b.forEach((function(e){o[e]=u.Z.any})):o=b;var p={mixins:[y.Z].concat((0,g.Z)(t)),props:(0,f.Z)({},o,{wrappedComponentRef:u.Z.func.def((function(){}))}),data:function(){var e=this,t=s&&s(this.$props);return this.fieldsStore=Dh(t||{}),this.templateContext=M,this.instances={},this.cachedBind={},this.clearedFieldMetaCache={},this.formItems={},this.renderFields={},this.domFields={},["getFieldsValue","getFieldValue","setFieldsInitialValue","getFieldsError","getFieldError","isFieldValidating","isFieldsValidating","isFieldsTouched","isFieldTouched"].forEach((function(t){e[t]=function(){var n;return(n=e.fieldsStore)[t].apply(n,arguments)}})),{submitting:!1}},watch:M?{}:{$props:{handler:function(e){s&&this.fieldsStore.updateFields(s(e))},deep:!0}},mounted:function(){this.cleanUpUselessFields()},updated:function(){this.cleanUpUselessFields()},methods:{updateFields:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};this.fieldsStore.updateFields(s(e)),M&&M.$forceUpdate()},onCollectCommon:function(e,t,n){var r=this.fieldsStore.getFieldMeta(e);if(r[t])r[t].apply(r,(0,g.Z)(n));else if(r.originalProps&&r.originalProps[t]){var o;(o=r.originalProps)[t].apply(o,(0,g.Z)(n))}var a=r.getValueFromEvent?r.getValueFromEvent.apply(r,(0,g.Z)(n)):Lh.apply(void 0,(0,g.Z)(n));if(i&&a!==this.fieldsStore.getFieldValue(e)){var s=this.fieldsStore.getAllValues(),c={};s[e]=a,Object.keys(s).forEach((function(e){return hh()(c,e,s[e])})),i((0,f.Z)((0,l.Z)({},m,this.getForm()),this.$props),hh()({},e,a),c)}var u=this.fieldsStore.getField(e);return{name:e,field:(0,f.Z)({},u,{value:a,touched:!0}),fieldMeta:r}},onCollect:function(e,t){for(var n=arguments.length,r=Array(n>2?n-2:0),i=2;i2?n-2:0),i=2;i1&&void 0!==arguments[1]?arguments[1]:{};if(!e)throw new Error("Must call `getFieldProps` with valid name string!");delete this.clearedFieldMetaCache[e];var r=(0,f.Z)({name:e,trigger:Vh,valuePropName:"value",validate:[]},n),i=r.rules,o=r.trigger,a=r.validateTrigger,s=void 0===a?o:a,l=r.validate,u=this.fieldsStore.getFieldMeta(e);"initialValue"in r&&(u.initialValue=r.initialValue);var p=(0,f.Z)({},this.fieldsStore.getFieldValuePropValue(r)),m={},y={};c&&(p[c]=v?v+"_"+e:e);var g=kh(l,i,s),_=Ch(g);_.forEach((function(n){m[n]||(m[n]=t.getCacheBind(e,n,t.onCollectValidate))})),o&&-1===_.indexOf(o)&&(m[o]=this.getCacheBind(e,o,this.onCollect));var b=(0,f.Z)({},u,r,{validate:g});return this.fieldsStore.setFieldMeta(e,b),d&&(y[d]=b),h&&(y[h]=this.fieldsStore.getField(e)),this.renderFields[e]=!0,{props:wu()(p,["id"]),domProps:{value:p.value},attrs:(0,f.Z)({},y,{id:p.id}),directives:[{name:"ant-ref",value:this.getCacheBind(e,e+"__ref",this.saveRef)}],on:m}},getFieldInstance:function(e){return this.instances[e]},getRules:function(e,t){return bh(e.validate.filter((function(e){return!t||e.trigger.indexOf(t)>=0})).map((function(e){return e.rules})))},setFields:function(e,t){var n=this,i=this.fieldsStore.flattenRegisteredFields(e);this.fieldsStore.setFields(i);var o=Object.keys(i).reduce((function(e,t){return hh()(e,t,n.fieldsStore.getField(t))}),{});if(r){var a=Object.keys(i).reduce((function(e,t){return hh()(e,t,n.fieldsStore.getField(t))}),{});r(this,a,this.fieldsStore.getNestedAllFields())}var s=M||this,c=!1;Object.keys(o).forEach((function(e){var t=n.formItems[e];(t="function"==typeof t?t():t)&&t.itemSelfUpdate?t.$forceUpdate():c=!0})),c&&s.$forceUpdate(),this.$nextTick((function(){t&&t()}))},setFieldsValue:function(e,t){var n=this.fieldsStore.fieldsMeta,r=this.fieldsStore.flattenRegisteredFields(e),o=Object.keys(r).reduce((function(e,t){if(n[t]){var i=r[t];e[t]={value:i}}return e}),{});if(this.setFields(o,t),i){var a=this.fieldsStore.getAllValues();i((0,f.Z)((0,l.Z)({},m,this.getForm()),this.$props),e,a)}},saveRef:function(e,t,n){if(!n){var r=this.fieldsStore.getFieldMeta(e);return r.preserve||(this.clearedFieldMetaCache[e]={field:this.fieldsStore.getField(e),meta:r},this.clearField(e)),void delete this.domFields[e]}this.domFields[e]=!0,this.recoverClearedField(e),this.instances[e]=n},cleanUpUselessFields:function(){var e=this,t=this.fieldsStore.getAllFieldsName().filter((function(t){var n=e.fieldsStore.getFieldMeta(t);return!e.renderFields[t]&&!e.domFields[t]&&!n.preserve}));t.length&&t.forEach(this.clearField),this.renderFields={}},clearField:function(e){this.fieldsStore.clearField(e),delete this.instances[e],delete this.cachedBind[e]},resetFields:function(e){var t=this,n=this.fieldsStore.resetFields(e);(Object.keys(n).length>0&&this.setFields(n),e)?(Array.isArray(e)?e:[e]).forEach((function(e){return delete t.clearedFieldMetaCache[e]})):this.clearedFieldMetaCache={}},recoverClearedField:function(e){this.clearedFieldMetaCache[e]&&(this.fieldsStore.setFields((0,l.Z)({},e,this.clearedFieldMetaCache[e].field)),this.fieldsStore.setFieldMeta(e,this.clearedFieldMetaCache[e].meta),delete this.clearedFieldMetaCache[e])},validateFieldsInternal:function(e,t,r){var i=this,o=t.fieldNames,a=t.action,s=t.options,c=void 0===s?{}:s,l={},u={},d={},h={};if(e.forEach((function(e){var t=e.name;if(!0===c.force||!1!==e.dirty){var n=i.fieldsStore.getFieldMeta(t),r=(0,f.Z)({},e);r.errors=void 0,r.validating=!0,r.dirty=!0,l[t]=i.getRules(n,a),u[t]=r.value,d[t]=r}else e.errors&&hh()(h,t,{errors:e.errors})})),this.setFields(d),Object.keys(u).forEach((function(e){u[e]=i.fieldsStore.getFieldValue(e)})),r&&Sh(d))r(Sh(h)?null:h,this.fieldsStore.getFieldsValue(o));else{var p=new ch(l);n&&p.messages(n),p.validate(u,c,(function(e){var t=(0,f.Z)({},h);e&&e.length&&e.forEach((function(e){var n=e.field,r=n;Object.keys(l).some((function(e){var t=l[e]||[];if(e===n)return r=e,!0;if(t.every((function(e){return"array"!==e.type}))&&0!==n.indexOf(e))return!1;var i=n.slice(e.length+1);return!!/^\d+$/.test(i)&&(r=e,!0)}));var i=uh()(t,r);("object"!==(void 0===i?"undefined":(0,w.Z)(i))||Array.isArray(i))&&hh()(t,r,{errors:[]}),uh()(t,r.concat(".errors")).push(e)}));var n=[],a={};Object.keys(l).forEach((function(e){var r=uh()(t,e),o=i.fieldsStore.getField(e);ph()(o.value,u[e])?(o.errors=r&&r.errors,o.value=u[e],o.validating=!1,o.dirty=!1,a[e]=o):n.push({name:e})})),i.setFields(a),r&&(n.length&&n.forEach((function(e){var n=e.name,r=[{message:n+" need to revalidate",field:n}];hh()(t,n,{expired:!0,errors:r})})),r(Sh(t)?null:t,i.fieldsStore.getFieldsValue(o)))}))}},validateFields:function(e,t,n){var r=this,i=new Promise((function(i,o){var a=xh(e,t,n),s=a.names,c=a.options,l=xh(e,t,n).callback;if(!l||"function"==typeof l){var u=l;l=function(e,t){u?u(e,t):e?o({errors:e,values:t}):i(t)}}var d=s?r.fieldsStore.getValidFieldsFullName(s):r.fieldsStore.getValidFieldsName(),h=d.filter((function(e){return Zh(r.fieldsStore.getFieldMeta(e).validate)})).map((function(e){var t=r.fieldsStore.getField(e);return t.value=r.fieldsStore.getFieldValue(e),t}));h.length?("firstFields"in c||(c.firstFields=d.filter((function(e){return!!r.fieldsStore.getFieldMeta(e).validateFirst}))),r.validateFieldsInternal(h,{fieldNames:d,options:c},l)):l(null,r.fieldsStore.getFieldsValue(d))}));return i.catch((function(e){return console.error,e})),i},isSubmitting:function(){return this.submitting},submit:function(e){var t=this;this.setState({submitting:!0}),e((function(){t.setState({submitting:!1})}))}},render:function(){var t=arguments[0],n=this.$slots,r=this.$scopedSlots,i=(0,l.Z)({},m,this.getForm()),o=(0,k.oZ)(this),s=o.wrappedComponentRef,c=(0,Oe.Z)(o,["wrappedComponentRef"]),u={props:a.call(this,(0,f.Z)({},i,c)),on:(0,k.CL)(this),ref:"WrappedComponent",directives:[{name:"ant-ref",value:s}]};Object.keys(r).length&&(u.scopedSlots=r);var d=Object.keys(n);return e?t(e,u,[d.length?d.map((function(e){return t("template",{slot:e},[n[e]])})):null]):null}};if(!e)return p;if(Array.isArray(e.props)){var _={};e.props.forEach((function(e){_[e]=u.Z.any})),_[m]=Object,e.props=_}else e.props=e.props||{},m in e.props||(e.props[m]=Object);return gh(p,e)}};var Yh={methods:{getForm:function(){return{getFieldsValue:this.fieldsStore.getFieldsValue,getFieldValue:this.fieldsStore.getFieldValue,getFieldInstance:this.getFieldInstance,setFieldsValue:this.setFieldsValue,setFields:this.setFields,setFieldsInitialValue:this.fieldsStore.setFieldsInitialValue,getFieldDecorator:this.getFieldDecorator,getFieldProps:this.getFieldProps,getFieldsError:this.fieldsStore.getFieldsError,getFieldError:this.fieldsStore.getFieldError,isFieldValidating:this.fieldsStore.isFieldValidating,isFieldsValidating:this.fieldsStore.isFieldsValidating,isFieldsTouched:this.fieldsStore.isFieldsTouched,isFieldTouched:this.fieldsStore.isFieldTouched,isSubmitting:this.isSubmitting,submit:this.submit,validateFields:this.validateFields,resetFields:this.resetFields}}}};function Ah(e,t){var n=window.getComputedStyle,r=n?n(e):e.currentStyle;if(r)return r[t.replace(/-(\w)/gi,(function(e,t){return t.toUpperCase()}))]}var jh={methods:{getForm:function(){return(0,f.Z)({},Yh.methods.getForm.call(this),{validateFieldsAndScroll:this.validateFieldsAndScroll})},validateFieldsAndScroll:function(e,t,n){var r=this,i=xh(e,t,n),o=i.names,a=i.callback,s=i.options;return this.validateFields(o,s,(function(e,t){if(e){var n=r.fieldsStore.getValidFieldsName(),i=void 0,o=void 0;if(n.forEach((function(t){if(Pd()(e,t)){var n=r.getFieldInstance(t);if(n){var a=n.$el||n.elm,s=a.getBoundingClientRect().top;"hidden"!==a.type&&(void 0===o||o>s)&&(o=s,i=a)}}})),i){var c=s.container||function(e){for(var t=e,n=void 0;"body"!==(n=t.nodeName.toLowerCase());){var r=Ah(t,"overflowY");if(t!==e&&("auto"===r||"scroll"===r)&&t.scrollHeight>t.clientHeight)return t;t=t.parentNode}return"body"===n?t.ownerDocument:t}(i);it(i,c,(0,f.Z)({onlyScrollIfNeeded:!0},s.scroll))}}"function"==typeof a&&a(e,t)}))}}};const Eh=function(e){return Ph((0,f.Z)({},e),[jh])};var $h=n(13311),Fh=n.n($h),Ih="data-__meta",Nh="data-__field";function Rh(){}var Wh={id:u.Z.string,htmlFor:u.Z.string,prefixCls:u.Z.string,label:u.Z.any,labelCol:u.Z.shape(Bc).loose,wrapperCol:u.Z.shape(Bc).loose,help:u.Z.any,extra:u.Z.any,validateStatus:u.Z.oneOf(["","success","warning","error","validating"]),hasFeedback:u.Z.bool,required:u.Z.bool,colon:u.Z.bool,fieldDecoratorId:u.Z.string,fieldDecoratorOptions:u.Z.object,selfUpdate:u.Z.bool,labelAlign:u.Z.oneOf(["left","right"])};function Kh(){for(var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[],t=arguments[1],n=!1,r=0,i=e.length;r0&&void 0!==arguments[0]?arguments[0]:[],t=arguments[1],n=[],r=0;r0));r++){var i=e[r];if((i.tag||""!==i.text.trim())&&!(0,k.cV)(i).__ANT_FORM_ITEM){var o=(0,k.nI)(i),a=i.data&&i.data.attrs||{};Ih in a?n.push(i):o&&(n=n.concat(this.getControls(o,t)))}}return n},getOnlyControl:function(){var e=this.getControls(this.slotDefault,!1)[0];return void 0!==e?e:null},getChildAttr:function(e){var t=this.getOnlyControl(),n={};if(t)return t.data?n=t.data:t.$vnode&&t.$vnode.data&&(n=t.$vnode.data),n[e]||n.attrs[e]},getId:function(){return this.getChildAttr("id")},getMeta:function(){return this.getChildAttr(Ih)},getField:function(){return this.getChildAttr(Nh)},getValidateStatus:function(){if(!this.getOnlyControl())return"";var e=this.getField();if(e.validating)return"validating";if(e.errors)return"error";var t="value"in e?e.value:this.getMeta().initialValue;return null!=t&&""!==t?"success":""},onLabelClick:function(){var e=this.id||this.getId();if(e){var t=this.$el.querySelector('[id="'+e+'"]');t&&t.focus&&t.focus()}},onHelpAnimEnd:function(e,t){this.helpShow=t,t||this.$forceUpdate()},isRequired:function(){var e=this.required;return void 0!==e?e:!!this.getOnlyControl()&&((this.getMeta()||{}).validate||[]).filter((function(e){return!!e.rules})).some((function(e){return e.rules.some((function(e){return e.required}))}))},renderHelp:function(e){var t=this,n=this.$createElement,r=this.getHelpMessage(),i=r?n("div",{class:e+"-explain",key:"help"},[r]):null;i&&(this.helpShow=!!i);var o=dn("show-help",{afterEnter:function(){return t.onHelpAnimEnd("help",!0)},afterLeave:function(){return t.onHelpAnimEnd("help",!1)}});return n("transition",c()([o,{key:"help"}]),[i])},renderExtra:function(e){var t=this.$createElement,n=(0,k.rj)(this,"extra");return n?t("div",{class:e+"-extra"},[n]):null},renderValidateWrapper:function(e,t,n,r){var i=this.$createElement,o=this.$props,a=this.getOnlyControl,s=void 0===o.validateStatus&&a?this.getValidateStatus():o.validateStatus,c=e+"-item-control";s&&(c=h()(e+"-item-control",{"has-feedback":s&&o.hasFeedback,"has-success":"success"===s,"has-warning":"warning"===s,"has-error":"error"===s,"is-validating":"validating"===s}));var l="";switch(s){case"success":l="check-circle";break;case"warning":l="exclamation-circle";break;case"error":l="close-circle";break;case"validating":l="loading";break;default:l=""}var u=o.hasFeedback&&l?i("span",{class:e+"-item-children-icon"},[i(Ui,{attrs:{type:l,theme:"loading"===l?"outlined":"filled"}})]):null;return i("div",{class:c},[i("span",{class:e+"-item-children"},[t,u]),n,r])},renderWrapper:function(e,t){var n=this.$createElement,r=(this.isFormItemChildren?{}:this.FormContext).wrapperCol,i=this.wrapperCol||r||{},o=i.style,a=i.id,s=i.on,c=(0,Oe.Z)(i,["style","id","on"]),l=h()(e+"-item-control-wrapper",i.class);return n(Uc,{props:c,class:l,key:"wrapper",style:o,id:a,on:s},[t])},renderLabel:function(e){var t,n=this.$createElement,r=this.FormContext,i=r.vertical,o=r.labelAlign,a=r.labelCol,s=r.colon,c=this.labelAlign,u=this.labelCol,d=this.colon,f=this.id,p=this.htmlFor,m=(0,k.rj)(this,"label"),v=this.isRequired(),y=u||a||{},g=c||o,_=e+"-item-label",b=h()(_,"left"===g&&_+"-left",y.class),M=(y.class,y.style),w=y.id,C=y.on,L=(0,Oe.Z)(y,["class","style","id","on"]),x=m,S=!0===d||!1!==s&&!1!==d;S&&!i&&"string"==typeof m&&""!==m.trim()&&(x=m.replace(/[::]\s*$/,""));var Z=h()((t={},(0,l.Z)(t,e+"-item-required",v),(0,l.Z)(t,e+"-item-no-colon",!S),t));return m?n(Uc,{props:L,class:b,key:"label",style:M,id:w,on:C},[n("label",{attrs:{for:p||f||this.getId(),title:"string"==typeof m?m:""},class:Z,on:{click:this.onLabelClick}},[x])]):null},renderChildren:function(e){return[this.renderLabel(e),this.renderWrapper(e,this.renderValidateWrapper(e,this.slotDefault,this.renderHelp(e),this.renderExtra(e)))]},renderFormItem:function(){var e,t=this.$createElement,n=this.$props.prefixCls,r=(0,this.configProvider.getPrefixCls)("form",n),i=this.renderChildren(r),o=(e={},(0,l.Z)(e,r+"-item",!0),(0,l.Z)(e,r+"-item-with-help",this.helpShow),e);return t(Ic,{class:h()(o),key:"row"},[i])},decoratorOption:function(e){if(e.data&&e.data.directives){var t=Fh()(e.data.directives,["name","decorator"]);return re(!t||t&&Array.isArray(t.value),"Form",'Invalid directive: type check failed for directive "decorator". Expected Array, got '+(0,w.Z)(t?t.value:t)+". At "+e.tag+"."),t?t.value:null}return null},decoratorChildren:function(e){for(var t=this.FormContext.form.getFieldDecorator,n=0,r=e.length;n1),"Form","`autoFormCreate` just `decorator` then first children. but you can use JSX to support multiple children"),this.slotDefault=a}else o.form?(a=(0,fn.RD)(a),this.slotDefault=this.decoratorChildren(a)):this.slotDefault=a;return this.renderFormItem()}};u.Z.func,u.Z.func,u.Z.func,u.Z.any,u.Z.bool,u.Z.string,u.Z.func,u.Z.func,u.Z.func,u.Z.func,u.Z.func,u.Z.func,u.Z.func,u.Z.func,u.Z.func,u.Z.func,u.Z.func,u.Z.func,u.Z.func;var Uh={layout:u.Z.oneOf(["horizontal","inline","vertical"]),labelCol:u.Z.shape(Bc).loose,wrapperCol:u.Z.shape(Bc).loose,colon:u.Z.bool,labelAlign:u.Z.oneOf(["left","right"]),form:u.Z.object,prefixCls:u.Z.string,hideRequiredMark:u.Z.bool,autoFormCreate:u.Z.func,options:u.Z.object,selfUpdate:u.Z.bool},qh=(u.Z.oneOfType([u.Z.string,u.Z.func]),u.Z.string,u.Z.boolean,u.Z.boolean,u.Z.number,u.Z.number,u.Z.number,u.Z.oneOfType([String,u.Z.arrayOf(String)]),u.Z.custom(Dd()),u.Z.func,u.Z.func,{name:"AForm",props:(0,k.SQ)(Uh,{layout:"horizontal",hideRequiredMark:!1,colon:!0}),Item:Bh,createFormField:yh,create:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return Eh((0,f.Z)({fieldNameProp:"id"},e,{fieldMetaProp:Ih,fieldDataProp:Nh}))},createForm:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=B.Vue||r.default;return new n(qh.create((0,f.Z)({},t,{templateContext:e}))())},created:function(){this.formItemContexts=new Map},provide:function(){var e=this;return{FormContext:this,collectFormItemContext:this.form&&this.form.templateContext?function(t){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"add",r=e.formItemContexts,i=r.get(t)||0;"delete"===n?i<=1?r.delete(t):r.set(t,i-1):t!==e.form.templateContext&&r.set(t,i+1)}:function(){}}},inject:{configProvider:{default:function(){return X}}},watch:{form:function(){this.$forceUpdate()}},computed:{vertical:function(){return"vertical"===this.layout}},beforeUpdate:function(){this.formItemContexts.forEach((function(e,t){t.$forceUpdate&&t.$forceUpdate()}))},updated:function(){this.form&&this.form.cleanUpUselessFields&&this.form.cleanUpUselessFields()},methods:{onSubmit:function(e){(0,k.CL)(this).submit?this.$emit("submit",e):e.preventDefault()}},render:function(){var e,t=this,n=arguments[0],r=this.prefixCls,i=this.hideRequiredMark,o=this.layout,a=this.onSubmit,s=this.$slots,c=this.autoFormCreate,u=this.options,d=void 0===u?{}:u,p=this.configProvider.getPrefixCls,m=p("form",r),v=h()(m,(e={},(0,l.Z)(e,m+"-horizontal","horizontal"===o),(0,l.Z)(e,m+"-vertical","vertical"===o),(0,l.Z)(e,m+"-inline","inline"===o),(0,l.Z)(e,m+"-hide-required-mark",i),e));if(c){re(!1,"Form","`autoFormCreate` is deprecated. please use `form` instead.");var y=this.DomForm||Eh((0,f.Z)({fieldNameProp:"id"},d,{fieldMetaProp:Ih,fieldDataProp:Nh,templateContext:this.$vnode.context}))({provide:function(){return{decoratorFormProps:this.$props}},data:function(){return{children:s.default,formClassName:v,submit:a}},created:function(){c(this.form)},render:function(){var e=arguments[0],t=this.children,n=this.formClassName,r=this.submit;return e("form",{on:{submit:r},class:n},[t])}});return this.domForm&&(this.domForm.children=s.default,this.domForm.submit=a,this.domForm.formClassName=v),this.DomForm=y,n(y,{attrs:{wrappedComponentRef:function(e){t.domForm=e}}})}return n("form",{on:{submit:a},class:v},[s.default])}});const Gh=qh;r.default.use(D.Z,{name:"ant-ref"}),r.default.use(N),r.default.prototype.$form=Gh,Gh.install=function(e){e.use(B),e.component(Gh.name,Gh),e.component(Gh.Item.name,Gh.Item),e.prototype.$form=Gh};const Jh=Gh;function Xh(){}function Qh(e,t,n){for(var r=e,i=(t=(t=t.replace(/\[(\w+)\]/g,".$1")).replace(/^\./,"")).split("."),o=0,a=i.length;o1&&void 0!==arguments[1]?arguments[1]:Xh;this.validateDisabled=!1;var r=this.getFilteredRule(e);if(!r||0===r.length)return n(),!0;this.validateState="validating";var i={};r&&r.length>0&&r.forEach((function(e){delete e.trigger})),i[this.prop]=r;var o=new ch(i);this.FormContext&&this.FormContext.validateMessages&&o.messages(this.FormContext.validateMessages);var a={};a[this.prop]=this.fieldValue,o.validate(a,{firstFields:!0},(function(e,r){t.validateState=e?"error":"success",t.validateMessage=e?e[0].message:"",n(t.validateMessage,r),t.FormContext&&t.FormContext.$emit&&t.FormContext.$emit("validate",t.prop,!e,t.validateMessage||null)}))},getRules:function(){var e=this.FormContext.rules,t=this.rules,n=void 0!==this.required?{required:!!this.required,trigger:"change"}:[],r=Qh(e,this.prop||"");return e=e?r.o[this.prop||""]||r.v:[],[].concat(t||e||[]).concat(n)},getFilteredRule:function(e){return this.getRules().filter((function(t){return!t.trigger||""===e||(Array.isArray(t.trigger)?t.trigger.indexOf(e)>-1:t.trigger===e)})).map((function(e){return(0,f.Z)({},e)}))},onFieldBlur:function(){this.validate("blur")},onFieldChange:function(){this.validateDisabled?this.validateDisabled=!1:this.validate("change")},clearValidate:function(){this.validateState="",this.validateMessage="",this.validateDisabled=!1},resetField:function(){var e=this;this.validateState="",this.validateMessage="";var t=this.FormContext.model||{},n=this.fieldValue,r=this.prop;-1!==r.indexOf(":")&&(r=r.replace(/:/,"."));var i=Qh(t,r,!0);this.validateDisabled=!0,Array.isArray(n)?i.o[i.k]=[].concat(this.initialValue):i.o[i.k]=this.initialValue,this.$nextTick((function(){e.validateDisabled=!1}))}},render:function(){var e=this,t=arguments[0],n=this.$slots,r=this.$scopedSlots,i=(0,k.oZ)(this),o=(0,k.rj)(this,"label"),a=(0,k.rj)(this,"extra"),s=(0,k.rj)(this,"help"),c={props:(0,f.Z)({},i,{label:o,extra:a,validateStatus:this.validateState,help:this.validateMessage||s,required:this.isRequired||i.required})},l=(0,k.OU)(r.default?r.default():n.default),u=l[0];if(this.prop&&this.autoLink&&(0,k.l$)(u)){var d=(0,k.vw)(u),h=d.blur,p=d.change;u=(0,fn.Tm)(u,{on:{blur:function(){h&&h.apply(void 0,arguments),e.onFieldBlur()},change:function(){if(Array.isArray(p))for(var t=0,n=p.length;t0&&void 0!==arguments[0]?arguments[0]:[],t=e.length?"string"==typeof e?this.fields.filter((function(t){return e===t.prop})):this.fields.filter((function(t){return e.indexOf(t.prop)>-1})):this.fields;t.forEach((function(e){e.clearValidate()}))},validate:function(e){var t=this;if(this.model){var n=void 0;"function"!=typeof e&&window.Promise&&(n=new window.Promise((function(t,n){e=function(e){e?t(e):n(e)}})));var r=!0,i=0;0===this.fields.length&&e&&e(!0);var o={};return this.fields.forEach((function(n){n.validate("",(function(n,a){n&&(r=!1),o=(0,f.Z)({},o,a),"function"==typeof e&&++i===t.fields.length&&e(r,o)}))})),n||void 0}re(!1,"FormModel","model is required for resetFields to work.")},validateField:function(e,t){e=[].concat(e);var n=this.fields.filter((function(t){return-1!==e.indexOf(t.prop)}));n.length?n.forEach((function(e){e.validate("",t)})):re(!1,"FormModel","please pass correct props!")}},render:function(){var e,t=arguments[0],n=this.prefixCls,r=this.hideRequiredMark,i=this.layout,o=this.onSubmit,a=this.$slots,s=this.configProvider.getPrefixCls,c=s("form",n),u=h()(c,(e={},(0,l.Z)(e,c+"-horizontal","horizontal"===i),(0,l.Z)(e,c+"-vertical","vertical"===i),(0,l.Z)(e,c+"-inline","inline"===i),(0,l.Z)(e,c+"-hide-required-mark",r),e));return t("form",{on:{submit:o},class:u},[a.default])}};r.default.use(D.Z,{name:"ant-ref"}),r.default.use(N),rf.install=function(e){e.use(B),e.component(rf.name,rf),e.component(rf.Item.name,rf.Item)};const of=rf;var af={disabled:u.Z.bool,activeClassName:u.Z.string,activeStyle:u.Z.any};const sf={name:"TouchFeedback",mixins:[y.Z],props:(0,k.SQ)(af,{disabled:!1}),data:function(){return{active:!1}},mounted:function(){var e=this;this.$nextTick((function(){e.disabled&&e.active&&e.setState({active:!1})}))},methods:{triggerEvent:function(e,t,n){this.$emit(e,n),t!==this.active&&this.setState({active:t})},onTouchStart:function(e){this.triggerEvent("touchstart",!0,e)},onTouchMove:function(e){this.triggerEvent("touchmove",!1,e)},onTouchEnd:function(e){this.triggerEvent("touchend",!1,e)},onTouchCancel:function(e){this.triggerEvent("touchcancel",!1,e)},onMouseDown:function(e){this.triggerEvent("mousedown",!0,e)},onMouseUp:function(e){this.triggerEvent("mouseup",!1,e)},onMouseLeave:function(e){this.triggerEvent("mouseleave",!1,e)}},render:function(){var e=this.$props,t=e.disabled,n=e.activeClassName,r=void 0===n?"":n,i=e.activeStyle,o=void 0===i?{}:i,a=this.$slots.default;if(1!==a.length)return re(!1,"m-feedback组件只能包含一个子元素"),null;var s={on:t?{}:{touchstart:this.onTouchStart,touchmove:this.onTouchMove,touchend:this.onTouchEnd,touchcancel:this.onTouchCancel,mousedown:this.onMouseDown,mouseup:this.onMouseUp,mouseleave:this.onMouseLeave}};return!t&&this.active&&(s=(0,f.Z)({},s,{style:o,class:r})),(0,fn.Tm)(a,s)}};const cf={name:"InputHandler",props:{prefixCls:u.Z.string,disabled:u.Z.bool},render:function(){var e=arguments[0],t=this.$props,n=t.prefixCls,r=t.disabled,i={props:{disabled:r,activeClassName:n+"-handler-active"},on:(0,k.CL)(this)};return e(sf,i,[e("span",[this.$slots.default])])}};function lf(){}function uf(e){e.preventDefault()}var df=Number.MAX_SAFE_INTEGER||Math.pow(2,53)-1,hf=function(e){return null!=e},ff=function(e,t){return t===e||"number"==typeof t&&"number"==typeof e&&isNaN(t)&&isNaN(e)},pf={value:u.Z.oneOfType([u.Z.number,u.Z.string]),defaultValue:u.Z.oneOfType([u.Z.number,u.Z.string]),focusOnUpDown:u.Z.bool,autoFocus:u.Z.bool,prefixCls:u.Z.string,tabIndex:u.Z.oneOfType([u.Z.string,u.Z.number]),placeholder:u.Z.string,disabled:u.Z.bool,readonly:u.Z.bool,max:u.Z.number,min:u.Z.number,step:u.Z.oneOfType([u.Z.number,u.Z.string]),upHandler:u.Z.any,downHandler:u.Z.any,useTouch:u.Z.bool,formatter:u.Z.func,parser:u.Z.func,precision:u.Z.number,required:u.Z.bool,pattern:u.Z.string,decimalSeparator:u.Z.string,autoComplete:u.Z.string,title:u.Z.string,name:u.Z.string,id:u.Z.string};const mf={name:"VCInputNumber",mixins:[y.Z],model:{prop:"value",event:"change"},props:(0,k.SQ)(pf,{focusOnUpDown:!0,useTouch:!1,prefixCls:"rc-input-number",min:-df,step:1,parser:function(e){return e.replace(/[^\w\.-]+/g,"")},required:!1,autoComplete:"off"}),data:function(){var e=(0,k.oZ)(this);this.prevProps=(0,f.Z)({},e);var t=void 0;t="value"in e?this.value:this.defaultValue;var n=this.getValidValue(this.toNumber(t));return{inputValue:this.toPrecisionAsStep(n),sValue:n,focused:this.autoFocus}},mounted:function(){var e=this;this.$nextTick((function(){e.autoFocus&&!e.disabled&&e.focus(),e.updatedFunc()}))},updated:function(){var e=this,t=this.$props,n=t.value,r=t.max,i=t.min,o=this.$data.focused,a=this.prevProps,s=(0,k.oZ)(this);if(a){if(!ff(a.value,n)||!ff(a.max,r)||!ff(a.min,i)){var c=o?n:this.getValidValue(n),l=void 0;l=this.pressingUpOrDown?c:this.inputting?this.rawInput:this.toPrecisionAsStep(c),this.setState({sValue:c,inputValue:l})}var u="value"in s?n:this.sValue;"max"in s&&a.max!==r&&"number"==typeof u&&u>r&&this.$emit("change",r),"min"in s&&a.min!==i&&"number"==typeof u&&u1?r-1:0),o=1;o1?t-1:0),r=1;r1&&void 0!==arguments[1]?arguments[1]:this.min,n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:this.max,r=parseFloat(e,10);return isNaN(r)?e:(rn&&(r=n),r)},setValue:function(e,t){var n=this.$props.precision,r=this.isNotCompleteNumber(parseFloat(e,10))?null:parseFloat(e,10),i=this.$data,o=i.sValue,a=void 0===o?null:o,s=i.inputValue,c=void 0===s?null:s,l="number"==typeof r?r.toFixed(n):""+r,u=r!==a||l!==""+c;return(0,k.m2)(this,"value")?this.setState({inputValue:this.toPrecisionAsStep(this.sValue)},t):this.setState({sValue:r,inputValue:this.toPrecisionAsStep(e)},t),u&&this.$emit("change",r),r},getPrecision:function(e){if(hf(this.precision))return this.precision;var t=e.toString();if(t.indexOf("e-")>=0)return parseInt(t.slice(t.indexOf("e-")+2),10);var n=0;return t.indexOf(".")>=0&&(n=t.length-t.indexOf(".")-1),n},getMaxPrecision:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:1;if(hf(this.precision))return this.precision;var n=this.step,r=this.getPrecision(t),i=this.getPrecision(n),o=this.getPrecision(e);return e?Math.max(o,r+i):r+i},getPrecisionFactor:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:1,n=this.getMaxPrecision(e,t);return Math.pow(10,n)},getInputDisplayValue:function(e){var t=e||this.$data,n=t.focused,r=t.inputValue,i=t.sValue,o=void 0;null==(o=n?r:this.toPrecisionAsStep(i))&&(o="");var a=this.formatWrapper(o);return hf(this.$props.decimalSeparator)&&(a=a.toString().replace(".",this.$props.decimalSeparator)),a},recordCursorPosition:function(){try{var e=this.$refs.inputRef;this.cursorStart=e.selectionStart,this.cursorEnd=e.selectionEnd,this.currentValue=e.value,this.cursorBefore=e.value.substring(0,this.cursorStart),this.cursorAfter=e.value.substring(this.cursorEnd)}catch(e){}},fixCaret:function(e,t){if(void 0!==e&&void 0!==t&&this.$refs.inputRef&&this.$refs.inputRef.value)try{var n=this.$refs.inputRef,r=n.selectionStart,i=n.selectionEnd;e===r&&t===i||n.setSelectionRange(e,t)}catch(e){}},restoreByAfter:function(e){if(void 0===e)return!1;var t=this.$refs.inputRef.value,n=t.lastIndexOf(e);if(-1===n)return!1;var r=this.cursorBefore.length;return this.lastKeyCode===De.DELETE&&this.cursorBefore.charAt(r-1)===e[0]?(this.fixCaret(r,r),!0):n+e.length===t.length&&(this.fixCaret(n,n),!0)},partRestoreByAfter:function(e){var t=this;return void 0!==e&&Array.prototype.some.call(e,(function(n,r){var i=e.substring(r);return t.restoreByAfter(i)}))},focus:function(){this.$refs.inputRef.focus(),this.recordCursorPosition()},blur:function(){this.$refs.inputRef.blur()},formatWrapper:function(e){return this.formatter?this.formatter(e):e},toPrecisionAsStep:function(e){if(this.isNotCompleteNumber(e)||""===e)return e;var t=Math.abs(this.getMaxPrecision(e));return isNaN(t)?e.toString():Number(e).toFixed(t)},isNotCompleteNumber:function(e){return isNaN(e)||""===e||null===e||e&&e.toString().indexOf(".")===e.toString().length-1},toNumber:function(e){var t=this.$props,n=t.precision,r=t.autoFocus,i=this.focused,o=void 0===i?r:i,a=e&&e.length>16&&o;return this.isNotCompleteNumber(e)||a?e:hf(n)?Math.round(e*Math.pow(10,n))/Math.pow(10,n):Number(e)},upStep:function(e,t){var n=this.step,r=this.getPrecisionFactor(e,t),i=Math.abs(this.getMaxPrecision(e,t)),o=((r*e+r*n*t)/r).toFixed(i);return this.toNumber(o)},downStep:function(e,t){var n=this.step,r=this.getPrecisionFactor(e,t),i=Math.abs(this.getMaxPrecision(e,t)),o=((r*e-r*n*t)/r).toFixed(i);return this.toNumber(o)},stepFn:function(e,t){var n=this,r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:1,i=arguments[3];if(this.stop(),t&&t.preventDefault(),!this.disabled){var o=this.max,a=this.min,s=this.getCurrentValidValue(this.inputValue)||0;if(!this.isNotCompleteNumber(s)){var c=this[e+"Step"](s,r),l=c>o||co?c=o:c=this.max&&(f=r+"-handler-up-disabled"),v<=this.min&&(p=r+"-handler-down-disabled")}var y=!this.readonly&&!this.disabled,g=this.getInputDisplayValue(),_=void 0,b=void 0;a?(_={touchstart:y&&!f?this.up:lf,touchend:this.stop},b={touchstart:y&&!p?this.down:lf,touchend:this.stop}):(_={mousedown:y&&!f?this.up:lf,mouseup:this.stop,mouseleave:this.stop},b={mousedown:y&&!p?this.down:lf,mouseup:this.stop,mouseleave:this.stop});var M=!!f||i||o,w=!!p||i||o,C=(0,k.CL)(this),L=C.mouseenter,x=void 0===L?lf:L,S=C.mouseleave,Z=void 0===S?lf:S,T=C.mouseover,z=void 0===T?lf:T,O=C.mouseout,H=void 0===O?lf:O,D={on:{mouseenter:x,mouseleave:Z,mouseover:z,mouseout:H},class:d,attrs:{title:this.$props.title}},V={props:{disabled:M,prefixCls:r},attrs:{unselectable:"unselectable",role:"button","aria-label":"Increase Value","aria-disabled":!!M},class:r+"-handler "+r+"-handler-up "+f,on:_,ref:"up"},P={props:{disabled:w,prefixCls:r},attrs:{unselectable:"unselectable",role:"button","aria-label":"Decrease Value","aria-disabled":!!w},class:r+"-handler "+r+"-handler-down "+p,on:b,ref:"down"};return t("div",D,[t("div",{class:r+"-handler-wrap"},[t(cf,V,[c||t("span",{attrs:{unselectable:"unselectable"},class:r+"-handler-up-inner",on:{click:uf}})]),t(cf,P,[u||t("span",{attrs:{unselectable:"unselectable"},class:r+"-handler-down-inner",on:{click:uf}})])]),t("div",{class:r+"-input-wrap"},[t("input",{attrs:{role:"spinbutton","aria-valuemin":this.min,"aria-valuemax":this.max,"aria-valuenow":m,required:this.required,type:this.type,placeholder:this.placeholder,tabIndex:this.tabIndex,autoComplete:s,readonly:this.readonly,disabled:this.disabled,max:this.max,min:this.min,step:this.step,name:this.name,title:this.title,id:this.id,pattern:this.pattern},on:{click:this.handleInputClick,focus:this.onFocus,blur:this.onBlur,keydown:y?this.onKeyDown:lf,keyup:y?this.onKeyUp:lf,input:this.onTrigger,compositionstart:this.onCompositionstart,compositionend:this.onCompositionend},class:r+"-input",ref:"inputRef",domProps:{value:g}})])])}};var vf={prefixCls:u.Z.string,min:u.Z.number,max:u.Z.number,value:u.Z.oneOfType([u.Z.number,u.Z.string]),step:u.Z.oneOfType([u.Z.number,u.Z.string]),defaultValue:u.Z.oneOfType([u.Z.number,u.Z.string]),tabIndex:u.Z.number,disabled:u.Z.bool,size:u.Z.oneOf(["large","small","default"]),formatter:u.Z.func,parser:u.Z.func,decimalSeparator:u.Z.string,placeholder:u.Z.string,name:u.Z.string,id:u.Z.string,precision:u.Z.number,autoFocus:u.Z.bool},yf={name:"AInputNumber",model:{prop:"value",event:"change"},props:(0,k.SQ)(vf,{step:1}),inject:{configProvider:{default:function(){return X}}},methods:{focus:function(){this.$refs.inputNumberRef.focus()},blur:function(){this.$refs.inputNumberRef.blur()}},render:function(){var e,t=arguments[0],n=(0,f.Z)({},(0,k.oZ)(this),this.$attrs),r=n.prefixCls,i=n.size,o=(0,Oe.Z)(n,["prefixCls","size"]),a=this.configProvider.getPrefixCls,s=a("input-number",r),c=h()((e={},(0,l.Z)(e,s+"-lg","large"===i),(0,l.Z)(e,s+"-sm","small"===i),e)),u=t(Ui,{attrs:{type:"up"},class:s+"-handler-up-inner"}),d=t(Ui,{attrs:{type:"down"},class:s+"-handler-down-inner"}),p={props:(0,f.Z)({prefixCls:s,upHandler:u,downHandler:d},o),class:c,ref:"inputNumberRef",on:(0,k.CL)(this)};return t(mf,p)},install:function(e){e.use(B),e.component(yf.name,yf)}};const gf=yf;var _f={prefixCls:u.Z.string,hasSider:u.Z.boolean,tagName:u.Z.string};function bf(e){var t=e.suffixCls,n=e.tagName,r=e.name;return function(e){return{name:r,props:e.props,inject:{configProvider:{default:function(){return X}}},render:function(){var r=arguments[0],i=this.$props.prefixCls,o=this.configProvider.getPrefixCls,a=o(t,i),s={props:(0,f.Z)({prefixCls:a},(0,k.oZ)(this),{tagName:n}),on:(0,k.CL)(this)};return r(e,s,[this.$slots.default])}}}}var Mf={props:_f,render:function(){var e=arguments[0],t=this.prefixCls,n=this.tagName,r=this.$slots,i={class:t,on:(0,k.CL)(this)};return e(n,i,[r.default])}},wf={props:_f,data:function(){return{siders:[]}},provide:function(){var e=this;return{siderHook:{addSider:function(t){e.siders=[].concat((0,g.Z)(e.siders),[t])},removeSider:function(t){e.siders=e.siders.filter((function(e){return e!==t}))}}}},render:function(){var e=arguments[0],t=this.prefixCls,n=this.$slots,r=this.hasSider,i=this.tagName,o=h()(t,(0,l.Z)({},t+"-has-sider","boolean"==typeof r?r:this.siders.length>0)),a={class:o,on:k.CL};return e(i,a,[n.default])}},kf=bf({suffixCls:"layout",tagName:"section",name:"ALayout"})(wf),Cf=bf({suffixCls:"layout-header",tagName:"header",name:"ALayoutHeader"})(Mf),Lf=bf({suffixCls:"layout-footer",tagName:"footer",name:"ALayoutFooter"})(Mf),xf=bf({suffixCls:"layout-content",tagName:"main",name:"ALayoutContent"})(Mf);kf.Header=Cf,kf.Footer=Lf,kf.Content=xf;const Sf=kf;if("undefined"!=typeof window){window.matchMedia=window.matchMedia||function(e){return{media:e,matches:!1,addListener:function(){},removeListener:function(){}}}}var Zf,Tf={xs:"479.98px",sm:"575.98px",md:"767.98px",lg:"991.98px",xl:"1199.98px",xxl:"1599.98px"},zf={prefixCls:u.Z.string,collapsible:u.Z.bool,collapsed:u.Z.bool,defaultCollapsed:u.Z.bool,reverseArrow:u.Z.bool,zeroWidthTriggerStyle:u.Z.object,trigger:u.Z.any,width:u.Z.oneOfType([u.Z.number,u.Z.string]),collapsedWidth:u.Z.oneOfType([u.Z.number,u.Z.string]),breakpoint:u.Z.oneOf(["xs","sm","md","lg","xl","xxl"]),theme:u.Z.oneOf(["light","dark"]).def("dark")},Of=(Zf=0,function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"";return""+e+(Zf+=1)});const Hf={name:"ALayoutSider",__ANT_LAYOUT_SIDER:!0,mixins:[y.Z],model:{prop:"collapsed",event:"collapse"},props:(0,k.SQ)(zf,{collapsible:!1,defaultCollapsed:!1,reverseArrow:!1,width:200,collapsedWidth:80}),data:function(){this.uniqueId=Of("ant-sider-");var e=void 0;"undefined"!=typeof window&&(e=window.matchMedia);var t=(0,k.oZ)(this);e&&t.breakpoint&&t.breakpoint in Tf&&(this.mql=e("(max-width: "+Tf[t.breakpoint]+")"));return{sCollapsed:"collapsed"in t?t.collapsed:t.defaultCollapsed,below:!1,belowShow:!1}},provide:function(){return{layoutSiderContext:this}},inject:{siderHook:{default:function(){return{}}},configProvider:{default:function(){return X}}},watch:{collapsed:function(e){this.setState({sCollapsed:e})}},mounted:function(){var e=this;this.$nextTick((function(){e.mql&&(e.mql.addListener(e.responsiveHandler),e.responsiveHandler(e.mql)),e.siderHook.addSider&&e.siderHook.addSider(e.uniqueId)}))},beforeDestroy:function(){this.mql&&this.mql.removeListener(this.responsiveHandler),this.siderHook.removeSider&&this.siderHook.removeSider(this.uniqueId)},methods:{responsiveHandler:function(e){this.setState({below:e.matches}),this.$emit("breakpoint",e.matches),this.sCollapsed!==e.matches&&this.setCollapsed(e.matches,"responsive")},setCollapsed:function(e,t){(0,k.m2)(this,"collapsed")||this.setState({sCollapsed:e}),this.$emit("collapse",e,t)},toggle:function(){var e=!this.sCollapsed;this.setCollapsed(e,"clickTrigger")},belowShowChange:function(){this.setState({belowShow:!this.belowShow})}},render:function(){var e,t=arguments[0],n=(0,k.oZ)(this),r=n.prefixCls,i=n.theme,o=n.collapsible,a=n.reverseArrow,s=n.width,c=n.collapsedWidth,u=n.zeroWidthTriggerStyle,d=this.configProvider.getPrefixCls,f=d("layout-sider",r),p=(0,k.rj)(this,"trigger"),m=this.sCollapsed?c:s,v=na(m)?m+"px":String(m),y=0===parseFloat(String(c||0))?t("span",{on:{click:this.toggle},class:f+"-zero-width-trigger "+f+"-zero-width-trigger-"+(a?"right":"left"),style:u},[t(Ui,{attrs:{type:"bars"}})]):null,g={expanded:t(Ui,a?{attrs:{type:"right"}}:{attrs:{type:"left"}}),collapsed:t(Ui,a?{attrs:{type:"left"}}:{attrs:{type:"right"}})},_=this.sCollapsed?"collapsed":"expanded",b=g[_],M=null!==p?y||t("div",{class:f+"-trigger",on:{click:this.toggle},style:{width:v}},[p||b]):null,w={flex:"0 0 "+v,maxWidth:v,minWidth:v,width:v},C=h()(f,f+"-"+i,(e={},(0,l.Z)(e,f+"-collapsed",!!this.sCollapsed),(0,l.Z)(e,f+"-has-trigger",o&&null!==p&&!y),(0,l.Z)(e,f+"-below",!!this.below),(0,l.Z)(e,f+"-zero-width",0===parseFloat(v)),e)),L={on:(0,k.CL)(this),class:C,style:w};return t("aside",L,[t("div",{class:f+"-children"},[this.$slots.default]),o||this.below&&y?M:null])}};Sf.Sider=Hf,Sf.install=function(e){e.use(B),e.component(Sf.name,Sf),e.component(Sf.Header.name,Sf.Header),e.component(Sf.Footer.name,Sf.Footer),e.component(Sf.Sider.name,Sf.Sider),e.component(Sf.Content.name,Sf.Content)};const Df=Sf;var Vf=u.Z.oneOf(["small","default","large"]),Pf=function(){return{prefixCls:u.Z.string,spinning:u.Z.bool,size:Vf,wrapperClassName:u.Z.string,tip:u.Z.string,delay:u.Z.number,indicator:u.Z.any}},Yf=void 0;const Af={name:"ASpin",mixins:[y.Z],props:(0,k.SQ)(Pf(),{size:"default",spinning:!0,wrapperClassName:""}),inject:{configProvider:{default:function(){return X}}},data:function(){var e=this.spinning,t=function(e,t){return!!e&&!!t&&!isNaN(Number(t))}(e,this.delay);return this.originalUpdateSpinning=this.updateSpinning,this.debouncifyUpdateSpinning(this.$props),{sSpinning:e&&!t}},mounted:function(){this.updateSpinning()},updated:function(){var e=this;this.$nextTick((function(){e.debouncifyUpdateSpinning(),e.updateSpinning()}))},beforeDestroy:function(){this.cancelExistingSpin()},methods:{debouncifyUpdateSpinning:function(e){var t=(e||this.$props).delay;t&&(this.cancelExistingSpin(),this.updateSpinning=Lc()(this.originalUpdateSpinning,t))},updateSpinning:function(){var e=this.spinning;this.sSpinning!==e&&this.setState({sSpinning:e})},cancelExistingSpin:function(){var e=this.updateSpinning;e&&e.cancel&&e.cancel()},getChildren:function(){return this.$slots&&this.$slots.default?(0,k.OU)(this.$slots.default):null},renderIndicator:function(e,t){var n=t+"-dot",r=(0,k.rj)(this,"indicator");return null===r?null:(Array.isArray(r)&&(r=1===(r=(0,k.OU)(r)).length?r[0]:r),(0,k.l$)(r)?(0,fn.Tm)(r,{class:n}):Yf&&(0,k.l$)(Yf(e))?(0,fn.Tm)(Yf(e),{class:n}):e("span",{class:n+" "+t+"-dot-spin"},[e("i",{class:t+"-dot-item"}),e("i",{class:t+"-dot-item"}),e("i",{class:t+"-dot-item"}),e("i",{class:t+"-dot-item"})]))}},render:function(e){var t,n=this.$props,r=n.size,i=n.prefixCls,o=n.tip,a=n.wrapperClassName,s=(0,Oe.Z)(n,["size","prefixCls","tip","wrapperClassName"]),u=(0,this.configProvider.getPrefixCls)("spin",i),d=this.sSpinning,h=(t={},(0,l.Z)(t,u,!0),(0,l.Z)(t,u+"-sm","small"===r),(0,l.Z)(t,u+"-lg","large"===r),(0,l.Z)(t,u+"-spinning",d),(0,l.Z)(t,u+"-show-text",!!o),t),f=e("div",c()([s,{class:h}]),[this.renderIndicator(e,u),o?e("div",{class:u+"-text"},[o]):null]),p=this.getChildren();if(p){var m,v=(m={},(0,l.Z)(m,u+"-container",!0),(0,l.Z)(m,u+"-blur",d),m);return e("div",c()([{on:(0,k.CL)(this)},{class:[u+"-nested-loading",a]}]),[d&&e("div",{key:"loading"},[f]),e("div",{class:v,key:"container"},[p])])}return f},setDefaultIndicator:function(e){Yf="function"==typeof e.indicator?e.indicator:function(t){return t(e.indicator)}},install:function(e){e.use(B),e.component(Af.name,Af)}},jf=Af,Ef={props:(0,f.Z)({},Xi),Option:no.Option,render:function(){var e=arguments[0],t=(0,k.oZ)(this),n={props:(0,f.Z)({},t,{size:"small"}),on:(0,k.CL)(this)};return e(no,n,[(0,k.OU)(this.$slots.default)])}},$f={name:"Pager",props:{rootPrefixCls:u.Z.string,page:u.Z.number,active:u.Z.bool,last:u.Z.bool,locale:u.Z.object,showTitle:u.Z.bool,itemRender:{type:Function,default:function(){}}},methods:{handleClick:function(){this.$emit("click",this.page)},handleKeyPress:function(e){this.$emit("keypress",e,this.handleClick,this.page)}},render:function(){var e,t=arguments[0],n=this.$props,r=n.rootPrefixCls+"-item",i=h()(r,r+"-"+n.page,(e={},(0,l.Z)(e,r+"-active",n.active),(0,l.Z)(e,r+"-disabled",!n.page),e));return t("li",{class:i,on:{click:this.handleClick,keypress:this.handleKeyPress},attrs:{title:this.showTitle?this.page:null,tabIndex:"0"}},[this.itemRender(this.page,"page",t("a",[this.page]))])}},Ff=13,If=38,Nf=40,Rf={mixins:[y.Z],props:{disabled:u.Z.bool,changeSize:u.Z.func,quickGo:u.Z.func,selectComponentClass:u.Z.any,current:u.Z.number,pageSizeOptions:u.Z.array.def(["10","20","30","40"]),pageSize:u.Z.number,buildOptionText:u.Z.func,locale:u.Z.object,rootPrefixCls:u.Z.string,selectPrefixCls:u.Z.string,goButton:u.Z.any},data:function(){return{goInputText:""}},methods:{getValidValue:function(){var e=this.goInputText,t=this.current;return!e||isNaN(e)?t:Number(e)},defaultBuildOptionText:function(e){return e.value+" "+this.locale.items_per_page},handleChange:function(e){var t=e.target,n=t.value,r=t.composing;e.isComposing||r||this.goInputText===n||this.setState({goInputText:n})},handleBlur:function(e){var t=this.$props,n=t.goButton,r=t.quickGo,i=t.rootPrefixCls;n||e.relatedTarget&&(e.relatedTarget.className.indexOf(i+"-prev")>=0||e.relatedTarget.className.indexOf(i+"-next")>=0)||r(this.getValidValue())},go:function(e){""!==this.goInputText&&(e.keyCode!==Ff&&"click"!==e.type||(this.quickGo(this.getValidValue()),this.setState({goInputText:""})))}},render:function(){var e=this,t=arguments[0],n=this.rootPrefixCls,r=this.locale,i=this.changeSize,o=this.quickGo,a=this.goButton,s=this.selectComponentClass,l=this.defaultBuildOptionText,u=this.selectPrefixCls,d=this.pageSize,h=this.pageSizeOptions,f=this.goInputText,p=this.disabled,m=n+"-options",v=null,y=null,g=null;if(!i&&!o)return null;if(i&&s){var _=this.buildOptionText||l,b=h.map((function(e,n){return t(s.Option,{key:n,attrs:{value:e}},[_({value:e})])}));v=t(s,{attrs:{disabled:p,prefixCls:u,showSearch:!1,optionLabelProp:"children",dropdownMatchSelectWidth:!1,value:(d||h[0]).toString(),getPopupContainer:function(e){return e.parentNode}},class:m+"-size-changer",on:{change:function(t){return e.changeSize(Number(t))}}},[b])}return o&&(a&&(g="boolean"==typeof a?t("button",{attrs:{type:"button",disabled:p},on:{click:this.go,keyup:this.go}},[r.jump_to_confirm]):t("span",{on:{click:this.go,keyup:this.go}},[a])),y=t("div",{class:m+"-quick-jumper"},[r.jump_to,t("input",c()([{attrs:{disabled:p,type:"text"},domProps:{value:f},on:{input:this.handleChange,keyup:this.go,blur:this.handleBlur}},{directives:[{name:"ant-input"}]}])),r.page,g])),t("li",{class:""+m},[v,y])}};function Wf(){}function Kf(e,t,n){var r=e;return void 0===r&&(r=t.statePageSize),Math.floor((n.total-1)/r)+1}const Bf={name:"Pagination",mixins:[y.Z],model:{prop:"current",event:"change.current"},props:{disabled:u.Z.bool,prefixCls:u.Z.string.def("rc-pagination"),selectPrefixCls:u.Z.string.def("rc-select"),current:u.Z.number,defaultCurrent:u.Z.number.def(1),total:u.Z.number.def(0),pageSize:u.Z.number,defaultPageSize:u.Z.number.def(10),hideOnSinglePage:u.Z.bool.def(!1),showSizeChanger:u.Z.bool.def(!1),showLessItems:u.Z.bool.def(!1),selectComponentClass:u.Z.any,showPrevNextJumpers:u.Z.bool.def(!0),showQuickJumper:u.Z.oneOfType([u.Z.bool,u.Z.object]).def(!1),showTitle:u.Z.bool.def(!0),pageSizeOptions:u.Z.arrayOf(u.Z.string),buildOptionText:u.Z.func,showTotal:u.Z.func,simple:u.Z.bool,locale:u.Z.object.def({items_per_page:"条/页",jump_to:"跳至",jump_to_confirm:"确定",page:"页",prev_page:"上一页",next_page:"下一页",prev_5:"向前 5 页",next_5:"向后 5 页",prev_3:"向前 3 页",next_3:"向后 3 页"}),itemRender:u.Z.func.def((function(e,t,n){return n})),prevIcon:u.Z.any,nextIcon:u.Z.any,jumpPrevIcon:u.Z.any,jumpNextIcon:u.Z.any},data:function(){var e=(0,k.oZ)(this),t=this.onChange!==Wf;"current"in e&&!t&&console.warn("Warning: You provided a `current` prop to a Pagination component without an `onChange` handler. This will render a read-only component.");var n=this.defaultCurrent;"current"in e&&(n=this.current);var r=this.defaultPageSize;return"pageSize"in e&&(r=this.pageSize),{stateCurrent:n=Math.min(n,Kf(r,void 0,e)),stateCurrentInputValue:n,statePageSize:r}},watch:{current:function(e){this.setState({stateCurrent:e,stateCurrentInputValue:e})},pageSize:function(e){var t={},n=this.stateCurrent,r=Kf(e,this.$data,this.$props);n=n>r?r:n,(0,k.m2)(this,"current")||(t.stateCurrent=n,t.stateCurrentInputValue=n),t.statePageSize=e,this.setState(t)},stateCurrent:function(e,t){var n=this;this.$nextTick((function(){if(n.$refs.paginationNode){var e=n.$refs.paginationNode.querySelector("."+n.prefixCls+"-item-"+t);e&&document.activeElement===e&&e.blur()}}))},total:function(){var e={},t=Kf(this.pageSize,this.$data,this.$props);if((0,k.m2)(this,"current")){var n=Math.min(this.current,t);e.stateCurrent=n,e.stateCurrentInputValue=n}else{var r=this.stateCurrent;r=0===r&&t>0?1:Math.min(this.stateCurrent,t),e.stateCurrent=r}this.setState(e)}},methods:{getJumpPrevPage:function(){return Math.max(1,this.stateCurrent-(this.showLessItems?3:5))},getJumpNextPage:function(){return Math.min(Kf(void 0,this.$data,this.$props),this.stateCurrent+(this.showLessItems?3:5))},getItemIcon:function(e){var t=this.$createElement,n=this.$props.prefixCls;return(0,k.rj)(this,e,this.$props)||t("a",{class:n+"-item-link"})},getValidValue:function(e){var t=e.target.value,n=Kf(void 0,this.$data,this.$props),r=this.$data.stateCurrentInputValue;return""===t?t:isNaN(Number(t))?r:t>=n?n:Number(t)},isValid:function(e){return"number"==typeof(t=e)&&isFinite(t)&&Math.floor(t)===t&&e!==this.stateCurrent;var t},shouldDisplayQuickJumper:function(){var e=this.$props,t=e.showQuickJumper,n=e.pageSize;return!(e.total<=n)&&t},handleKeyDown:function(e){e.keyCode!==If&&e.keyCode!==Nf||e.preventDefault()},handleKeyUp:function(e){if(!e.isComposing&&!e.target.composing){var t=this.getValidValue(e);t!==this.stateCurrentInputValue&&this.setState({stateCurrentInputValue:t}),e.keyCode===Ff?this.handleChange(t):e.keyCode===If?this.handleChange(t-1):e.keyCode===Nf&&this.handleChange(t+1)}},changePageSize:function(e){var t=this.stateCurrent,n=t,r=Kf(e,this.$data,this.$props);t=t>r?r:t,0===r&&(t=this.stateCurrent),"number"==typeof e&&((0,k.m2)(this,"pageSize")||this.setState({statePageSize:e}),(0,k.m2)(this,"current")||this.setState({stateCurrent:t,stateCurrentInputValue:t})),this.$emit("update:pageSize",e),this.$emit("showSizeChange",t,e),t!==n&&this.$emit("change.current",t,e)},handleChange:function(e){var t=this.$props.disabled,n=e;if(this.isValid(n)&&!t){var r=Kf(void 0,this.$data,this.$props);return n>r?n=r:n<1&&(n=1),(0,k.m2)(this,"current")||this.setState({stateCurrent:n,stateCurrentInputValue:n}),this.$emit("change.current",n,this.statePageSize),this.$emit("change",n,this.statePageSize),n}return this.stateCurrent},prev:function(){this.hasPrev()&&this.handleChange(this.stateCurrent-1)},next:function(){this.hasNext()&&this.handleChange(this.stateCurrent+1)},jumpPrev:function(){this.handleChange(this.getJumpPrevPage())},jumpNext:function(){this.handleChange(this.getJumpNextPage())},hasPrev:function(){return this.stateCurrent>1},hasNext:function(){return this.stateCurrent2?n-2:0),i=2;i0?g-1:0,M=g+1=2*y&&3!==g&&(u[0]=t($f,{attrs:{locale:a,rootPrefixCls:r,page:O,active:!1,showTitle:this.showTitle,itemRender:this.itemRender},on:{click:this.handleChange,keypress:this.runIfEnter},key:O,class:r+"-item-after-jump-prev"}),u.unshift(d)),s-g>=2*y&&g!==s-2&&(u[u.length-1]=t($f,{attrs:{locale:a,rootPrefixCls:r,page:H,active:!1,showTitle:this.showTitle,itemRender:this.itemRender},on:{click:this.handleChange,keypress:this.runIfEnter},key:H,class:r+"-item-before-jump-next"}),u.push(h)),1!==O&&u.unshift(f),H!==s&&u.push(p)}var P=null;this.showTotal&&(P=t("li",{class:r+"-total-text"},[this.showTotal(this.total,[0===this.total?0:(g-1)*_+1,g*_>this.total?this.total:g*_])]));var Y=!this.hasPrev()||!s,A=!this.hasNext()||!s,j=this.buildOptionText||this.$scopedSlots.buildOptionText;return t("ul",{class:(e={},(0,l.Z)(e,""+r,!0),(0,l.Z)(e,r+"-disabled",i),e),attrs:{unselectable:"unselectable"},ref:"paginationNode"},[P,t("li",{attrs:{title:this.showTitle?a.prev_page:null,tabIndex:Y?null:0,"aria-disabled":Y},on:{click:this.prev,keypress:this.runIfEnterPrev},class:(Y?r+"-disabled":"")+" "+r+"-prev"},[this.itemRender(b,"prev",this.getItemIcon("prevIcon"))]),u,t("li",{attrs:{title:this.showTitle?a.next_page:null,tabIndex:A?null:0,"aria-disabled":A},on:{click:this.next,keypress:this.runIfEnterNext},class:(A?r+"-disabled":"")+" "+r+"-next"},[this.itemRender(M,"next",this.getItemIcon("nextIcon"))]),t(Rf,{attrs:{disabled:i,locale:a,rootPrefixCls:r,selectComponentClass:this.selectComponentClass,selectPrefixCls:this.selectPrefixCls,changeSize:this.showSizeChanger?this.changePageSize:null,current:g,pageSize:_,pageSizeOptions:this.pageSizeOptions,buildOptionText:j||null,quickGo:this.shouldDisplayQuickJumper()?this.handleChange:null,goButton:v}})])}};var Uf=function(){return{total:u.Z.number,defaultCurrent:u.Z.number,disabled:u.Z.bool,current:u.Z.number,defaultPageSize:u.Z.number,pageSize:u.Z.number,hideOnSinglePage:u.Z.bool,showSizeChanger:u.Z.bool,pageSizeOptions:u.Z.arrayOf(u.Z.oneOfType([u.Z.number,u.Z.string])),buildOptionText:u.Z.func,showSizeChange:u.Z.func,showQuickJumper:u.Z.oneOfType([u.Z.bool,u.Z.object]),showTotal:u.Z.any,size:u.Z.string,simple:u.Z.bool,locale:u.Z.object,prefixCls:u.Z.string,selectPrefixCls:u.Z.string,itemRender:u.Z.any,role:u.Z.string,showLessItems:u.Z.bool}};const qf={name:"APagination",model:{prop:"current",event:"change.current"},props:(0,f.Z)({},Uf()),inject:{configProvider:{default:function(){return X}}},methods:{getIconsProps:function(e){var t=this.$createElement;return{prevIcon:t("a",{class:e+"-item-link"},[t(Ui,{attrs:{type:"left"}})]),nextIcon:t("a",{class:e+"-item-link"},[t(Ui,{attrs:{type:"right"}})]),jumpPrevIcon:t("a",{class:e+"-item-link"},[t("div",{class:e+"-item-container"},[t(Ui,{class:e+"-item-link-icon",attrs:{type:"double-left"}}),t("span",{class:e+"-item-ellipsis"},["•••"])])]),jumpNextIcon:t("a",{class:e+"-item-link"},[t("div",{class:e+"-item-container"},[t(Ui,{class:e+"-item-link-icon",attrs:{type:"double-right"}}),t("span",{class:e+"-item-ellipsis"},["•••"])])])}},renderPagination:function(e){var t=this.$createElement,n=(0,k.oZ)(this),r=n.prefixCls,i=n.selectPrefixCls,o=n.buildOptionText,a=n.size,s=n.locale,c=(0,Oe.Z)(n,["prefixCls","selectPrefixCls","buildOptionText","size","locale"]),l=this.configProvider.getPrefixCls,u=l("pagination",r),d=l("select",i),h="small"===a,p={props:(0,f.Z)({prefixCls:u,selectPrefixCls:d},c,this.getIconsProps(u),{selectComponentClass:h?Ef:no,locale:(0,f.Z)({},e,s),buildOptionText:o||this.$scopedSlots.buildOptionText}),class:{mini:h},on:(0,k.CL)(this)};return t(Bf,p)}},render:function(){var e=arguments[0];return e(O,{attrs:{componentName:"Pagination",defaultLocale:C},scopedSlots:{default:this.renderPagination}})},install:function(e){e.use(B),e.component(qf.name,qf)}},Gf=qf;var Jf={prefixCls:u.Z.string,extra:u.Z.any,actions:u.Z.arrayOf(u.Z.any),grid:tp};u.Z.any,u.Z.any,u.Z.string,u.Z.any;function Xf(e,t){return e[t]&&Math.floor(24/e[t])}const Qf={name:"AListItem",Meta:{functional:!0,name:"AListItemMeta",__ANT_LIST_ITEM_META:!0,inject:{configProvider:{default:function(){return X}}},render:function(e,t){var n=t.props,r=t.slots,i=t.listeners,o=t.injections,a=r(),s=(0,o.configProvider.getPrefixCls)("list",n.prefixCls),l=n.avatar||a.avatar,u=n.title||a.title,d=n.description||a.description,h=e("div",{class:s+"-item-meta-content"},[u&&e("h4",{class:s+"-item-meta-title"},[u]),d&&e("div",{class:s+"-item-meta-description"},[d])]);return e("div",c()([{on:i},{class:s+"-item-meta"}]),[l&&e("div",{class:s+"-item-meta-avatar"},[l]),(u||d)&&h])}},props:Jf,inject:{listContext:{default:function(){return{}}},configProvider:{default:function(){return X}}},methods:{isItemContainsTextNodeAndNotSingular:function(){var e=this.$slots,t=void 0,n=e.default||[];return n.forEach((function(e){(0,k.Ed)(e)&&!(0,k.V2)(e)&&(t=!0)})),t&&n.length>1},isFlexMode:function(){var e=(0,k.rj)(this,"extra");return"vertical"===this.listContext.itemLayout?!!e:!this.isItemContainsTextNodeAndNotSingular()}},render:function(){var e=arguments[0],t=this.listContext,n=t.grid,r=t.itemLayout,i=this.prefixCls,o=this.$slots,a=(0,k.CL)(this),s=this.configProvider.getPrefixCls,u=s("list",i),d=(0,k.rj)(this,"extra"),f=(0,k.rj)(this,"actions"),p=f&&f.length>0&&e("ul",{class:u+"-item-action",key:"actions"},[f.map((function(t,n){return e("li",{key:u+"-item-action-"+n},[t,n!==f.length-1&&e("em",{class:u+"-item-action-split"})])}))]),m=n?"div":"li",v=e(m,c()([{on:a},{class:h()(u+"-item",(0,l.Z)({},u+"-item-no-flex",!this.isFlexMode()))}]),["vertical"===r&&d?[e("div",{class:u+"-item-main",key:"content"},[o.default,p]),e("div",{class:u+"-item-extra",key:"extra"},[d])]:[o.default,p,(0,fn.Tm)(d,{key:"extra"})]]),y=n?e(Uc,{attrs:{span:Xf(n,"column"),xs:Xf(n,"xs"),sm:Xf(n,"sm"),md:Xf(n,"md"),lg:Xf(n,"lg"),xl:Xf(n,"xl"),xxl:Xf(n,"xxl")}},[v]):v;return y}};var ep=["",1,2,3,4,6,8,12,24],tp={gutter:u.Z.number,column:u.Z.oneOf(ep),xs:u.Z.oneOf(ep),sm:u.Z.oneOf(ep),md:u.Z.oneOf(ep),lg:u.Z.oneOf(ep),xl:u.Z.oneOf(ep),xxl:u.Z.oneOf(ep)},np=["small","default","large"],rp={Item:Qf,name:"AList",props:(0,k.SQ)({bordered:u.Z.bool,dataSource:u.Z.array,extra:u.Z.any,grid:u.Z.shape(tp).loose,itemLayout:u.Z.string,loading:u.Z.oneOfType([u.Z.bool,u.Z.object]),loadMore:u.Z.any,pagination:u.Z.oneOfType([u.Z.shape((0,f.Z)({},Uf(),{position:u.Z.oneOf(["top","bottom","both"])})).loose,u.Z.bool]),prefixCls:u.Z.string,rowKey:u.Z.any,renderItem:u.Z.any,size:u.Z.oneOf(np),split:u.Z.bool,header:u.Z.any,footer:u.Z.any,locale:u.Z.object},{dataSource:[],bordered:!1,split:!0,loading:!1,pagination:!1}),provide:function(){return{listContext:this}},inject:{configProvider:{default:function(){return X}}},data:function(){var e=this;this.keys=[],this.defaultPaginationProps={current:1,pageSize:10,onChange:function(t,n){var r=e.pagination;e.paginationCurrent=t,r&&r.onChange&&r.onChange(t,n)},total:0},this.onPaginationChange=this.triggerPaginationEvent("onChange"),this.onPaginationShowSizeChange=this.triggerPaginationEvent("onShowSizeChange");var t=this.$props.pagination,n=t&&"object"===(void 0===t?"undefined":(0,w.Z)(t))?t:{};return{paginationCurrent:n.defaultCurrent||1,paginationSize:n.defaultPageSize||10}},methods:{triggerPaginationEvent:function(e){var t=this;return function(n,r){var i=t.$props.pagination;t.paginationCurrent=n,t.paginationSize=r,i&&i[e]&&i[e](n,r)}},renderItem2:function(e,t){var n=this.$scopedSlots,r=this.rowKey,i=this.renderItem||n.renderItem;if(!i)return null;var o=void 0;return(o="function"==typeof r?r(e):"string"==typeof r?e[r]:e.key)||(o="list-item-"+t),this.keys[t]=o,i(e,t)},isSomethingAfterLastItem:function(){var e=this.pagination,t=(0,k.rj)(this,"loadMore"),n=(0,k.rj)(this,"footer");return!!(t||e||n)},renderEmpty:function(e,t){var n=this.$createElement,r=this.locale;return n("div",{class:e+"-empty-text"},[r&&r.emptyText||t(n,"List")])}},render:function(){var e,t=this,n=arguments[0],r=this.prefixCls,i=this.bordered,o=this.split,a=this.itemLayout,s=this.pagination,u=this.grid,d=this.dataSource,m=void 0===d?[]:d,v=this.size,y=this.loading,_=this.$slots,b=this.paginationCurrent,M=this.paginationSize,w=this.configProvider.getPrefixCls,C=w("list",r),L=(0,k.rj)(this,"loadMore"),x=(0,k.rj)(this,"footer"),S=(0,k.rj)(this,"header"),Z=(0,k.OU)(_.default||[]),T=y;"boolean"==typeof T&&(T={spinning:T});var z=T&&T.spinning,O="";switch(v){case"large":O="lg";break;case"small":O="sm"}var H=h()(C,(e={},(0,l.Z)(e,C+"-vertical","vertical"===a),(0,l.Z)(e,C+"-"+O,O),(0,l.Z)(e,C+"-split",o),(0,l.Z)(e,C+"-bordered",i),(0,l.Z)(e,C+"-loading",z),(0,l.Z)(e,C+"-grid",u),(0,l.Z)(e,C+"-something-after-last-item",this.isSomethingAfterLastItem()),e)),D=(0,f.Z)({},this.defaultPaginationProps,{total:m.length,current:b,pageSize:M},s||{}),V=Math.ceil(D.total/D.pageSize);D.current>V&&(D.current=V);var P=D.class,Y=D.style,A=(0,Oe.Z)(D,["class","style"]),j=s?n("div",{class:C+"-pagination"},[n(Gf,{props:p(A,["onChange"]),class:P,style:Y,on:{change:this.onPaginationChange,showSizeChange:this.onPaginationShowSizeChange}})]):null,E=[].concat((0,g.Z)(m));s&&m.length>(D.current-1)*D.pageSize&&(E=[].concat((0,g.Z)(m)).splice((D.current-1)*D.pageSize,D.pageSize));var $=void 0;if($=z&&n("div",{style:{minHeight:53}}),E.length>0){var F=E.map((function(e,n){return t.renderItem2(e,n)})),I=F.map((function(e,n){return(0,fn.Tm)(e,{key:t.keys[n]})}));$=u?n(Ic,{attrs:{gutter:u.gutter}},[I]):n("ul",{class:C+"-items"},[I])}else if(!Z.length&&!z){var N=this.configProvider.renderEmpty;$=this.renderEmpty(C,N)}var R=D.position||"bottom";return n("div",c()([{class:H},{on:(0,k.CL)(this)}]),[("top"===R||"both"===R)&&j,S&&n("div",{class:C+"-header"},[S]),n(jf,{props:T},[$,Z]),x&&n("div",{class:C+"-footer"},[x]),L||("bottom"===R||"both"===R)&&j])},install:function(e){e.use(B),e.component(rp.name,rp),e.component(rp.Item.name,rp.Item),e.component(rp.Item.Meta.name,rp.Item.Meta)}};const ip=rp;var op=(0,f.Z)({},T.Modal);function ap(e){op=e?(0,f.Z)({},op,e):(0,f.Z)({},T.Modal)}function sp(){return op}var cp="internalMark";function lp(e){e&&e.locale?Ds(Ua).locale(e.locale):Ds(Ua).locale("en")}var up={name:"ALocaleProvider",props:{locale:u.Z.object.def((function(){return{}})),_ANT_MARK__:u.Z.string},data:function(){return re(this._ANT_MARK__===cp,"LocaleProvider","`LocaleProvider` is deprecated. Please use `locale` with `ConfigProvider` instead"),{antLocale:(0,f.Z)({},this.locale,{exist:!0})}},provide:function(){return{localeData:this.$data}},watch:{locale:function(e){this.antLocale=(0,f.Z)({},this.locale,{exist:!0}),lp(e),ap(e&&e.Modal)}},created:function(){var e=this.locale;lp(e),ap(e&&e.Modal)},beforeDestroy:function(){ap()},render:function(){return this.$slots.default?this.$slots.default[0]:null},install:function(e){e.use(B),e.component(up.name,up)}};const dp=up;function hp(){}const fp={mixins:[y.Z],props:{duration:u.Z.number.def(1.5),closable:u.Z.bool,prefixCls:u.Z.string,update:u.Z.bool,closeIcon:u.Z.any},watch:{duration:function(){this.restartCloseTimer()}},mounted:function(){this.startCloseTimer()},updated:function(){this.update&&this.restartCloseTimer()},beforeDestroy:function(){this.clearCloseTimer(),this.willDestroy=!0},methods:{close:function(e){e&&e.stopPropagation(),this.clearCloseTimer(),this.__emit("close")},startCloseTimer:function(){var e=this;this.clearCloseTimer(),!this.willDestroy&&this.duration&&(this.closeTimer=setTimeout((function(){e.close()}),1e3*this.duration))},clearCloseTimer:function(){this.closeTimer&&(clearTimeout(this.closeTimer),this.closeTimer=null)},restartCloseTimer:function(){this.clearCloseTimer(),this.startCloseTimer()}},render:function(){var e,t=arguments[0],n=this.prefixCls,r=this.closable,i=this.clearCloseTimer,o=this.startCloseTimer,a=this.$slots,s=this.close,c=n+"-notice",u=(e={},(0,l.Z)(e,""+c,1),(0,l.Z)(e,c+"-closable",r),e),d=(0,k.C2)(this),h=(0,k.rj)(this,"closeIcon");return t("div",{class:u,style:d||{right:"50%"},on:{mouseenter:i,mouseleave:o,click:(0,k.CL)(this).click||hp}},[t("div",{class:c+"-content"},[a.default]),r?t("a",{attrs:{tabIndex:"0"},on:{click:s},class:c+"-close"},[h||t("span",{class:c+"-close-x"})]):null])}};function pp(){}var mp=0,vp=Date.now();var yp={mixins:[y.Z],props:{prefixCls:u.Z.string.def("rc-notification"),transitionName:u.Z.string,animation:u.Z.oneOfType([u.Z.string,u.Z.object]).def("fade"),maxCount:u.Z.number,closeIcon:u.Z.any},data:function(){return{notices:[]}},methods:{getTransitionName:function(){var e=this.$props,t=e.transitionName;return!t&&e.animation&&(t=e.prefixCls+"-"+e.animation),t},add:function(e){var t=e.key=e.key||"rcNotification_"+vp+"_"+mp++,n=this.$props.maxCount;this.setState((function(r){var i=r.notices,o=i.map((function(e){return e.key})).indexOf(t),a=i.concat();return-1!==o?a.splice(o,1,e):(n&&i.length>=n&&(e.updateKey=a[0].updateKey||a[0].key,a.shift()),a.push(e)),{notices:a}}))},remove:function(e){this.setState((function(t){return{notices:t.notices.filter((function(t){return t.key!==e}))}}))}},render:function(e){var t=this,n=this.prefixCls,r=this.notices,i=this.remove,o=this.getTransitionName,a=dn(o()),s=r.map((function(o,a){var s=Boolean(a===r.length-1&&o.updateKey),c=o.updateKey?o.updateKey:o.key,l=o.content,u=o.duration,d=o.closable,h=o.onClose,f=o.style,p=o.class,m=ku(i.bind(t,o.key),h),v={props:{prefixCls:n,duration:u,closable:d,update:s,closeIcon:(0,k.rj)(t,"closeIcon")},on:{close:m,click:o.onClick||pp},style:f,class:p,key:c};return e(fp,v,["function"==typeof l?l(e):l])})),c=(0,l.Z)({},n,1),u=(0,k.C2)(this);return e("div",{class:c,style:u||{top:"65px",left:"50%"}},[e("transition-group",a,[s])])},newInstance:function(e,t){var n=e||{},i=n.getContainer,o=n.style,a=n.class,s=(0,Oe.Z)(n,["getContainer","style","class"]),c=document.createElement("div");i?i().appendChild(c):document.body.appendChild(c);new(B.Vue||r.default)({el:c,mounted:function(){var e=this;this.$nextTick((function(){t({notice:function(t){e.$refs.notification.add(t)},removeNotice:function(t){e.$refs.notification.remove(t)},component:e,destroy:function(){e.$destroy(),e.$el.parentNode.removeChild(e.$el)}})}))},render:function(){var e=arguments[0],t={props:s,ref:"notification",style:o,class:a};return e(yp,t)}})}};const gp=yp;var _p=3,bp=void 0,Mp=void 0,wp=1,kp="ant-message",Cp="move-up",Lp=function(){return document.body},xp=void 0;var Sp={open:function(e){var t=void 0!==e.duration?e.duration:_p,n={info:"info-circle",success:"check-circle",error:"close-circle",warning:"exclamation-circle",loading:"loading"}[e.type],r=e.key||wp++,i=new Promise((function(i){var o=function(){return"function"==typeof e.onClose&&e.onClose(),i(!0)};!function(e){Mp?e(Mp):gp.newInstance({prefixCls:kp,transitionName:Cp,style:{top:bp},getContainer:Lp,maxCount:xp},(function(t){Mp?e(Mp):(Mp=t,e(t))}))}((function(i){i.notice({key:r,duration:t,style:{},content:function(t){var r=t(Ui,{attrs:{type:n,theme:"loading"===n?"outlined":"filled"}}),i=n?r:"";return t("div",{class:kp+"-custom-content"+(e.type?" "+kp+"-"+e.type:"")},[e.icon?"function"==typeof e.icon?e.icon(t):e.icon:i,t("span",["function"==typeof e.content?e.content(t):e.content])])},onClose:o})}))})),o=function(){Mp&&Mp.removeNotice(r)};return o.then=function(e,t){return i.then(e,t)},o.promise=i,o},config:function(e){void 0!==e.top&&(bp=e.top,Mp=null),void 0!==e.duration&&(_p=e.duration),void 0!==e.prefixCls&&(kp=e.prefixCls),void 0!==e.getContainer&&(Lp=e.getContainer),void 0!==e.transitionName&&(Cp=e.transitionName,Mp=null),void 0!==e.maxCount&&(xp=e.maxCount,Mp=null)},destroy:function(){Mp&&(Mp.destroy(),Mp=null)}};["success","info","warning","error","loading"].forEach((function(e){Sp[e]=function(t,n,r){return function(e){return"[object Object]"===Object.prototype.toString.call(e)&&!!e.content}(t)?Sp.open((0,f.Z)({},t,{type:e})):("function"==typeof n&&(r=n,n=void 0),Sp.open({content:t,duration:n,type:e,onClose:r}))}})),Sp.warn=Sp.warning;const Zp=Sp;function Tp(e){return(e||"").toLowerCase()}function zp(e,t){var n=t.measureLocation,r=t.prefix,i=t.targetText,o=t.selectionStart,a=t.split,s=e.slice(0,n);s[s.length-a.length]===a&&(s=s.slice(0,s.length-a.length)),s&&(s=""+s+a);var c=function(e,t,n){var r=e[0];if(!r||r===n)return e;for(var i=e,o=t.length,a=0;a0&&void 0!==arguments[0]?arguments[0]:"",t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=t.split;return!n||-1===e.indexOf(n)},filterOption:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"",t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=t.value,r=void 0===n?"":n,i=e.toLowerCase();return-1!==r.toLowerCase().indexOf(i)}};(0,k.SQ)(Ep,$p);function Fp(){}const Ip={name:"Mentions",mixins:[y.Z],inheritAttrs:!1,model:{prop:"value",event:"change"},props:(0,k.SQ)(Ep,$p),provide:function(){return{mentionsContext:this}},data:function(){var e=this.$props,t=e.value,n=void 0===t?"":t,r=e.defaultValue,i=void 0===r?"":r;return Nt()(this.$props.children,"please children prop replace slots.default"),{_value:(0,k.m2)(this,"value")?n:i,measuring:!1,measureLocation:0,measureText:null,measurePrefix:"",activeIndex:0,isFocus:!1}},watch:{value:function(e){this.$data._value=e}},updated:function(){var e=this;this.$nextTick((function(){e.$data.measuring&&(e.$refs.measure.scrollTop=e.$refs.textarea.scrollTop)}))},methods:{triggerChange:function(e){"value"in(0,k.oZ)(this)?this.$forceUpdate():this.setState({_value:e}),this.$emit("change",e)},onChange:function(e){var t=e.target,n=t.value,r=t.composing;e.isComposing||r||this.triggerChange(n)},onKeyDown:function(e){var t=e.which,n=this.$data,r=n.activeIndex;if(n.measuring)if(t===De.UP||t===De.DOWN){var i=this.getOptions().length,o=(r+(t===De.UP?-1:1)+i)%i;this.setState({activeIndex:o}),e.preventDefault()}else if(t===De.ESC)this.stopMeasure();else if(t===De.ENTER){e.preventDefault();var a=this.getOptions();if(!a.length)return void this.stopMeasure();var s=a[r];this.selectOption(s)}},onKeyUp:function(e){var t,n,r=e.key,i=e.which,o=this.$data,a=o.measureText,s=o.measuring,c=this.$props,l=c.prefix,u=void 0===l?"":l,d=c.validateSearch,h=e.target,f=(n=(t=h).selectionStart,t.value.slice(0,n)),p=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"";return(Array.isArray(t)?t:[t]).reduce((function(t,n){var r=e.lastIndexOf(n);return r>t.location?{location:r,prefix:n}:t}),{location:-1,prefix:""})}(f,u),m=p.location,v=p.prefix;if(-1===[De.ESC,De.UP,De.DOWN,De.ENTER].indexOf(i))if(-1!==m){var y=f.slice(m+v.length),g=d(y,this.$props),_=!!this.getOptions(y).length;g?(r===v||s||y!==a&&_)&&this.startMeasure(y,v,m):s&&this.stopMeasure(),g&&this.$emit("search",y,v)}else s&&this.stopMeasure()},onInputFocus:function(e){this.onFocus(e)},onInputBlur:function(e){this.onBlur(e)},onDropdownFocus:function(){this.onFocus()},onDropdownBlur:function(){this.onBlur()},onFocus:function(e){window.clearTimeout(this.focusId),!this.$data.isFocus&&e&&this.$emit("focus",e),this.setState({isFocus:!0})},onBlur:function(e){var t=this;this.focusId=window.setTimeout((function(){t.setState({isFocus:!1}),t.stopMeasure(),t.$emit("blur",e)}),0)},selectOption:function(e){var t=this,n=this.$data,r=n._value,i=n.measureLocation,o=n.measurePrefix,a=this.$props.split,s=e.value,c=zp(r,{measureLocation:i,targetText:void 0===s?"":s,prefix:o,selectionStart:this.$refs.textarea.selectionStart,split:a}),l=c.text,u=c.selectionLocation;this.triggerChange(l),this.stopMeasure((function(){var e,n;e=t.$refs.textarea,n=u,e.setSelectionRange(n,n),e.blur(),e.focus()})),this.$emit("select",e,o)},setActiveIndex:function(e){this.setState({activeIndex:e})},getOptions:function(e){var t=e||this.$data.measureText||"",n=this.$props,r=n.filterOption,i=n.children,o=void 0===i?[]:i;return(Array.isArray(o)?o:[o]).map((function(e){var t=(0,k.FJ)(e).default;return(0,f.Z)({},(0,k.oZ)(e),{children:t})})).filter((function(e){return!1===r||r(t,e)}))},startMeasure:function(e,t,n){this.setState({measuring:!0,measureText:e,measurePrefix:t,measureLocation:n,activeIndex:0})},stopMeasure:function(e){this.setState({measuring:!1,measureLocation:0,measureText:null},e)},focus:function(){this.$refs.textarea.focus()},blur:function(){this.$refs.textarea.blur()}},render:function(){var e=arguments[0],t=this.$data,n=t._value,r=t.measureLocation,i=t.measurePrefix,o=t.measuring,a=(0,k.oZ)(this),s=a.prefixCls,l=a.placement,u=a.transitionName,d=(a.autoFocus,a.notFoundContent,a.getPopupContainer),h=(0,Oe.Z)(a,["prefixCls","placement","transitionName","autoFocus","notFoundContent","getPopupContainer"]),m=p(h,["value","defaultValue","prefix","split","children","validateSearch","filterOption"]),v=o?this.getOptions():[];return e("div",{class:s},[e("textarea",c()([{ref:"textarea"},{directives:[{name:"ant-input"}],attrs:(0,f.Z)({},m,this.$attrs),domProps:{value:n},on:(0,f.Z)({},(0,k.CL)(this),{select:Fp,change:Fp,input:this.onChange,keydown:this.onKeyDown,keyup:this.onKeyUp,blur:this.onInputBlur})}])),o&&e("div",{ref:"measure",class:s+"-measure"},[n.slice(0,r),e(Ap,{attrs:{prefixCls:s,transitionName:u,placement:l,options:v,visible:!0,getPopupContainer:d}},[e("span",[i])]),n.slice(r+i.length)])])}};Ip.Option=Hp;const Np=Ip;var Rp=Np.Option;function Wp(){return!0}var Kp={name:"AMentions",mixins:[y.Z],inheritAttrs:!1,model:{prop:"value",event:"change"},Option:(0,f.Z)({},Rp,{name:"AMentionsOption"}),getMentions:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"",t=arguments[1],n=t||{},r=n.prefix,i=void 0===r?"@":r,o=n.split,a=void 0===o?" ":o,s=Array.isArray(i)?i:[i];return e.split(a).map((function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"",t=null;return s.some((function(n){return e.slice(0,n.length)===n&&(t=n,!0)})),null!==t?{prefix:t,value:e.slice(t.length)}:null})).filter((function(e){return!!e&&!!e.value}))},props:(0,f.Z)({},jp,{loading:u.Z.bool}),inject:{configProvider:{default:function(){return X}}},data:function(){return{focused:!1}},mounted:function(){var e=this;this.$nextTick((function(){e.autoFocus&&e.focus()}))},methods:{onFocus:function(){for(var e=arguments.length,t=Array(e),n=0;n(window.innerHeight||document.documentElement.clientHeight)&&window.innerWidth>document.body.offsetWidth){if(e)return document.body.style.position="",void(document.body.style.width="");var t=Gp();t&&(document.body.style.position="relative",document.body.style.width="calc(100% - "+t+"px)")}};const Xp=function(){return{keyboard:u.Z.bool,mask:u.Z.bool,afterClose:u.Z.func,closable:u.Z.bool,maskClosable:u.Z.bool,visible:u.Z.bool,destroyOnClose:u.Z.bool,mousePosition:u.Z.shape({x:u.Z.number,y:u.Z.number}).loose,title:u.Z.any,footer:u.Z.any,transitionName:u.Z.string,maskTransitionName:u.Z.string,animation:u.Z.any,maskAnimation:u.Z.any,wrapStyle:u.Z.object,bodyStyle:u.Z.object,maskStyle:u.Z.object,prefixCls:u.Z.string,wrapClassName:u.Z.string,width:u.Z.oneOfType([u.Z.string,u.Z.number]),height:u.Z.oneOfType([u.Z.string,u.Z.number]),zIndex:u.Z.number,bodyProps:u.Z.any,maskProps:u.Z.any,wrapProps:u.Z.any,getContainer:u.Z.any,dialogStyle:u.Z.object.def((function(){return{}})),dialogClass:u.Z.string.def(""),closeIcon:u.Z.any,forceRender:u.Z.bool,getOpenCount:u.Z.func,focusTriggerAfterClose:u.Z.bool}};var Qp=Xp(),em=0;function tm(){}function nm(e,t){var n=e["page"+(t?"Y":"X")+"Offset"],r="scroll"+(t?"Top":"Left");if("number"!=typeof n){var i=e.document;"number"!=typeof(n=i.documentElement[r])&&(n=i.body[r])}return n}function rm(e,t){var n=e.style;["Webkit","Moz","Ms","ms"].forEach((function(e){n[e+"TransformOrigin"]=t})),n.transformOrigin=t}var im={};const om={mixins:[y.Z],props:(0,k.SQ)(Qp,{mask:!0,visible:!1,keyboard:!0,closable:!0,maskClosable:!0,destroyOnClose:!1,prefixCls:"rc-dialog",getOpenCount:function(){return null},focusTriggerAfterClose:!0}),data:function(){return{destroyPopup:!1}},provide:function(){return{dialogContext:this}},watch:{visible:function(e){var t=this;e&&(this.destroyPopup=!1),this.$nextTick((function(){t.updatedCallback(!e)}))}},beforeMount:function(){this.inTransition=!1,this.titleId="rcDialogTitle"+em++},mounted:function(){var e=this;this.$nextTick((function(){e.updatedCallback(!1),(e.forceRender||!1===e.getContainer&&!e.visible)&&e.$refs.wrap&&(e.$refs.wrap.style.display="none")}))},beforeDestroy:function(){var e=this.visible,t=this.getOpenCount;!e&&!this.inTransition||t()||this.switchScrollingEffect(),clearTimeout(this.timeoutId)},methods:{getDialogWrap:function(){return this.$refs.wrap},updatedCallback:function(e){var t,n,r,i,o,a=this.mousePosition,s=this.mask,c=this.focusTriggerAfterClose;if(this.visible){if(!e){this.openTime=Date.now(),this.switchScrollingEffect(),this.tryFocus();var l=this.$refs.dialog.$el;if(a){var u=(n=(t=l).getBoundingClientRect(),r={left:n.left,top:n.top},i=t.ownerDocument,o=i.defaultView||i.parentWindow,r.left+=nm(o),r.top+=nm(o,!0),r);rm(l,a.x-u.left+"px "+(a.y-u.top)+"px")}else rm(l,"")}}else if(e&&(this.inTransition=!0,s&&this.lastOutSideFocusNode&&c)){try{this.lastOutSideFocusNode.focus()}catch(e){this.lastOutSideFocusNode=null}this.lastOutSideFocusNode=null}},tryFocus:function(){pn(this.$refs.wrap,document.activeElement)||(this.lastOutSideFocusNode=document.activeElement,this.$refs.sentinelStart.focus())},onAnimateLeave:function(){var e=this.afterClose,t=this.destroyOnClose;this.$refs.wrap&&(this.$refs.wrap.style.display="none"),t&&(this.destroyPopup=!0),this.inTransition=!1,this.switchScrollingEffect(),e&&e()},onDialogMouseDown:function(){this.dialogMouseDown=!0},onMaskMouseUp:function(){var e=this;this.dialogMouseDown&&(this.timeoutId=setTimeout((function(){e.dialogMouseDown=!1}),0))},onMaskClick:function(e){Date.now()-this.openTime<300||e.target!==e.currentTarget||this.dialogMouseDown||this.close(e)},onKeydown:function(e){var t=this.$props;if(t.keyboard&&e.keyCode===De.ESC)return e.stopPropagation(),void this.close(e);if(t.visible&&e.keyCode===De.TAB){var n=document.activeElement,r=this.$refs.sentinelStart;e.shiftKey?n===r&&this.$refs.sentinelEnd.focus():n===this.$refs.sentinelEnd&&r.focus()}},getDialogElement:function(){var e=this.$createElement,t=this.closable,n=this.prefixCls,r=this.width,i=this.height,o=this.title,a=this.footer,s=this.bodyStyle,u=this.visible,d=this.bodyProps,h=this.forceRender,p=this.dialogStyle,m=this.dialogClass,v=(0,f.Z)({},p);void 0!==r&&(v.width="number"==typeof r?r+"px":r),void 0!==i&&(v.height="number"==typeof i?i+"px":i);var y=void 0;a&&(y=e("div",{key:"footer",class:n+"-footer",ref:"footer"},[a]));var g=void 0;o&&(g=e("div",{key:"header",class:n+"-header",ref:"header"},[e("div",{class:n+"-title",attrs:{id:this.titleId}},[o])]));var _=void 0;if(t){var b=(0,k.rj)(this,"closeIcon");_=e("button",{attrs:{type:"button","aria-label":"Close"},key:"close",on:{click:this.close||tm},class:n+"-close"},[b||e("span",{class:n+"-close-x"})])}var M=v,w={width:0,height:0,overflow:"hidden"},C=(0,l.Z)({},n,!0),L=this.getTransitionName(),x=e(Up,{directives:[{name:"show",value:u}],key:"dialog-element",attrs:{role:"document",forceRender:h},ref:"dialog",style:M,class:[C,m],on:{mousedown:this.onDialogMouseDown}},[e("div",{attrs:{tabIndex:0,"aria-hidden":"true"},ref:"sentinelStart",style:w}),e("div",{class:n+"-content"},[_,g,e("div",c()([{key:"body",class:n+"-body",style:s,ref:"body"},d]),[this.$slots.default]),y]),e("div",{attrs:{tabIndex:0,"aria-hidden":"true"},ref:"sentinelEnd",style:w})]),S=dn(L,{afterLeave:this.onAnimateLeave});return e("transition",c()([{key:"dialog"},S]),[u||!this.destroyPopup?x:null])},getZIndexStyle:function(){var e={},t=this.$props;return void 0!==t.zIndex&&(e.zIndex=t.zIndex),e},getWrapStyle:function(){return(0,f.Z)({},this.getZIndexStyle(),this.wrapStyle)},getMaskStyle:function(){return(0,f.Z)({},this.getZIndexStyle(),this.maskStyle)},getMaskElement:function(){var e=this.$createElement,t=this.$props,n=void 0;if(t.mask){var r=this.getMaskTransitionName();if(n=e(Up,c()([{directives:[{name:"show",value:t.visible}],style:this.getMaskStyle(),key:"mask",class:t.prefixCls+"-mask"},t.maskProps])),r){var i=dn(r);n=e("transition",c()([{key:"mask"},i]),[n])}}return n},getMaskTransitionName:function(){var e=this.$props,t=e.maskTransitionName,n=e.maskAnimation;return!t&&n&&(t=e.prefixCls+"-"+n),t},getTransitionName:function(){var e=this.$props,t=e.transitionName,n=e.animation;return!t&&n&&(t=e.prefixCls+"-"+n),t},switchScrollingEffect:function(){var e=(0,this.getOpenCount)();if(1===e){if(im.hasOwnProperty("overflowX"))return;im={overflowX:document.body.style.overflowX,overflowY:document.body.style.overflowY,overflow:document.body.style.overflow},Jp(),document.body.style.overflow="hidden"}else e||(void 0!==im.overflow&&(document.body.style.overflow=im.overflow),void 0!==im.overflowX&&(document.body.style.overflowX=im.overflowX),void 0!==im.overflowY&&(document.body.style.overflowY=im.overflowY),im={},Jp(!0))},close:function(e){this.__emit("close",e)}},render:function(){var e=arguments[0],t=this.prefixCls,n=this.maskClosable,r=this.visible,i=this.wrapClassName,o=this.title,a=this.wrapProps,s=this.getWrapStyle();return r&&(s.display=null),e("div",{class:t+"-root"},[this.getMaskElement(),e("div",c()([{attrs:{tabIndex:-1,role:"dialog","aria-labelledby":o?this.titleId:null},on:{keydown:this.onKeydown,click:n?this.onMaskClick:tm,mouseup:n?this.onMaskMouseUp:tm},class:t+"-wrap "+(i||""),ref:"wrap",style:s},a]),[this.getDialogElement()])])}};const am=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=t.element,r=void 0===n?document.body:n,i={},o=Object.keys(e);return o.forEach((function(e){i[e]=r.style[e]})),o.forEach((function(t){r.style[t]=e[t]})),i},sm={name:"Portal",props:{getContainer:u.Z.func.isRequired,children:u.Z.any.isRequired,didUpdate:u.Z.func},mounted:function(){this.createContainer()},updated:function(){var e=this,t=this.$props.didUpdate;t&&this.$nextTick((function(){t(e.$props)}))},beforeDestroy:function(){this.removeContainer()},methods:{createContainer:function(){this._container=this.$props.getContainer(),this.$forceUpdate()},removeContainer:function(){this._container&&this._container.parentNode&&this._container.parentNode.removeChild(this._container)}},render:function(){return this._container?(0,fn.Tm)(this.$props.children,{directives:[{name:"ant-portal",value:this._container}]}):null}};var cm=0,lm=!("undefined"!=typeof window&&window.document&&window.document.createElement),um={};const dm={name:"PortalWrapper",props:{wrapperClassName:u.Z.string,forceRender:u.Z.bool,getContainer:u.Z.any,children:u.Z.func,visible:u.Z.bool},data:function(){var e=this.$props.visible;return cm=e?cm+1:cm,{}},updated:function(){this.setWrapperClassName()},watch:{visible:function(e){cm=e?cm+1:cm-1},getContainer:function(e,t){("function"==typeof e&&"function"==typeof t?e.toString()!==t.toString():e!==t)&&this.removeCurrentContainer(!1)}},beforeDestroy:function(){var e=this.$props.visible;cm=e&&cm?cm-1:cm,this.removeCurrentContainer(e)},methods:{getParent:function(){var e=this.$props.getContainer;if(e){if("string"==typeof e)return document.querySelectorAll(e)[0];if("function"==typeof e)return e();if("object"===(void 0===e?"undefined":(0,w.Z)(e))&&e instanceof window.HTMLElement)return e}return document.body},getDomContainer:function(){if(lm)return null;if(!this.container){this.container=document.createElement("div");var e=this.getParent();e&&e.appendChild(this.container)}return this.setWrapperClassName(),this.container},setWrapperClassName:function(){var e=this.$props.wrapperClassName;this.container&&e&&e!==this.container.className&&(this.container.className=e)},savePortal:function(e){this._component=e},removeCurrentContainer:function(){this.container=null,this._component=null},switchScrollingEffect:function(){1!==cm||Object.keys(um).length?cm||(am(um),um={},Jp(!0)):(Jp(),um=am({overflow:"hidden",overflowX:"hidden",overflowY:"hidden"}))}},render:function(){var e=arguments[0],t=this.$props,n=t.children,r=t.forceRender,i=t.visible,o=null,a={getOpenCount:function(){return cm},getContainer:this.getDomContainer,switchScrollingEffect:this.switchScrollingEffect};return(r||i||this._component)&&(o=e(sm,c()([{attrs:{getContainer:this.getDomContainer,children:n(a)}},{directives:[{name:"ant-ref",value:this.savePortal}]}]))),o}};var hm=Xp();const fm={inheritAttrs:!1,props:(0,f.Z)({},hm,{visible:hm.visible.def(!1)}),render:function(){var e=this,t=arguments[0],n=this.$props,r=n.visible,i=n.getContainer,o=n.forceRender,a={props:this.$props,attrs:this.$attrs,ref:"_component",key:"dialog",on:(0,k.CL)(this)};return!1===i?t(om,c()([a,{attrs:{getOpenCount:function(){return 2}}}]),[this.$slots.default]):t(dm,{attrs:{visible:r,forceRender:o,getContainer:i,children:function(n){return a.props=(0,f.Z)({},a.props,n),t(om,a,[e.$slots.default])}}})}};var pm=Zo().type,mm=null;function vm(){}"undefined"!=typeof window&&window.document&&window.document.documentElement&&ae(document.documentElement,"click",(function(e){mm={x:e.pageX,y:e.pageY},setTimeout((function(){return mm=null}),100)}),!0);var ym=[];const gm={name:"AModal",inheritAttrs:!1,model:{prop:"visible",event:"change"},props:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t={prefixCls:u.Z.string,visible:u.Z.bool,confirmLoading:u.Z.bool,title:u.Z.any,closable:u.Z.bool,closeIcon:u.Z.any,afterClose:u.Z.func.def(vm),centered:u.Z.bool,width:u.Z.oneOfType([u.Z.string,u.Z.number]),footer:u.Z.any,okText:u.Z.any,okType:pm,cancelText:u.Z.any,icon:u.Z.any,maskClosable:u.Z.bool,forceRender:u.Z.bool,okButtonProps:u.Z.object,cancelButtonProps:u.Z.object,destroyOnClose:u.Z.bool,wrapClassName:u.Z.string,maskTransitionName:u.Z.string,transitionName:u.Z.string,getContainer:u.Z.func,zIndex:u.Z.number,bodyStyle:u.Z.object,maskStyle:u.Z.object,mask:u.Z.bool,keyboard:u.Z.bool,wrapProps:u.Z.object,focusTriggerAfterClose:u.Z.bool,dialogStyle:u.Z.object.def((function(){return{}}))};return(0,k.SQ)(t,e)}({width:520,transitionName:"zoom",maskTransitionName:"fade",confirmLoading:!1,visible:!1,okType:"primary"}),data:function(){return{sVisible:!!this.visible}},watch:{visible:function(e){this.sVisible=e}},inject:{configProvider:{default:function(){return X}}},methods:{handleCancel:function(e){this.$emit("cancel",e),this.$emit("change",!1)},handleOk:function(e){this.$emit("ok",e)},renderFooter:function(e){var t=this.$createElement,n=this.okType,r=this.confirmLoading,i=(0,k.dG)({on:{click:this.handleCancel}},this.cancelButtonProps||{}),o=(0,k.dG)({on:{click:this.handleOk},props:{type:n,loading:r}},this.okButtonProps||{});return t("div",[t(Vo,i,[(0,k.rj)(this,"cancelText")||e.cancelText]),t(Vo,o,[(0,k.rj)(this,"okText")||e.okText])])}},render:function(){var e=arguments[0],t=this.prefixCls,n=this.sVisible,r=this.wrapClassName,i=this.centered,o=this.getContainer,a=this.$slots,s=this.$scopedSlots,c=this.$attrs,u=s.default?s.default():a.default,d=this.configProvider,p=d.getPrefixCls,m=d.getPopupContainer,v=p("modal",t),y=e(O,{attrs:{componentName:"Modal",defaultLocale:sp()},scopedSlots:{default:this.renderFooter}}),g=(0,k.rj)(this,"closeIcon"),_=e("span",{class:v+"-close-x"},[g||e(Ui,{class:v+"-close-icon",attrs:{type:"close"}})]),b=(0,k.rj)(this,"footer"),M=(0,k.rj)(this,"title"),w={props:(0,f.Z)({},this.$props,{getContainer:void 0===o?m:o,prefixCls:v,wrapClassName:h()((0,l.Z)({},v+"-centered",!!i),r),title:M,footer:void 0===b?y:b,visible:n,mousePosition:mm,closeIcon:_}),on:(0,f.Z)({},(0,k.CL)(this),{close:this.handleCancel}),class:(0,k.ll)(this),style:(0,k.C2)(this),attrs:c};return e(fm,w,[u])}};var _m={type:Zo().type,actionFn:u.Z.func,closeModal:u.Z.func,autoFocus:u.Z.bool,buttonProps:u.Z.object};const bm={mixins:[y.Z],props:_m,data:function(){return{loading:!1}},mounted:function(){var e=this;this.autoFocus&&(this.timeoutId=setTimeout((function(){return e.$el.focus()})))},beforeDestroy:function(){clearTimeout(this.timeoutId)},methods:{onClick:function(){var e=this,t=this.actionFn,n=this.closeModal;if(t){var r=void 0;t.length?r=t(n):(r=t())||n(),r&&r.then&&(this.setState({loading:!0}),r.then((function(){n.apply(void 0,arguments)}),(function(t){console.error(t),e.setState({loading:!1})})))}else n()}},render:function(){var e=arguments[0],t=this.type,n=this.$slots,r=this.loading,i=this.buttonProps;return e(Vo,c()([{attrs:{type:t,loading:r},on:{click:this.onClick}},i]),[n.default])}},Mm={functional:!0,render:function(e,t){var n=t.props,r=n.onCancel,i=n.onOk,o=n.close,a=n.zIndex,s=n.afterClose,c=n.visible,u=n.keyboard,d=n.centered,f=n.getContainer,p=n.maskStyle,m=n.okButtonProps,v=n.cancelButtonProps,y=n.iconType,g=void 0===y?"question-circle":y,_=n.closable,b=void 0!==_&&_;re(!("iconType"in n),"Modal","The property 'iconType' is deprecated. Use the property 'icon' instead.");var M=n.icon?n.icon:g,w=n.okType||"primary",k=n.prefixCls||"ant-modal",C=k+"-confirm",L=!("okCancel"in n)||n.okCancel,x=n.width||416,S=n.style||{},Z=void 0===n.mask||n.mask,T=void 0!==n.maskClosable&&n.maskClosable,z=sp(),O=n.okText||(L?z.okText:z.justOkText),H=n.cancelText||z.cancelText,D=null!==n.autoFocusButton&&(n.autoFocusButton||"ok"),V=n.transitionName||"zoom",P=n.maskTransitionName||"fade",Y=h()(C,C+"-"+n.type,k+"-"+n.type,n.class),A=L&&e(bm,{attrs:{actionFn:r,closeModal:o,autoFocus:"cancel"===D,buttonProps:v}},[H]),j="string"==typeof M?e(Ui,{attrs:{type:M}}):M(e);return e(gm,{attrs:{prefixCls:k,wrapClassName:h()((0,l.Z)({},C+"-centered",!!d)),visible:c,closable:b,title:"",transitionName:V,footer:"",maskTransitionName:P,mask:Z,maskClosable:T,maskStyle:p,width:x,zIndex:a,afterClose:s,keyboard:u,centered:d,getContainer:f},class:Y,on:{cancel:function(e){return o({triggerCancel:!0},e)}},style:S},[e("div",{class:C+"-body-wrapper"},[e("div",{class:C+"-body"},[j,void 0===n.title?null:e("span",{class:C+"-title"},["function"==typeof n.title?n.title(e):n.title]),e("div",{class:C+"-content"},["function"==typeof n.content?n.content(e):n.content])]),e("div",{class:C+"-btns"},[A,e(bm,{attrs:{type:w,actionFn:i,closeModal:o,autoFocus:"ok"===D,buttonProps:m}},[O])])])])}};function wm(e){var t=document.createElement("div"),n=document.createElement("div");t.appendChild(n),document.body.appendChild(t);var i=(0,f.Z)({},p(e,["parentContext"]),{close:s,visible:!0}),o=null,a={props:{}};function s(){c.apply(void 0,arguments)}function c(){o&&t.parentNode&&(o.$destroy(),o=null,t.parentNode.removeChild(t));for(var n=arguments.length,r=Array(n),i=0;i1&&void 0!==arguments[1]?arguments[1]:Zm,n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:Tm,r=void 0;switch(e){case"topLeft":r={left:0,top:t,bottom:"auto"};break;case"topRight":r={right:0,top:t,bottom:"auto"};break;case"bottomLeft":r={left:0,top:"auto",bottom:n};break;default:r={right:0,top:"auto",bottom:n}}return r}var Vm={success:"check-circle-o",info:"info-circle-o",error:"close-circle-o",warning:"exclamation-circle-o"};var Pm={open:function(e){var t=e.icon,n=e.type,r=e.description,i=e.message,o=e.btn,a=e.prefixCls||"ant-notification",s=a+"-notice",c=void 0===e.duration?Sm:e.duration,l=null;if(t)l=function(e){return e("span",{class:s+"-icon"},["function"==typeof t?t(e):t])};else if(n){var u=Vm[n];l=function(e){return e(Ui,{class:s+"-icon "+s+"-icon-"+n,attrs:{type:u}})}}!function(e,t){var n=e.prefixCls,r=e.placement,i=void 0===r?zm:r,o=e.getContainer,a=void 0===o?Om:o,s=e.top,c=e.bottom,l=e.closeIcon,u=void 0===l?Hm:l,d=n+"-"+i;xm[d]?t(xm[d]):gp.newInstance({prefixCls:n,class:n+"-"+i,style:Dm(i,s,c),getContainer:a,closeIcon:function(e){var t="function"==typeof u?u(e):u;return e("span",{class:n+"-close-x"},[t||e(Ui,{class:n+"-close-icon",attrs:{type:"close"}})])}},(function(e){xm[d]=e,t(e)}))}({prefixCls:a,placement:e.placement,top:e.top,bottom:e.bottom,getContainer:e.getContainer,closeIcon:e.closeIcon},(function(t){t.notice({content:function(e){return e("div",{class:l?s+"-with-icon":""},[l&&l(e),e("div",{class:s+"-message"},[!r&&l?e("span",{class:s+"-message-single-line-auto-margin"}):null,"function"==typeof i?i(e):i]),e("div",{class:s+"-description"},["function"==typeof r?r(e):r]),o?e("span",{class:s+"-btn"},["function"==typeof o?o(e):o]):null])},duration:c,closable:!0,onClose:e.onClose,onClick:e.onClick,key:e.key,style:e.style||{},class:e.class})}))},close:function(e){Object.keys(xm).forEach((function(t){return xm[t].removeNotice(e)}))},config:function(e){var t=e.duration,n=e.placement,r=e.bottom,i=e.top,o=e.getContainer,a=e.closeIcon;void 0!==t&&(Sm=t),void 0!==n&&(zm=n),void 0!==r&&(Tm="number"==typeof r?r+"px":r),void 0!==i&&(Zm="number"==typeof i?i+"px":i),void 0!==o&&(Om=o),void 0!==a&&(Hm=a)},destroy:function(){Object.keys(xm).forEach((function(e){xm[e].destroy(),delete xm[e]}))}};["success","info","warning","error"].forEach((function(e){Pm[e]=function(t){return Pm.open((0,f.Z)({},t,{type:e}))}})),Pm.warn=Pm.warning;const Ym=Pm;var Am=Pa(),jm=Zo(),Em={name:"APopconfirm",props:(0,f.Z)({},Am,{prefixCls:u.Z.string,transitionName:u.Z.string.def("zoom-big"),content:u.Z.any,title:u.Z.any,trigger:Am.trigger.def("click"),okType:jm.type.def("primary"),disabled:u.Z.bool.def(!1),okText:u.Z.any,cancelText:u.Z.any,icon:u.Z.any,okButtonProps:u.Z.object,cancelButtonProps:u.Z.object}),mixins:[y.Z],model:{prop:"visible",event:"visibleChange"},watch:{visible:function(e){this.sVisible=e}},inject:{configProvider:{default:function(){return X}}},data:function(){var e=(0,k.oZ)(this),t={sVisible:!1};return"visible"in e&&(t.sVisible=e.visible),"defaultVisible"in e&&(t.sVisible=e.defaultVisible),t},methods:{onConfirm:function(e){this.setVisible(!1,e),this.$emit("confirm",e)},onCancel:function(e){this.setVisible(!1,e),this.$emit("cancel",e)},onVisibleChange:function(e){this.$props.disabled||this.setVisible(e)},setVisible:function(e,t){(0,k.m2)(this,"visible")||this.setState({sVisible:e}),this.$emit("visibleChange",e,t)},getPopupDomNode:function(){return this.$refs.tooltip.getPopupDomNode()},renderOverlay:function(e,t){var n=this.$createElement,r=this.okType,i=this.okButtonProps,o=this.cancelButtonProps,a=(0,k.rj)(this,"icon")||n(Ui,{attrs:{type:"exclamation-circle",theme:"filled"}}),s=(0,k.dG)({props:{size:"small"},on:{click:this.onCancel}},o),c=(0,k.dG)({props:{type:r,size:"small"},on:{click:this.onConfirm}},i);return n("div",{class:e+"-inner-content"},[n("div",{class:e+"-message"},[a,n("div",{class:e+"-message-title"},[(0,k.rj)(this,"title")])]),n("div",{class:e+"-buttons"},[n(Vo,s,[(0,k.rj)(this,"cancelText")||t.cancelText]),n(Vo,c,[(0,k.rj)(this,"okText")||t.okText])])])}},render:function(){var e=this,t=arguments[0],n=(0,k.oZ)(this),r=n.prefixCls,i=this.configProvider.getPrefixCls,o=i("popover",r),a=p(n,["title","content","cancelText","okText"]),s={props:(0,f.Z)({},a,{prefixCls:o,visible:this.sVisible}),ref:"tooltip",on:{visibleChange:this.onVisibleChange}},c=t(O,{attrs:{componentName:"Popconfirm",defaultLocale:z.Popconfirm},scopedSlots:{default:function(t){return e.renderOverlay(o,t)}}});return t(ja,s,[t("template",{slot:"title"},[c]),this.$slots.default])},install:function(e){e.use(B),e.component(Em.name,Em)}};const $m=Em;var Fm=Pa(),Im={name:"APopover",props:(0,f.Z)({},Fm,{prefixCls:u.Z.string,transitionName:u.Z.string.def("zoom-big"),content:u.Z.any,title:u.Z.any}),model:{prop:"visible",event:"visibleChange"},inject:{configProvider:{default:function(){return X}}},methods:{getPopupDomNode:function(){return this.$refs.tooltip.getPopupDomNode()}},render:function(){var e=arguments[0],t=this.title,n=this.prefixCls,r=this.$slots,i=this.configProvider.getPrefixCls,o=i("popover",n),a=(0,k.oZ)(this);delete a.title,delete a.content;var s={props:(0,f.Z)({},a,{prefixCls:o}),ref:"tooltip",on:(0,k.CL)(this)};return e(ja,s,[e("template",{slot:"title"},[e("div",[(t||r.title)&&e("div",{class:o+"-title"},[(0,k.rj)(this,"title")]),e("div",{class:o+"-inner-content"},[(0,k.rj)(this,"content")])])]),this.$slots.default])},install:function(e){e.use(B),e.component(Im.name,Im)}};const Nm=Im;function Rm(e){return!e||e<0?0:e>100?100:e}var Wm=function(e){var t=e.from,n=void 0===t?"#1890ff":t,r=e.to,i=void 0===r?"#1890ff":r,o=e.direction,a=void 0===o?"to right":o,s=(0,Oe.Z)(e,["from","to","direction"]);return 0!==Object.keys(s).length?{backgroundImage:"linear-gradient("+a+", "+function(e){var t=[],n=!0,r=!1,i=void 0;try{for(var o,a=Object.entries(e)[Symbol.iterator]();!(n=(o=a.next()).done);n=!0){var s=o.value,c=(0,ht.Z)(s,2),l=c[0],u=c[1],d=parseFloat(l.replace(/%/g,""));if(isNaN(d))return{};t.push({key:d,value:u})}}catch(e){r=!0,i=e}finally{try{!n&&a.return&&a.return()}finally{if(r)throw i}}return(t=t.sort((function(e,t){return e.key-t.key}))).map((function(e){var t=e.key;return e.value+" "+t+"%"})).join(", ")}(s)+")"}:{backgroundImage:"linear-gradient("+a+", "+n+", "+i+")"}};const Km={functional:!0,render:function(e,t){var n=t.props,r=t.children,i=n.prefixCls,o=n.percent,a=n.successPercent,s=n.strokeWidth,c=n.size,l=n.strokeColor,u=n.strokeLinecap,d=void 0;d=l&&"string"!=typeof l?Wm(l):{background:l};var h=(0,f.Z)({width:Rm(o)+"%",height:(s||("small"===c?6:8))+"px",background:l,borderRadius:"square"===u?0:"100px"},d),p={width:Rm(a)+"%",height:(s||("small"===c?6:8))+"px",borderRadius:"square"===u?0:""},m=void 0!==a?e("div",{class:i+"-success-bg",style:p}):null;return e("div",[e("div",{class:i+"-outer"},[e("div",{class:i+"-inner"},[e("div",{class:i+"-bg",style:h}),m])]),r])}};const Bm=function(e){return{mixins:[e],updated:function(){var e=this,t=Date.now(),n=!1;Object.keys(this.paths).forEach((function(r){var i=e.paths[r];if(i){n=!0;var o=i.style;o.transitionDuration=".3s, .3s, .3s, .06s",e.prevTimeStamp&&t-e.prevTimeStamp<100&&(o.transitionDuration="0s, 0s")}})),n&&(this.prevTimeStamp=Date.now())}}};var Um=u.Z.oneOfType([u.Z.number,u.Z.string]),qm={percent:u.Z.oneOfType([Um,u.Z.arrayOf(Um)]),prefixCls:u.Z.string,strokeColor:u.Z.oneOfType([u.Z.string,u.Z.arrayOf(u.Z.oneOfType([u.Z.string,u.Z.object])),u.Z.object]),strokeLinecap:u.Z.oneOf(["butt","round","square"]),strokeWidth:Um,trailColor:u.Z.string,trailWidth:Um},Gm=(0,f.Z)({},qm,{gapPosition:u.Z.oneOf(["top","bottom","left","right"]),gapDegree:u.Z.oneOfType([u.Z.number,u.Z.string,u.Z.bool])}),Jm=(0,f.Z)({},{percent:0,prefixCls:"rc-progress",strokeColor:"#2db7f5",strokeLinecap:"round",strokeWidth:1,trailColor:"#D9D9D9",trailWidth:1},{gapPosition:"top"});r.default.use(D.Z,{name:"ant-ref"});var Xm=0;function Qm(e){return+e.replace("%","")}function ev(e){return Array.isArray(e)?e:[e]}function tv(e,t,n,r){var i=arguments.length>4&&void 0!==arguments[4]?arguments[4]:0,o=arguments[5],a=50-r/2,s=0,c=-a,l=0,u=-2*a;switch(o){case"left":s=-a,c=0,l=2*a,u=0;break;case"right":s=a,c=0,l=-2*a,u=0;break;case"bottom":c=a,u=2*a}var d="M 50,50 m "+s+","+c+"\n a "+a+","+a+" 0 1 1 "+l+","+-u+"\n a "+a+","+a+" 0 1 1 "+-l+","+u,h=2*Math.PI*a,f={stroke:n,strokeDasharray:t/100*(h-i)+"px "+h+"px",strokeDashoffset:"-"+(i/2+e/100*(h-i))+"px",transition:"stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s"};return{pathString:d,pathStyle:f}}const nv=Bm({props:(0,k.SQ)(Gm,Jm),created:function(){this.paths={},this.gradientId=Xm,Xm+=1},methods:{getStokeList:function(){var e=this,t=this.$createElement,n=this.$props,r=n.prefixCls,i=n.percent,o=n.strokeColor,a=n.strokeWidth,s=n.strokeLinecap,c=n.gapDegree,l=n.gapPosition,u=ev(i),d=ev(o),h=0;return u.map((function(n,i){var o=d[i]||d[d.length-1],u="[object Object]"===Object.prototype.toString.call(o)?"url(#"+r+"-gradient-"+e.gradientId+")":"",f=tv(h,n,o,a,c,l),p=f.pathString,m=f.pathStyle;return h+=n,t("path",{key:i,attrs:{d:p,stroke:u,"stroke-linecap":s,"stroke-width":a,opacity:0===n?0:1,"fill-opacity":"0"},class:r+"-circle-path",style:m,directives:[{name:"ant-ref",value:function(t){e.paths[i]=t}}]})}))}},render:function(){var e=arguments[0],t=this.$props,n=t.prefixCls,r=t.strokeWidth,i=t.trailWidth,o=t.gapDegree,a=t.gapPosition,s=t.trailColor,l=t.strokeLinecap,u=t.strokeColor,d=(0,Oe.Z)(t,["prefixCls","strokeWidth","trailWidth","gapDegree","gapPosition","trailColor","strokeLinecap","strokeColor"]),h=tv(0,100,s,r,o,a),f=h.pathString,p=h.pathStyle;delete d.percent;var m=ev(u),v=m.find((function(e){return"[object Object]"===Object.prototype.toString.call(e)})),y={attrs:{d:f,stroke:s,"stroke-linecap":l,"stroke-width":i||r,"fill-opacity":"0"},class:n+"-circle-trail",style:p};return e("svg",c()([{class:n+"-circle",attrs:{viewBox:"0 0 100 100"}},d]),[v&&e("defs",[e("linearGradient",{attrs:{id:n+"-gradient-"+this.gradientId,x1:"100%",y1:"0%",x2:"0%",y2:"0%"}},[Object.keys(v).sort((function(e,t){return Qm(e)-Qm(t)})).map((function(t,n){return e("stop",{key:n,attrs:{offset:t,"stop-color":v[t]}})}))])]),e("path",y),this.getStokeList().reverse()])}});var rv={normal:"#108ee9",exception:"#ff5500",success:"#87d068"};function iv(e){var t=e.percent,n=e.successPercent,r=Rm(t);if(!n)return r;var i=Rm(n);return[n,Rm(r-i)]}const ov={functional:!0,render:function(e,t){var n,r,i,o,a,s=t.props,c=t.children,u=s.prefixCls,d=s.width,h=s.strokeWidth,f=s.trailColor,p=s.strokeLinecap,m=s.gapPosition,v=s.gapDegree,y=s.type,g=d||120,_={width:"number"==typeof g?g+"px":g,height:"number"==typeof g?g+"px":g,fontSize:.15*g+6},b=h||6,M=m||"dashboard"===y&&"bottom"||"top",w=v||"dashboard"===y&&75,k=(i=(r=s).progressStatus,o=r.successPercent,a=r.strokeColor||rv[i],o?[rv.success,a]:a),C="[object Object]"===Object.prototype.toString.call(k);return e("div",{class:(n={},(0,l.Z)(n,u+"-inner",!0),(0,l.Z)(n,u+"-circle-gradient",C),n),style:_},[e(nv,{attrs:{percent:iv(s),strokeWidth:b,trailWidth:b,strokeColor:k,strokeLinecap:p,trailColor:f,prefixCls:u,gapDegree:w,gapPosition:M}}),c])}};var av=["normal","exception","active","success"],sv=u.Z.oneOf(["line","circle","dashboard"]),cv=u.Z.oneOf(["default","small"]),lv={prefixCls:u.Z.string,type:sv,percent:u.Z.number,successPercent:u.Z.number,format:u.Z.func,status:u.Z.oneOf(av),showInfo:u.Z.bool,strokeWidth:u.Z.number,strokeLinecap:u.Z.oneOf(["butt","round","square"]),strokeColor:u.Z.oneOfType([u.Z.string,u.Z.object]),trailColor:u.Z.string,width:u.Z.number,gapDegree:u.Z.number,gapPosition:u.Z.oneOf(["top","bottom","left","right"]),size:cv};const uv={name:"AProgress",props:(0,k.SQ)(lv,{type:"line",percent:0,showInfo:!0,trailColor:"#f3f3f3",size:"default",gapDegree:0,strokeLinecap:"round"}),inject:{configProvider:{default:function(){return X}}},methods:{getPercentNumber:function(){var e=this.$props,t=e.successPercent,n=e.percent,r=void 0===n?0:n;return parseInt(void 0!==t?t.toString():r.toString(),10)},getProgressStatus:function(){var e=this.$props.status;return av.indexOf(e)<0&&this.getPercentNumber()>=100?"success":e||"normal"},renderProcessInfo:function(e,t){var n=this.$createElement,r=this.$props,i=r.showInfo,o=r.format,a=r.type,s=r.percent,c=r.successPercent;if(!i)return null;var l=void 0,u=o||this.$scopedSlots.format||function(e){return e+"%"},d="circle"===a||"dashboard"===a?"":"-circle";return o||this.$scopedSlots.format||"exception"!==t&&"success"!==t?l=u(Rm(s),Rm(c)):"exception"===t?l=n(Ui,{attrs:{type:"close"+d,theme:"line"===a?"filled":"outlined"}}):"success"===t&&(l=n(Ui,{attrs:{type:"check"+d,theme:"line"===a?"filled":"outlined"}})),n("span",{class:e+"-text",attrs:{title:"string"==typeof l?l:void 0}},[l])}},render:function(){var e,t=arguments[0],n=(0,k.oZ)(this),r=n.prefixCls,i=n.size,o=n.type,a=n.showInfo,s=this.configProvider.getPrefixCls,c=s("progress",r),u=this.getProgressStatus(),d=this.renderProcessInfo(c,u),p=void 0;if("line"===o){var m={props:(0,f.Z)({},n,{prefixCls:c})};p=t(Km,m,[d])}else if("circle"===o||"dashboard"===o){var v={props:(0,f.Z)({},n,{prefixCls:c,progressStatus:u})};p=t(ov,v,[d])}var y=h()(c,(e={},(0,l.Z)(e,c+"-"+("dashboard"===o?"circle":o),!0),(0,l.Z)(e,c+"-status-"+u,!0),(0,l.Z)(e,c+"-show-info",a),(0,l.Z)(e,c+"-"+i,i),e)),g={on:(0,k.CL)(this),class:y};return t("div",g,[p])},install:function(e){e.use(B),e.component(uv.name,uv)}},dv=uv;xs.Group=Zs,xs.Button=Ts,xs.install=function(e){e.use(B),e.component(xs.name,xs),e.component(xs.Group.name,xs.Group),e.component(xs.Button.name,xs.Button)};const hv=xs;function fv(){}const pv={name:"Star",mixins:[y.Z],props:{value:u.Z.number,index:u.Z.number,prefixCls:u.Z.string,allowHalf:u.Z.bool,disabled:u.Z.bool,character:u.Z.any,characterRender:u.Z.func,focused:u.Z.bool,count:u.Z.number},methods:{onHover:function(e){var t=this.index;this.$emit("hover",e,t)},onClick:function(e){var t=this.index;this.$emit("click",e,t)},onKeyDown:function(e){var t=this.$props.index;13===e.keyCode&&this.__emit("click",e,t)},getClassName:function(){var e=this.prefixCls,t=this.index,n=this.value,r=this.allowHalf,i=this.focused,o=t+1,a=e;return 0===n&&0===t&&i?a+=" "+e+"-focused":r&&n+.5===o?(a+=" "+e+"-half "+e+"-active",i&&(a+=" "+e+"-focused")):(a+=o<=n?" "+e+"-full":" "+e+"-zero",o===n&&i&&(a+=" "+e+"-focused")),a}},render:function(){var e=arguments[0],t=this.onHover,n=this.onClick,r=this.onKeyDown,i=this.disabled,o=this.prefixCls,a=this.characterRender,s=this.index,c=this.count,l=this.value,u=(0,k.rj)(this,"character"),d=e("li",{class:this.getClassName()},[e("div",{on:{click:i?fv:n,keydown:i?fv:r,mousemove:i?fv:t},attrs:{role:"radio","aria-checked":l>s?"true":"false","aria-posinset":s+1,"aria-setsize":c,tabIndex:0}},[e("div",{class:o+"-first"},[u]),e("div",{class:o+"-second"},[u])])]);return a&&(d=a(d,this.$props)),d}};var mv={disabled:u.Z.bool,value:u.Z.number,defaultValue:u.Z.number,count:u.Z.number,allowHalf:u.Z.bool,allowClear:u.Z.bool,prefixCls:u.Z.string,character:u.Z.any,characterRender:u.Z.func,tabIndex:u.Z.number,autoFocus:u.Z.bool};function vv(){}const yv={name:"Rate",mixins:[y.Z],model:{prop:"value",event:"change"},props:(0,k.SQ)(mv,{defaultValue:0,count:5,allowHalf:!1,allowClear:!0,prefixCls:"rc-rate",tabIndex:0,character:"★"}),data:function(){var e=this.value;return(0,k.m2)(this,"value")||(e=this.defaultValue),{sValue:e,focused:!1,cleanedValue:null,hoverValue:void 0}},watch:{value:function(e){this.setState({sValue:e})}},mounted:function(){var e=this;this.$nextTick((function(){e.autoFocus&&!e.disabled&&e.focus()}))},methods:{onHover:function(e,t){var n=this.getStarValue(t,e.pageX);n!==this.cleanedValue&&this.setState({hoverValue:n,cleanedValue:null}),this.$emit("hoverChange",n)},onMouseLeave:function(){this.setState({hoverValue:void 0,cleanedValue:null}),this.$emit("hoverChange",void 0)},onClick:function(e,t){var n=this.allowClear,r=this.sValue,i=this.getStarValue(t,e.pageX),o=!1;n&&(o=i===r),this.onMouseLeave(!0),this.changeValue(o?0:i),this.setState({cleanedValue:o?i:null})},onFocus:function(){this.setState({focused:!0}),this.$emit("focus")},onBlur:function(){this.setState({focused:!1}),this.$emit("blur")},onKeyDown:function(e){var t=e.keyCode,n=this.count,r=this.allowHalf,i=this.sValue;t===De.RIGHT&&i0&&(i-=r?.5:1,this.changeValue(i),e.preventDefault()),this.$emit("keydown",e)},getStarDOM:function(e){return this.$refs["stars"+e].$el},getStarValue:function(e,t){var n,r,i,o,a=e+1;if(this.allowHalf){var s=this.getStarDOM(e),c=(r=function(e){var t=void 0,n=void 0,r=e.ownerDocument,i=r.body,o=r&&r.documentElement,a=e.getBoundingClientRect();return t=a.left,n=a.top,{left:t-=o.clientLeft||i.clientLeft||0,top:n-=o.clientTop||i.clientTop||0}}(n=s),i=n.ownerDocument,o=i.defaultView||i.parentWindow,r.left+=function(e,t){var n=t?e.pageYOffset:e.pageXOffset,r=t?"scrollTop":"scrollLeft";if("number"!=typeof n){var i=e.document;"number"!=typeof(n=i.documentElement[r])&&(n=i.body[r])}return n}(o),r.left);t-c0,"Slider","`Slider[step]` should be a positive number in order to make Slider[dots] work.");var a=Object.keys(t).map(parseFloat).sort((function(e,t){return e-t}));if(n&&r)for(var s=i;s<=o;s+=r)-1===a.indexOf(s)&&a.push(s);return a}(0,a,s,c,v,m).map((function(t){var n,a=Math.abs(t-v)/_*100+"%",s=!u&&t===p||u&&t<=p&&t>=d,c=i?(0,f.Z)({},y,(0,l.Z)({},o?"top":"bottom",a)):(0,f.Z)({},y,(0,l.Z)({},o?"right":"left",a));s&&(c=(0,f.Z)({},c,g));var m=h()((n={},(0,l.Z)(n,r+"-dot",!0),(0,l.Z)(n,r+"-dot-active",s),(0,l.Z)(n,r+"-dot-reverse",o),n));return e("span",{class:m,style:c,key:t})}));return e("div",{class:r+"-step"},[b])}};const wv={functional:!0,render:function(e,t){var n=t.props,r=n.className,i=n.vertical,o=n.reverse,a=n.marks,s=n.included,c=n.upperBound,u=n.lowerBound,d=n.max,p=n.min,m=t.listeners.clickLabel,v=Object.keys(a),y=d-p,g=v.map(parseFloat).sort((function(e,t){return e-t})).map((function(t){var n,d="function"==typeof a[t]?a[t](e):a[t],v="object"===(void 0===d?"undefined":(0,w.Z)(d))&&!(0,k.l$)(d),g=v?d.label:d;if(!g&&0!==g)return null;var _=!s&&t===c||s&&t<=c&&t>=u,b=h()((n={},(0,l.Z)(n,r+"-text",!0),(0,l.Z)(n,r+"-text-active",_),n)),M=(0,l.Z)({marginBottom:"-50%"},o?"top":"bottom",(t-p)/y*100+"%"),C=(0,l.Z)({transform:"translateX(-50%)",msTransform:"translateX(-50%)"},o?"right":"left",o?(t-p/4)/y*100+"%":(t-p)/y*100+"%"),L=i?M:C,x=v?(0,f.Z)({},L,d.style):L;return e("span",{class:b,style:x,key:t,on:{mousedown:function(e){return m(e,t)},touchstart:function(e){return m(e,t)}}},[g])}));return e("div",{class:r},[g])}},kv={name:"Handle",mixins:[y.Z],props:{prefixCls:u.Z.string,vertical:u.Z.bool,offset:u.Z.number,disabled:u.Z.bool,min:u.Z.number,max:u.Z.number,value:u.Z.number,tabIndex:u.Z.number,className:u.Z.string,reverse:u.Z.bool},data:function(){return{clickFocused:!1}},mounted:function(){this.onMouseUpListener=ae(document,"mouseup",this.handleMouseUp)},beforeDestroy:function(){this.onMouseUpListener&&this.onMouseUpListener.remove()},methods:{setClickFocus:function(e){this.setState({clickFocused:e})},handleMouseUp:function(){document.activeElement===this.$refs.handle&&this.setClickFocus(!0)},handleBlur:function(e){this.setClickFocus(!1),this.__emit("blur",e)},handleKeyDown:function(){this.setClickFocus(!1)},clickFocus:function(){this.setClickFocus(!0),this.focus()},focus:function(){this.$refs.handle.focus()},blur:function(){this.$refs.handle.blur()},handleMousedown:function(e){this.focus(),this.__emit("mousedown",e)}},render:function(){var e,t,n=arguments[0],r=(0,k.oZ)(this),i=r.prefixCls,o=r.vertical,a=r.reverse,s=r.offset,c=r.disabled,u=r.min,d=r.max,p=r.value,m=r.tabIndex,v=h()(this.$props.className,(0,l.Z)({},i+"-handle-click-focused",this.clickFocused)),y=o?(e={},(0,l.Z)(e,a?"top":"bottom",s+"%"),(0,l.Z)(e,a?"bottom":"top","auto"),(0,l.Z)(e,"transform","translateY(+50%)"),e):(t={},(0,l.Z)(t,a?"right":"left",s+"%"),(0,l.Z)(t,a?"left":"right","auto"),(0,l.Z)(t,"transform","translateX("+(a?"+":"-")+"50%)"),t),g={"aria-valuemin":u,"aria-valuemax":d,"aria-valuenow":p,"aria-disabled":!!c},_=m||0;(c||null===m)&&(_=null);var b={attrs:(0,f.Z)({role:"slider",tabIndex:_},g),class:v,on:(0,f.Z)({},(0,k.CL)(this),{blur:this.handleBlur,keydown:this.handleKeyDown,mousedown:this.handleMousedown}),ref:"handle",style:y};return n("div",b)}};function Cv(e,t){try{return Object.keys(t).some((function(n){return e.target===t[n].$el||e.target===t[n]}))}catch(e){return!1}}function Lv(e,t){var n=t.min,r=t.max;return er}function xv(e){return e.touches.length>1||"touchend"===e.type.toLowerCase()&&e.touches.length>0}function Sv(e,t){var n=t.marks,r=t.step,i=t.min,o=t.max,a=Object.keys(n).map(parseFloat);if(null!==r){var s=Math.pow(10,Zv(r)),c=Math.floor((o*s-i*s)/(r*s)),l=Math.min((e-i)/r,c),u=Math.round(l)*r+i;a.push(u)}var d=a.map((function(t){return Math.abs(e-t)}));return a[d.indexOf(Math.min.apply(Math,(0,g.Z)(d)))]}function Zv(e){var t=e.toString(),n=0;return t.indexOf(".")>=0&&(n=t.length-t.indexOf(".")-1),n}function Tv(e,t){var n=1;return window.visualViewport&&(n=+(window.visualViewport.width/document.body.getBoundingClientRect().width).toFixed(2)),(e?t.clientY:t.pageX)/n}function zv(e,t){var n=1;return window.visualViewport&&(n=+(window.visualViewport.width/document.body.getBoundingClientRect().width).toFixed(2)),(e?t.touches[0].clientY:t.touches[0].pageX)/n}function Ov(e,t){var n=t.getBoundingClientRect();return e?n.top+.5*n.height:window.pageXOffset+n.left+.5*n.width}function Hv(e,t){var n=t.max,r=t.min;return e<=r?r:e>=n?n:e}function Dv(e,t){var n=t.step,r=isFinite(Sv(e,t))?Sv(e,t):0;return null===n?r:parseFloat(r.toFixed(Zv(n)))}function Vv(e){e.stopPropagation(),e.preventDefault()}function Pv(e,t,n){var r="increase",i="decrease",o=r;switch(e.keyCode){case De.UP:o=t&&n?i:r;break;case De.RIGHT:o=!t&&n?i:r;break;case De.DOWN:o=t&&n?r:i;break;case De.LEFT:o=!t&&n?r:i;break;case De.END:return function(e,t){return t.max};case De.HOME:return function(e,t){return t.min};case De.PAGE_UP:return function(e,t){return e+2*t.step};case De.PAGE_DOWN:return function(e,t){return e-2*t.step};default:return}return function(e,t){return function(e,t,n){var r={increase:function(e,t){return e+t},decrease:function(e,t){return e-t}},i=r[e](Object.keys(n.marks).indexOf(JSON.stringify(t)),1),o=Object.keys(n.marks)[i];return n.step?r[e](t,n.step):Object.keys(n.marks).length&&n.marks[o]?n.marks[o]:t}(o,e,t)}}function Yv(){}function Av(e){var t={min:u.Z.number,max:u.Z.number,step:u.Z.number,marks:u.Z.object,included:u.Z.bool,prefixCls:u.Z.string,disabled:u.Z.bool,handle:u.Z.func,dots:u.Z.bool,vertical:u.Z.bool,reverse:u.Z.bool,minimumTrackStyle:u.Z.object,maximumTrackStyle:u.Z.object,handleStyle:u.Z.oneOfType([u.Z.object,u.Z.arrayOf(u.Z.object)]),trackStyle:u.Z.oneOfType([u.Z.object,u.Z.arrayOf(u.Z.object)]),railStyle:u.Z.object,dotStyle:u.Z.object,activeDotStyle:u.Z.object,autoFocus:u.Z.bool};return{name:"createSlider",mixins:[e],model:{prop:"value",event:"change"},props:(0,k.SQ)(t,{prefixCls:"rc-slider",min:0,max:100,step:1,marks:{},included:!0,disabled:!1,dots:!1,vertical:!1,reverse:!1,trackStyle:[{}],handleStyle:[{}],railStyle:{},dotStyle:{},activeDotStyle:{}}),data:function(){var e=this.step,t=this.max,n=this.min,r=!isFinite(t-n)||(t-n)%e==0;return re(!e||Math.floor(e)!==e||r,"Slider","Slider[max] - Slider[min] (%s) should be a multiple of Slider[step] (%s)",t-n,e),this.handlesRefs={},{}},mounted:function(){var e=this;this.$nextTick((function(){e.document=e.$refs.sliderRef&&e.$refs.sliderRef.ownerDocument;var t=e.autoFocus,n=e.disabled;t&&!n&&e.focus()}))},beforeDestroy:function(){var e=this;this.$nextTick((function(){e.removeDocumentEvents()}))},methods:{defaultHandle:function(e){var t=e.index,n=e.directives,r=e.className,i=e.style,o=e.on,a=(0,Oe.Z)(e,["index","directives","className","style","on"]),s=this.$createElement;if(delete a.dragging,null===a.value)return null;var c={props:(0,f.Z)({},a),class:r,style:i,key:t,directives:n,on:o};return s(kv,c)},onMouseDown:function(e){if(0===e.button){var t=this.vertical,n=Tv(t,e);if(Cv(e,this.handlesRefs)){var r=Ov(t,e.target);this.dragOffset=n-r,n=r}else this.dragOffset=0;this.removeDocumentEvents(),this.onStart(n),this.addDocumentMouseEvents(),Vv(e)}},onTouchStart:function(e){if(!xv(e)){var t=this.vertical,n=zv(t,e);if(Cv(e,this.handlesRefs)){var r=Ov(t,e.target);this.dragOffset=n-r,n=r}else this.dragOffset=0;this.onStart(n),this.addDocumentTouchEvents(),Vv(e)}},onFocus:function(e){var t=this.vertical;if(Cv(e,this.handlesRefs)){var n=Ov(t,e.target);this.dragOffset=0,this.onStart(n),Vv(e),this.$emit("focus",e)}},onBlur:function(e){this.onEnd(),this.$emit("blur",e)},onMouseUp:function(){this.handlesRefs[this.prevMovedHandleIndex]&&this.handlesRefs[this.prevMovedHandleIndex].clickFocus()},onMouseMove:function(e){if(this.$refs.sliderRef){var t=Tv(this.vertical,e);this.onMove(e,t-this.dragOffset)}else this.onEnd()},onTouchMove:function(e){if(!xv(e)&&this.$refs.sliderRef){var t=zv(this.vertical,e);this.onMove(e,t-this.dragOffset)}else this.onEnd()},onKeyDown:function(e){this.$refs.sliderRef&&Cv(e,this.handlesRefs)&&this.onKeyboard(e)},onClickMarkLabel:function(e,t){var n=this;e.stopPropagation(),this.onChange({sValue:t}),this.setState({sValue:t},(function(){return n.onEnd(!0)}))},getSliderStart:function(){var e=this.$refs.sliderRef,t=this.vertical,n=this.reverse,r=e.getBoundingClientRect();return t?n?r.bottom:r.top:window.pageXOffset+(n?r.right:r.left)},getSliderLength:function(){var e=this.$refs.sliderRef;if(!e)return 0;var t=e.getBoundingClientRect();return this.vertical?t.height:t.width},addDocumentTouchEvents:function(){this.onTouchMoveListener=ae(this.document,"touchmove",this.onTouchMove),this.onTouchUpListener=ae(this.document,"touchend",this.onEnd)},addDocumentMouseEvents:function(){this.onMouseMoveListener=ae(this.document,"mousemove",this.onMouseMove),this.onMouseUpListener=ae(this.document,"mouseup",this.onEnd)},removeDocumentEvents:function(){this.onTouchMoveListener&&this.onTouchMoveListener.remove(),this.onTouchUpListener&&this.onTouchUpListener.remove(),this.onMouseMoveListener&&this.onMouseMoveListener.remove(),this.onMouseUpListener&&this.onMouseUpListener.remove()},focus:function(){this.disabled||this.handlesRefs[0].focus()},blur:function(){var e=this;this.disabled||Object.keys(this.handlesRefs).forEach((function(t){e.handlesRefs[t]&&e.handlesRefs[t].blur&&e.handlesRefs[t].blur()}))},calcValue:function(e){var t=this.vertical,n=this.min,r=this.max,i=Math.abs(Math.max(e,0)/this.getSliderLength());return t?(1-i)*(r-n)+n:i*(r-n)+n},calcValueByPos:function(e){var t=(this.reverse?-1:1)*(e-this.getSliderStart());return this.trimAlignValue(this.calcValue(t))},calcOffset:function(e){var t=this.min;return 100*((e-t)/(this.max-t))},saveHandle:function(e,t){this.handlesRefs[e]=t}},render:function(e){var t,n=this.prefixCls,r=this.marks,i=this.dots,o=this.step,a=this.included,s=this.disabled,c=this.vertical,u=this.reverse,d=this.min,p=this.max,m=this.maximumTrackStyle,v=this.railStyle,y=this.dotStyle,g=this.activeDotStyle,_=this.renderSlider(e),b=_.tracks,M=_.handles,w=h()(n,(t={},(0,l.Z)(t,n+"-with-marks",Object.keys(r).length),(0,l.Z)(t,n+"-disabled",s),(0,l.Z)(t,n+"-vertical",c),t)),k={props:{vertical:c,marks:r,included:a,lowerBound:this.getLowerBound(),upperBound:this.getUpperBound(),max:p,min:d,reverse:u,className:n+"-mark"},on:{clickLabel:s?Yv:this.onClickMarkLabel}};return e("div",{ref:"sliderRef",attrs:{tabIndex:"-1"},class:w,on:{touchstart:s?Yv:this.onTouchStart,mousedown:s?Yv:this.onMouseDown,mouseup:s?Yv:this.onMouseUp,keydown:s?Yv:this.onKeyDown,focus:s?Yv:this.onFocus,blur:s?Yv:this.onBlur}},[e("div",{class:n+"-rail",style:(0,f.Z)({},m,v)}),b,e(Mv,{attrs:{prefixCls:n,vertical:c,reverse:u,marks:r,dots:i,step:o,included:a,lowerBound:this.getLowerBound(),upperBound:this.getUpperBound(),max:p,min:d,dotStyle:y,activeDotStyle:g}}),M,e(wv,k),this.$slots.default])}}}const jv=Av({name:"Slider",mixins:[y.Z],props:{defaultValue:u.Z.number,value:u.Z.number,disabled:u.Z.bool,autoFocus:u.Z.bool,tabIndex:u.Z.number,reverse:u.Z.bool,min:u.Z.number,max:u.Z.number},data:function(){var e=void 0!==this.defaultValue?this.defaultValue:this.min,t=void 0!==this.value?this.value:e;return re(!(0,k.m2)(this,"minimumTrackStyle"),"Slider","minimumTrackStyle will be deprecate, please use trackStyle instead."),re(!(0,k.m2)(this,"maximumTrackStyle"),"Slider","maximumTrackStyle will be deprecate, please use railStyle instead."),{sValue:this.trimAlignValue(t),dragging:!1}},watch:{value:{handler:function(e){this.setChangeValue(e)},deep:!0},min:function(){var e=this.sValue;this.setChangeValue(e)},max:function(){var e=this.sValue;this.setChangeValue(e)}},methods:{setChangeValue:function(e){var t=void 0!==e?e:this.sValue,n=this.trimAlignValue(t,this.$props);n!==this.sValue&&(this.setState({sValue:n}),Lv(t,this.$props)&&this.$emit("change",n))},onChange:function(e){var t=!(0,k.m2)(this,"value"),n=e.sValue>this.max?(0,f.Z)({},e,{sValue:this.max}):e;t&&this.setState(n);var r=n.sValue;this.$emit("change",r)},onStart:function(e){this.setState({dragging:!0});var t=this.sValue;this.$emit("beforeChange",t);var n=this.calcValueByPos(e);this.startValue=n,this.startPosition=e,n!==t&&(this.prevMovedHandleIndex=0,this.onChange({sValue:n}))},onEnd:function(e){var t=this.dragging;this.removeDocumentEvents(),(t||e)&&this.$emit("afterChange",this.sValue),this.setState({dragging:!1})},onMove:function(e,t){Vv(e);var n=this.sValue,r=this.calcValueByPos(t);r!==n&&this.onChange({sValue:r})},onKeyboard:function(e){var t=this.$props,n=t.reverse,r=Pv(e,t.vertical,n);if(r){Vv(e);var i=this.sValue,o=r(i,this.$props),a=this.trimAlignValue(o);if(a===i)return;this.onChange({sValue:a}),this.$emit("afterChange",a),this.onEnd()}},getLowerBound:function(){return this.min},getUpperBound:function(){return this.sValue},trimAlignValue:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};if(null===e)return null;var n=(0,f.Z)({},this.$props,t),r=Hv(e,n);return Dv(r,n)},getTrack:function(e){var t=e.prefixCls,n=e.reverse,r=e.vertical,i=e.included,o=e.offset,a=e.minimumTrackStyle,s=e._trackStyle;return(0,this.$createElement)(bv,{class:t+"-track",attrs:{vertical:r,included:i,offset:0,reverse:n,length:o},style:(0,f.Z)({},a,s)})},renderSlider:function(){var e=this,t=this.prefixCls,n=this.vertical,r=this.included,i=this.disabled,o=this.minimumTrackStyle,a=this.trackStyle,s=this.handleStyle,c=this.tabIndex,l=this.min,u=this.max,d=this.reverse,h=this.handle,f=this.defaultHandle,p=h||f,m=this.sValue,v=this.dragging,y=this.calcOffset(m),g=p({className:t+"-handle",prefixCls:t,vertical:n,offset:y,value:m,dragging:v,disabled:i,min:l,max:u,reverse:d,index:0,tabIndex:c,style:s[0]||s,directives:[{name:"ant-ref",value:function(t){return e.saveHandle(0,t)}}],on:{focus:this.onFocus,blur:this.onBlur}}),_=a[0]||a;return{tracks:this.getTrack({prefixCls:t,reverse:d,vertical:n,included:r,offset:y,minimumTrackStyle:o,_trackStyle:_}),handles:g}}}});var Ev=function(e){var t=e.value,n=e.handle,r=e.bounds,i=e.props,o=i.allowCross,a=i.pushable,s=Number(a),c=Hv(t,i),l=c;return o||null==n||void 0===r||(n>0&&c<=r[n-1]+s&&(l=r[n-1]+s),n=r[n+1]-s&&(l=r[n+1]-s)),Dv(l,i)},$v={defaultValue:u.Z.arrayOf(u.Z.number),value:u.Z.arrayOf(u.Z.number),count:u.Z.number,pushable:u.Z.oneOfType([u.Z.bool,u.Z.number]),allowCross:u.Z.bool,disabled:u.Z.bool,reverse:u.Z.bool,tabIndex:u.Z.arrayOf(u.Z.number),prefixCls:u.Z.string,min:u.Z.number,max:u.Z.number,autoFocus:u.Z.bool};const Fv=Av({name:"Range",displayName:"Range",mixins:[y.Z],props:(0,k.SQ)($v,{count:1,allowCross:!0,pushable:!1,tabIndex:[]}),data:function(){var e=this,t=this.count,n=this.min,r=this.max,i=Array.apply(void 0,(0,g.Z)(Array(t+1))).map((function(){return n})),o=(0,k.m2)(this,"defaultValue")?this.defaultValue:i,a=this.value;void 0===a&&(a=o);var s=a.map((function(t,n){return Ev({value:t,handle:n,props:e.$props})}));return{sHandle:null,recent:s[0]===r?0:s.length-1,bounds:s}},watch:{value:{handler:function(e){var t=this.bounds;this.setChangeValue(e||t)},deep:!0},min:function(){var e=this.value;this.setChangeValue(e||this.bounds)},max:function(){var e=this.value;this.setChangeValue(e||this.bounds)}},methods:{setChangeValue:function(e){var t=this,n=this.bounds,r=e.map((function(e,r){return Ev({value:e,handle:r,bounds:n,props:t.$props})}));if((r.length!==n.length||!r.every((function(e,t){return e===n[t]})))&&(this.setState({bounds:r}),e.some((function(e){return Lv(e,t.$props)})))){var i=e.map((function(e){return Hv(e,t.$props)}));this.$emit("change",i)}},onChange:function(e){if(!(0,k.m2)(this,"value"))this.setState(e);else{var t={};["sHandle","recent"].forEach((function(n){void 0!==e[n]&&(t[n]=e[n])})),Object.keys(t).length&&this.setState(t)}var n=(0,f.Z)({},this.$data,e).bounds;this.$emit("change",n)},onStart:function(e){var t=this.bounds;this.$emit("beforeChange",t);var n=this.calcValueByPos(e);this.startValue=n,this.startPosition=e;var r=this.getClosestBound(n);if(this.prevMovedHandleIndex=this.getBoundNeedMoving(n,r),this.setState({sHandle:this.prevMovedHandleIndex,recent:this.prevMovedHandleIndex}),n!==t[this.prevMovedHandleIndex]){var i=[].concat((0,g.Z)(t));i[this.prevMovedHandleIndex]=n,this.onChange({bounds:i})}},onEnd:function(e){var t=this.sHandle;this.removeDocumentEvents(),(null!==t||e)&&this.$emit("afterChange",this.bounds),this.setState({sHandle:null})},onMove:function(e,t){Vv(e);var n=this.bounds,r=this.sHandle,i=this.calcValueByPos(t);i!==n[r]&&this.moveTo(i)},onKeyboard:function(e){var t=this.$props,n=t.reverse,r=Pv(e,t.vertical,n);if(r){Vv(e);var i=this.bounds,o=this.sHandle,a=i[null===o?this.recent:o],s=r(a,this.$props),c=Ev({value:s,handle:o,bounds:i,props:this.$props});if(c===a)return;this.moveTo(c,!0)}},getClosestBound:function(e){for(var t=this.bounds,n=0,r=1;rt[r]&&(n=r);return Math.abs(t[n+1]-e)=r.length||i<0)return!1;var o=t+n,a=r[i],s=this.pushable,c=n*(e[o]-a);return!!this.pushHandle(e,o,n,s-c)&&(e[t]=a,!0)},trimAlignValue:function(e){var t=this.sHandle,n=this.bounds;return Ev({value:e,handle:t,bounds:n,props:this.$props})},ensureValueNotConflict:function(e,t,n){var r=n.allowCross,i=n.pushable,o=this.$data||{},a=o.bounds;if(e=void 0===e?o.sHandle:e,i=Number(i),!r&&null!=e&&void 0!==a){if(e>0&&t<=a[e-1]+i)return a[e-1]+i;if(e=a[e+1]-i)return a[e+1]-i}return t},getTrack:function(e){var t=e.bounds,n=e.prefixCls,r=e.reverse,i=e.vertical,o=e.included,a=e.offsets,s=e.trackStyle,c=this.$createElement;return t.slice(0,-1).map((function(e,t){var u,d=t+1,f=h()((u={},(0,l.Z)(u,n+"-track",!0),(0,l.Z)(u,n+"-track-"+d,!0),u));return c(bv,{class:f,attrs:{vertical:i,reverse:r,included:o,offset:a[d-1],length:a[d]-a[d-1]},style:s[t],key:d})}))},renderSlider:function(){var e=this,t=this.sHandle,n=this.bounds,r=this.prefixCls,i=this.vertical,o=this.included,a=this.disabled,s=this.min,c=this.max,u=this.reverse,d=this.handle,f=this.defaultHandle,p=this.trackStyle,m=this.handleStyle,v=this.tabIndex,y=d||f,g=n.map((function(t){return e.calcOffset(t)})),_=r+"-handle",b=n.map((function(n,o){var d,f=v[o]||0;return(a||null===v[o])&&(f=null),y({className:h()((d={},(0,l.Z)(d,_,!0),(0,l.Z)(d,_+"-"+(o+1),!0),d)),prefixCls:r,vertical:i,offset:g[o],value:n,dragging:t===o,index:o,tabIndex:f,min:s,max:c,reverse:u,disabled:a,style:m[o],directives:[{name:"ant-ref",value:function(t){return e.saveHandle(o,t)}}],on:{focus:e.onFocus,blur:e.onBlur}})}));return{tracks:this.getTrack({bounds:n,prefixCls:r,reverse:u,vertical:i,included:o,offsets:g,trackStyle:p}),handles:b}}}});var Iv=Pa(),Nv={name:"ASlider",model:{prop:"value",event:"change"},mixins:[y.Z],inject:{configProvider:{default:function(){return X}}},props:(0,f.Z)({},{prefixCls:u.Z.string,tooltipPrefixCls:u.Z.string,range:u.Z.bool,reverse:u.Z.bool,min:u.Z.number,max:u.Z.number,step:u.Z.oneOfType([u.Z.number,u.Z.any]),marks:u.Z.object,dots:u.Z.bool,value:u.Z.oneOfType([u.Z.number,u.Z.arrayOf(u.Z.number)]),defaultValue:u.Z.oneOfType([u.Z.number,u.Z.arrayOf(u.Z.number)]),included:u.Z.bool,disabled:u.Z.bool,vertical:u.Z.bool,tipFormatter:u.Z.oneOfType([u.Z.func,u.Z.object]),tooltipVisible:u.Z.bool,tooltipPlacement:Iv.placement,getTooltipPopupContainer:u.Z.func},{tipFormatter:u.Z.oneOfType([u.Z.func,u.Z.object]).def((function(e){return e.toString()}))}),data:function(){return{visibles:{}}},methods:{toggleTooltipVisible:function(e,t){this.setState((function(n){var r=n.visibles;return{visibles:(0,f.Z)({},r,(0,l.Z)({},e,t))}}))},handleWithTooltip:function(e,t,n){var r=this,i=n.value,o=n.dragging,a=n.index,s=n.directives,c=n.on,l=(0,Oe.Z)(n,["value","dragging","index","directives","on"]),u=this.$createElement,d=this.$props,h=d.tipFormatter,p=d.tooltipVisible,m=d.tooltipPlacement,v=d.getTooltipPopupContainer,y=this.visibles,g=!!h&&(y[a]||o),_=p||void 0===p&&g,b={props:{prefixCls:e,title:h?h(i):"",visible:_,placement:m||"top",transitionName:"zoom-down",overlayClassName:t+"-tooltip",getPopupContainer:v||function(){return document.body}},key:a},M={props:(0,f.Z)({value:i},l),directives:s,on:(0,f.Z)({},c,{mouseenter:function(){return r.toggleTooltipVisible(a,!0)},mouseleave:function(){return r.toggleTooltipVisible(a,!1)}})};return u(ja,b,[u(kv,M)])},focus:function(){this.$refs.sliderRef.focus()},blur:function(){this.$refs.sliderRef.blur()}},render:function(){var e=this,t=arguments[0],n=(0,k.oZ)(this),r=n.range,i=n.prefixCls,o=n.tooltipPrefixCls,a=(0,Oe.Z)(n,["range","prefixCls","tooltipPrefixCls"]),s=this.configProvider.getPrefixCls,c=s("slider",i),l=s("tooltip",o),u=(0,k.CL)(this);if(r){var d={props:(0,f.Z)({},a,{prefixCls:c,tooltipPrefixCls:l,handle:function(t){return e.handleWithTooltip(l,c,t)}}),ref:"sliderRef",on:u};return t(Fv,d)}var h={props:(0,f.Z)({},a,{prefixCls:c,tooltipPrefixCls:l,handle:function(t){return e.handleWithTooltip(l,c,t)}}),ref:"sliderRef",on:u};return t(jv,h)},install:function(e){e.use(B),e.component(Nv.name,Nv)}};const Rv=Nv;var Wv=n(11726),Kv=n.n(Wv);const Bv={name:"AStatisticNumber",functional:!0,render:function(e,t){var n=t.props,r=n.value,i=n.formatter,o=n.precision,a=n.decimalSeparator,s=n.groupSeparator,c=void 0===s?"":s,l=n.prefixCls,u=void 0;if("function"==typeof i)u=i({value:r,h:e});else{var d=String(r),h=d.match(/^(-?)(\d*)(\.(\d+))?$/);if(h){var f=h[1],p=h[2]||"0",m=h[4]||"";p=p.replace(/\B(?=(\d{3})+(?!\d))/g,c),"number"==typeof o&&(m=Kv()(m,o,"0").slice(0,o)),m&&(m=""+a+m),u=[e("span",{key:"int",class:l+"-content-value-int"},[f,p]),m&&e("span",{key:"decimal",class:l+"-content-value-decimal"},[m])]}else u=d}return e("span",{class:l+"-content-value"},[u])}};var Uv={prefixCls:u.Z.string,decimalSeparator:u.Z.string,groupSeparator:u.Z.string,format:u.Z.string,value:u.Z.oneOfType([u.Z.string,u.Z.number,u.Z.object]),valueStyle:u.Z.any,valueRender:u.Z.any,formatter:u.Z.any,precision:u.Z.number,prefix:u.Z.any,suffix:u.Z.any,title:u.Z.any};const qv={name:"AStatistic",props:(0,k.SQ)(Uv,{decimalSeparator:".",groupSeparator:","}),inject:{configProvider:{default:function(){return X}}},render:function(){var e=arguments[0],t=this.$props,n=t.prefixCls,r=t.value,i=void 0===r?0:r,o=t.valueStyle,a=t.valueRender,s=this.configProvider.getPrefixCls,c=s("statistic",n),l=(0,k.rj)(this,"title"),u=(0,k.rj)(this,"prefix"),d=(0,k.rj)(this,"suffix"),h=(0,k.rj)(this,"formatter",{},!1),p=e(Bv,{props:(0,f.Z)({},this.$props,{prefixCls:c,value:i,formatter:h})});return a&&(p=a(p)),e("div",{class:c},[l&&e("div",{class:c+"-title"},[l]),e("div",{style:o,class:c+"-content"},[u&&e("span",{class:c+"-content-prefix"},[u]),p,d&&e("span",{class:c+"-content-suffix"},[d])])])}};var Gv=n(32475),Jv=n.n(Gv),Xv=[["Y",31536e6],["M",2592e6],["D",864e5],["H",36e5],["m",6e4],["s",1e3],["S",1]];function Qv(e,t){var n=t.format,r=void 0===n?"":n,i=Ds(Ua)(e).valueOf(),o=Ds(Ua)().valueOf();return function(e,t){var n=e,r=/\[[^\]]*\]/g,i=(t.match(r)||[]).map((function(e){return e.slice(1,-1)})),o=t.replace(r,"[]"),a=Xv.reduce((function(e,t){var r=(0,ht.Z)(t,2),i=r[0],o=r[1];if(-1!==e.indexOf(i)){var a=Math.floor(n/o);return n-=a*o,e.replace(new RegExp(i+"+","g"),(function(e){var t=e.length;return Jv()(a.toString(),t,"0")}))}return e}),o),s=0;return a.replace(r,(function(){var e=i[s];return s+=1,e}))}(Math.max(i-o,0),r)}function ey(e){return Ds(Ua)(e).valueOf()}const ty={name:"AStatisticCountdown",props:(0,k.SQ)(Uv,{format:"HH:mm:ss"}),created:function(){this.countdownId=void 0},mounted:function(){this.syncTimer()},updated:function(){this.syncTimer()},beforeDestroy:function(){this.stopTimer()},methods:{syncTimer:function(){ey(this.$props.value)>=Date.now()?this.startTimer():this.stopTimer()},startTimer:function(){var e=this;this.countdownId||(this.countdownId=window.setInterval((function(){e.$refs.statistic.$forceUpdate(),e.syncTimer()}),33.333333333333336))},stopTimer:function(){var e=this.$props.value;this.countdownId&&(clearInterval(this.countdownId),this.countdownId=void 0,ey(e)0&&(this.calcTimeout&&clearTimeout(this.calcTimeout),this.calcTimeout=setTimeout((function(){var r=(n.lastChild.offsetWidth||0)+1;t===r||Math.abs(t-r)<=3||e.setState({lastStepOffsetWidth:r})})))}}},render:function(){var e,t=this,n=arguments[0],r=this.prefixCls,i=this.direction,o=this.type,a=this.labelPlacement,s=this.iconPrefix,c=this.status,u=this.size,d=this.current,h=this.$scopedSlots,p=this.initial,m=this.icons,v="navigation"===o,y=this.progressDot;void 0===y&&(y=h.progressDot);var g=this.lastStepOffsetWidth,_=this.flexSupported,b=(0,k.OU)(this.$slots.default),M=b.length-1,w=y?"vertical":a,C=(e={},(0,l.Z)(e,r,!0),(0,l.Z)(e,r+"-"+i,!0),(0,l.Z)(e,r+"-"+u,u),(0,l.Z)(e,r+"-label-"+w,"horizontal"===i),(0,l.Z)(e,r+"-dot",!!y),(0,l.Z)(e,r+"-navigation",v),(0,l.Z)(e,r+"-flex-not-supported",!_),e),L=(0,k.CL)(this),x={class:C,ref:"vcStepsRef",on:L};return n("div",x,[b.map((function(e,n){var o=(0,k.TW)(e),a=p+n,l={props:(0,f.Z)({stepNumber:""+(a+1),stepIndex:a,prefixCls:r,iconPrefix:s,progressDot:t.progressDot,icons:m},o),on:(0,k.vw)(e),scopedSlots:h};return L.change&&(l.on.stepClick=t.onStepClick),_||"vertical"===i||(v?(l.props.itemWidth=100/(M+1)+"%",l.props.adjustMarginRight=0):n!==M&&(l.props.itemWidth=100/M+"%",l.props.adjustMarginRight=-Math.round(g/M+1)+"px")),"error"===c&&n===d-1&&(l.class=r+"-next-error"),o.status||(l.props.status=a===d?c:a0&&void 0!==arguments[0]?arguments[0]:{},t={prefixCls:u.Z.string,iconPrefix:u.Z.string,current:u.Z.number,initial:u.Z.number,labelPlacement:u.Z.oneOf(["horizontal","vertical"]).def("horizontal"),status:u.Z.oneOf(["wait","process","finish","error"]),size:u.Z.oneOf(["default","small"]),direction:u.Z.oneOf(["horizontal","vertical"]),progressDot:u.Z.oneOfType([u.Z.bool,u.Z.func]),type:u.Z.oneOf(["default","navigation"])};return(0,k.SQ)(t,e)}({current:0}),inject:{configProvider:{default:function(){return X}}},model:{prop:"current",event:"change"},Step:(0,f.Z)({},cy.Step,{name:"AStep"}),render:function(){var e=arguments[0],t=(0,k.oZ)(this),n=t.prefixCls,r=t.iconPrefix,i=this.configProvider.getPrefixCls,o=i("steps",n),a=i("",r),s={finish:e(Ui,{attrs:{type:"check"},class:o+"-finish-icon"}),error:e(Ui,{attrs:{type:"close"},class:o+"-error-icon"})},c={props:(0,f.Z)({icons:s,iconPrefix:a,prefixCls:o},t),on:(0,k.CL)(this),scopedSlots:this.$scopedSlots};return e(cy,c,[this.$slots.default])},install:function(e){e.use(B),e.component(ly.name,ly),e.component(ly.Step.name,ly.Step)}};const uy=ly;var dy={prefixCls:u.Z.string,disabled:u.Z.bool.def(!1),checkedChildren:u.Z.any,unCheckedChildren:u.Z.any,tabIndex:u.Z.oneOfType([u.Z.string,u.Z.number]),checked:u.Z.bool.def(!1),defaultChecked:u.Z.bool.def(!1),autoFocus:u.Z.bool.def(!1),loadingIcon:u.Z.any};const hy={name:"VcSwitch",mixins:[y.Z],model:{prop:"checked",event:"change"},props:(0,f.Z)({},dy,{prefixCls:dy.prefixCls.def("rc-switch")}),data:function(){return{stateChecked:(0,k.m2)(this,"checked")?!!this.checked:!!this.defaultChecked}},watch:{checked:function(e){this.stateChecked=e}},mounted:function(){var e=this;this.$nextTick((function(){var t=e.autoFocus,n=e.disabled;t&&!n&&e.focus()}))},methods:{setChecked:function(e,t){this.disabled||((0,k.m2)(this,"checked")||(this.stateChecked=e),this.$emit("change",e,t))},handleClick:function(e){var t=!this.stateChecked;this.setChecked(t,e),this.$emit("click",t,e)},handleKeyDown:function(e){37===e.keyCode?this.setChecked(!1,e):39===e.keyCode&&this.setChecked(!0,e)},handleMouseUp:function(e){this.$refs.refSwitchNode&&this.$refs.refSwitchNode.blur(),this.$emit("mouseup",e)},focus:function(){this.$refs.refSwitchNode.focus()},blur:function(){this.$refs.refSwitchNode.blur()}},render:function(){var e,t=arguments[0],n=(0,k.oZ)(this),r=n.prefixCls,i=n.disabled,o=n.loadingIcon,a=n.tabIndex,s=(0,Oe.Z)(n,["prefixCls","disabled","loadingIcon","tabIndex"]),c=this.stateChecked,u=(e={},(0,l.Z)(e,r,!0),(0,l.Z)(e,r+"-checked",c),(0,l.Z)(e,r+"-disabled",i),e),d={props:(0,f.Z)({},s),on:(0,f.Z)({},(0,k.CL)(this),{keydown:this.handleKeyDown,click:this.handleClick,mouseup:this.handleMouseUp}),attrs:{type:"button",role:"switch","aria-checked":c,disabled:i,tabIndex:a},class:u,ref:"refSwitchNode"};return t("button",d,[o,t("span",{class:r+"-inner"},[c?(0,k.rj)(this,"checkedChildren"):(0,k.rj)(this,"unCheckedChildren")])])}};var fy={name:"ASwitch",__ANT_SWITCH:!0,model:{prop:"checked",event:"change"},props:{prefixCls:u.Z.string,size:u.Z.oneOf(["small","default","large"]),disabled:u.Z.bool,checkedChildren:u.Z.any,unCheckedChildren:u.Z.any,tabIndex:u.Z.oneOfType([u.Z.string,u.Z.number]),checked:u.Z.bool,defaultChecked:u.Z.bool,autoFocus:u.Z.bool,loading:u.Z.bool},inject:{configProvider:{default:function(){return X}}},methods:{focus:function(){this.$refs.refSwitchNode.focus()},blur:function(){this.$refs.refSwitchNode.blur()}},created:function(){re((0,k.ZP)(this,"checked")||!(0,k.ZP)(this,"value"),"Switch","`value` is not validate prop, do you mean `checked`?")},render:function(){var e,t=arguments[0],n=(0,k.oZ)(this),r=n.prefixCls,i=n.size,o=n.loading,a=n.disabled,s=(0,Oe.Z)(n,["prefixCls","size","loading","disabled"]),c=this.configProvider.getPrefixCls,u=c("switch",r),d=(e={},(0,l.Z)(e,u+"-small","small"===i),(0,l.Z)(e,u+"-loading",o),e),h=o?t(Ui,{attrs:{type:"loading"},class:u+"-loading-icon"}):null,p={props:(0,f.Z)({},s,{prefixCls:u,loadingIcon:h,checkedChildren:(0,k.rj)(this,"checkedChildren"),unCheckedChildren:(0,k.rj)(this,"unCheckedChildren"),disabled:a||o}),on:(0,k.CL)(this),class:d,ref:"refSwitchNode"};return t(So,{attrs:{insertExtraNode:!0}},[t(hy,p)])},install:function(e){e.use(B),e.component(fy.name,fy)}};const py=fy;var my=n(82492),vy=n.n(my),yy=void 0,gy=void 0,_y={position:"absolute",top:"-9999px",width:"50px",height:"50px"},by="RC_TABLE_INTERNAL_COL_DEFINE";function My(e){var t=e.direction,n=void 0===t?"vertical":t,r=e.prefixCls;if("undefined"==typeof document||"undefined"==typeof window)return 0;var i="vertical"===n;if(i&&yy)return yy;if(!i&&gy)return gy;var o=document.createElement("div");Object.keys(_y).forEach((function(e){o.style[e]=_y[e]})),o.className=r+"-hide-scrollbar scroll-div-append-to-body",i?o.style.overflowY="scroll":o.style.overflowX="scroll",document.body.appendChild(o);var a=0;return i?(a=o.offsetWidth-o.clientWidth,yy=a):(a=o.offsetHeight-o.clientHeight,gy=a),document.body.removeChild(o),a}function wy(e,t){var n=e.indexOf(t),r=e.slice(0,n),i=e.slice(n+1,e.length);return r.concat(i)}const ky=function(){function e(t){(0,Zi.Z)(this,e),this.columns=t,this._cached={}}return(0,Ti.Z)(e,[{key:"isAnyColumnsFixed",value:function(){var e=this;return this._cache("isAnyColumnsFixed",(function(){return e.columns.some((function(e){return!!e.fixed}))}))}},{key:"isAnyColumnsLeftFixed",value:function(){var e=this;return this._cache("isAnyColumnsLeftFixed",(function(){return e.columns.some((function(e){return"left"===e.fixed||!0===e.fixed}))}))}},{key:"isAnyColumnsRightFixed",value:function(){var e=this;return this._cache("isAnyColumnsRightFixed",(function(){return e.columns.some((function(e){return"right"===e.fixed}))}))}},{key:"leftColumns",value:function(){var e=this;return this._cache("leftColumns",(function(){return e.groupedColumns().filter((function(e){return"left"===e.fixed||!0===e.fixed}))}))}},{key:"rightColumns",value:function(){var e=this;return this._cache("rightColumns",(function(){return e.groupedColumns().filter((function(e){return"right"===e.fixed}))}))}},{key:"leafColumns",value:function(){var e=this;return this._cache("leafColumns",(function(){return e._leafColumns(e.columns)}))}},{key:"leftLeafColumns",value:function(){var e=this;return this._cache("leftLeafColumns",(function(){return e._leafColumns(e.leftColumns())}))}},{key:"rightLeafColumns",value:function(){var e=this;return this._cache("rightLeafColumns",(function(){return e._leafColumns(e.rightColumns())}))}},{key:"groupedColumns",value:function(){var e=this;return this._cache("groupedColumns",(function(){return function e(t){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0,r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},i=arguments.length>3&&void 0!==arguments[3]?arguments[3]:[];i[n]=i[n]||[];var o=[],a=function(e){var t=i.length-n;e&&!e.children&&t>1&&(!e.rowSpan||e.rowSpan0?(l.children=e(l.children,n+1,l,i),r.colSpan+=l.colSpan):r.colSpan+=1;for(var u=0;u0}))}const Sy={name:"TableHeader",props:{fixed:u.Z.string,columns:u.Z.array.isRequired,expander:u.Z.object.isRequired},inject:{table:{default:function(){return{}}}},render:function(){var e=arguments[0],t=this.table,n=t.sComponents,r=t.prefixCls,i=t.showHeader,o=t.customHeaderRow,a=this.expander,s=this.columns,c=this.fixed;if(!i)return null;var l=xy({columns:s});a.renderExpandIndentCell(l,c);var u=n.header.wrapper;return e(u,{class:r+"-thead"},[l.map((function(t,i){return e(Ly,{attrs:{prefixCls:r,index:i,fixed:c,columns:s,rows:l,row:t,components:n,customHeaderRow:o},key:i})}))])}};function Zy(e){return e&&!(0,k.l$)(e)&&"[object Object]"===Object.prototype.toString.call(e)}const Ty={name:"TableCell",props:{record:u.Z.object,prefixCls:u.Z.string,index:u.Z.number,indent:u.Z.number,indentSize:u.Z.number,column:u.Z.object,expandIcon:u.Z.any,component:u.Z.any},inject:{table:{default:function(){return{}}}},methods:{handleClick:function(e){var t=this.record,n=this.column.onCellClick;n&&n(t,e)}},render:function(){var e,t=arguments[0],n=this.record,r=this.indentSize,i=this.prefixCls,o=this.indent,a=this.index,s=this.expandIcon,u=this.column,d=this.component,p=u.dataIndex,m=u.customRender,v=u.className,y=void 0===v?"":v,g=this.table.transformCellText,_=void 0;_="number"==typeof p||p&&0!==p.length?uh()(n,p):n;var b={props:{},attrs:{},on:{click:this.handleClick}},M=void 0,w=void 0;m&&Zy(_=m(_,n,a,u))&&(b.attrs=_.attrs||{},b.props=_.props||{},b.class=_.class,b.style=_.style,M=b.attrs.colSpan,w=b.attrs.rowSpan,_=_.children),u.customCell&&(b=(0,k.dG)(b,u.customCell(n,a))),Zy(_)&&(_=null),g&&(_=g({text:_,column:u,record:n,index:a}));var C=s?t("span",{style:{paddingLeft:r*o+"px"},class:i+"-indent indent-level-"+o}):null;if(0===w||0===M)return null;u.align&&(b.style=(0,f.Z)({textAlign:u.align},b.style));var L=h()(y,u.class,(e={},(0,l.Z)(e,i+"-cell-ellipsis",!!u.ellipsis),(0,l.Z)(e,i+"-cell-break-word",!!u.width),e));return u.ellipsis&&"string"==typeof _&&(b.attrs.title=_),t(d,c()([{class:L},b]),[C,s,_])}};function zy(){}const Oy={name:"TableRow",mixins:[y.Z],inject:{store:{from:"table-store",default:function(){return{}}}},props:(0,k.SQ)({customRow:u.Z.func,record:u.Z.object,prefixCls:u.Z.string,columns:u.Z.array,index:u.Z.number,rowKey:u.Z.oneOfType([u.Z.string,u.Z.number]).isRequired,className:u.Z.string,indent:u.Z.number,indentSize:u.Z.number,hasExpandIcon:u.Z.func,fixed:u.Z.oneOfType([u.Z.string,u.Z.bool]),renderExpandIcon:u.Z.func,renderExpandIconCell:u.Z.func,components:u.Z.any,expandedRow:u.Z.bool,isAnyColumnsFixed:u.Z.bool,ancestorKeys:u.Z.array.isRequired,expandIconColumnIndex:u.Z.number,expandRowByClick:u.Z.bool},{hasExpandIcon:function(){},renderExpandIcon:function(){},renderExpandIconCell:function(){}}),computed:{visible:function(){var e=this.store.expandedRowKeys,t=this.$props.ancestorKeys;return!(0!==t.length&&!t.every((function(t){return e.includes(t)})))},height:function(){var e=this.store,t=e.expandedRowsHeight,n=e.fixedColumnsBodyRowsHeight,r=this.$props,i=r.fixed,o=r.rowKey;return i?t[o]?t[o]:n[o]?n[o]:null:null},hovered:function(){return this.store.currentHoverKey===this.$props.rowKey}},data:function(){return{shouldRender:this.visible}},mounted:function(){var e=this;this.shouldRender&&this.$nextTick((function(){e.saveRowRef()}))},watch:{visible:{handler:function(e){e&&(this.shouldRender=!0)},immediate:!0}},updated:function(){var e=this;this.shouldRender&&!this.rowRef&&this.$nextTick((function(){e.saveRowRef()}))},methods:{onRowClick:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:zy,n=this.record,r=this.index;this.__emit("rowClick",n,r,e),t(e)},onRowDoubleClick:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:zy,n=this.record,r=this.index;this.__emit("rowDoubleClick",n,r,e),t(e)},onContextMenu:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:zy,n=this.record,r=this.index;this.__emit("rowContextmenu",n,r,e),t(e)},onMouseEnter:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:zy,n=this.record,r=this.index,i=this.rowKey;this.__emit("hover",!0,i),this.__emit("rowMouseenter",n,r,e),t(e)},onMouseLeave:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:zy,n=this.record,r=this.index,i=this.rowKey;this.__emit("hover",!1,i),this.__emit("rowMouseleave",n,r,e),t(e)},setExpandedRowHeight:function(){var e=this.store,t=this.rowKey,n=e.expandedRowsHeight,r=this.rowRef.getBoundingClientRect().height;n=(0,f.Z)({},n,(0,l.Z)({},t,r)),e.expandedRowsHeight=n},setRowHeight:function(){var e=this.store,t=this.rowKey,n=e.fixedColumnsBodyRowsHeight,r=this.rowRef.getBoundingClientRect().height;e.fixedColumnsBodyRowsHeight=(0,f.Z)({},n,(0,l.Z)({},t,r))},getStyle:function(){var e=this.height,t=this.visible,n=(0,k.C2)(this);return e&&(n=(0,f.Z)({},n,{height:e})),t||n.display||(n=(0,f.Z)({},n,{display:"none"})),n},saveRowRef:function(){this.rowRef=this.$el;var e=this.isAnyColumnsFixed,t=this.fixed,n=this.expandedRow,r=this.ancestorKeys;e&&(!t&&n&&this.setExpandedRowHeight(),!t&&r.length>=0&&this.setRowHeight())}},render:function(){var e=this,t=arguments[0];if(!this.shouldRender)return null;var n=this.prefixCls,r=this.columns,i=this.record,o=this.rowKey,a=this.index,s=this.customRow,c=void 0===s?zy:s,l=this.indent,u=this.indentSize,d=this.hovered,p=this.height,m=this.visible,v=this.components,y=this.hasExpandIcon,g=this.renderExpandIcon,_=this.renderExpandIconCell,b=v.body.row,M=v.body.cell,w="";d&&(w+=" "+n+"-hover");var C=[];_(C);for(var L=0;L2&&void 0!==arguments[2]?arguments[2]:[],i=this.$createElement,o=this.table,a=o.columnManager,s=o.sComponents,c=o.prefixCls,l=o.childrenColumnName,u=o.rowClassName,d=o.customRow,h=void 0===d?Vy:d,p=(0,k.CL)(this.table),m=p.rowClick,v=void 0===m?Vy:m,y=p.rowDoubleclick,g=void 0===y?Vy:y,_=p.rowContextmenu,b=void 0===_?Vy:_,M=p.rowMouseenter,w=void 0===M?Vy:M,C=p.rowMouseleave,L=void 0===C?Vy:C,x=this.getRowKey,S=this.fixed,Z=this.expander,T=this.isAnyColumnsFixed,z=[],O=function(o){var d=e[o],p=x(d,o),m="string"==typeof u?u:u(d,o,t),y={};a.isAnyColumnsFixed()&&(y.hover=n.handleRowHover);var _=void 0;_="left"===S?a.leftLeafColumns():"right"===S?a.rightLeafColumns():n.getColumns(a.leafColumns());var M=c+"-row",C={props:(0,f.Z)({},Z.props,{fixed:S,index:o,prefixCls:M,record:d,rowKey:p,needIndentSpaced:Z.needIndentSpaced}),key:p,on:{rowClick:v,expandedChange:Z.handleExpandChange},scopedSlots:{default:function(e){var n=(0,k.dG)({props:{fixed:S,indent:t,record:d,index:o,prefixCls:M,childrenColumnName:l,columns:_,rowKey:p,ancestorKeys:r,components:s,isAnyColumnsFixed:T,customRow:h},on:(0,f.Z)({rowDoubleclick:g,rowContextmenu:b,rowMouseenter:w,rowMouseleave:L},y),class:m,ref:"row_"+o+"_"+t},e);return i(Oy,n)}}},O=i(Dy,C);z.push(O),Z.renderRows(n.renderRows,z,d,o,t,S,p,r)},H=0;H0&&(m.width=y+"px")}var g=d?n.table:"table",_=n.body.wrapper,b=void 0;return d&&(b=e(_,{class:r+"-tbody"},[this.renderRows(o,0)]),a&&(b=a(b))),e(g,{class:l,style:m,key:"table"},[e(Cy,{attrs:{columns:p,fixed:h}}),u&&e(Sy,{attrs:{expander:c,columns:p,fixed:h}}),b])}},Yy={name:"HeadTable",props:{fixed:u.Z.oneOfType([u.Z.string,u.Z.bool]),columns:u.Z.array.isRequired,tableClassName:u.Z.string.isRequired,handleBodyScrollLeft:u.Z.func.isRequired,expander:u.Z.object.isRequired},inject:{table:{default:function(){return{}}}},render:function(){var e=arguments[0],t=this.columns,n=this.fixed,r=this.tableClassName,i=this.handleBodyScrollLeft,o=this.expander,a=this.table,s=a.prefixCls,u=a.scroll,d=a.showHeader,f=a.saveRef,p=a.useFixedHeader,m={},v=My({direction:"vertical"});if(u.y){p=!0;var y=My({direction:"horizontal",prefixCls:s});y>0&&!n&&(m.marginBottom="-"+y+"px",m.paddingBottom="0px",m.minWidth=v+"px",m.overflowX="scroll",m.overflowY=0===v?"hidden":"scroll")}return p&&d?e("div",c()([{key:"headTable"},{directives:[{name:"ant-ref",value:n?function(){}:f("headTable")}]},{class:h()(s+"-header",(0,l.Z)({},s+"-hide-scrollbar",v>0)),style:m,on:{scroll:i}}]),[e(Py,{attrs:{tableClassName:r,hasHead:!0,hasBody:!1,fixed:n,columns:t,expander:o}})]):null}},Ay={name:"BodyTable",props:{fixed:u.Z.oneOfType([u.Z.string,u.Z.bool]),columns:u.Z.array.isRequired,tableClassName:u.Z.string.isRequired,handleBodyScroll:u.Z.func.isRequired,handleWheel:u.Z.func.isRequired,getRowKey:u.Z.func.isRequired,expander:u.Z.object.isRequired,isAnyColumnsFixed:u.Z.bool},inject:{table:{default:function(){return{}}}},render:function(){var e=arguments[0],t=this.table,n=t.prefixCls,r=t.scroll,i=this.columns,o=this.fixed,a=this.tableClassName,s=this.getRowKey,l=this.handleBodyScroll,u=this.handleWheel,d=this.expander,h=this.isAnyColumnsFixed,p=this.table,m=p.useFixedHeader,v=p.saveRef,y=(0,f.Z)({},this.table.bodyStyle),g={};if((r.x||o)&&(y.overflowX=y.overflowX||"scroll",y.WebkitTransform="translate3d (0, 0, 0)"),r.y){var _=y.maxHeight||r.y;_="number"==typeof _?_+"px":_,o?(g.maxHeight=_,g.overflowY=y.overflowY||"scroll"):y.maxHeight=_,y.overflowY=y.overflowY||"scroll",m=!0;var b=My({direction:"vertical"});b>0&&o&&(y.marginBottom="-"+b+"px",y.paddingBottom="0px")}var M=e(Py,{attrs:{tableClassName:a,hasHead:!m,hasBody:!0,fixed:o,columns:i,expander:d,getRowKey:s,isAnyColumnsFixed:h}});if(o&&i.length){var w=void 0;return"left"===i[0].fixed||!0===i[0].fixed?w="fixedColumnsBodyLeft":"right"===i[0].fixed&&(w="fixedColumnsBodyRight"),delete y.overflowX,delete y.overflowY,e("div",{key:"bodyTable",class:n+"-body-outer",style:(0,f.Z)({},y)},[e("div",c()([{class:n+"-body-inner",style:g},{directives:[{name:"ant-ref",value:v(w)}]},{on:{wheel:u,scroll:l}}]),[M])])}var k=r&&(r.x||r.y);return e("div",c()([{attrs:{tabIndex:k?-1:void 0},key:"bodyTable",class:n+"-body",style:y},{directives:[{name:"ant-ref",value:v("bodyTable")}]},{on:{wheel:u,scroll:l}}]),[M])}};const jy={name:"ExpandableTable",mixins:[y.Z],props:(0,k.SQ)({expandIconAsCell:u.Z.bool,expandRowByClick:u.Z.bool,expandedRowKeys:u.Z.array,expandedRowClassName:u.Z.func,defaultExpandAllRows:u.Z.bool,defaultExpandedRowKeys:u.Z.array,expandIconColumnIndex:u.Z.number,expandedRowRender:u.Z.func,expandIcon:u.Z.func,childrenColumnName:u.Z.string,indentSize:u.Z.number,columnManager:u.Z.object.isRequired,prefixCls:u.Z.string.isRequired,data:u.Z.array,getRowKey:u.Z.func},{expandIconAsCell:!1,expandedRowClassName:function(){return""},expandIconColumnIndex:0,defaultExpandAllRows:!1,defaultExpandedRowKeys:[],childrenColumnName:"children",indentSize:15}),inject:{store:{from:"table-store",default:function(){return{}}}},data:function(){var e=this.data,t=this.childrenColumnName,n=this.defaultExpandAllRows,r=this.expandedRowKeys,i=this.defaultExpandedRowKeys,o=this.getRowKey,a=[],s=[].concat((0,g.Z)(e));if(n)for(var c=0;c4&&void 0!==arguments[4]&&arguments[4];n&&(n.preventDefault(),n.stopPropagation());var o=this.store.expandedRowKeys;if(e)o=[].concat((0,g.Z)(o),[r]);else{var a=o.indexOf(r);-1!==a&&(o=wy(o,r))}this.expandedRowKeys||(this.store.expandedRowKeys=o),this.latestExpandedRows&&at()(this.latestExpandedRows,o)||(this.latestExpandedRows=o,this.__emit("expandedRowsChange",o),this.__emit("update:expandedRowKeys",o)),i||this.__emit("expand",e,t)},renderExpandIndentCell:function(e,t){var n=this.prefixCls;if(this.expandIconAsCell&&"right"!==t&&e.length){var r={key:"rc-table-expand-icon-cell",className:n+"-expand-icon-th",title:"",rowSpan:e.length};e[0].unshift((0,f.Z)({},r,{column:r}))}},renderExpandedRow:function(e,t,n,r,i,o,a){var s=this,c=this.$createElement,l=this.prefixCls,u=this.expandIconAsCell,d=this.indentSize,h=i[i.length-1],f=h+"-extra-row",p=void 0;p="left"===a?this.columnManager.leftLeafColumns().length:"right"===a?this.columnManager.rightLeafColumns().length:this.columnManager.leafColumns().length;var m=[{key:"extra-row",customRender:function(){var r=s.store.expandedRowKeys.includes(h);return{attrs:{colSpan:p},children:"right"!==a?n(e,t,o,r):" "}}}];return u&&"right"!==a&&m.unshift({key:"expand-icon-placeholder",customRender:function(){return null}}),c(Oy,{key:f,attrs:{columns:m,rowKey:f,ancestorKeys:i,prefixCls:l+"-expanded-row",indentSize:d,indent:o,fixed:a,components:{body:{row:"tr",cell:"td"}},expandedRow:!0,hasExpandIcon:function(){}},class:r})},renderRows:function(e,t,n,r,i,o,a,s){var c=this.expandedRowClassName,l=this.expandedRowRender,u=n[this.childrenColumnName],d=[].concat((0,g.Z)(s),[a]),h=i+1;l&&t.push(this.renderExpandedRow(n,r,l,c(n,r,i),d,h,o)),u&&t.push.apply(t,(0,g.Z)(e(u,h,d)))}},render:function(){var e=this.data,t=this.childrenColumnName,n=this.$scopedSlots,r=(0,k.oZ)(this),i=e.some((function(e){return e[t]}));return n.default&&n.default({props:r,on:(0,k.CL)(this),needIndentSpaced:i,renderRows:this.renderRows,handleExpandChange:this.handleExpandChange,renderExpandIndentCell:this.renderExpandIndentCell})}},Ey={name:"Table",mixins:[y.Z],provide:function(){return{"table-store":this.store,table:this}},props:(0,k.SQ)({data:u.Z.array,useFixedHeader:u.Z.bool,columns:u.Z.array,prefixCls:u.Z.string,bodyStyle:u.Z.object,rowKey:u.Z.oneOfType([u.Z.string,u.Z.func]),rowClassName:u.Z.oneOfType([u.Z.string,u.Z.func]),customRow:u.Z.func,customHeaderRow:u.Z.func,showHeader:u.Z.bool,title:u.Z.func,id:u.Z.string,footer:u.Z.func,emptyText:u.Z.any,scroll:u.Z.object,rowRef:u.Z.func,getBodyWrapper:u.Z.func,components:u.Z.shape({table:u.Z.any,header:u.Z.shape({wrapper:u.Z.any,row:u.Z.any,cell:u.Z.any}),body:u.Z.shape({wrapper:u.Z.any,row:u.Z.any,cell:u.Z.any})}),expandIconAsCell:u.Z.bool,expandedRowKeys:u.Z.array,expandedRowClassName:u.Z.func,defaultExpandAllRows:u.Z.bool,defaultExpandedRowKeys:u.Z.array,expandIconColumnIndex:u.Z.number,expandedRowRender:u.Z.func,childrenColumnName:u.Z.string,indentSize:u.Z.number,expandRowByClick:u.Z.bool,expandIcon:u.Z.func,tableLayout:u.Z.string,transformCellText:u.Z.func},{data:[],useFixedHeader:!1,rowKey:"key",rowClassName:function(){return""},prefixCls:"rc-table",bodyStyle:{},showHeader:!0,scroll:{},rowRef:function(){return null},emptyText:function(){return"No Data"},customHeaderRow:function(){}}),data:function(){return this.preData=[].concat((0,g.Z)(this.data)),this.store=r.default.observable({currentHoverKey:null,fixedColumnsHeadRowsHeight:[],fixedColumnsBodyRowsHeight:{},expandedRowsHeight:{},expandedRowKeys:[]}),{columnManager:new ky(this.columns),sComponents:vy()({table:"table",header:{wrapper:"thead",row:"tr",cell:"th"},body:{wrapper:"tbody",row:"tr",cell:"td"}},this.components)}},watch:{components:function(){this._components=vy()({table:"table",header:{wrapper:"thead",row:"tr",cell:"th"},body:{wrapper:"tbody",row:"tr",cell:"td"}},this.components)},columns:function(e){e&&this.columnManager.reset(e)},data:function(e){var t=this;0===e.length&&this.hasScrollX()&&this.$nextTick((function(){t.resetScrollX()}))}},created:function(){var e=this;["rowClick","rowDoubleclick","rowContextmenu","rowMouseenter","rowMouseleave"].forEach((function(t){re(void 0===(0,k.CL)(e)[t],t+" is deprecated, please use customRow instead.")})),re(void 0===this.getBodyWrapper,"getBodyWrapper is deprecated, please use custom components instead."),this.setScrollPosition("left"),this.debouncedWindowResize=function(e,t,n){var r=void 0;function i(){for(var i=arguments.length,o=Array(i),a=0;a=e.children[0].getBoundingClientRect().width-e.getBoundingClientRect().width;t&&n?this.setScrollPosition("both"):t?this.setScrollPosition("left"):n?this.setScrollPosition("right"):"middle"!==this.scrollPosition&&this.setScrollPosition("middle")},isTableLayoutFixed:function(){var e=this.$props,t=e.tableLayout,n=e.columns,r=void 0===n?[]:n,i=e.useFixedHeader,o=e.scroll,a=void 0===o?{}:o;return void 0!==t?"fixed"===t:!!r.some((function(e){return!!e.ellipsis}))||(!(!i&&!a.y)||!(!a.x||!0===a.x||"max-content"===a.x))},handleWindowResize:function(){this.syncFixedTableRowHeight(),this.setScrollPositionClassName()},syncFixedTableRowHeight:function(){var e=this.tableNode.getBoundingClientRect();if(!(void 0!==e.height&&e.height<=0)){var t=this.prefixCls,n=this.ref_headTable?this.ref_headTable.querySelectorAll("thead"):this.ref_bodyTable.querySelectorAll("thead"),r=this.ref_bodyTable.querySelectorAll("."+t+"-row")||[],i=[].map.call(n,(function(e){return e.getBoundingClientRect().height?e.getBoundingClientRect().height-.5:"auto"})),o=this.store,a=[].reduce.call(r,(function(e,t){var n=t.getAttribute("data-row-key"),r=t.getBoundingClientRect().height||o.fixedColumnsBodyRowsHeight[n]||"auto";return e[n]=r,e}),{});at()(o.fixedColumnsHeadRowsHeight,i)&&at()(o.fixedColumnsBodyRowsHeight,a)||(this.store.fixedColumnsHeadRowsHeight=i,this.store.fixedColumnsBodyRowsHeight=a)}},resetScrollX:function(){this.ref_headTable&&(this.ref_headTable.scrollLeft=0),this.ref_bodyTable&&(this.ref_bodyTable.scrollLeft=0)},hasScrollX:function(){var e=this.scroll;return"x"in(void 0===e?{}:e)},handleBodyScrollLeft:function(e){if(e.currentTarget===e.target){var t=e.target,n=this.scroll,r=void 0===n?{}:n,i=this.ref_headTable,o=this.ref_bodyTable;t.scrollLeft!==this.lastScrollLeft&&r.x&&(t===o&&i?i.scrollLeft=t.scrollLeft:t===i&&o&&(o.scrollLeft=t.scrollLeft),this.setScrollPositionClassName()),this.lastScrollLeft=t.scrollLeft}},handleBodyScrollTop:function(e){var t=e.target;if(e.currentTarget===t){var n=this.scroll,r=void 0===n?{}:n,i=this.ref_headTable,o=this.ref_bodyTable,a=this.ref_fixedColumnsBodyLeft,s=this.ref_fixedColumnsBodyRight;if(t.scrollTop!==this.lastScrollTop&&r.y&&t!==i){var c=t.scrollTop;a&&t!==a&&(a.scrollTop=c),s&&t!==s&&(s.scrollTop=c),o&&t!==o&&(o.scrollTop=c)}this.lastScrollTop=t.scrollTop}},handleBodyScroll:function(e){this.handleBodyScrollLeft(e),this.handleBodyScrollTop(e)},handleWheel:function(e){var t=this.$props.scroll,n=void 0===t?{}:t;if(window.navigator.userAgent.match(/Trident\/7\./)&&n.y){e.preventDefault();var r=e.deltaY,i=e.target,o=this.ref_bodyTable,a=this.ref_fixedColumnsBodyLeft,s=this.ref_fixedColumnsBodyRight,c=0;c=this.lastScrollTop?this.lastScrollTop+r:r,a&&i!==a&&(a.scrollTop=c),s&&i!==s&&(s.scrollTop=c),o&&i!==o&&(o.scrollTop=c)}},saveRef:function(e){var t=this;return function(n){t["ref_"+e]=n}},saveTableNodeRef:function(e){this.tableNode=e},renderMainTable:function(){var e=this.$createElement,t=this.scroll,n=this.prefixCls,r=this.columnManager.isAnyColumnsFixed(),i=r||t.x||t.y,o=[this.renderTable({columns:this.columnManager.groupedColumns(),isAnyColumnsFixed:r}),this.renderEmptyText(),this.renderFooter()];return i?e("div",{class:n+"-scroll"},[o]):o},renderLeftFixedTable:function(){return(0,this.$createElement)("div",{class:this.prefixCls+"-fixed-left"},[this.renderTable({columns:this.columnManager.leftColumns(),fixed:"left"})])},renderRightFixedTable:function(){return(0,this.$createElement)("div",{class:this.prefixCls+"-fixed-right"},[this.renderTable({columns:this.columnManager.rightColumns(),fixed:"right"})])},renderTable:function(e){var t=this.$createElement,n=e.columns,r=e.fixed,i=e.isAnyColumnsFixed,o=this.prefixCls,a=this.scroll,s=(void 0===a?{}:a).x||r?o+"-fixed":"";return[t(Yy,{key:"head",attrs:{columns:n,fixed:r,tableClassName:s,handleBodyScrollLeft:this.handleBodyScrollLeft,expander:this.expander}}),t(Ay,{key:"body",attrs:{columns:n,fixed:r,tableClassName:s,getRowKey:this.getRowKey,handleWheel:this.handleWheel,handleBodyScroll:this.handleBodyScroll,expander:this.expander,isAnyColumnsFixed:i}})]},renderTitle:function(){var e=this.$createElement,t=this.title,n=this.prefixCls,r=this.data;return t?e("div",{class:n+"-title",key:"title"},[t(r)]):null},renderFooter:function(){var e=this.$createElement,t=this.footer,n=this.prefixCls,r=this.data;return t?e("div",{class:n+"-footer",key:"footer"},[t(r)]):null},renderEmptyText:function(){var e=this.$createElement,t=this.emptyText,n=this.prefixCls;return this.data.length?null:e("div",{class:n+"-placeholder",key:"emptyText"},["function"==typeof t?t():t])}},render:function(){var e,t=this,n=arguments[0],r=(0,k.oZ)(this),i=this.columnManager,o=this.getRowKey,a=r.prefixCls,s=h()(r.prefixCls,(e={},(0,l.Z)(e,a+"-fixed-header",r.useFixedHeader||r.scroll&&r.scroll.y),(0,l.Z)(e,a+"-scroll-position-left "+a+"-scroll-position-right","both"===this.scrollPosition),(0,l.Z)(e,a+"-scroll-position-"+this.scrollPosition,"both"!==this.scrollPosition),(0,l.Z)(e,a+"-layout-fixed",this.isTableLayoutFixed()),e)),u=i.isAnyColumnsLeftFixed(),d=i.isAnyColumnsRightFixed(),p={props:(0,f.Z)({},r,{columnManager:i,getRowKey:o}),on:(0,k.CL)(this),scopedSlots:{default:function(e){return t.expander=e,n("div",c()([{directives:[{name:"ant-ref",value:t.saveTableNodeRef}]},{class:s}]),[t.renderTitle(),n("div",{class:a+"-content"},[t.renderMainTable(),u&&t.renderLeftFixedTable(),d&&t.renderRightFixedTable()])])}}};return n(jy,p)}};const $y={name:"Table",Column:{name:"Column",props:{rowSpan:u.Z.number,colSpan:u.Z.number,title:u.Z.any,dataIndex:u.Z.string,width:u.Z.oneOfType([u.Z.number,u.Z.string]),ellipsis:u.Z.bool,fixed:u.Z.oneOf([!0,"left","right"]),align:u.Z.oneOf(["left","center","right"]),customRender:u.Z.func,className:u.Z.string,customCell:u.Z.func,customHeaderCell:u.Z.func}},ColumnGroup:{name:"ColumnGroup",props:{title:u.Z.any},isTableColumnGroup:!0},props:Ey.props,methods:{getTableNode:function(){return this.$refs.table.tableNode},getBodyTable:function(){return this.$refs.table.ref_bodyTable},normalize:function(){var e=this,t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[],n=[];return t.forEach((function(t){if(t.tag){var r=(0,k.km)(t),i=(0,k.C2)(t),o=(0,k.ll)(t),a=(0,k.oZ)(t),s=(0,k.vw)(t),c={};Object.keys(s).forEach((function(e){var t="on-"+e;c[(0,k._A)(t)]=s[e]}));var l=(0,k.FJ)(t),u=l.default,d=l.title,h=(0,f.Z)({title:d},a,{style:i,class:o},c);if(r&&(h.key=r),(0,k.cV)(t).isTableColumnGroup)h.children=e.normalize("function"==typeof u?u():u);else{var p=t.data&&t.data.scopedSlots&&t.data.scopedSlots.default;h.customRender=h.customRender||p}n.push(h)}})),n}},render:function(){var e=arguments[0],t=this.$slots,n=this.normalize,r=(0,k.oZ)(this),i=r.columns||n(t.default),o={props:(0,f.Z)({},r,{columns:i}),on:(0,k.CL)(this),ref:"table"};return e(Ey,o)}};var Fy=n(58657),Iy=n.n(Fy);const Ny={name:"FilterDropdownMenuWrapper",methods:{handelClick:function(e){e.stopPropagation()}},render:function(){var e=arguments[0],t=this.$slots,n=this.handelClick;return e("div",{on:{click:n}},[t.default])}};var Ry=Uf(),Wy=Pf(),Ky=u.Z.shape({text:u.Z.string,value:u.Z.string,children:u.Z.array}).loose,By={title:u.Z.any,dataIndex:u.Z.string,customRender:u.Z.func,customCell:u.Z.func,customHeaderCell:u.Z.func,align:u.Z.oneOf(["left","right","center"]),ellipsis:u.Z.bool,filters:u.Z.arrayOf(Ky),filterMultiple:u.Z.bool,filterDropdown:u.Z.any,filterDropdownVisible:u.Z.bool,sorter:u.Z.oneOfType([u.Z.boolean,u.Z.func]),defaultSortOrder:u.Z.oneOf(["ascend","descend"]),colSpan:u.Z.number,width:u.Z.oneOfType([u.Z.string,u.Z.number]),className:u.Z.string,fixed:u.Z.oneOfType([u.Z.bool,u.Z.oneOf(["left","right"])]),filterIcon:u.Z.any,filteredValue:u.Z.array,filtered:u.Z.bool,defaultFilteredValue:u.Z.array,sortOrder:u.Z.oneOfType([u.Z.bool,u.Z.oneOf(["ascend","descend"])]),sortDirections:u.Z.array},Uy=u.Z.shape({filterTitle:u.Z.string,filterConfirm:u.Z.any,filterReset:u.Z.any,emptyText:u.Z.any,selectAll:u.Z.any,selectInvert:u.Z.any,sortTitle:u.Z.string,expand:u.Z.string,collapse:u.Z.string}).loose,qy=u.Z.oneOf(["checkbox","radio"]),Gy={type:qy,selectedRowKeys:u.Z.array,getCheckboxProps:u.Z.func,selections:u.Z.oneOfType([u.Z.array,u.Z.bool]),hideDefaultSelections:u.Z.bool,fixed:u.Z.bool,columnWidth:u.Z.oneOfType([u.Z.string,u.Z.number]),selectWay:u.Z.oneOf(["onSelect","onSelectMultiple","onSelectAll","onSelectInvert"]),columnTitle:u.Z.any},Jy={prefixCls:u.Z.string,dropdownPrefixCls:u.Z.string,rowSelection:u.Z.oneOfType([u.Z.shape(Gy).loose,null]),pagination:u.Z.oneOfType([u.Z.shape((0,f.Z)({},Ry,{position:u.Z.oneOf(["top","bottom","both"])})).loose,u.Z.bool]),size:u.Z.oneOf(["default","middle","small","large"]),dataSource:u.Z.array,components:u.Z.object,columns:u.Z.array,rowKey:u.Z.oneOfType([u.Z.string,u.Z.func]),rowClassName:u.Z.func,expandedRowRender:u.Z.any,defaultExpandAllRows:u.Z.bool,defaultExpandedRowKeys:u.Z.array,expandedRowKeys:u.Z.array,expandIconAsCell:u.Z.bool,expandIconColumnIndex:u.Z.number,expandRowByClick:u.Z.bool,loading:u.Z.oneOfType([u.Z.shape(Wy).loose,u.Z.bool]),locale:Uy,indentSize:u.Z.number,customRow:u.Z.func,customHeaderRow:u.Z.func,useFixedHeader:u.Z.bool,bordered:u.Z.bool,showHeader:u.Z.bool,footer:u.Z.func,title:u.Z.func,scroll:u.Z.object,childrenColumnName:u.Z.oneOfType([u.Z.array,u.Z.string]),bodyStyle:u.Z.any,sortDirections:u.Z.array,tableLayout:u.Z.string,getPopupContainer:u.Z.func,expandIcon:u.Z.func,transformCellText:u.Z.func},Xy={store:u.Z.any,locale:u.Z.any,disabled:u.Z.bool,getCheckboxPropsByItem:u.Z.func,getRecordKey:u.Z.func,data:u.Z.array,prefixCls:u.Z.string,hideDefaultSelections:u.Z.bool,selections:u.Z.oneOfType([u.Z.array,u.Z.bool]),getPopupContainer:u.Z.func},Qy={store:u.Z.any,type:qy,defaultSelection:u.Z.arrayOf([u.Z.string,u.Z.number]),rowIndex:u.Z.oneOfType([u.Z.string,u.Z.number]),name:u.Z.string,disabled:u.Z.bool,id:u.Z.string},eg={_propsSymbol:u.Z.any,locale:Uy,selectedKeys:u.Z.arrayOf([u.Z.string,u.Z.number]),column:u.Z.object,confirmFilter:u.Z.func,prefixCls:u.Z.string,dropdownPrefixCls:u.Z.string,getPopupContainer:u.Z.func,handleFilter:u.Z.func};function tg(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[],t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"children",n=[],r=function e(r){r.forEach((function(r){if(r[t]){var i=(0,f.Z)({},r);delete i[t],n.push(i),r[t].length>0&&e(r[t])}else n.push(r)}))};return r(e),n}function ng(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"children";return e.map((function(e,r){var i={};return e[n]&&(i[n]=ng(e[n],t,n)),(0,f.Z)({},t(e,r),i)}))}function rg(e,t){return e.reduce((function(e,n){if(t(n)&&e.push(n),n.children){var r=rg(n.children,t);e.push.apply(e,(0,g.Z)(r))}return e}),[])}function ig(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return(e||[]).forEach((function(e){var n=e.value,r=e.children;t[n.toString()]=n,ig(r,t)})),t}function og(e){e.stopPropagation()}const ag={name:"FilterMenu",mixins:[y.Z],props:(0,k.SQ)(eg,{handleFilter:function(){},column:{}}),data:function(){var e="filterDropdownVisible"in this.column&&this.column.filterDropdownVisible;return this.preProps=(0,f.Z)({},(0,k.oZ)(this)),{sSelectedKeys:this.selectedKeys,sKeyPathOfSelectedItem:{},sVisible:e,sValueKeys:ig(this.column.filters)}},watch:{_propsSymbol:function(){var e=(0,k.oZ)(this),t=e.column,n={};"selectedKeys"in e&&!at()(this.preProps.selectedKeys,e.selectedKeys)&&(n.sSelectedKeys=e.selectedKeys),at()((this.preProps.column||{}).filters,(e.column||{}).filters)||(n.sValueKeys=ig(e.column.filters)),"filterDropdownVisible"in t&&(n.sVisible=t.filterDropdownVisible),Object.keys(n).length>0&&this.setState(n),this.preProps=(0,f.Z)({},e)}},mounted:function(){var e=this,t=this.column;this.$nextTick((function(){e.setNeverShown(t)}))},updated:function(){var e=this,t=this.column;this.$nextTick((function(){e.setNeverShown(t)}))},methods:{getDropdownVisible:function(){return!this.neverShown&&this.sVisible},setNeverShown:function(e){var t=this.$el;!!Iy()(t,".ant-table-scroll")&&(this.neverShown=!!e.fixed)},setSelectedKeys:function(e){var t=e.selectedKeys;this.setState({sSelectedKeys:t})},setVisible:function(e){var t=this.column;"filterDropdownVisible"in t||this.setState({sVisible:e}),t.onFilterDropdownVisibleChange&&t.onFilterDropdownVisibleChange(e)},handleClearFilters:function(){this.setState({sSelectedKeys:[]},this.handleConfirm)},handleConfirm:function(){var e=this;this.setVisible(!1),this.confirmFilter2(),this.$forceUpdate(),this.$nextTick((function(){e.confirmFilter}))},onVisibleChange:function(e){this.setVisible(e);var t=this.$props.column;e||t.filterDropdown instanceof Function||this.confirmFilter2()},handleMenuItemClick:function(e){var t=this.$data.sSelectedKeys;if(e.keyPath&&!(e.keyPath.length<=1)){var n=this.$data.sKeyPathOfSelectedItem;t&&t.indexOf(e.key)>=0?delete n[e.key]:n[e.key]=e.keyPath,this.setState({sKeyPathOfSelectedItem:n})}},hasSubMenu:function(){var e=this.column.filters;return(void 0===e?[]:e).some((function(e){return!!(e.children&&e.children.length>0)}))},confirmFilter2:function(){var e=this.$props,t=e.column,n=e.selectedKeys,r=e.confirmFilter,i=this.$data,o=i.sSelectedKeys,a=i.sValueKeys,s=t.filterDropdown;at()(o,n)||r(t,s?o:o.map((function(e){return a[e]})).filter((function(e){return void 0!==e})))},renderMenus:function(e){var t=this,n=this.$createElement,r=this.$props,i=r.dropdownPrefixCls,o=r.prefixCls;return e.map((function(e){if(e.children&&e.children.length>0){var r=t.sKeyPathOfSelectedItem,a=Object.keys(r).some((function(t){return r[t].indexOf(e.value)>=0})),s=h()(o+"-dropdown-submenu",(0,l.Z)({},i+"-submenu-contain-selected",a));return n(Ar,{attrs:{title:e.text,popupClassName:s},key:e.value},[t.renderMenus(e.children)])}return t.renderMenuItem(e)}))},renderFilterIcon:function(){var e,t=this.$createElement,n=this.column,r=this.locale,i=this.prefixCls,o=this.selectedKeys,a=o&&o.length>0,s=n.filterIcon;"function"==typeof s&&(s=s(a,n));var c=h()((e={},(0,l.Z)(e,i+"-selected","filtered"in n?n.filtered:a),(0,l.Z)(e,i+"-open",this.getDropdownVisible()),e));return s?1===s.length&&(0,k.l$)(s[0])?(0,fn.Tm)(s[0],{on:{click:og},class:h()(i+"-icon",c)}):t("span",{class:h()(i+"-icon",c)},[s]):t(Ui,{attrs:{title:r.filterTitle,type:"filter",theme:"filled"},class:c,on:{click:og}})},renderMenuItem:function(e){var t=this.$createElement,n=this.column,r=this.$data.sSelectedKeys,i=t(!("filterMultiple"in n)||n.filterMultiple?$l:hv,{attrs:{checked:r&&r.indexOf(e.value)>=0}});return t($t,{key:e.value},[i,t("span",[e.text])])}},render:function(){var e=this,t=arguments[0],n=this.$data.sSelectedKeys,r=this.column,i=this.locale,o=this.prefixCls,a=this.dropdownPrefixCls,s=this.getPopupContainer,c=!("filterMultiple"in r)||r.filterMultiple,u=h()((0,l.Z)({},a+"-menu-without-submenu",!this.hasSubMenu())),d=r.filterDropdown;d instanceof Function&&(d=d({prefixCls:a+"-custom",setSelectedKeys:function(t){return e.setSelectedKeys({selectedKeys:t})},selectedKeys:n,confirm:this.handleConfirm,clearFilters:this.handleClearFilters,filters:r.filters,visible:this.getDropdownVisible(),column:r}));var f=t(Ny,{class:o+"-dropdown"},d?[d]:[t(qr,{attrs:{multiple:c,prefixCls:a+"-menu",selectedKeys:n&&n.map((function(e){return e})),getPopupContainer:s},on:{click:this.handleMenuItemClick,select:this.setSelectedKeys,deselect:this.setSelectedKeys},class:u},[this.renderMenus(r.filters)]),t("div",{class:o+"-dropdown-btns"},[t("a",{class:o+"-dropdown-link confirm",on:{click:this.handleConfirm}},[i.filterConfirm]),t("a",{class:o+"-dropdown-link clear",on:{click:this.handleClearFilters}},[i.filterReset])])]);return t(Od,{attrs:{trigger:["click"],placement:"bottomRight",visible:this.getDropdownVisible(),getPopupContainer:s,forceRender:!0},on:{visibleChange:this.onVisibleChange}},[t("template",{slot:"overlay"},[f]),this.renderFilterIcon()])}},sg={name:"SelectionBox",mixins:[y.Z],props:Qy,computed:{checked:function(){var e=this.$props,t=e.store,n=e.defaultSelection,r=e.rowIndex,i=!1;return i=t.selectionDirty?t.selectedRowKeys.indexOf(r)>=0:t.selectedRowKeys.indexOf(r)>=0||n.indexOf(r)>=0,i}},render:function(){var e=arguments[0],t=(0,k.oZ)(this),n=t.type,r=t.rowIndex,i=(0,Oe.Z)(t,["type","rowIndex"]),o=this.checked,a={props:(0,f.Z)({checked:o},i),on:(0,k.CL)(this)};return"radio"===n?(a.props.value=r,e(hv,a)):e($l,a)}};function cg(e){var t=e.store,n=e.getCheckboxPropsByItem,r=e.getRecordKey,i=e.data,o=e.type;return e.byDefaultChecked?i[o]((function(e,t){return n(e,t).defaultChecked})):i[o]((function(e,n){return t.selectedRowKeys.indexOf(r(e,n))>=0}))}function lg(e){var t=e.store,n=e.data;if(!n.length)return!1;var r=cg((0,f.Z)({},e,{data:n,type:"some",byDefaultChecked:!1}))&&!cg((0,f.Z)({},e,{data:n,type:"every",byDefaultChecked:!1})),i=cg((0,f.Z)({},e,{data:n,type:"some",byDefaultChecked:!0}))&&!cg((0,f.Z)({},e,{data:n,type:"every",byDefaultChecked:!0}));return t.selectionDirty?r:r||i}function ug(e){var t=e.store,n=e.data;return!!n.length&&(t.selectionDirty?cg((0,f.Z)({},e,{data:n,type:"every",byDefaultChecked:!1})):cg((0,f.Z)({},e,{data:n,type:"every",byDefaultChecked:!1}))||cg((0,f.Z)({},e,{data:n,type:"every",byDefaultChecked:!0})))}const dg={name:"SelectionCheckboxAll",mixins:[y.Z],props:Xy,data:function(){var e=this.$props;return this.defaultSelections=e.hideDefaultSelections?[]:[{key:"all",text:e.locale.selectAll},{key:"invert",text:e.locale.selectInvert}],{checked:ug(e),indeterminate:lg(e)}},watch:{$props:{handler:function(){this.setCheckState(this.$props)},deep:!0,immediate:!0}},methods:{checkSelection:function(e,t,n,r){var i=e||this.$props,o=i.store,a=i.getCheckboxPropsByItem,s=i.getRecordKey;return("every"===n||"some"===n)&&(r?t[n]((function(e,t){return a(e,t).props.defaultChecked})):t[n]((function(e,t){return o.selectedRowKeys.indexOf(s(e,t))>=0})))},setCheckState:function(e){var t=ug(e),n=lg(e);this.setState((function(e){var r={};return n!==e.indeterminate&&(r.indeterminate=n),t!==e.checked&&(r.checked=t),r}))},handleSelectAllChange:function(e){var t=e.target.checked;this.$emit("select",t?"all":"removeAll",0,null)},renderMenus:function(e){var t=this,n=this.$createElement;return e.map((function(e,r){return n(Na.Item,{key:e.key||r},[n("div",{on:{click:function(){t.$emit("select",e.key,r,e.onSelect)}}},[e.text])])}))}},render:function(){var e=arguments[0],t=this.disabled,n=this.prefixCls,r=this.selections,i=this.getPopupContainer,o=this.checked,a=this.indeterminate,s=n+"-selection",c=null;if(r){var u=Array.isArray(r)?this.defaultSelections.concat(r):this.defaultSelections,d=e(Na,{class:s+"-menu",attrs:{selectedKeys:[]}},[this.renderMenus(u)]);c=u.length>0?e(Od,{attrs:{getPopupContainer:i}},[e("template",{slot:"overlay"},[d]),e("div",{class:s+"-down"},[e(Ui,{attrs:{type:"down"}})])]):null}return e("div",{class:s},[e($l,{class:h()((0,l.Z)({},s+"-select-all-custom",c)),attrs:{checked:o,indeterminate:a,disabled:t},on:{change:this.handleSelectAllChange}}),c])}},hg={name:"ATableColumn",props:By},fg={name:"ATableColumnGroup",props:{fixed:u.Z.oneOfType([u.Z.bool,u.Z.oneOf(["left","right"])]),title:u.Z.any},__ANT_TABLE_COLUMN_GROUP:!0};var pg={store:u.Z.any,rowKey:u.Z.oneOfType([u.Z.string,u.Z.number]),prefixCls:u.Z.string};function mg(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"tr",t={name:"BodyRow",props:pg,computed:{selected:function(){return this.$props.store.selectedRowKeys.indexOf(this.$props.rowKey)>=0}},render:function(){var t=arguments[0],n=(0,l.Z)({},this.prefixCls+"-row-selected",this.selected);return t(e,c()([{class:n},{on:(0,k.CL)(this)}]),[this.$slots.default])}};return t}var vg={border:0,background:"transparent",padding:0,lineHeight:"inherit",display:"inline-block"};const yg={props:{noStyle:u.Z.bool},methods:{onKeyDown:function(e){e.keyCode===De.ENTER&&e.preventDefault()},onKeyUp:function(e){e.keyCode===De.ENTER&&this.$emit("click",e)},setRef:function(e){this.div=e},focus:function(){this.div&&this.div.focus()},blur:function(){this.div&&this.div.blur()}},render:function(){var e=arguments[0],t=this.$props.noStyle;return e("div",c()([{attrs:{role:"button",tabIndex:0}},{directives:[{name:"ant-ref",value:this.setRef}],on:(0,f.Z)({},this.$listeners,{keydown:this.onKeyDown,keyup:this.onKeyUp})},{style:(0,f.Z)({},t?null:vg)}]),[this.$slots.default])}};function gg(){}function _g(e){e.stopPropagation()}function bg(e){return e.rowSelection||{}}function Mg(e,t){return e.key||e.dataIndex||t}function wg(e,t){return!!(e&&t&&e.key&&e.key===t.key)||(e===t||at()(e,t,(function(e,t){return"function"==typeof e&&"function"==typeof t?e===t||e.toString()===t.toString():Array.isArray(e)&&Array.isArray(t)?e===t||at()(e,t):void 0})))}var kg={onChange:gg,onShowSizeChange:gg},Cg={},Lg=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=e&&e.body&&e.body.row;return(0,f.Z)({},e,{body:(0,f.Z)({},e.body,{row:mg(t)})})};function xg(e,t){return rg(t||(e||{}).columns||[],(function(e){return void 0!==e.filteredValue}))}function Sg(e,t){var n={};return xg(e,t).forEach((function(e){var t=Mg(e);n[t]=e.filteredValue})),n}const Zg={name:"Table",Column:hg,ColumnGroup:fg,mixins:[y.Z],inject:{configProvider:{default:function(){return X}}},provide:function(){return{store:this.store}},props:(0,k.SQ)(Jy,{dataSource:[],useFixedHeader:!1,size:"default",loading:!1,bordered:!1,indentSize:20,locale:{},rowKey:"key",showHeader:!0,sortDirections:["ascend","descend"],childrenColumnName:"children"}),data:function(){var e=(0,k.oZ)(this);return re(!e.expandedRowRender||!("scroll"in e)||!e.scroll.x,"`expandedRowRender` and `scroll` are not compatible. Please use one of them at one time."),this.CheckboxPropsCache={},this.store=r.default.observable({selectedRowKeys:bg(this.$props).selectedRowKeys||[],selectionDirty:!1}),(0,f.Z)({},this.getDefaultSortOrder(e.columns||[]),{sFilters:this.getDefaultFilters(e.columns),sPagination:this.getDefaultPagination(this.$props),pivot:void 0,sComponents:Lg(this.components),filterDataCnt:0})},watch:{pagination:{handler:function(e){this.setState((function(t){var n=(0,f.Z)({},kg,t.sPagination,e);return n.current=n.current||1,n.pageSize=n.pageSize||10,{sPagination:!1!==e?n:Cg}}))},deep:!0},rowSelection:{handler:function(e,t){if(e&&"selectedRowKeys"in e){this.store.selectedRowKeys=e.selectedRowKeys||[];var n=this.rowSelection;n&&e.getCheckboxProps!==n.getCheckboxProps&&(this.CheckboxPropsCache={})}else t&&!e&&(this.store.selectedRowKeys=[])},deep:!0},dataSource:function(){this.store.selectionDirty=!1,this.CheckboxPropsCache={}},columns:function(e){var t,n;if(xg({columns:e},e).length>0){var r=Sg({columns:e},e),i=(0,f.Z)({},this.sFilters);Object.keys(r).forEach((function(e){i[e]=r[e]})),t={filters:this.sFilters},n=i,(Object.keys(n).length!==Object.keys(t.filters).length||Object.keys(n).some((function(e){return n[e]!==t.filters[e]})))&&this.setState({sFilters:i})}this.$forceUpdate()},components:{handler:function(e,t){if(!function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return e===t||["table","header","body"].every((function(n){return at()(e[n],t[n])}))}(e,t)){var n=Lg(e);this.setState({sComponents:n})}},deep:!0}},updated:function(){var e=this.columns,t=this.sSortColumn,n=this.sSortOrder;if(this.getSortOrderColumns(e).length>0){var r=this.getSortStateFromColumns(e);wg(r.sSortColumn,t)&&r.sSortOrder===n||this.setState(r)}},methods:{getCheckboxPropsByItem:function(e,t){var n=bg(this.$props);if(!n.getCheckboxProps)return{props:{}};var r=this.getRecordKey(e,t);return this.CheckboxPropsCache[r]||(this.CheckboxPropsCache[r]=n.getCheckboxProps(e)),this.CheckboxPropsCache[r].props=this.CheckboxPropsCache[r].props||{},this.CheckboxPropsCache[r]},getDefaultSelection:function(){var e=this;return bg(this.$props).getCheckboxProps?this.getFlatData().filter((function(t,n){return e.getCheckboxPropsByItem(t,n).props.defaultChecked})).map((function(t,n){return e.getRecordKey(t,n)})):[]},getDefaultPagination:function(e){var t="object"===(0,w.Z)(e.pagination)?e.pagination:{},n=void 0;"current"in t?n=t.current:"defaultCurrent"in t&&(n=t.defaultCurrent);var r=void 0;return"pageSize"in t?r=t.pageSize:"defaultPageSize"in t&&(r=t.defaultPageSize),this.hasPagination(e)?(0,f.Z)({},kg,t,{current:n||1,pageSize:r||10}):{}},getSortOrderColumns:function(e){return rg(e||this.columns||[],(function(e){return"sortOrder"in e}))},getDefaultFilters:function(e){var t=Sg({columns:this.columns},e),n=rg(e||[],(function(e){return void 0!==e.defaultFilteredValue})).reduce((function(e,t){return e[Mg(t)]=t.defaultFilteredValue,e}),{});return(0,f.Z)({},n,t)},getDefaultSortOrder:function(e){var t=this.getSortStateFromColumns(e),n=rg(e||[],(function(e){return null!=e.defaultSortOrder}))[0];return n&&!t.sortColumn?{sSortColumn:n,sSortOrder:n.defaultSortOrder}:t},getSortStateFromColumns:function(e){var t=this.getSortOrderColumns(e).filter((function(e){return e.sortOrder}))[0];return t?{sSortColumn:t,sSortOrder:t.sortOrder}:{sSortColumn:null,sSortOrder:null}},getMaxCurrent:function(e){var t=this.sPagination,n=t.current,r=t.pageSize;return(n-1)*r>=e?Math.floor((e-1)/r)+1:n},getRecordKey:function(e,t){var n=this.rowKey,r="function"==typeof n?n(e,t):e[n];return re(void 0!==r,"Table","Each record in dataSource of table should have a unique `key` prop, or set `rowKey` of Table to an unique primary key, "),void 0===r?t:r},getSorterFn:function(e){var t=e||this.$data,n=t.sSortOrder,r=t.sSortColumn;if(n&&r&&"function"==typeof r.sorter)return function(e,t){var i=r.sorter(e,t,n);return 0!==i?"descend"===n?-i:i:0}},getCurrentPageData:function(){var e=this.getLocalData();this.filterDataCnt=e.length;var t=void 0,n=void 0,r=this.sPagination;return this.hasPagination()?(n=r.pageSize,t=this.getMaxCurrent(r.total||e.length)):(n=Number.MAX_VALUE,t=1),(e.length>n||n===Number.MAX_VALUE)&&(e=e.slice((t-1)*n,t*n)),e},getFlatData:function(){var e=this.$props.childrenColumnName;return tg(this.getLocalData(null,!1),e)},getFlatCurrentPageData:function(){var e=this.$props.childrenColumnName;return tg(this.getCurrentPageData(),e)},getLocalData:function(e){var t=this,n=!(arguments.length>1&&void 0!==arguments[1])||arguments[1],r=e||this.$data,i=r.sFilters,o=this.$props.dataSource,a=o||[];a=a.slice(0);var s=this.getSorterFn(r);return s&&(a=this.recursiveSort([].concat((0,g.Z)(a)),s)),n&&i&&Object.keys(i).forEach((function(e){var n=t.findColumn(e);if(n){var r=i[e]||[];if(0!==r.length){var o=n.onFilter;a=o?a.filter((function(e){return r.some((function(t){return o(t,e)}))})):a}}})),a},onRow:function(e,t,n){var r=this.customRow,i=r?r(t,n):{};return(0,k.dG)(i,{props:{prefixCls:e,store:this.store,rowKey:this.getRecordKey(t,n)}})},setSelectedRowKeys:function(e,t){var n=this,r=t.selectWay,i=t.record,o=t.checked,a=t.changeRowKeys,s=t.nativeEvent,c=bg(this.$props);c&&!("selectedRowKeys"in c)&&(this.store.selectedRowKeys=e);var l=this.getFlatData();if(c.onChange||c[r]){var u=l.filter((function(t,r){return e.indexOf(n.getRecordKey(t,r))>=0}));if(c.onChange&&c.onChange(e,u),"onSelect"===r&&c.onSelect)c.onSelect(i,o,u,s);else if("onSelectMultiple"===r&&c.onSelectMultiple){var d=l.filter((function(e,t){return a.indexOf(n.getRecordKey(e,t))>=0}));c.onSelectMultiple(o,u,d)}else if("onSelectAll"===r&&c.onSelectAll){var h=l.filter((function(e,t){return a.indexOf(n.getRecordKey(e,t))>=0}));c.onSelectAll(o,u,h)}else"onSelectInvert"===r&&c.onSelectInvert&&c.onSelectInvert(e)}},generatePopupContainerFunc:function(e){var t=this.$props.scroll,n=this.$refs.vcTable;return e||(t&&n?function(){return n.getTableNode()}:void 0)},scrollToFirstRow:function(){var e=this,t=this.$props.scroll;t&&!1!==t.scrollToFirstRowOnChange&&Me(0,{getContainer:function(){return e.$refs.vcTable.getBodyTable()}})},isSameColumn:function(e,t){return!!(e&&t&&e.key&&e.key===t.key)||(e===t||at()(e,t,(function(e,t){if("function"==typeof e&&"function"==typeof t)return e===t||e.toString()===t.toString()})))},handleFilter:function(e,t){var n=this,r=this.$props,i=(0,f.Z)({},this.sPagination),o=(0,f.Z)({},this.sFilters,(0,l.Z)({},Mg(e),t)),a=[];ng(this.columns,(function(e){e.children||a.push(Mg(e))})),Object.keys(o).forEach((function(e){a.indexOf(e)<0&&delete o[e]})),r.pagination&&(i.current=1,i.onChange(i.current));var s={sPagination:i,sFilters:{}},c=(0,f.Z)({},o);xg({columns:r.columns}).forEach((function(e){var t=Mg(e);t&&delete c[t]})),Object.keys(c).length>0&&(s.sFilters=c),"object"===(0,w.Z)(r.pagination)&&"current"in r.pagination&&(s.sPagination=(0,f.Z)({},i,{current:this.sPagination.current})),this.setState(s,(function(){n.scrollToFirstRow(),n.store.selectionDirty=!1,n.$emit.apply(n,["change"].concat((0,g.Z)(n.prepareParamsArguments((0,f.Z)({},n.$data,{sSelectionDirty:!1,sFilters:o,sPagination:i})))))}))},handleSelect:function(e,t,n){var r=this,i=n.target.checked,o=n.nativeEvent,a=this.store.selectionDirty?[]:this.getDefaultSelection(),s=this.store.selectedRowKeys.concat(a),c=this.getRecordKey(e,t),l=this.$data.pivot,u=this.getFlatCurrentPageData(),d=t;if(this.$props.expandedRowRender&&(d=u.findIndex((function(e){return r.getRecordKey(e,t)===c}))),o.shiftKey&&void 0!==l&&d!==l){for(var h=[],f=Math.sign(l-d),p=Math.abs(l-d),m=0,v=function(){var e=d+m*f;m+=1;var t=u[e],n=r.getRecordKey(t,e);r.getCheckboxPropsByItem(t,e).disabled||(s.includes(n)?i||(s=s.filter((function(e){return n!==e})),h.push(n)):i&&(s.push(n),h.push(n)))};m<=p;)v();this.setState({pivot:d}),this.store.selectionDirty=!0,this.setSelectedRowKeys(s,{selectWay:"onSelectMultiple",record:e,checked:i,changeRowKeys:h,nativeEvent:o})}else i?s.push(this.getRecordKey(e,d)):s=s.filter((function(e){return c!==e})),this.setState({pivot:d}),this.store.selectionDirty=!0,this.setSelectedRowKeys(s,{selectWay:"onSelect",record:e,checked:i,changeRowKeys:void 0,nativeEvent:o})},handleRadioSelect:function(e,t,n){var r=n.target.checked,i=n.nativeEvent,o=[this.getRecordKey(e,t)];this.store.selectionDirty=!0,this.setSelectedRowKeys(o,{selectWay:"onSelect",record:e,checked:r,changeRowKeys:void 0,nativeEvent:i})},handleSelectRow:function(e,t,n){var r=this,i=this.getFlatCurrentPageData(),o=this.store.selectionDirty?[]:this.getDefaultSelection(),a=this.store.selectedRowKeys.concat(o),s=i.filter((function(e,t){return!r.getCheckboxPropsByItem(e,t).props.disabled})).map((function(e,t){return r.getRecordKey(e,t)})),c=[],l="onSelectAll",u=void 0;switch(e){case"all":s.forEach((function(e){a.indexOf(e)<0&&(a.push(e),c.push(e))})),l="onSelectAll",u=!0;break;case"removeAll":s.forEach((function(e){a.indexOf(e)>=0&&(a.splice(a.indexOf(e),1),c.push(e))})),l="onSelectAll",u=!1;break;case"invert":s.forEach((function(e){a.indexOf(e)<0?a.push(e):a.splice(a.indexOf(e),1),c.push(e),l="onSelectInvert"}))}this.store.selectionDirty=!0;var d=this.rowSelection,h=2;if(d&&d.hideDefaultSelections&&(h=0),t>=h&&"function"==typeof n)return n(s);this.setSelectedRowKeys(a,{selectWay:l,checked:u,changeRowKeys:c})},handlePageChange:function(e){var t=this.$props,n=(0,f.Z)({},this.sPagination);n.current=e||(n.current||1);for(var r=arguments.length,i=Array(r>1?r-1:0),o=1;o0&&(o===t||"both"===o)?n(Gf,u):null},renderSelectionBox:function(e){var t=this,n=this.$createElement;return function(r,i,o){var a=t.getRecordKey(i,o),s=t.getCheckboxPropsByItem(i,o),c=(0,k.dG)({props:{type:e,store:t.store,rowIndex:a,defaultSelection:t.getDefaultSelection()},on:{change:function(n){"radio"===e?t.handleRadioSelect(i,o,n):t.handleSelect(i,o,n)}}},s);return n("span",{on:{click:_g}},[n(sg,c)])}},renderRowSelection:function(e){var t=this,n=e.prefixCls,r=e.locale,i=e.getPopupContainer,o=this.$createElement,a=this.rowSelection,s=this.columns.concat();if(a){var c=this.getFlatCurrentPageData().filter((function(e,n){return!a.getCheckboxProps||!t.getCheckboxPropsByItem(e,n).props.disabled})),u=h()(n+"-selection-column",(0,l.Z)({},n+"-selection-column-custom",a.selections)),d=(0,l.Z)({key:"selection-column",customRender:this.renderSelectionBox(a.type),className:u,fixed:a.fixed,width:a.columnWidth,title:a.columnTitle},by,{class:n+"-selection-col"});if("radio"!==a.type){var f=c.every((function(e,n){return t.getCheckboxPropsByItem(e,n).props.disabled}));d.title=d.title||o(dg,{attrs:{store:this.store,locale:r,data:c,getCheckboxPropsByItem:this.getCheckboxPropsByItem,getRecordKey:this.getRecordKey,disabled:f,prefixCls:n,selections:a.selections,hideDefaultSelections:a.hideDefaultSelections,getPopupContainer:this.generatePopupContainerFunc(i)},on:{select:this.handleSelectRow}})}"fixed"in a?d.fixed=a.fixed:s.some((function(e){return"left"===e.fixed||!0===e.fixed}))&&(d.fixed="left"),s[0]&&"selection-column"===s[0].key?s[0]=d:s.unshift(d)}return s},renderColumnsDropdown:function(e){var t=this,n=e.prefixCls,r=e.dropdownPrefixCls,i=e.columns,o=e.locale,a=e.getPopupContainer,s=this.$createElement,c=this.sSortOrder,u=this.sFilters;return ng(i,(function(e,i){var d,p=Mg(e,i),m=void 0,v=void 0,y=e.customHeaderCell,g=t.isSortColumn(e);if(e.filters&&e.filters.length>0||e.filterDropdown){var _=p in u?u[p]:[];m=s(ag,{attrs:{_propsSymbol:Symbol(),locale:o,column:e,selectedKeys:_,confirmFilter:t.handleFilter,prefixCls:n+"-filter",dropdownPrefixCls:r||"ant-dropdown",getPopupContainer:t.generatePopupContainerFunc(a)},key:"filter-dropdown"})}if(e.sorter){var b=e.sortDirections||t.sortDirections,M=g&&"ascend"===c,w=g&&"descend"===c,k=-1!==b.indexOf("ascend")&&s(Ui,{class:n+"-column-sorter-up "+(M?"on":"off"),attrs:{type:"caret-up",theme:"filled"},key:"caret-up"}),C=-1!==b.indexOf("descend")&&s(Ui,{class:n+"-column-sorter-down "+(w?"on":"off"),attrs:{type:"caret-down",theme:"filled"},key:"caret-down"});v=s("div",{attrs:{title:o.sortTitle},class:h()(n+"-column-sorter-inner",k&&C&&n+"-column-sorter-inner-full"),key:"sorter"},[k,C]),y=function(n){var r={};e.customHeaderCell&&(r=(0,f.Z)({},e.customHeaderCell(n))),r.on=r.on||{};var i=r.on.click;return r.on.click=function(){t.toggleSortOrder(e),i&&i.apply(void 0,arguments)},r}}return(0,f.Z)({},e,{className:h()(e.className,(d={},(0,l.Z)(d,n+"-column-has-actions",v||m),(0,l.Z)(d,n+"-column-has-filters",m),(0,l.Z)(d,n+"-column-has-sorters",v),(0,l.Z)(d,n+"-column-sort",g&&c),d)),title:[s("span",{key:"title",class:n+"-header-column"},[s("div",{class:v?n+"-column-sorters":void 0},[s("span",{class:n+"-column-title"},[t.renderColumnTitle(e.title)]),s("span",{class:n+"-column-sorter"},[v])])]),m],customHeaderCell:y})}))},renderColumnTitle:function(e){var t=this.$data,n=t.sFilters,r=t.sSortOrder,i=t.sSortColumn;return e instanceof Function?e({filters:n,sortOrder:r,sortColumn:i}):e},renderTable:function(e){var t,n=this,r=e.prefixCls,i=e.renderEmpty,o=e.dropdownPrefixCls,a=e.contextLocale,s=e.getPopupContainer,c=e.transformCellText,u=this.$createElement,d=(0,k.oZ)(this),p=d.showHeader,m=d.locale,v=d.getPopupContainer,y=(0,Oe.Z)(d,["showHeader","locale","getPopupContainer"]),g=this.getCurrentPageData(),_=this.expandedRowRender&&!1!==this.expandIconAsCell,b=v||s,M=(0,f.Z)({},a,m);m&&m.emptyText||(M.emptyText=i(u,"Table"));var w=h()((t={},(0,l.Z)(t,r+"-"+this.size,!0),(0,l.Z)(t,r+"-bordered",this.bordered),(0,l.Z)(t,r+"-empty",!g.length),(0,l.Z)(t,r+"-without-column-header",!p),t)),C=this.renderRowSelection({prefixCls:r,locale:M,getPopupContainer:b}),L=this.renderColumnsDropdown({columns:C,prefixCls:r,dropdownPrefixCls:o,locale:M,getPopupContainer:b}).map((function(e,t){var n=(0,f.Z)({},e);return n.key=Mg(n,t),n})),x=L[0]&&"selection-column"===L[0].key?1:0;"expandIconColumnIndex"in y&&(x=y.expandIconColumnIndex);var S={key:"table",props:(0,f.Z)({expandIcon:this.renderExpandIcon(r)},y,{customRow:function(e,t){return n.onRow(r,e,t)},components:this.sComponents,prefixCls:r,data:g,columns:L,showHeader:p,expandIconColumnIndex:x,expandIconAsCell:_,emptyText:M.emptyText,transformCellText:c}),on:(0,k.CL)(this),class:w,ref:"vcTable"};return u($y,S)}},render:function(){var e=this,t=arguments[0],n=this.prefixCls,r=this.dropdownPrefixCls,i=this.transformCellText,o=this.getCurrentPageData(),a=this.configProvider,s=a.getPopupContainer,c=a.transformCellText,l=this.getPopupContainer||s,u=i||c,d=this.loading;d="boolean"==typeof d?{props:{spinning:d}}:{props:(0,f.Z)({},d)};var p=this.configProvider.getPrefixCls,m=this.configProvider.renderEmpty,v=p("table",n),y=p("dropdown",r),g=t(O,{attrs:{componentName:"Table",defaultLocale:z.Table,children:function(t){return e.renderTable({prefixCls:v,renderEmpty:m,dropdownPrefixCls:y,contextLocale:t,getPopupContainer:l,transformCellText:u})}}}),_=this.hasPagination()&&o&&0!==o.length?v+"-with-pagination":v+"-without-pagination",b=(0,f.Z)({},d,{class:d.props&&d.props.spinning?_+" "+v+"-spin-holder":""});return t("div",{class:h()(v+"-wrapper")},[t(jf,b,[this.renderPagination(v,"top"),g,this.renderPagination(v,"bottom")])])}};r.default.use(D.Z,{name:"ant-ref"});var Tg={name:"ATable",Column:Zg.Column,ColumnGroup:Zg.ColumnGroup,props:Zg.props,methods:{normalize:function(){var e=this,t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[],n=[];return t.forEach((function(t){if(t.tag){var r=(0,k.km)(t),i=(0,k.C2)(t),o=(0,k.ll)(t),a=(0,k.oZ)(t),s=(0,k.vw)(t),c={};Object.keys(s).forEach((function(e){var t=void 0;t=e.startsWith("update:")?"on-"+e.substr("update:".length)+"-change":"on-"+e,c[(0,k._A)(t)]=s[e]}));var l=(0,k.FJ)(t),u=l.default,d=(0,Oe.Z)(l,["default"]),h=(0,f.Z)({},d,a,{style:i,class:o},c);if(r&&(h.key=r),(0,k.cV)(t).__ANT_TABLE_COLUMN_GROUP)h.children=e.normalize("function"==typeof u?u():u);else{var p=t.data&&t.data.scopedSlots&&t.data.scopedSlots.default;h.customRender=h.customRender||p}n.push(h)}})),n},updateColumns:function(){var e=this,t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[],n=[],r=this.$slots,i=this.$scopedSlots;return t.forEach((function(t){var o=t.slots,a=void 0===o?{}:o,s=t.scopedSlots,c=void 0===s?{}:s,l=(0,Oe.Z)(t,["slots","scopedSlots"]),u=(0,f.Z)({},l);Object.keys(a).forEach((function(e){var t=a[e];void 0===u[e]&&r[t]&&(u[e]=1===r[t].length?r[t][0]:r[t])})),Object.keys(c).forEach((function(e){var t=c[e];void 0===u[e]&&i[t]&&(u[e]=i[t])})),t.children&&(u.children=e.updateColumns(u.children)),n.push(u)})),n}},render:function(){var e=arguments[0],t=this.$slots,n=this.normalize,r=this.$scopedSlots,i=(0,k.oZ)(this),o=i.columns?this.updateColumns(i.columns):n(t.default),a=i.title,s=i.footer,c=r.title,l=r.footer,u=r.expandedRowRender,d=void 0===u?i.expandedRowRender:u;a=a||c,s=s||l;var h={props:(0,f.Z)({},i,{columns:o,title:a,footer:s,expandedRowRender:d}),on:(0,k.CL)(this)};return e(Zg,h)},install:function(e){e.use(B),e.component(Tg.name,Tg),e.component(Tg.Column.name,Tg.Column),e.component(Tg.ColumnGroup.name,Tg.ColumnGroup)}};const zg=Tg;var Og={prefixCls:u.Z.string,placeholder:u.Z.string,value:u.Z.any,handleClear:u.Z.func,disabled:u.Z.bool};const Hg={name:"Search",props:(0,k.SQ)(Og,{placeholder:""}),methods:{handleChange:function(e){this.$emit("change",e)},handleClear2:function(e){e.preventDefault();var t=this.$props,n=t.handleClear;!t.disabled&&n&&n(e)}},render:function(){var e=arguments[0],t=(0,k.oZ)(this),n=t.placeholder,r=t.value,i=t.prefixCls,o=t.disabled,a=r&&r.length>0?e("a",{attrs:{href:"#"},class:i+"-action",on:{click:this.handleClear2}},[e(Ui,{attrs:{type:"close-circle",theme:"filled"}})]):e("span",{class:i+"-action"},[e(Ui,{attrs:{type:"search"}})]);return e("div",[e(jo,{attrs:{placeholder:n,value:r,disabled:o},class:i,on:{change:this.handleChange}}),a])}};var Dg=n(23493),Vg=n.n(Dg),Pg=function(e,t){return"undefined"!=typeof getComputedStyle?window.getComputedStyle(e,null).getPropertyValue(t):e.style[t]},Yg=function(e){return Pg(e,"overflow")+Pg(e,"overflow-y")+Pg(e,"overflow-x")};const Ag=function(e){if(!(e instanceof window.HTMLElement))return window;for(var t=e;t&&t!==document.body&&t!==document.documentElement&&t.parentNode;){if(/(scroll|auto)/.test(Yg(t)))return t;t=t.parentNode}return window};function jg(e){var t=e.getBoundingClientRect();return{top:t.top+window.pageYOffset,left:t.left+window.pageXOffset}}var Eg={debounce:u.Z.bool,elementType:u.Z.string,height:u.Z.oneOfType([u.Z.string,u.Z.number]),offset:u.Z.number,offsetBottom:u.Z.number,offsetHorizontal:u.Z.number,offsetLeft:u.Z.number,offsetRight:u.Z.number,offsetTop:u.Z.number,offsetVertical:u.Z.number,threshold:u.Z.number,throttle:u.Z.number,width:u.Z.oneOfType([u.Z.string,u.Z.number]),_propsSymbol:u.Z.any};const $g={name:"LazyLoad",mixins:[y.Z],props:(0,k.SQ)(Eg,{elementType:"div",debounce:!0,offset:0,offsetBottom:0,offsetHorizontal:0,offsetLeft:0,offsetRight:0,offsetTop:0,offsetVertical:0,throttle:250}),data:function(){return this.throttle>0&&(this.debounce?this.lazyLoadHandler=Lc()(this.lazyLoadHandler,this.throttle):this.lazyLoadHandler=Vg()(this.lazyLoadHandler,this.throttle)),{visible:!1}},watch:{_propsSymbol:function(){this.visible||this.lazyLoadHandler()}},mounted:function(){var e=this;this.$nextTick((function(){e._mounted=!0;var t=e.getEventNode();e.lazyLoadHandler(),e.lazyLoadHandler.flush&&e.lazyLoadHandler.flush(),e.resizeHander=ae(window,"resize",e.lazyLoadHandler),e.scrollHander=ae(t,"scroll",e.lazyLoadHandler)}))},beforeDestroy:function(){this._mounted=!1,this.lazyLoadHandler.cancel&&this.lazyLoadHandler.cancel(),this.detachListeners()},methods:{getEventNode:function(){return Ag(this.$el)},getOffset:function(){var e=this.$props,t=e.offset,n=e.offsetVertical,r=e.offsetHorizontal,i=e.offsetTop,o=e.offsetBottom,a=e.offsetLeft,s=e.offsetRight,c=e.threshold||t,l=n||c,u=r||c;return{top:i||l,bottom:o||l,left:a||u,right:s||u}},lazyLoadHandler:function(){var e=this;if(this._mounted){var t=this.getOffset();(function(e,t,n){if(function(e){return null===e.offsetParent}(e))return!1;var r=void 0,i=void 0,o=void 0,a=void 0;if(void 0===t||t===window)r=window.pageYOffset,o=window.pageXOffset,i=r+window.innerHeight,a=o+window.innerWidth;else{var s=jg(t);r=s.top,o=s.left,i=r+t.offsetHeight,a=o+t.offsetWidth}var c=jg(e);return r<=c.top+e.offsetHeight+n.top&&i>=c.top-n.bottom&&o<=c.left+e.offsetWidth+n.left&&a>=c.left-n.right})(this.$el,this.getEventNode(),t)&&(this.setState({visible:!0},(function(){e.__emit("contentVisible")})),this.detachListeners())}},detachListeners:function(){this.resizeHander&&this.resizeHander.remove(),this.scrollHander&&this.scrollHander.remove()}},render:function(e){var t=this.$slots.default;if(1!==t.length)return re(!1,"lazyLoad组件只能包含一个子元素"),null;var n=this.$props,r=n.height,i=n.width,o=n.elementType,a=this.visible;return e(o,{class:{LazyLoad:!0,"is-visible":a},style:{height:"number"==typeof r?r+"px":r,width:"number"==typeof i?i+"px":i}},[a?t[0]:null])}};function Fg(){}const Ig={name:"ListItem",props:{renderedText:u.Z.any,renderedEl:u.Z.any,item:u.Z.any,lazy:u.Z.oneOfType([u.Z.bool,u.Z.object]),checked:u.Z.bool,prefixCls:u.Z.string,disabled:u.Z.bool},render:function(){var e,t=this,n=arguments[0],r=this.$props,i=r.renderedText,o=r.renderedEl,a=r.item,s=r.lazy,c=r.checked,u=r.disabled,d=r.prefixCls,p=h()((e={},(0,l.Z)(e,d+"-content-item",!0),(0,l.Z)(e,d+"-content-item-disabled",u||a.disabled),e)),m=void 0;"string"!=typeof i&&"number"!=typeof i||(m=String(i));var v=n("li",{class:p,attrs:{title:m},on:{click:u||a.disabled?Fg:function(){t.$emit("click",a)}}},[n($l,{attrs:{checked:c,disabled:u||a.disabled}}),n("span",{class:d+"-content-item-text"},[o])]),y=null;if(s){var g={props:(0,f.Z)({height:32,offset:500,throttle:0,debounce:!1},s,{_propsSymbol:Symbol()})};y=n($g,g,[v])}else y=v;return y}};function Ng(){}var Rg={name:"ListBody",inheritAttrs:!1,props:{prefixCls:u.Z.string,filteredRenderItems:u.Z.array.def([]),lazy:u.Z.oneOfType([u.Z.bool,u.Z.object]),selectedKeys:u.Z.array,disabled:u.Z.bool},data:function(){return{mounted:!1}},computed:{itemsLength:function(){return this.filteredRenderItems?this.filteredRenderItems.length:0}},watch:{itemsLength:function(){var e=this;this.$nextTick((function(){if(!1!==e.$props.lazy){var t=e.$el;fo.cancel(e.lazyId),e.lazyId=fo((function(){if(t){var e=new Event("scroll",{bubbles:!0});t.dispatchEvent(e)}}))}}))}},mounted:function(){var e=this;this.mountId=fo((function(){e.mounted=!0}))},beforeDestroy:function(){fo.cancel(this.mountId),fo.cancel(this.lazyId)},methods:{onItemSelect:function(e){var t=this.$props.selectedKeys.indexOf(e.key)>=0;this.$emit("itemSelect",e.key,!t)},onScroll:function(e){this.$emit("scroll",e)}},render:function(){var e=this,t=arguments[0],n=this.$data.mounted,r=this.$props,i=r.prefixCls,o=r.filteredRenderItems,a=r.lazy,s=r.selectedKeys,l=r.disabled,u=o.map((function(n){var r=n.renderedEl,o=n.renderedText,c=n.item,u=c.disabled,d=s.indexOf(c.key)>=0;return t(Ig,{attrs:{disabled:l||u,item:c,lazy:a,renderedText:o,renderedEl:r,checked:d,prefixCls:i},key:c.key,on:{click:e.onItemSelect}})})),d=dn(n?i+"-content-item-highlight":"",{tag:"ul",nativeOn:{scroll:this.onScroll},leave:Ng});return t("transition-group",c()([{class:i+"-content"},d]),[u])}};var Wg=function(){return null},Kg={key:u.Z.string.isRequired,title:u.Z.string.isRequired,description:u.Z.string,disabled:u.Z.bool};var Bg={prefixCls:u.Z.string,titleText:u.Z.string,dataSource:u.Z.arrayOf(u.Z.shape(Kg).loose),filter:u.Z.string,filterOption:u.Z.func,checkedKeys:u.Z.arrayOf(u.Z.string),handleFilter:u.Z.func,handleSelect:u.Z.func,handleSelectAll:u.Z.func,handleClear:u.Z.func,renderItem:u.Z.func,showSearch:u.Z.bool,searchPlaceholder:u.Z.string,notFoundContent:u.Z.any,itemUnit:u.Z.string,itemsUnit:u.Z.string,body:u.Z.any,renderList:u.Z.any,footer:u.Z.any,lazy:u.Z.oneOfType([u.Z.bool,u.Z.object]),disabled:u.Z.bool,direction:u.Z.string,showSelectAll:u.Z.bool};function Ug(e,t,n){var r=t?t(n):null,i=!!r;return i||(r=function(e,t){return e(Rg,t)}(e,n)),{customize:i,bodyContent:r}}const qg={name:"TransferList",mixins:[y.Z],props:(0,k.SQ)(Bg,{dataSource:[],titleText:"",showSearch:!1,lazy:{}}),data:function(){return this.timer=null,this.triggerScrollTimer=null,{filterValue:""}},beforeDestroy:function(){clearTimeout(this.triggerScrollTimer)},updated:function(){var e=this;this.$nextTick((function(){if(e.scrollEvent&&e.scrollEvent.remove(),e.$refs.listContentWrapper){var t=e.$refs.listContentWrapper.$el;e.scrollEvent=ae(t,"scroll",e.handleScroll)}}))},methods:{handleScroll:function(e){this.$emit("scroll",e)},getCheckStatus:function(e){var t=this.$props.checkedKeys;return 0===t.length?"none":e.every((function(e){return t.indexOf(e.key)>=0||!!e.disabled}))?"all":"part"},getFilteredItems:function(e,t){var n=this,r=[],i=[];return e.forEach((function(e){var o=n.renderItemHtml(e),a=o.renderedText;if(t&&t.trim()&&!n.matchFilter(a,e))return null;r.push(e),i.push(o)})),{filteredItems:r,filteredRenderItems:i}},getListBody:function(e,t,n,r,i,o,a,s,c,l,u){var d=this.$createElement,p=l?d("div",{class:e+"-body-search-wrapper"},[d(Hg,{attrs:{prefixCls:e+"-search",handleClear:this._handleClear,placeholder:t,value:n,disabled:u},on:{change:this._handleFilter}})]):null,m=o;if(!m){var v=void 0,y=Ug(this.$createElement,c,{props:(0,f.Z)({},this.$props,{filteredItems:r,filteredRenderItems:a,selectedKeys:s}),on:(0,k.CL)(this)}),g=y.bodyContent;v=y.customize?d("div",{class:e+"-body-customize-wrapper"},[g]):r.length?g:d("div",{class:e+"-body-not-found"},[i]),m=d("div",{class:h()(l?e+"-body "+e+"-body-with-search":e+"-body")},[p,v])}return m},getCheckBox:function(e,t,n){var r=this,i=this.$createElement,o=this.getCheckStatus(e),a="all"===o;return!1!==t&&i($l,{attrs:{disabled:n,checked:a,indeterminate:"part"===o},on:{change:function(){r.$emit("itemSelectAll",e.filter((function(e){return!e.disabled})).map((function(e){return e.key})),!a)}}})},_handleSelect:function(e){var t=this.$props.checkedKeys.some((function(t){return t===e.key}));this.handleSelect(e,!t)},_handleFilter:function(e){var t=this,n=this.$props.handleFilter,r=e.target.value;this.setState({filterValue:r}),n(e),r&&(this.triggerScrollTimer=setTimeout((function(){var e=t.$el.querySelectorAll(".ant-transfer-list-content")[0];e&&function(e,t){if("createEvent"in document){var n=document.createEvent("HTMLEvents");n.initEvent(t,!1,!0),e.dispatchEvent(n)}}(e,"scroll")}),0))},_handleClear:function(e){this.setState({filterValue:""}),this.handleClear(e)},matchFilter:function(e,t){var n=this.$data.filterValue,r=this.$props.filterOption;return r?r(n,t):e.indexOf(n)>=0},renderItemHtml:function(e){var t=this.$props.renderItem,n=(void 0===t?Wg:t)(e),r=function(e){return e&&!(0,k.l$)(e)&&"[object Object]"===Object.prototype.toString.call(e)}(n);return{renderedText:r?n.value:n,renderedEl:r?n.label:n,item:e}},filterNull:function(e){return e.filter((function(e){return null!==e}))}},render:function(){var e=arguments[0],t=this.$data.filterValue,n=this.$props,r=n.prefixCls,i=n.dataSource,o=n.titleText,a=n.checkedKeys,s=n.disabled,c=n.body,u=n.footer,d=n.showSearch,p=n.searchPlaceholder,m=n.notFoundContent,v=n.itemUnit,y=n.itemsUnit,g=n.renderList,_=n.showSelectAll,b=u&&u((0,f.Z)({},this.$props)),M=c&&c((0,f.Z)({},this.$props)),w=h()(r,(0,l.Z)({},r+"-with-footer",!!b)),k=this.getFilteredItems(i,t),C=k.filteredItems,L=k.filteredRenderItems,x=i.length>1?y:v,S=this.getListBody(r,p,t,C,m,M,L,a,g,d,s),Z=b?e("div",{class:r+"-footer"},[b]):null,T=this.getCheckBox(C,_,s);return e("div",{class:w},[e("div",{class:r+"-header"},[T,e("span",{class:r+"-header-selected"},[e("span",[(a.length>0?a.length+"/":"")+C.length," ",x]),e("span",{class:r+"-header-title"},[o])])]),S,Z])}};function Gg(){}var Jg={className:u.Z.string,leftArrowText:u.Z.string,rightArrowText:u.Z.string,moveToLeft:u.Z.any,moveToRight:u.Z.any,leftActive:u.Z.bool,rightActive:u.Z.bool,disabled:u.Z.bool};const Xg={name:"Operation",props:(0,f.Z)({},Jg),render:function(){var e=arguments[0],t=(0,k.oZ)(this),n=t.disabled,r=t.moveToLeft,i=void 0===r?Gg:r,o=t.moveToRight,a=void 0===o?Gg:o,s=t.leftArrowText,c=void 0===s?"":s,l=t.rightArrowText,u=void 0===l?"":l,d=t.leftActive,h=t.rightActive;return e("div",[e(Vo,{attrs:{type:"primary",size:"small",disabled:n||!h,icon:"right"},on:{click:a}},[u]),e(Vo,{attrs:{type:"primary",size:"small",disabled:n||!d,icon:"left"},on:{click:i}},[c])])}};var Qg={key:u.Z.string.isRequired,title:u.Z.string.isRequired,description:u.Z.string,disabled:u.Z.bool},e_={prefixCls:u.Z.string,dataSource:u.Z.arrayOf(u.Z.shape(Qg).loose),disabled:u.Z.boolean,targetKeys:u.Z.arrayOf(u.Z.string),selectedKeys:u.Z.arrayOf(u.Z.string),render:u.Z.func,listStyle:u.Z.oneOfType([u.Z.func,u.Z.object]),operationStyle:u.Z.object,titles:u.Z.arrayOf(u.Z.string),operations:u.Z.arrayOf(u.Z.string),showSearch:u.Z.bool,filterOption:u.Z.func,searchPlaceholder:u.Z.string,notFoundContent:u.Z.any,locale:u.Z.object,rowKey:u.Z.func,lazy:u.Z.oneOfType([u.Z.object,u.Z.bool]),showSelectAll:u.Z.bool},t_=(u.Z.arrayOf(u.Z.string),u.Z.string,u.Z.string,u.Z.string,{name:"ATransfer",mixins:[y.Z],props:(0,k.SQ)(e_,{dataSource:[],locale:{},showSearch:!1,listStyle:function(){}}),inject:{configProvider:{default:function(){return X}}},data:function(){var e=this.selectedKeys,t=void 0===e?[]:e,n=this.targetKeys,r=void 0===n?[]:n;return{leftFilter:"",rightFilter:"",sourceSelectedKeys:t.filter((function(e){return-1===r.indexOf(e)})),targetSelectedKeys:t.filter((function(e){return r.indexOf(e)>-1}))}},mounted:function(){},watch:{targetKeys:function(){if(this.updateState(),this.selectedKeys){var e=this.targetKeys||[];this.setState({sourceSelectedKeys:this.selectedKeys.filter((function(t){return!e.includes(t)})),targetSelectedKeys:this.selectedKeys.filter((function(t){return e.includes(t)}))})}},dataSource:function(){this.updateState()},selectedKeys:function(){if(this.selectedKeys){var e=this.targetKeys||[];this.setState({sourceSelectedKeys:this.selectedKeys.filter((function(t){return!e.includes(t)})),targetSelectedKeys:this.selectedKeys.filter((function(t){return e.includes(t)}))})}}},methods:{getSelectedKeysName:function(e){return"left"===e?"sourceSelectedKeys":"targetSelectedKeys"},getTitles:function(e){return this.titles?this.titles:e.titles||["",""]},getLocale:function(e,t){var n={notFoundContent:t(this.$createElement,"Transfer")},r=(0,k.rj)(this,"notFoundContent");return r&&(n.notFoundContent=r),(0,k.m2)(this,"searchPlaceholder")&&(n.searchPlaceholder=this.$props.searchPlaceholder),(0,f.Z)({},e,n,this.$props.locale)},updateState:function(){var e=this.sourceSelectedKeys,t=this.targetSelectedKeys;if(this.separatedDataSource=null,!this.selectedKeys){var n=this.dataSource,r=this.targetKeys,i=void 0===r?[]:r,o=[],a=[];n.forEach((function(n){var r=n.key;e.includes(r)&&!i.includes(r)&&o.push(r),t.includes(r)&&i.includes(r)&&a.push(r)})),this.setState({sourceSelectedKeys:o,targetSelectedKeys:a})}},moveTo:function(e){var t=this.$props,n=t.targetKeys,r=void 0===n?[]:n,i=t.dataSource,o=void 0===i?[]:i,a=this.sourceSelectedKeys,s=this.targetSelectedKeys,c=("right"===e?a:s).filter((function(e){return!o.some((function(t){return!(e!==t.key||!t.disabled)}))})),u="right"===e?c.concat(r):r.filter((function(e){return-1===c.indexOf(e)})),d="right"===e?"left":"right";this.setState((0,l.Z)({},this.getSelectedKeysName(d),[])),this.handleSelectChange(d,[]),this.$emit("change",u,e,c)},moveToLeft:function(){this.moveTo("left")},moveToRight:function(){this.moveTo("right")},onItemSelectAll:function(e,t,n){var r=this.$data[this.getSelectedKeysName(e)]||[],i=[];i=n?Array.from(new Set([].concat((0,g.Z)(r),(0,g.Z)(t)))):r.filter((function(e){return-1===t.indexOf(e)})),this.handleSelectChange(e,i),this.$props.selectedKeys||this.setState((0,l.Z)({},this.getSelectedKeysName(e),i))},handleSelectAll:function(e,t,n){this.onItemSelectAll(e,t.map((function(e){return e.key})),!n)},handleLeftSelectAll:function(e,t){return this.handleSelectAll("left",e,!t)},handleRightSelectAll:function(e,t){return this.handleSelectAll("right",e,!t)},onLeftItemSelectAll:function(e,t){return this.onItemSelectAll("left",e,t)},onRightItemSelectAll:function(e,t){return this.onItemSelectAll("right",e,t)},handleFilter:function(e,t){var n=t.target.value;(0,k.CL)(this).searchChange&&(re(!1,"Transfer","`searchChange` in Transfer is deprecated. Please use `search` instead."),this.$emit("searchChange",e,t)),this.$emit("search",e,n)},handleLeftFilter:function(e){this.handleFilter("left",e)},handleRightFilter:function(e){this.handleFilter("right",e)},handleClear:function(e){this.$emit("search",e,"")},handleLeftClear:function(){this.handleClear("left")},handleRightClear:function(){this.handleClear("right")},onItemSelect:function(e,t,n){var r=this.sourceSelectedKeys,i=this.targetSelectedKeys,o=[].concat("left"===e?(0,g.Z)(r):(0,g.Z)(i)),a=o.indexOf(t);a>-1&&o.splice(a,1),n&&o.push(t),this.handleSelectChange(e,o),this.selectedKeys||this.setState((0,l.Z)({},this.getSelectedKeysName(e),o))},handleSelect:function(e,t,n){re(!1,"Transfer","`handleSelect` will be removed, please use `onSelect` instead."),this.onItemSelect(e,t.key,n)},handleLeftSelect:function(e,t){return this.handleSelect("left",e,t)},handleRightSelect:function(e,t){return this.handleSelect("right",e,t)},onLeftItemSelect:function(e,t){return this.onItemSelect("left",e,t)},onRightItemSelect:function(e,t){return this.onItemSelect("right",e,t)},handleScroll:function(e,t){this.$emit("scroll",e,t)},handleLeftScroll:function(e){this.handleScroll("left",e)},handleRightScroll:function(e){this.handleScroll("right",e)},handleSelectChange:function(e,t){var n=this.sourceSelectedKeys,r=this.targetSelectedKeys;"left"===e?this.$emit("selectChange",t,r):this.$emit("selectChange",n,t)},handleListStyle:function(e,t){return"function"==typeof e?e({direction:t}):e},separateDataSource:function(){var e=this.$props,t=e.dataSource,n=e.rowKey,r=e.targetKeys,i=void 0===r?[]:r,o=[],a=new Array(i.length);return t.forEach((function(e){n&&(e.key=n(e));var t=i.indexOf(e.key);-1!==t?a[t]=e:o.push(e)})),{leftDataSource:o,rightDataSource:a}},renderTransfer:function(e){var t,n=this.$createElement,r=(0,k.oZ)(this),i=r.prefixCls,o=r.disabled,a=r.operations,s=void 0===a?[]:a,c=r.showSearch,u=r.listStyle,d=r.operationStyle,f=r.filterOption,p=r.lazy,m=r.showSelectAll,v=(0,k.rj)(this,"children",{},!1),y=(0,this.configProvider.getPrefixCls)("transfer",i),g=this.configProvider.renderEmpty,_=this.getLocale(e,g),b=this.sourceSelectedKeys,M=this.targetSelectedKeys,w=this.$scopedSlots,C=w.body,L=w.footer,x=r.render,S=this.separateDataSource(),Z=S.leftDataSource,T=S.rightDataSource,z=M.length>0,O=b.length>0,H=h()(y,(t={},(0,l.Z)(t,y+"-disabled",o),(0,l.Z)(t,y+"-customize-list",!!v),t)),D=this.getTitles(_);return n("div",{class:H},[n(qg,{key:"leftList",attrs:{prefixCls:y+"-list",titleText:D[0],dataSource:Z,filterOption:f,checkedKeys:b,handleFilter:this.handleLeftFilter,handleClear:this.handleLeftClear,handleSelect:this.handleLeftSelect,handleSelectAll:this.handleLeftSelectAll,renderItem:x,showSearch:c,body:C,renderList:v,footer:L,lazy:p,disabled:o,direction:"left",showSelectAll:m,itemUnit:_.itemUnit,itemsUnit:_.itemsUnit,notFoundContent:_.notFoundContent,searchPlaceholder:_.searchPlaceholder},style:this.handleListStyle(u,"left"),on:{itemSelect:this.onLeftItemSelect,itemSelectAll:this.onLeftItemSelectAll,scroll:this.handleLeftScroll}}),n(Xg,{key:"operation",class:y+"-operation",attrs:{rightActive:O,rightArrowText:s[0],moveToRight:this.moveToRight,leftActive:z,leftArrowText:s[1],moveToLeft:this.moveToLeft,disabled:o},style:d}),n(qg,{key:"rightList",attrs:{prefixCls:y+"-list",titleText:D[1],dataSource:T,filterOption:f,checkedKeys:M,handleFilter:this.handleRightFilter,handleClear:this.handleRightClear,handleSelect:this.handleRightSelect,handleSelectAll:this.handleRightSelectAll,renderItem:x,showSearch:c,body:C,renderList:v,footer:L,lazy:p,disabled:o,direction:"right",showSelectAll:m,itemUnit:_.itemUnit,itemsUnit:_.itemsUnit,notFoundContent:_.notFoundContent,searchPlaceholder:_.searchPlaceholder},style:this.handleListStyle(u,"right"),on:{itemSelect:this.onRightItemSelect,itemSelectAll:this.onRightItemSelectAll,scroll:this.handleRightScroll}})])}},render:function(){var e=arguments[0];return e(O,{attrs:{componentName:"Transfer",defaultLocale:z.Transfer},scopedSlots:{default:this.renderTransfer}})},install:function(e){e.use(B),e.component(t_.name,t_)}});const n_=t_;var r_=!1;function i_(){r_||(r_=!0,Nt()(!1,"Tree only accept TreeNode as children."))}function o_(e,t){var n=e.slice(),r=n.indexOf(t);return r>=0&&n.splice(r,1),n}function a_(e,t){var n=e.slice();return-1===n.indexOf(t)&&n.push(t),n}function s_(e,t){return e+"-"+t}function c_(e){return(0,k.cV)(e).isTreeNode}function l_(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[];return e.filter(c_)}function u_(e){var t=(0,k.oZ)(e)||{},n=t.disabled,r=t.disableCheckbox,i=t.checkable;return!(!n&&!r)||!1===i}function d_(e,t){!function n(r,i,o){var a=r?r.componentOptions.children:e,s=r?s_(o.pos,i):0,c=l_(a);if(r){var l=r.key;l||null!=l||(l=s);var u={node:r,index:i,pos:s,key:l,parentPos:o.node?o.pos:null};t(u)}c.forEach((function(e,t){n(e,t,{node:r,pos:s})}))}(null)}function h_(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[],t=arguments[1],n=e.map(t);return 1===n.length?n[0]:n}function f_(e,t){var n=(0,k.oZ)(t),r=n.eventKey,i=n.pos,o=[];return d_(e,(function(e){var t=e.key;o.push(t)})),o.push(r||i),o}function p_(e,t){var n=e.clientY,r=t.$refs.selectHandle.getBoundingClientRect(),i=r.top,o=r.bottom,a=r.height,s=Math.max(.25*a,2);return n<=i+s?-1:n>=o-s?1:0}function m_(e,t){if(e)return t.multiple?e.slice():e.length?[e[0]]:e}var v_=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return{props:p(e,["on","key","class","className","style"]),on:e.on||{},class:e.class||e.className,style:e.style,key:e.key}};function y_(e,t,n){if(!t)return[];var r=(n||{}).processProps,i=void 0===r?v_:r;return(Array.isArray(t)?t:[t]).map((function(t){var r=t.children,o=(0,Oe.Z)(t,["children"]),a=y_(e,r,n);return e(x_,i(o),[a])}))}function g_(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=t.initWrapper,r=t.processEntity,i=t.onProcessFinished,o=new Map,a=new Map,s={posEntities:o,keyEntities:a};return n&&(s=n(s)||s),d_(e,(function(e){var t=e.node,n=e.index,i=e.pos,c=e.key,l=e.parentPos,u={node:t,index:n,key:c,pos:i};o.set(i,u),a.set(c,u),u.parent=o.get(l),u.parent&&(u.parent.children=u.parent.children||[],u.parent.children.push(u)),r&&r(u,s)})),i&&i(s),s}function __(e){if(!e)return null;var t=void 0;if(Array.isArray(e))t={checkedKeys:e,halfCheckedKeys:void 0};else{if("object"!==(void 0===e?"undefined":(0,w.Z)(e)))return Nt()(!1,"`checkedKeys` is not an array or an object"),null;t={checkedKeys:e.checked||void 0,halfCheckedKeys:e.halfChecked||void 0}}return t}function b_(e,t,n){var r=arguments.length>3&&void 0!==arguments[3]?arguments[3]:{},i=new Map,o=new Map;function a(e){if(i.get(e)!==t){var r=n.get(e);if(r){var s=r.children,c=r.parent;if(!u_(r.node)){var l=!0,u=!1;(s||[]).filter((function(e){return!u_(e.node)})).forEach((function(e){var t=e.key,n=i.get(t),r=o.get(t);(n||r)&&(u=!0),n||(l=!1)})),t?i.set(e,l):i.set(e,!1),o.set(e,u),c&&a(c.key)}}}}function s(e){if(i.get(e)!==t){var r=n.get(e);if(r){var o=r.children;u_(r.node)||(i.set(e,t),(o||[]).forEach((function(e){s(e.key)})))}}}function c(e){var r=n.get(e);if(r){var o=r.children,c=r.parent,l=r.node;i.set(e,t),u_(l)||((o||[]).filter((function(e){return!u_(e.node)})).forEach((function(e){s(e.key)})),c&&a(c.key))}else Nt()(!1,"'"+e+"' does not exist in the tree.")}(r.checkedKeys||[]).forEach((function(e){i.set(e,!0)})),(r.halfCheckedKeys||[]).forEach((function(e){o.set(e,!0)})),(e||[]).forEach((function(e){c(e)}));var l=[],u=[],d=!0,h=!1,f=void 0;try{for(var p,m=i[Symbol.iterator]();!(d=(p=m.next()).done);d=!0){var v=p.value,y=(0,ht.Z)(v,2),g=y[0],_=y[1];_&&l.push(g)}}catch(e){h=!0,f=e}finally{try{!d&&m.return&&m.return()}finally{if(h)throw f}}var b=!0,M=!1,w=void 0;try{for(var k,C=o[Symbol.iterator]();!(b=(k=C.next()).done);b=!0){var L=k.value,x=(0,ht.Z)(L,2),S=x[0],Z=x[1];!i.get(S)&&Z&&u.push(S)}}catch(e){M=!0,w=e}finally{try{!b&&C.return&&C.return()}finally{if(M)throw w}}return{checkedKeys:l,halfCheckedKeys:u}}function M_(e,t){var n=new Map;function r(e){if(!n.get(e)){var i=t.get(e);if(i){n.set(e,!0);var o=i.parent,a=i.node,s=(0,k.oZ)(a);s&&s.disabled||o&&r(o.key)}}}return(e||[]).forEach((function(e){r(e)})),[].concat((0,g.Z)(n.keys()))}function w_(){}var k_="open",C_="close",L_={name:"TreeNode",mixins:[y.Z],__ANT_TREE_NODE:!0,props:(0,k.SQ)({eventKey:u.Z.oneOfType([u.Z.string,u.Z.number]),prefixCls:u.Z.string,root:u.Z.object,expanded:u.Z.bool,selected:u.Z.bool,checked:u.Z.bool,loaded:u.Z.bool,loading:u.Z.bool,halfChecked:u.Z.bool,title:u.Z.any,pos:u.Z.string,dragOver:u.Z.bool,dragOverGapTop:u.Z.bool,dragOverGapBottom:u.Z.bool,isLeaf:u.Z.bool,checkable:u.Z.bool,selectable:u.Z.bool,disabled:u.Z.bool,disableCheckbox:u.Z.bool,icon:u.Z.any,dataRef:u.Z.object,switcherIcon:u.Z.any,label:u.Z.any,value:u.Z.any},{}),data:function(){return{dragNodeHighlight:!1}},inject:{vcTree:{default:function(){return{}}},vcTreeNode:{default:function(){return{}}}},provide:function(){return{vcTreeNode:this}},mounted:function(){var e=this.eventKey,t=this.vcTree.registerTreeNode;this.syncLoadData(this.$props),t&&t(e,this)},updated:function(){this.syncLoadData(this.$props)},beforeDestroy:function(){var e=this.eventKey,t=this.vcTree.registerTreeNode;t&&t(e,null)},methods:{onSelectorClick:function(e){(0,this.vcTree.onNodeClick)(e,this),this.isSelectable()?this.onSelect(e):this.onCheck(e)},onSelectorDoubleClick:function(e){(0,this.vcTree.onNodeDoubleClick)(e,this)},onSelect:function(e){if(!this.isDisabled()){var t=this.vcTree.onNodeSelect;e.preventDefault(),t(e,this)}},onCheck:function(e){if(!this.isDisabled()){var t=this.disableCheckbox,n=this.checked,r=this.vcTree.onNodeCheck;if(this.isCheckable()&&!t)e.preventDefault(),r(e,this,!n)}},onMouseEnter:function(e){(0,this.vcTree.onNodeMouseEnter)(e,this)},onMouseLeave:function(e){(0,this.vcTree.onNodeMouseLeave)(e,this)},onContextMenu:function(e){(0,this.vcTree.onNodeContextMenu)(e,this)},onDragStart:function(e){var t=this.vcTree.onNodeDragStart;e.stopPropagation(),this.setState({dragNodeHighlight:!0}),t(e,this);try{e.dataTransfer.setData("text/plain","")}catch(e){}},onDragEnter:function(e){var t=this.vcTree.onNodeDragEnter;e.preventDefault(),e.stopPropagation(),t(e,this)},onDragOver:function(e){var t=this.vcTree.onNodeDragOver;e.preventDefault(),e.stopPropagation(),t(e,this)},onDragLeave:function(e){var t=this.vcTree.onNodeDragLeave;e.stopPropagation(),t(e,this)},onDragEnd:function(e){var t=this.vcTree.onNodeDragEnd;e.stopPropagation(),this.setState({dragNodeHighlight:!1}),t(e,this)},onDrop:function(e){var t=this.vcTree.onNodeDrop;e.preventDefault(),e.stopPropagation(),this.setState({dragNodeHighlight:!1}),t(e,this)},onExpand:function(e){(0,this.vcTree.onNodeExpand)(e,this)},getNodeChildren:function(){var e=this.$slots.default,t=(0,k.OU)(e),n=l_(t);return t.length!==n.length&&i_(),n},getNodeState:function(){var e=this.expanded;return this.isLeaf2()?null:e?k_:C_},isLeaf2:function(){var e=this.isLeaf,t=this.loaded,n=this.vcTree.loadData,r=0!==this.getNodeChildren().length;return!1!==e&&(e||!n&&!r||n&&t&&!r)},isDisabled:function(){var e=this.disabled,t=this.vcTree.disabled;return!1!==e&&!(!t&&!e)},isCheckable:function(){var e=this.$props.checkable,t=this.vcTree.checkable;return!(!t||!1===e)&&t},syncLoadData:function(e){var t=e.expanded,n=e.loading,r=e.loaded,i=this.vcTree,o=i.loadData,a=i.onNodeLoad;n||o&&t&&!this.isLeaf2()&&(0!==this.getNodeChildren().length||r||a(this))},isSelectable:function(){var e=this.selectable,t=this.vcTree.selectable;return"boolean"==typeof e?e:t},renderSwitcher:function(){var e=this.$createElement,t=this.expanded,n=this.vcTree.prefixCls,r=(0,k.rj)(this,"switcherIcon",{},!1)||(0,k.rj)(this.vcTree,"switcherIcon",{},!1);if(this.isLeaf2())return e("span",{key:"switcher",class:h()(n+"-switcher",n+"-switcher-noop")},["function"==typeof r?r((0,f.Z)({},this.$props,this.$props.dataRef,{isLeaf:!0})):r]);var i=h()(n+"-switcher",n+"-switcher_"+(t?k_:C_));return e("span",{key:"switcher",on:{click:this.onExpand},class:i},["function"==typeof r?r((0,f.Z)({},this.$props,this.$props.dataRef,{isLeaf:!1})):r])},renderCheckbox:function(){var e=this.$createElement,t=this.checked,n=this.halfChecked,r=this.disableCheckbox,i=this.vcTree.prefixCls,o=this.isDisabled(),a=this.isCheckable();if(!a)return null;var s="boolean"!=typeof a?a:null;return e("span",{key:"checkbox",class:h()(i+"-checkbox",t&&i+"-checkbox-checked",!t&&n&&i+"-checkbox-indeterminate",(o||r)&&i+"-checkbox-disabled"),on:{click:this.onCheck}},[s])},renderIcon:function(){var e=this.$createElement,t=this.loading,n=this.vcTree.prefixCls;return e("span",{key:"icon",class:h()(n+"-iconEle",n+"-icon__"+(this.getNodeState()||"docu"),t&&n+"-icon_loading")})},renderSelector:function(e){var t=this.selected,n=this.loading,r=this.dragNodeHighlight,i=(0,k.rj)(this,"icon",{},!1),o=this.vcTree,a=o.prefixCls,s=o.showIcon,c=o.icon,l=o.draggable,u=o.loadData,d=this.isDisabled(),p=(0,k.rj)(this,"title",{},!1),m=a+"-node-content-wrapper",v=void 0;if(s){var y=i||c;v=y?e("span",{class:h()(a+"-iconEle",a+"-icon__customize")},["function"==typeof y?y((0,f.Z)({},this.$props,this.$props.dataRef),e):y]):this.renderIcon()}else u&&n&&(v=this.renderIcon());var g=p,_=e("span",{class:a+"-title"},g?["function"==typeof g?g((0,f.Z)({},this.$props,this.$props.dataRef),e):g]:["---"]);return e("span",{key:"selector",ref:"selectHandle",attrs:{title:"string"==typeof p?p:"",draggable:!d&&l||void 0,"aria-grabbed":!d&&l||void 0},class:h()(""+m,m+"-"+(this.getNodeState()||"normal"),!d&&(t||r)&&a+"-node-selected",!d&&l&&"draggable"),on:{mouseenter:this.onMouseEnter,mouseleave:this.onMouseLeave,contextmenu:this.onContextMenu,click:this.onSelectorClick,dblclick:this.onSelectorDoubleClick,dragstart:l?this.onDragStart:w_}},[v,_])},renderChildren:function(){var e=this.$createElement,t=this.expanded,n=this.pos,r=this.vcTree,i=r.prefixCls,o=r.openTransitionName,a=r.openAnimation,s=r.renderTreeNode,c={};o?c=dn(o):"object"===(void 0===a?"undefined":(0,w.Z)(a))&&((c=(0,f.Z)({},a)).props=(0,f.Z)({css:!1},c.props));var l=this.getNodeChildren();if(0===l.length)return null;var u=void 0;return t&&(u=e("ul",{class:h()(i+"-child-tree",t&&i+"-child-tree-open"),attrs:{"data-expanded":t,role:"group"}},[h_(l,(function(e,t){return s(e,t,n)}))])),e("transition",c,[u])}},render:function(e){var t,n=this.$props,r=n.dragOver,i=n.dragOverGapTop,o=n.dragOverGapBottom,a=n.isLeaf,s=n.expanded,c=n.selected,u=n.checked,d=n.halfChecked,h=n.loading,f=this.vcTree,p=f.prefixCls,m=f.filterTreeNode,v=f.draggable,y=this.isDisabled();return e("li",{class:(t={},(0,l.Z)(t,p+"-treenode-disabled",y),(0,l.Z)(t,p+"-treenode-switcher-"+(s?"open":"close"),!a),(0,l.Z)(t,p+"-treenode-checkbox-checked",u),(0,l.Z)(t,p+"-treenode-checkbox-indeterminate",d),(0,l.Z)(t,p+"-treenode-selected",c),(0,l.Z)(t,p+"-treenode-loading",h),(0,l.Z)(t,"drag-over",!y&&r),(0,l.Z)(t,"drag-over-gap-top",!y&&i),(0,l.Z)(t,"drag-over-gap-bottom",!y&&o),(0,l.Z)(t,"filter-node",m&&m(this)),t),attrs:{role:"treeitem"},on:{dragenter:v?this.onDragEnter:w_,dragover:v?this.onDragOver:w_,dragleave:v?this.onDragLeave:w_,drop:v?this.onDrop:w_,dragend:v?this.onDragEnd:w_}},[this.renderSwitcher(),this.renderCheckbox(),this.renderSelector(e),this.renderChildren()])},isTreeNode:1};const x_=L_;var S_={name:"Tree",mixins:[y.Z],props:(0,k.SQ)({prefixCls:u.Z.string,tabIndex:u.Z.oneOfType([u.Z.string,u.Z.number]),children:u.Z.any,treeData:u.Z.array,showLine:u.Z.bool,showIcon:u.Z.bool,icon:u.Z.oneOfType([u.Z.object,u.Z.func]),focusable:u.Z.bool,selectable:u.Z.bool,disabled:u.Z.bool,multiple:u.Z.bool,checkable:u.Z.oneOfType([u.Z.object,u.Z.bool]),checkStrictly:u.Z.bool,draggable:u.Z.bool,defaultExpandParent:u.Z.bool,autoExpandParent:u.Z.bool,defaultExpandAll:u.Z.bool,defaultExpandedKeys:u.Z.array,expandedKeys:u.Z.array,defaultCheckedKeys:u.Z.array,checkedKeys:u.Z.oneOfType([u.Z.array,u.Z.object]),defaultSelectedKeys:u.Z.array,selectedKeys:u.Z.array,loadData:u.Z.func,loadedKeys:u.Z.array,filterTreeNode:u.Z.func,openTransitionName:u.Z.string,openAnimation:u.Z.oneOfType([u.Z.string,u.Z.object]),switcherIcon:u.Z.any,_propsSymbol:u.Z.any},{prefixCls:"rc-tree",showLine:!1,showIcon:!0,selectable:!0,multiple:!1,checkable:!1,disabled:!1,checkStrictly:!1,draggable:!1,defaultExpandParent:!0,autoExpandParent:!1,defaultExpandAll:!1,defaultExpandedKeys:[],defaultCheckedKeys:[],defaultSelectedKeys:[]}),data:function(){Nt()(this.$props.__propsSymbol__,"must pass __propsSymbol__"),Nt()(this.$props.children,"please use children prop replace slots.default"),this.needSyncKeys={},this.domTreeNodes={};var e={_posEntities:new Map,_keyEntities:new Map,_expandedKeys:[],_selectedKeys:[],_checkedKeys:[],_halfCheckedKeys:[],_loadedKeys:[],_loadingKeys:[],_treeNode:[],_prevProps:null,_dragOverNodeKey:"",_dropPosition:null,_dragNodesKeys:[]};return(0,f.Z)({},e,this.getDerivedState((0,k.oZ)(this),e))},provide:function(){return{vcTree:this}},watch:(0,f.Z)({},function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[],t={};return e.forEach((function(e){t[e]=function(){this.needSyncKeys[e]=!0}})),t}(["treeData","children","expandedKeys","autoExpandParent","selectedKeys","checkedKeys","loadedKeys"]),{__propsSymbol__:function(){this.setState(this.getDerivedState((0,k.oZ)(this),this.$data)),this.needSyncKeys={}}}),methods:{getDerivedState:function(e,t){var n=t._prevProps,r={_prevProps:(0,f.Z)({},e)},i=this;function o(t){return!n&&t in e||n&&i.needSyncKeys[t]}var a=null;if(o("treeData")?a=y_(this.$createElement,e.treeData):o("children")&&(a=e.children),a){r._treeNode=a;var s=g_(a);r._keyEntities=s.keyEntities}var c=r._keyEntities||t._keyEntities;if(o("expandedKeys")||n&&o("autoExpandParent")?r._expandedKeys=e.autoExpandParent||!n&&e.defaultExpandParent?M_(e.expandedKeys,c):e.expandedKeys:!n&&e.defaultExpandAll?r._expandedKeys=[].concat((0,g.Z)(c.keys())):!n&&e.defaultExpandedKeys&&(r._expandedKeys=e.autoExpandParent||e.defaultExpandParent?M_(e.defaultExpandedKeys,c):e.defaultExpandedKeys),e.selectable&&(o("selectedKeys")?r._selectedKeys=m_(e.selectedKeys,e):!n&&e.defaultSelectedKeys&&(r._selectedKeys=m_(e.defaultSelectedKeys,e))),e.checkable){var l=void 0;if(o("checkedKeys")?l=__(e.checkedKeys)||{}:!n&&e.defaultCheckedKeys?l=__(e.defaultCheckedKeys)||{}:a&&(l=__(e.checkedKeys)||{checkedKeys:t._checkedKeys,halfCheckedKeys:t._halfCheckedKeys}),l){var u=l,d=u.checkedKeys,h=void 0===d?[]:d,p=u.halfCheckedKeys,m=void 0===p?[]:p;if(!e.checkStrictly){var v=b_(h,!0,c);h=v.checkedKeys,m=v.halfCheckedKeys}r._checkedKeys=h,r._halfCheckedKeys=m}}return o("loadedKeys")&&(r._loadedKeys=e.loadedKeys),r},onNodeDragStart:function(e,t){var n=this.$data._expandedKeys,r=t.eventKey,i=(0,k.FJ)(t).default;this.dragNode=t,this.setState({_dragNodesKeys:f_("function"==typeof i?i():i,t),_expandedKeys:o_(n,r)}),this.__emit("dragstart",{event:e,node:t})},onNodeDragEnter:function(e,t){var n=this,r=this.$data._expandedKeys,i=t.pos,o=t.eventKey;if(this.dragNode&&t.$refs.selectHandle){var a=p_(e,t);this.dragNode.eventKey!==o||0!==a?setTimeout((function(){n.setState({_dragOverNodeKey:o,_dropPosition:a}),n.delayedDragEnterLogic||(n.delayedDragEnterLogic={}),Object.keys(n.delayedDragEnterLogic).forEach((function(e){clearTimeout(n.delayedDragEnterLogic[e])})),n.delayedDragEnterLogic[i]=setTimeout((function(){var i=a_(r,o);(0,k.m2)(n,"expandedKeys")||n.setState({_expandedKeys:i}),n.__emit("dragenter",{event:e,node:t,expandedKeys:i})}),400)}),0):this.setState({_dragOverNodeKey:"",_dropPosition:null})}},onNodeDragOver:function(e,t){var n=t.eventKey,r=this.$data,i=r._dragOverNodeKey,o=r._dropPosition;if(this.dragNode&&n===i&&t.$refs.selectHandle){var a=p_(e,t);if(a===o)return;this.setState({_dropPosition:a})}this.__emit("dragover",{event:e,node:t})},onNodeDragLeave:function(e,t){this.setState({_dragOverNodeKey:""}),this.__emit("dragleave",{event:e,node:t})},onNodeDragEnd:function(e,t){this.setState({_dragOverNodeKey:""}),this.__emit("dragend",{event:e,node:t}),this.dragNode=null},onNodeDrop:function(e,t){var n=this.$data,r=n._dragNodesKeys,i=void 0===r?[]:r,o=n._dropPosition,a=t.eventKey,s=t.pos;if(this.setState({_dragOverNodeKey:""}),-1===i.indexOf(a)){var c=function(e){return e.split("-")}(s),l={event:e,node:t,dragNode:this.dragNode,dragNodesKeys:i.slice(),dropPosition:o+Number(c[c.length-1]),dropToGap:!1};0!==o&&(l.dropToGap=!0),this.__emit("drop",l),this.dragNode=null}else Nt()(!1,"Can not drop to dragNode(include it's children node)")},onNodeClick:function(e,t){this.__emit("click",e,t)},onNodeDoubleClick:function(e,t){this.__emit("dblclick",e,t)},onNodeSelect:function(e,t){var n=this.$data._selectedKeys,r=this.$data._keyEntities,i=this.$props.multiple,o=(0,k.oZ)(t),a=o.selected,s=o.eventKey,c=!a,l=(n=c?i?a_(n,s):[s]:o_(n,s)).map((function(e){var t=r.get(e);return t?t.node:null})).filter((function(e){return e}));this.setUncontrolledState({_selectedKeys:n});var u={event:"select",selected:c,node:t,selectedNodes:l,nativeEvent:e};this.__emit("update:selectedKeys",n),this.__emit("select",n,u)},onNodeCheck:function(e,t,n){var r=this.$data,i=r._keyEntities,o=r._checkedKeys,a=r._halfCheckedKeys,s=this.$props.checkStrictly,c=(0,k.oZ)(t).eventKey,l=void 0,u={event:"check",node:t,checked:n,nativeEvent:e};if(s){var d=n?a_(o,c):o_(o,c);l={checked:d,halfChecked:o_(a,c)},u.checkedNodes=d.map((function(e){return i.get(e)})).filter((function(e){return e})).map((function(e){return e.node})),this.setUncontrolledState({_checkedKeys:d})}else{var h=b_([c],n,i,{checkedKeys:o,halfCheckedKeys:a}),f=h.checkedKeys,p=h.halfCheckedKeys;l=f,u.checkedNodes=[],u.checkedNodesPositions=[],u.halfCheckedKeys=p,f.forEach((function(e){var t=i.get(e);if(t){var n=t.node,r=t.pos;u.checkedNodes.push(n),u.checkedNodesPositions.push({node:n,pos:r})}})),this.setUncontrolledState({_checkedKeys:f,_halfCheckedKeys:p})}this.__emit("check",l,u)},onNodeLoad:function(e){var t=this;return new Promise((function(n){t.setState((function(r){var i=r._loadedKeys,o=void 0===i?[]:i,a=r._loadingKeys,s=void 0===a?[]:a,c=t.$props.loadData,l=(0,k.oZ)(e).eventKey;return c&&-1===o.indexOf(l)&&-1===s.indexOf(l)?(c(e).then((function(){var r=t.$data,i=r._loadedKeys,o=r._loadingKeys,a=a_(i,l),s=o_(o,l);t.__emit("load",a,{event:"load",node:e}),t.setUncontrolledState({_loadedKeys:a}),t.setState({_loadingKeys:s}),n()})),{_loadingKeys:a_(s,l)}):{}}))}))},onNodeExpand:function(e,t){var n=this,r=this.$data._expandedKeys,i=this.$props.loadData,o=(0,k.oZ)(t),a=o.eventKey,s=o.expanded,c=r.indexOf(a),l=!s;if(Nt()(s&&-1!==c||!s&&-1===c,"Expand state not sync with index check"),r=l?a_(r,a):o_(r,a),this.setUncontrolledState({_expandedKeys:r}),this.__emit("expand",r,{node:t,expanded:l,nativeEvent:e}),this.__emit("update:expandedKeys",r),l&&i){var u=this.onNodeLoad(t);return u?u.then((function(){n.setUncontrolledState({_expandedKeys:r})})):null}return null},onNodeMouseEnter:function(e,t){this.__emit("mouseenter",{event:e,node:t})},onNodeMouseLeave:function(e,t){this.__emit("mouseleave",{event:e,node:t})},onNodeContextMenu:function(e,t){e.preventDefault(),this.__emit("rightClick",{event:e,node:t})},setUncontrolledState:function(e){var t=!1,n={},r=(0,k.oZ)(this);Object.keys(e).forEach((function(i){i.replace("_","")in r||(t=!0,n[i]=e[i])})),t&&this.setState(n)},registerTreeNode:function(e,t){t?this.domTreeNodes[e]=t:delete this.domTreeNodes[e]},isKeyChecked:function(e){var t=this.$data._checkedKeys;return-1!==(void 0===t?[]:t).indexOf(e)},renderTreeNode:function(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:0,r=this.$data,i=r._keyEntities,o=r._expandedKeys,a=void 0===o?[]:o,s=r._selectedKeys,c=void 0===s?[]:s,l=r._halfCheckedKeys,u=void 0===l?[]:l,d=r._loadedKeys,h=void 0===d?[]:d,f=r._loadingKeys,p=void 0===f?[]:f,m=r._dragOverNodeKey,v=r._dropPosition,y=s_(n,t),g=e.key;return g||null!=g||(g=y),i.get(g)?(0,fn.Tm)(e,{props:{eventKey:g,expanded:-1!==a.indexOf(g),selected:-1!==c.indexOf(g),loaded:-1!==h.indexOf(g),loading:-1!==p.indexOf(g),checked:this.isKeyChecked(g),halfChecked:-1!==u.indexOf(g),pos:y,dragOver:m===g&&0===v,dragOverGapTop:m===g&&-1===v,dragOverGapBottom:m===g&&1===v},key:g}):(i_(),null)}},render:function(){var e=this,t=arguments[0],n=this.$data._treeNode,r=this.$props,i=r.prefixCls,o=r.focusable,a=r.showLine,s=r.tabIndex,c=void 0===s?0:s;return t("ul",{class:h()(i,(0,l.Z)({},i+"-show-line",a)),attrs:{role:"tree",unselectable:"on",tabIndex:o?c:null}},[h_(n,(function(t,n){return e.renderTreeNode(t,n)}))])}};ct(S_);function Z_(){return{showLine:u.Z.bool,multiple:u.Z.bool,autoExpandParent:u.Z.bool,checkStrictly:u.Z.bool,checkable:u.Z.bool,disabled:u.Z.bool,defaultExpandAll:u.Z.bool,defaultExpandParent:u.Z.bool,defaultExpandedKeys:u.Z.array,expandedKeys:u.Z.array,checkedKeys:u.Z.oneOfType([u.Z.array,u.Z.shape({checked:u.Z.array,halfChecked:u.Z.array}).loose]),defaultCheckedKeys:u.Z.array,selectedKeys:u.Z.array,defaultSelectedKeys:u.Z.array,selectable:u.Z.bool,filterAntTreeNode:u.Z.func,loadData:u.Z.func,loadedKeys:u.Z.array,draggable:u.Z.bool,showIcon:u.Z.bool,icon:u.Z.func,switcherIcon:u.Z.any,prefixCls:u.Z.string,filterTreeNode:u.Z.func,openAnimation:u.Z.any,treeNodes:u.Z.array,treeData:u.Z.array,replaceFields:u.Z.object,blockNode:u.Z.bool}}const T_={name:"ATree",model:{prop:"checkedKeys",event:"check"},props:(0,k.SQ)(Z_(),{checkable:!1,showIcon:!1,openAnimation:{on:ka,props:{appear:null}},blockNode:!1}),inject:{configProvider:{default:function(){return X}}},created:function(){Nt()(!("treeNodes"in(0,k.oZ)(this)),"`treeNodes` is deprecated. please use treeData instead.")},TreeNode:x_,methods:{renderSwitcherIcon:function(e,t,n){var r=n.isLeaf,i=n.expanded,o=n.loading,a=this.$createElement,s=this.$props.showLine;if(o)return a(Ui,{attrs:{type:"loading"},class:e+"-switcher-loading-icon"});if(r)return s?a(Ui,{attrs:{type:"file"},class:e+"-switcher-line-icon"}):null;var c=e+"-switcher-icon";return t?(0,fn.Tm)(t,{class:(0,l.Z)({},c,!0)}):a(Ui,s?{attrs:{type:i?"minus-square":"plus-square",theme:"outlined"},class:e+"-switcher-line-icon"}:{attrs:{type:"caret-down",theme:"filled"},class:c})},updateTreeData:function(e){var t=this,n=this.$slots,r=this.$scopedSlots,i=(0,f.Z)({},{children:"children",title:"title",key:"key"},this.$props.replaceFields);return e.map((function(e){var o=e[i.key],a=e[i.children],s=e.on,c=void 0===s?{}:s,l=e.slots,u=void 0===l?{}:l,d=e.scopedSlots,h=void 0===d?{}:d,p=e.class,m=e.style,v=(0,Oe.Z)(e,["on","slots","scopedSlots","class","style"]),y=(0,f.Z)({},v,{icon:r[h.icon]||n[u.icon]||v.icon,switcherIcon:r[h.switcherIcon]||n[u.switcherIcon]||v.switcherIcon,title:r[h.title]||n[u.title]||v[i.title],dataRef:e,on:c,key:o,class:p,style:m});return a?(0,f.Z)({},y,{children:t.updateTreeData(a)}):y}))}},render:function(){var e,t=this,n=arguments[0],r=(0,k.oZ)(this),i=this.$slots,o=this.$scopedSlots,a=r.prefixCls,s=r.showIcon,c=r.treeNodes,u=r.blockNode,d=this.configProvider.getPrefixCls,h=d("tree",a),p=(0,k.rj)(this,"switcherIcon"),m=r.checkable,v=r.treeData||c;v&&(v=this.updateTreeData(v));var y={props:(0,f.Z)({},r,{prefixCls:h,checkable:m?n("span",{class:h+"-checkbox-inner"}):m,children:(0,k.OU)(o.default?o.default():i.default),__propsSymbol__:Symbol(),switcherIcon:function(e){return t.renderSwitcherIcon(h,p,e)}}),on:(0,k.CL)(this),ref:"tree",class:(e={},(0,l.Z)(e,h+"-icon-hide",!s),(0,l.Z)(e,h+"-block-node",u),e)};return v&&(y.props.treeData=v),n(S_,y)}};var z_="node",O_="start",H_="end";function D_(e,t){(l_(e)||[]).forEach((function(e){var n=e.key,r=(0,k.FJ)(e).default;!1!==t(n,e)&&D_("function"==typeof r?r():r,t)}))}function V_(e,t,n,r){var i=[],o=z_;if(n&&n===r)return[n];if(!n||!r)return[];return D_(e,(function(e){if(o===H_)return!1;if(function(e){return e===n||e===r}(e)){if(i.push(e),o===z_)o=O_;else if(o===O_)return o=H_,!1}else o===O_&&i.push(e);return-1!==t.indexOf(e)})),i}function P_(e,t){var n=[].concat((0,g.Z)(t)),r=[];return D_(e,(function(e,t){var i=n.indexOf(e);return-1!==i&&(r.push(t),n.splice(i,1)),!!n.length})),r}function Y_(e){var t=[];return(e||[]).forEach((function(e){t.push(e.key),e.children&&(t=[].concat((0,g.Z)(t),(0,g.Z)(Y_(e.children))))})),t}function A_(e,t){var n=e.isLeaf,r=e.expanded;return t(Ui,n?{attrs:{type:"file"}}:{attrs:{type:r?"folder-open":"folder"}})}const j_={name:"ADirectoryTree",mixins:[y.Z],model:{prop:"checkedKeys",event:"check"},props:(0,k.SQ)((0,f.Z)({},Z_(),{expandAction:u.Z.oneOf([!1,"click","doubleclick","dblclick"])}),{showIcon:!0,expandAction:"click"}),inject:{configProvider:{default:function(){return X}}},data:function(){var e=(0,k.oZ)(this),t=e.defaultExpandAll,n=e.defaultExpandParent,r=e.expandedKeys,i=e.defaultExpandedKeys,o=g_(this.$slots.default).keyEntities,a={};return a._selectedKeys=e.selectedKeys||e.defaultSelectedKeys||[],t?e.treeData?a._expandedKeys=Y_(e.treeData):a._expandedKeys=function(e){var t=g_(e).keyEntities;return[].concat((0,g.Z)(t.keys()))}(this.$slots.default):a._expandedKeys=n?M_(r||i,o):r||i,this.onDebounceExpand=Lc()(this.expandFolderNode,200,{leading:!0}),(0,f.Z)({_selectedKeys:[],_expandedKeys:[]},a)},watch:{expandedKeys:function(e){this.setState({_expandedKeys:e})},selectedKeys:function(e){this.setState({_selectedKeys:e})}},methods:{onExpand:function(e,t){this.setUncontrolledState({_expandedKeys:e}),this.$emit("expand",e,t)},onClick:function(e,t){"click"===this.$props.expandAction&&this.onDebounceExpand(e,t),this.$emit("click",e,t)},onDoubleClick:function(e,t){var n=this.$props.expandAction;"dblclick"!==n&&"doubleclick"!==n||this.onDebounceExpand(e,t),this.$emit("doubleclick",e,t),this.$emit("dblclick",e,t)},onSelect:function(e,t){var n=this.$props.multiple,r=this.$slots.default||[],i=this.$data._expandedKeys,o=void 0===i?[]:i,a=t.node,s=t.nativeEvent,c=a.eventKey,l=void 0===c?"":c,u={},d=(0,f.Z)({},t,{selected:!0}),h=s.ctrlKey||s.metaKey,p=s.shiftKey,m=void 0;n&&h?(m=e,this.lastSelectedKey=l,this.cachedSelectedKeys=m,d.selectedNodes=P_(r,m)):n&&p?(m=Array.from(new Set([].concat((0,g.Z)(this.cachedSelectedKeys||[]),(0,g.Z)(V_(r,o,l,this.lastSelectedKey))))),d.selectedNodes=P_(r,m)):(m=[l],this.lastSelectedKey=l,this.cachedSelectedKeys=m,d.selectedNodes=[t.node]),u._selectedKeys=m,this.$emit("update:selectedKeys",m),this.$emit("select",m,d),this.setUncontrolledState(u)},expandFolderNode:function(e,t){t.isLeaf||e.shiftKey||e.metaKey||e.ctrlKey||this.$refs.tree.$refs.tree&&this.$refs.tree.$refs.tree.onNodeExpand(e,t)},setUncontrolledState:function(e){var t=p(e,Object.keys((0,k.oZ)(this)).map((function(e){return"_"+e})));Object.keys(t).length&&this.setState(t)}},render:function(){var e=arguments[0],t=(0,k.oZ)(this),n=t.prefixCls,r=(0,Oe.Z)(t,["prefixCls"]),i=this.configProvider.getPrefixCls,o=i("tree",n),a=this.$data,s=a._expandedKeys,c=a._selectedKeys,l=(0,k.CL)(this);re(!l.doubleclick,"`doubleclick` is deprecated. please use `dblclick` instead.");var u={props:(0,f.Z)({icon:A_},r,{prefixCls:o,expandedKeys:s,selectedKeys:c,switcherIcon:(0,k.rj)(this,"switcherIcon")}),ref:"tree",class:o+"-directory",on:(0,f.Z)({},p(l,["update:selectedKeys"]),{select:this.onSelect,click:this.onClick,dblclick:this.onDoubleClick,expand:this.onExpand})};return e(T_,u,[this.$slots.default])}};T_.TreeNode.name="ATreeNode",T_.DirectoryTree=j_,T_.install=function(e){e.use(B),e.component(T_.name,T_),e.component(T_.TreeNode.name,T_.TreeNode),e.component(j_.name,j_)};const E_=T_;function $_(e,t){return e.classList?e.classList.contains(t):(" "+e.className+" ").indexOf(" "+t+" ")>-1}var F_="SHOW_ALL",I_="SHOW_PARENT",N_="SHOW_CHILD",R_=!1;function W_(e){return"string"==typeof e?e:null}function K_(){var e=function(t){e.current=t};return e}var B_={userSelect:"none",WebkitUserSelect:"none"},U_={unselectable:"unselectable"};function q_(e){if(!e.length)return[];var t={},n={},r=e.slice().map((function(e){var t=(0,f.Z)({},e,{fields:e.pos.split("-")});return delete t.children,t}));return r.forEach((function(e){n[e.pos]=e})),r.sort((function(e,t){return e.fields.length-t.fields.length})),r.forEach((function(e){var r=e.fields.slice(0,-1).join("-"),i=n[r];i?(i.children=i.children||[],i.children.push(e)):t[e.pos]=e,delete e.key,delete e.fields})),Object.keys(t).map((function(e){return t[e]}))}var G_=0;function J_(e){var t=e.treeCheckable,n=e.treeCheckStrictly,r=e.labelInValue;return!(!t||!n)||(r||!1)}function X_(e){var t=e.node,n=e.pos,r=e.children,i={node:t,pos:n};return r&&(i.children=r.map(X_)),i}function Q_(e,t,n,r,i,o){if(!n)return null;return t.map((function t(a){if(!a||(0,k.V2)(a))return null;var s=!1;r(n,a)&&(s=!0);var l=(0,k.FJ)(a).default;return(l=(("function"==typeof l?l():l)||[]).map(t).filter((function(e){return e}))).length||s?e(o,c()([a.data,{key:i[(0,k.TW)(a).value].key}]),[l]):null})).filter((function(e){return e}))}function eb(e,t){var n,r=null==(n=e)?[]:Array.isArray(n)?n:[n];return J_(t)?r.map((function(e){return"object"===(void 0===e?"undefined":(0,w.Z)(e))&&e?e:{value:"",label:""}})):r.map((function(e){return{value:e}}))}function tb(e,t,n){if(e.label)return e.label;if(t){var r=(0,k.TW)(t.node);if(Object.keys(r).length)return r[n]}return e.value}function nb(e,t,n){var r=t.treeNodeLabelProp,i=t.treeCheckable,o=t.treeCheckStrictly,a=t.showCheckedStrategy;if(i&&!o){var s={};e.forEach((function(e){s[e.value]=e}));var c=q_(e.map((function(e){var t=e.value;return n[t]})));if(a===I_)return c.map((function(e){var t=e.node,i=(0,k.TW)(t).value;return{label:tb(s[i],n[i],r),value:i}}));if(a===N_){var l=[],u=function e(t){var i=t.node,o=t.children,a=(0,k.TW)(i).value;o&&0!==o.length?o.forEach((function(t){e(t)})):l.push({label:tb(s[a],n[a],r),value:a})};return c.forEach((function(e){u(e)})),l}}return e.map((function(e){return{label:tb(e,n[e.value],r),value:e.value}}))}function rb(e){var t=e.title,n=e.label,r=e.value,i=e.class,o=e.style,a=e.on,s=void 0===a?{}:a,c=e.key;c||null!=c||(c=r);var l={props:p(e,["on","key","class","className","style"]),on:s,class:i||e.className,style:o,key:c};return n&&!t&&(R_||(Nt()(!1,"'label' in treeData is deprecated. Please use 'title' instead."),R_=!0),l.props.title=n),l}function ib(e,t){return y_(e,t,{processProps:rb})}function ob(e){return(0,f.Z)({},e,{valueEntities:{}})}function ab(e,t){var n=(0,k.TW)(e.node).value;e.value=n;var r=t.valueEntities[n];r&&Nt()(!1,"Conflict! value of node '"+e.key+"' ("+n+") has already used by node '"+r.key+"'."),t.valueEntities[n]=e}function sb(e,t){var n={};return e.forEach((function(e){var t=e.value;n[t]=!1})),e.forEach((function(e){for(var r=e.value,i=t[r];i&&i.parent;){var o=i.parent.value;if(o in n)break;n[o]=!0,i=i.parent}})),Object.keys(n).filter((function(e){return n[e]})).map((function(e){return t[e].key}))}var cb=b_,lb={bottomLeft:{points:["tl","bl"],offset:[0,4],overflow:{adjustX:0,adjustY:1},ignoreShake:!0},topLeft:{points:["bl","tl"],offset:[0,-4],overflow:{adjustX:0,adjustY:1},ignoreShake:!0}};const ub={name:"SelectTrigger",props:{disabled:u.Z.bool,showSearch:u.Z.bool,prefixCls:u.Z.string,dropdownPopupAlign:u.Z.object,dropdownClassName:u.Z.string,dropdownStyle:u.Z.object,transitionName:u.Z.string,animation:u.Z.string,getPopupContainer:u.Z.func,dropdownMatchSelectWidth:u.Z.bool,isMultiple:u.Z.bool,dropdownPrefixCls:u.Z.string,dropdownVisibleChange:u.Z.func,popupElement:u.Z.node,open:u.Z.bool},created:function(){this.triggerRef=K_()},methods:{getDropdownTransitionName:function(){var e=this.$props,t=e.transitionName,n=e.animation,r=e.dropdownPrefixCls;return!t&&n?r+"-"+n:t},forcePopupAlign:function(){var e=this.triggerRef.current;e&&e.forcePopupAlign()}},render:function(){var e,t=arguments[0],n=this.$props,r=n.disabled,i=n.isMultiple,o=n.dropdownPopupAlign,a=n.dropdownMatchSelectWidth,s=n.dropdownClassName,u=n.dropdownStyle,d=n.dropdownVisibleChange,f=n.getPopupContainer,p=n.dropdownPrefixCls,m=n.popupElement,v=n.open,y=void 0;return!1!==a&&(y=a?"width":"minWidth"),t(Zr,c()([{directives:[{name:"ant-ref",value:this.triggerRef}]},{attrs:{action:r?[]:["click"],popupPlacement:"bottomLeft",builtinPlacements:lb,popupAlign:o,prefixCls:p,popupTransitionName:this.getDropdownTransitionName(),popup:m,popupVisible:v,getPopupContainer:f,stretch:y,popupClassName:h()(s,(e={},(0,l.Z)(e,p+"--multiple",i),(0,l.Z)(e,p+"--single",!i),e)),popupStyle:u},on:{popupVisibleChange:d}}]),[this.$slots.default])}};var db=function(){return{prefixCls:u.Z.string,className:u.Z.string,open:u.Z.bool,selectorValueList:u.Z.array,allowClear:u.Z.bool,showArrow:u.Z.bool,removeSelected:u.Z.func,choiceTransitionName:u.Z.string,ariaId:u.Z.string,inputIcon:u.Z.any,clearIcon:u.Z.any,removeIcon:u.Z.any,placeholder:u.Z.any,disabled:u.Z.bool,focused:u.Z.bool}};function hb(){}function fb(e){return{name:"BaseSelector",mixins:[y.Z],props:(0,k.SQ)((0,f.Z)({},db(),{renderSelection:u.Z.func.isRequired,renderPlaceholder:u.Z.func,tabIndex:u.Z.number}),{tabIndex:0}),inject:{vcTreeSelect:{default:function(){return{}}}},created:function(){this.domRef=K_()},methods:{onFocus:function(e){var t=this.$props.focused,n=this.vcTreeSelect.onSelectorFocus;t||n(),this.__emit("focus",e)},onBlur:function(e){(0,this.vcTreeSelect.onSelectorBlur)(),this.__emit("blur",e)},focus:function(){this.domRef.current.focus()},blur:function(){this.domRef.current.blur()},renderClear:function(){var e=this.$createElement,t=this.$props,n=t.prefixCls,r=t.allowClear,i=t.selectorValueList,o=this.vcTreeSelect.onSelectorClear;return r&&i.length&&i[0].value?e("span",{key:"clear",class:n+"-selection__clear",on:{click:o}},[(0,k.rj)(this,"clearIcon")]):null},renderArrow:function(){var e=this.$createElement,t=this.$props,n=t.prefixCls;return t.showArrow?e("span",{key:"arrow",class:n+"-arrow",style:{outline:"none"}},[(0,k.rj)(this,"inputIcon")]):null}},render:function(){var t,n=arguments[0],r=this.$props,i=r.prefixCls,o=r.className,a=r.style,s=r.open,u=r.focused,d=r.disabled,f=r.allowClear,p=r.ariaId,m=r.renderSelection,v=r.renderPlaceholder,y=r.tabIndex,g=this.vcTreeSelect.onSelectorKeyDown,_=y;return d&&(_=null),n("span",c()([{style:a,on:{click:(0,k.CL)(this).click||hb},class:h()(o,i,(t={},(0,l.Z)(t,i+"-open",s),(0,l.Z)(t,i+"-focused",s||u),(0,l.Z)(t,i+"-disabled",d),(0,l.Z)(t,i+"-enabled",!d),(0,l.Z)(t,i+"-allow-clear",f),t))},{directives:[{name:"ant-ref",value:this.domRef}]},{attrs:{role:"combobox","aria-expanded":s,"aria-owns":s?p:void 0,"aria-controls":s?p:void 0,"aria-haspopup":"listbox","aria-disabled":d,tabIndex:_},on:{focus:this.onFocus,blur:this.onBlur,keydown:g}}]),[n("span",{key:"selection",class:h()(i+"-selection",i+"-selection--"+e)},[m(),this.renderClear(),this.renderArrow(),v&&v()])])}}}var pb=fb("single");const mb={name:"SingleSelector",props:db(),created:function(){this.selectorRef=K_()},methods:{focus:function(){this.selectorRef.current.focus()},blur:function(){this.selectorRef.current.blur()},renderSelection:function(){var e=this.$createElement,t=this.$props,n=t.selectorValueList,r=t.placeholder,i=t.prefixCls,o=void 0;if(n.length){var a=n[0],s=a.label,c=a.value;o=e("span",{key:"value",attrs:{title:W_(s)},class:i+"-selection-selected-value"},[s||c])}else o=e("span",{key:"placeholder",class:i+"-selection__placeholder"},[r]);return e("span",{class:i+"-selection__rendered"},[o])}},render:function(){var e=arguments[0],t={props:(0,f.Z)({},(0,k.oZ)(this),{renderSelection:this.renderSelection}),on:(0,k.CL)(this),directives:[{name:"ant-ref",value:this.selectorRef}]};return e(pb,t)}};const vb={name:"SearchInput",props:{open:u.Z.bool,searchValue:u.Z.string,prefixCls:u.Z.string,disabled:u.Z.bool,renderPlaceholder:u.Z.func,needAlign:u.Z.bool,ariaId:u.Z.string},inject:{vcTreeSelect:{default:function(){return{}}}},data:function(){return{mirrorSearchValue:this.searchValue}},watch:{searchValue:function(e){this.mirrorSearchValue=e}},created:function(){this.inputRef=K_(),this.mirrorInputRef=K_(),this.prevProps=(0,f.Z)({},this.$props)},mounted:function(){var e=this;this.$nextTick((function(){var t=e.$props,n=t.open;t.needAlign&&e.alignInputWidth(),n&&e.focus(!0)}))},updated:function(){var e=this,t=this.$props,n=t.open,r=t.searchValue,i=t.needAlign,o=this.prevProps;this.$nextTick((function(){n&&o.open!==n&&e.focus(),i&&r!==o.searchValue&&e.alignInputWidth(),e.prevProps=(0,f.Z)({},e.$props)}))},methods:{alignInputWidth:function(){this.inputRef.current.style.width=(this.mirrorInputRef.current.clientWidth||this.mirrorInputRef.current.offsetWidth)+"px"},focus:function(e){var t=this;this.inputRef.current&&(e?setTimeout((function(){t.inputRef.current.focus()}),0):this.inputRef.current.focus())},blur:function(){this.inputRef.current&&this.inputRef.current.blur()},handleInputChange:function(e){var t=e.target,n=t.value,r=t.composing,i=this.searchValue,o=void 0===i?"":i;e.isComposing||r||o===n?this.mirrorSearchValue=n:this.vcTreeSelect.onSearchInputChange(e)}},render:function(){var e=arguments[0],t=this.$props,n=t.searchValue,r=t.prefixCls,i=t.disabled,o=t.renderPlaceholder,a=t.open,s=t.ariaId,l=this.vcTreeSelect.onSearchInputKeyDown,u=this.handleInputChange,d=this.mirrorSearchValue;return e("span",{class:r+"-search__field__wrap"},[e("input",c()([{attrs:{type:"text"}},{directives:[{name:"ant-ref",value:this.inputRef},{name:"ant-input"}]},{on:{input:u,keydown:l},domProps:{value:n},attrs:{disabled:i,"aria-label":"filter select","aria-autocomplete":"list","aria-controls":a?s:void 0,"aria-multiline":"false"},class:r+"-search__field"}])),e("span",c()([{directives:[{name:"ant-ref",value:this.mirrorInputRef}]},{class:r+"-search__field__mirror"}]),[d," "]),o&&!d?o():null])}};const yb={mixins:[y.Z],props:{prefixCls:u.Z.string,maxTagTextLength:u.Z.number,label:u.Z.any,value:u.Z.oneOfType([u.Z.string,u.Z.number]),removeIcon:u.Z.any},methods:{onRemove:function(e){var t=this.$props.value;this.__emit("remove",e,t),e.stopPropagation()}},render:function(){var e=arguments[0],t=this.$props,n=t.prefixCls,r=t.maxTagTextLength,i=t.label,o=t.value,a=i||o;return r&&"string"==typeof a&&a.length>r&&(a=a.slice(0,r)+"..."),e("li",c()([{style:B_},{attrs:U_},{attrs:{role:"menuitem",title:W_(i)},class:n+"-selection__choice"}]),[(0,k.CL)(this).remove&&e("span",{class:n+"-selection__choice__remove",on:{click:this.onRemove}},[(0,k.rj)(this,"removeIcon")]),e("span",{class:n+"-selection__choice__content"},[a])])}};var gb=fb("multiple");const _b={mixins:[y.Z],props:(0,f.Z)({},db(),vb.props,{selectorValueList:u.Z.array,disabled:u.Z.bool,searchValue:u.Z.string,labelInValue:u.Z.bool,maxTagCount:u.Z.number,maxTagPlaceholder:u.Z.any}),inject:{vcTreeSelect:{default:function(){return{}}}},created:function(){this.inputRef=K_()},methods:{onPlaceholderClick:function(){this.inputRef.current.focus()},focus:function(){this.inputRef.current.focus()},blur:function(){this.inputRef.current.blur()},_renderPlaceholder:function(){var e=this.$createElement,t=this.$props,n=t.prefixCls,r=t.placeholder,i=t.searchPlaceholder,o=t.searchValue,a=t.selectorValueList,s=r||i;return s?e("span",{style:{display:o||a.length?"none":"block"},on:{click:this.onPlaceholderClick},class:n+"-search__field__placeholder"},[s]):null},onChoiceAnimationLeave:function(){for(var e=arguments.length,t=Array(e),n=0;n=0&&(h=r.slice(0,s));var p=h.map((function(n){var r=n.label,i=n.value;return t(yb,c()([{props:(0,f.Z)({},e.$props,{label:r,value:i}),on:(0,f.Z)({},d,{remove:l})},{key:i||"RC_TREE_SELECT_EMPTY_VALUE_KEY"}]),[u.default])}));if(s>=0&&s0&&void 0!==arguments[0]?arguments[0]:[],t={};return e.forEach((function(e){t[e]=function(){this.needSyncKeys[e]=!0}})),t}(["treeData","defaultValue","value"]),{__propsSymbol__:function(){var e=this.getDerivedState(this.$props,this.$data);this.setState(e),this.needSyncKeys={}},"$data._valueList":function(){var e=this;this.$nextTick((function(){e.forcePopupAlign()}))},"$data._open":function(e){var t=this;setTimeout((function(){var n=t.$props.prefixCls,r=t.$data,i=r._selectorValueList,o=r._valueEntities;if(!t.isMultiple()&&i.length&&e&&t.popup){var a=i[0].value,s=t.popup.getTree().domTreeNodes[(o[a]||{}).key];if(s){var c=s.$el;b()((function(){var e=function(e,t){for(var n=e;n;){if($_(n,t))return n;n=n.parentNode}return null}(t.popup.$el,n+"-dropdown"),r=t.popup.searchRef.current;c&&e&&r&&it(c,e,{onlyScrollIfNeeded:!0,offsetTop:r.offsetHeight})}))}}}))}}),mounted:function(){var e=this;this.$nextTick((function(){var t=e.$props,n=t.autoFocus,r=t.disabled;n&&!r&&e.focus()}))},methods:{getDerivedState:function(e,t){var n=this.$createElement,r=t._prevProps,i=void 0===r?{}:r,o=e.treeCheckable,a=e.treeCheckStrictly,s=e.filterTreeNode,c=e.treeNodeFilterProp,l=e.treeDataSimpleMode,u={_prevProps:(0,f.Z)({},e),_init:!1},d=this;function h(t,n){return!(i[t]===e[t]&&!d.needSyncKeys[t])&&(n(e[t],i[t]),!0)}var p=!1;h("open",(function(e){u._open=e}));var m=void 0,v=!1,y=!1;if(h("treeData",(function(e){m=ib(n,e),v=!0})),h("treeDataSimpleMode",(function(e,t){if(e){var n=t&&!0!==t?t:{};at()(e,n)||(y=!0)}})),l&&(v||y)){var _=(0,f.Z)({id:"id",pId:"pId",rootPId:null},!0!==l?l:{});m=ib(n,function(e,t){var n=t.id,r=t.pId,i=t.rootPId,o={},a=[];return e.map((function(e){var t=(0,f.Z)({},e),r=t[n];return o[r]=t,t.key=t.key||r,t})).forEach((function(e){var t=e[r],n=o[t];n&&(n.children=n.children||[],n.children.push(e)),(t===i||!n&&null===i)&&a.push(e)})),a}(e.treeData,_))}if(e.treeData||(m=(0,k.OU)(this.$slots.default)),m){var b=function(e){return g_(e,{initWrapper:ob,processEntity:ab})}(m);u._treeNodes=m,u._posEntities=b.posEntities,u._valueEntities=b.valueEntities,u._keyEntities=b.keyEntities,p=!0}if(t._init&&h("defaultValue",(function(t){u._valueList=eb(t,e),p=!0})),h("value",(function(t){u._valueList=eb(t,e),p=!0})),p){var M=[],w=[],C=[],L=u._valueList;L||(L=[].concat((0,g.Z)(t._valueList),(0,g.Z)(t._missValueList)));var x={};if(L.forEach((function(e){var n=e.value,r=e.label,i=(u._valueEntities||t._valueEntities)[n];if(x[n]=r,i)return C.push(i.key),void w.push(e);M.push(e)})),o&&!a){var S=cb(C,!0,u._keyEntities||t._keyEntities).checkedKeys;u._valueList=S.map((function(e){var n=(u._keyEntities||t._keyEntities).get(e).value,r={value:n};return void 0!==x[n]&&(r.label=x[n]),r}))}else u._valueList=w;u._missValueList=M,u._selectorValueList=nb(u._valueList,e,u._valueEntities||t._valueEntities)}if(h("inputValue",(function(e){null!==e&&(u._searchValue=e)})),h("searchValue",(function(e){u._searchValue=e})),void 0!==u._searchValue||t._searchValue&&m){var Z=void 0!==u._searchValue?u._searchValue:t._searchValue,T=String(Z).toUpperCase(),z=s;!1===s?z=function(){return!0}:"function"!=typeof z&&(z=function(e,t){return-1!==String((0,k.TW)(t)[c]).toUpperCase().indexOf(T)}),u._filteredTreeNodes=Q_(this.$createElement,u._treeNodes||t._treeNodes,Z,z,u._valueEntities||t._valueEntities,Cb)}return p&&o&&!a&&(u._searchValue||t._searchValue)&&(u._searchHalfCheckedKeys=sb(u._valueList,u._valueEntities||t._valueEntities)),h("showCheckedStrategy",(function(){u._selectorValueList=u._selectorValueList||nb(u._valueList||t._valueList,e,u._valueEntities||t._valueEntities)})),u},onSelectorFocus:function(){this.setState({_focused:!0})},onSelectorBlur:function(){this.setState({_focused:!1})},onComponentKeyDown:function(e){var t=this.$data._open,n=e.keyCode;t?De.ESC===n?this.setOpenState(!1):-1!==[De.UP,De.DOWN,De.LEFT,De.RIGHT].indexOf(n)&&e.stopPropagation():-1!==[De.ENTER,De.DOWN].indexOf(n)&&this.setOpenState(!0)},onDeselect:function(e,t,n){this.__emit("deselect",e,t,n)},onSelectorClear:function(e){this.$props.disabled||(this.triggerChange([],[]),this.isSearchValueControlled()||this.setUncontrolledState({_searchValue:"",_filteredTreeNodes:null}),e.stopPropagation())},onMultipleSelectorRemove:function(e,t){e.stopPropagation();var n=this.$data,r=n._valueList,i=n._missValueList,o=n._valueEntities,a=this.$props,s=a.treeCheckable,c=a.treeCheckStrictly,l=a.treeNodeLabelProp;if(!a.disabled){var u=o[t],d=r;u&&(d=s&&!c?r.filter((function(e){var t=e.value;return!function(e,t){for(var n=e.split("-"),r=t.split("-"),i=Math.min(n.length,r.length),o=0;o1&&void 0!==arguments[1]&&arguments[1],n=this.$props.dropdownVisibleChange;n&&!1===n(e,{documentClickClose:!e&&t})||this.setUncontrolledState({_open:e})},isMultiple:function(){var e=this.$props,t=e.multiple,n=e.treeCheckable;return!(!t&&!n)},isLabelInValue:function(){return J_(this.$props)},isSearchValueControlled:function(){var e=(0,k.oZ)(this),t=e.inputValue;return"searchValue"in e||"inputValue"in e&&null!==t},forcePopupAlign:function(){var e=this.selectTriggerRef.current;e&&e.forcePopupAlign()},delayForcePopupAlign:function(){var e=this;b()((function(){b()(e.forcePopupAlign)}))},triggerChange:function(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},r=this.$data,i=r._valueEntities,o=r._searchValue,a=r._selectorValueList,s=(0,k.oZ)(this),c=s.disabled,l=s.treeCheckable,u=s.treeCheckStrictly;if(!c){var d=(0,f.Z)({preValue:a.map((function(e){return{label:e.label,value:e.value}}))},n),h=nb(t,s,i);if(!("value"in s)){var p={_missValueList:e,_valueList:t,_selectorValueList:h};o&&l&&!u&&(p._searchHalfCheckedKeys=sb(t,i)),this.setState(p)}if((0,k.CL)(this).change){var m=void 0;m=this.isMultiple()?[].concat((0,g.Z)(e),(0,g.Z)(h)):h.slice(0,1);var v=null,y=void 0;this.isLabelInValue()?y=m.map((function(e){return{label:e.label,value:e.value}})):(v=[],y=m.map((function(e){var t=e.label,n=e.value;return v.push(t),n}))),this.isMultiple()||(y=y[0]),this.__emit("change",y,v,d)}}},focus:function(){this.selectorRef.current.focus()},blur:function(){this.selectorRef.current.blur()}},render:function(){var e=arguments[0],t=this.$data,n=t._valueList,r=t._missValueList,i=t._selectorValueList,o=t._searchHalfCheckedKeys,a=t._valueEntities,s=t._keyEntities,l=t._searchValue,u=t._open,d=t._focused,h=t._treeNodes,p=t._filteredTreeNodes,m=(0,k.oZ)(this),v=m.prefixCls,y=m.treeExpandedKeys,_=this.isMultiple(),b={props:(0,f.Z)({},m,{isMultiple:_,valueList:n,searchHalfCheckedKeys:o,selectorValueList:[].concat((0,g.Z)(r),(0,g.Z)(i)),valueEntities:a,keyEntities:s,searchValue:l,upperSearchValue:(l||"").toUpperCase(),open:u,focused:d,dropdownPrefixCls:v+"-dropdown",ariaId:this.ariaId}),on:(0,f.Z)({},(0,k.CL)(this),{choiceAnimationLeave:this.onChoiceAnimationLeave}),scopedSlots:this.$scopedSlots},M=(0,k.dG)(b,{props:{treeNodes:h,filteredTreeNodes:p,treeExpandedKeys:y,__propsSymbol__:Symbol()},on:{treeExpanded:this.delayForcePopupAlign},directives:[{name:"ant-ref",value:this.setPopupRef}]}),w=_?kb:wb,C=e(w,M),L=_?_b:mb,x=e(L,c()([b,{directives:[{name:"ant-ref",value:this.selectorRef}]}])),S=(0,k.dG)(b,{props:{popupElement:C,dropdownVisibleChange:this.onDropdownVisibleChange},directives:[{name:"ant-ref",value:this.selectTriggerRef}]});return e(ub,S,[x])}};Lb.TreeNode=Cb,Lb.SHOW_ALL=F_,Lb.SHOW_PARENT=I_,Lb.SHOW_CHILD=N_,Lb.name="TreeSelect";var xb=Cb;const Sb=Lb;r.default.use(D.Z,{name:"ant-ref"});const Zb=Sb;u.Z.shape({key:u.Z.string,value:u.Z.string,label:u.Z.any,scopedSlots:u.Z.object,children:u.Z.array}).loose;var Tb={TreeNode:(0,f.Z)({},xb,{name:"ATreeSelectNode"}),SHOW_ALL:F_,SHOW_PARENT:I_,SHOW_CHILD:N_,name:"ATreeSelect",props:(0,k.SQ)((0,f.Z)({},qi(),{autoFocus:u.Z.bool,dropdownStyle:u.Z.object,filterTreeNode:u.Z.oneOfType([Function,Boolean]),getPopupContainer:u.Z.func,labelInValue:u.Z.bool,loadData:u.Z.func,maxTagCount:u.Z.number,maxTagPlaceholder:u.Z.any,value:u.Z.oneOfType([u.Z.string,u.Z.object,u.Z.array,u.Z.number]),defaultValue:u.Z.oneOfType([u.Z.string,u.Z.object,u.Z.array,u.Z.number]),multiple:u.Z.bool,notFoundContent:u.Z.any,searchPlaceholder:u.Z.string,searchValue:u.Z.string,showCheckedStrategy:u.Z.oneOf(["SHOW_ALL","SHOW_PARENT","SHOW_CHILD"]),suffixIcon:u.Z.any,treeCheckable:u.Z.oneOfType([u.Z.any,u.Z.bool]),treeCheckStrictly:u.Z.bool,treeData:u.Z.arrayOf(Object),treeDataSimpleMode:u.Z.oneOfType([Boolean,Object]),dropdownClassName:u.Z.string,dropdownMatchSelectWidth:u.Z.bool,treeDefaultExpandAll:u.Z.bool,treeExpandedKeys:u.Z.array,treeIcon:u.Z.bool,treeDefaultExpandedKeys:u.Z.array,treeNodeFilterProp:u.Z.string,treeNodeLabelProp:u.Z.string,replaceFields:u.Z.object.def({})}),{transitionName:"slide-up",choiceTransitionName:"zoom",showSearch:!1}),model:{prop:"value",event:"change"},inject:{configProvider:{default:function(){return X}}},created:function(){re(!1!==this.multiple||!this.treeCheckable,"TreeSelect","`multiple` will alway be `true` when `treeCheckable` is true")},methods:{focus:function(){this.$refs.vcTreeSelect.focus()},blur:function(){this.$refs.vcTreeSelect.blur()},renderSwitcherIcon:function(e,t){var n=t.isLeaf,r=t.loading,i=this.$createElement;return r?i(Ui,{attrs:{type:"loading"},class:e+"-switcher-loading-icon"}):n?null:i(Ui,{attrs:{type:"caret-down"},class:e+"-switcher-icon"})},onChange:function(){this.$emit.apply(this,["change"].concat(Array.prototype.slice.call(arguments)))},updateTreeData:function(e){var t=this,n=this.$scopedSlots,r=(0,f.Z)({},{children:"children",title:"title",key:"key",label:"label",value:"value"},this.$props.replaceFields);return e.map((function(e){var i=e.scopedSlots,o=void 0===i?{}:i,a=e[r.label],s=e[r.title],c=e[r.value],l=e[r.key],u=e[r.children],d="function"==typeof a?a(t.$createElement):a,h="function"==typeof s?s(t.$createElement):s;!d&&o.label&&n[o.label]&&(d=n[o.label](e)),!h&&o.title&&n[o.title]&&(h=n[o.title](e));var p=(0,f.Z)({},e,{title:h||d,value:c,dataRef:e,key:l});return u?(0,f.Z)({},p,{children:t.updateTreeData(u)}):p}))}},render:function(e){var t,n=this,r=(0,k.oZ)(this),i=r.prefixCls,o=r.size,a=r.dropdownStyle,s=r.dropdownClassName,c=r.getPopupContainer,u=(0,Oe.Z)(r,["prefixCls","size","dropdownStyle","dropdownClassName","getPopupContainer"]),d=(0,this.configProvider.getPrefixCls)("select",i),m=this.configProvider.renderEmpty,v=(0,k.rj)(this,"notFoundContent"),y=(0,k.rj)(this,"removeIcon"),g=(0,k.rj)(this,"clearIcon"),_=this.configProvider.getPopupContainer,b=p(u,["inputIcon","removeIcon","clearIcon","switcherIcon","suffixIcon"]),M=(0,k.rj)(this,"suffixIcon");M=Array.isArray(M)?M[0]:M;var w=r.treeData;w&&(w=this.updateTreeData(w));var C=(t={},(0,l.Z)(t,d+"-lg","large"===o),(0,l.Z)(t,d+"-sm","small"===o),t),L=u.showSearch;"showSearch"in u||(L=!(!u.multiple&&!u.treeCheckable));var x=(0,k.rj)(this,"treeCheckable");x&&(x=e("span",{class:d+"-tree-checkbox-inner"}));var S=M||e(Ui,{attrs:{type:"down"},class:d+"-arrow-icon"}),Z=y||e(Ui,{attrs:{type:"close"},class:d+"-remove-icon"}),T=g||e(Ui,{attrs:{type:"close-circle",theme:"filled"},class:d+"-clear-icon"}),z={props:(0,f.Z)((0,f.Z)({switcherIcon:function(e){return n.renderSwitcherIcon(d,e)},inputIcon:S,removeIcon:Z,clearIcon:T},b,{showSearch:L,getPopupContainer:c||_,dropdownClassName:h()(s,d+"-tree-dropdown"),prefixCls:d,dropdownStyle:(0,f.Z)({maxHeight:"100vh",overflow:"auto"},a),treeCheckable:x,notFoundContent:v||m(e,"Select"),__propsSymbol__:Symbol()}),w?{treeData:w}:{}),class:C,on:(0,f.Z)({},(0,k.CL)(this),{change:this.onChange}),ref:"vcTreeSelect",scopedSlots:this.$scopedSlots};return e(Zb,z,[(0,k.OU)(this.$slots.default)])},install:function(e){e.use(B),e.component(Tb.name,Tb),e.component(Tb.TreeNode.name,Tb.TreeNode)}};const zb=Tb;var Ob={prefixCls:u.Z.string,color:u.Z.string,dot:u.Z.any,pending:u.Z.bool,position:u.Z.oneOf(["left","right",""]).def("")};const Hb={name:"ATimelineItem",props:(0,k.SQ)(Ob,{color:"blue",pending:!1}),inject:{configProvider:{default:function(){return X}}},render:function(){var e,t,n=arguments[0],r=(0,k.oZ)(this),i=r.prefixCls,o=r.color,a=void 0===o?"":o,s=r.pending,c=this.configProvider.getPrefixCls,u=c("timeline",i),d=(0,k.rj)(this,"dot"),f=h()((e={},(0,l.Z)(e,u+"-item",!0),(0,l.Z)(e,u+"-item-pending",s),e)),p=h()((t={},(0,l.Z)(t,u+"-item-head",!0),(0,l.Z)(t,u+"-item-head-custom",d),(0,l.Z)(t,u+"-item-head-"+a,!0),t)),m={class:f,on:(0,k.CL)(this)};return n("li",m,[n("div",{class:u+"-item-tail"}),n("div",{class:p,style:{borderColor:/blue|red|green|gray/.test(a)?void 0:a}},[d]),n("div",{class:u+"-item-content"},[this.$slots.default])])}};var Db={prefixCls:u.Z.string,pending:u.Z.any,pendingDot:u.Z.string,reverse:u.Z.bool,mode:u.Z.oneOf(["left","alternate","right",""])};const Vb={name:"ATimeline",props:(0,k.SQ)(Db,{reverse:!1,mode:""}),inject:{configProvider:{default:function(){return X}}},render:function(){var e,t=arguments[0],n=(0,k.oZ)(this),r=n.prefixCls,i=n.reverse,o=n.mode,a=(0,Oe.Z)(n,["prefixCls","reverse","mode"]),s=this.configProvider.getPrefixCls,c=s("timeline",r),u=(0,k.rj)(this,"pendingDot"),d=(0,k.rj)(this,"pending"),p="boolean"==typeof d?null:d,m=h()(c,(e={},(0,l.Z)(e,c+"-pending",!!d),(0,l.Z)(e,c+"-reverse",!!i),(0,l.Z)(e,c+"-"+o,!!o),e)),v=(0,k.OU)(this.$slots.default),y=d?t(Hb,{attrs:{pending:!!d}},[t("template",{slot:"dot"},[u||t(Ui,{attrs:{type:"loading"}})]),p]):null,_=i?[y].concat((0,g.Z)(v.reverse())):[].concat((0,g.Z)(v),[y]),b=function(e,t){var n=(0,k.TW)(e);return"alternate"===o?"right"===n.position?c+"-item-right":"left"===n.position||t%2==0?c+"-item-left":c+"-item-right":"left"===o?c+"-item-left":"right"===o||"right"===n.position?c+"-item-right":""},M=_.filter((function(e){return!!e})),w=M.length,C=c+"-item-last",L=M.map((function(e,t){var n=t===w-2?C:"",r=t===w-1?C:"";return(0,fn.Tm)(e,{class:h()([!i&&d?n:r,b(e,t)])})})),x={props:(0,f.Z)({},a),class:m,on:(0,k.CL)(this)};return t("ul",x,[L])}};Vb.Item=Hb,Vb.install=function(e){e.use(B),e.component(Vb.name,Vb),e.component(Hb.name,Hb)};const Pb=Vb;var Yb=n(45578),Ab=n.n(Yb),jb=n(30998),Eb=n.n(jb),$b=n(78718),Fb=n.n($b),Ib=n(43174),Nb=n.n(Ib);function Rb(e){var t=e.responseText||e.response;if(!t)return t;try{return JSON.parse(t)}catch(e){return t}}function Wb(e){var t=new window.XMLHttpRequest;e.onProgress&&t.upload&&(t.upload.onprogress=function(t){t.total>0&&(t.percent=t.loaded/t.total*100),e.onProgress(t)});var n=new window.FormData;e.data&&Object.keys(e.data).forEach((function(t){var r=e.data[t];Array.isArray(r)?r.forEach((function(e){n.append(t+"[]",e)})):n.append(t,e.data[t])})),n.append(e.filename,e.file),t.onerror=function(t){e.onError(t)},t.onload=function(){if(t.status<200||t.status>=300)return e.onError(function(e,t){var n="cannot "+e.method+" "+e.action+" "+t.status+"'",r=new Error(n);return r.status=t.status,r.method=e.method,r.url=e.action,r}(e,t),Rb(t));e.onSuccess(Rb(t),t)},t.open(e.method,e.action,!0),e.withCredentials&&"withCredentials"in t&&(t.withCredentials=!0);var r=e.headers||{};for(var i in null!==r["X-Requested-With"]&&t.setRequestHeader("X-Requested-With","XMLHttpRequest"),r)r.hasOwnProperty(i)&&null!==r[i]&&t.setRequestHeader(i,r[i]);return t.send(n),{abort:function(){t.abort()}}}var Kb=+new Date,Bb=0;function Ub(){return"vc-upload-"+Kb+"-"+ ++Bb}const qb=function(e,t){if(e&&t){var n=Array.isArray(t)?t:t.split(","),r=e.name||"",i=e.type||"",o=i.replace(/\/.*$/,"");return n.some((function(e){var t,n,a=e.trim();return"."===a.charAt(0)?(t=r.toLowerCase(),n=a.toLowerCase(),-1!==t.indexOf(n,t.length-n.length)):/\/\*$/.test(a)?o===a.replace(/\/.*$/,""):i===a}))}return!0};const Gb=function(e,t,n){var r=function e(r,i){i=i||"",r.isFile?r.file((function(e){n(e)&&(r.fullPath&&!e.webkitRelativePath&&(Object.defineProperties(e,{webkitRelativePath:{writable:!0}}),e.webkitRelativePath=r.fullPath.replace(/^\//,""),Object.defineProperties(e,{webkitRelativePath:{writable:!1}})),t([e]))})):r.isDirectory&&function(e,t){var n=e.createReader(),r=[];!function e(){n.readEntries((function(n){var i=Array.prototype.slice.apply(n);r=r.concat(i),i.length?e():t(r)}))}()}(r,(function(t){t.forEach((function(t){e(t,""+i+r.name+"/")}))}))},i=!0,o=!1,a=void 0;try{for(var s,c=e[Symbol.iterator]();!(i=(s=c.next()).done);i=!0){r(s.value.webkitGetAsEntry())}}catch(e){o=!0,a=e}finally{try{!i&&c.return&&c.return()}finally{if(o)throw a}}};var Jb={componentTag:u.Z.string,prefixCls:u.Z.string,name:u.Z.string,multiple:u.Z.bool,directory:u.Z.bool,disabled:u.Z.bool,accept:u.Z.string,data:u.Z.oneOfType([u.Z.object,u.Z.func]),action:u.Z.oneOfType([u.Z.string,u.Z.func]),headers:u.Z.object,beforeUpload:u.Z.func,customRequest:u.Z.func,withCredentials:u.Z.bool,openFileDialogOnClick:u.Z.bool,transformFile:u.Z.func,method:u.Z.string};const Xb={inheritAttrs:!1,name:"ajaxUploader",mixins:[y.Z],props:Jb,data:function(){return this.reqs={},{uid:Ub()}},mounted:function(){this._isMounted=!0},beforeDestroy:function(){this._isMounted=!1,this.abort()},methods:{onChange:function(e){var t=e.target.files;this.uploadFiles(t),this.reset()},onClick:function(){var e=this.$refs.fileInputRef;e&&e.click()},onKeyDown:function(e){"Enter"===e.key&&this.onClick()},onFileDrop:function(e){var t=this,n=this.$props.multiple;if(e.preventDefault(),"dragover"!==e.type)if(this.directory)Gb(e.dataTransfer.items,this.uploadFiles,(function(e){return qb(e,t.accept)}));else{var r=Nb()(Array.prototype.slice.call(e.dataTransfer.files),(function(e){return qb(e,t.accept)})),i=r[0],o=r[1];!1===n&&(i=i.slice(0,1)),this.uploadFiles(i),o.length&&this.$emit("reject",o)}},uploadFiles:function(e){var t=this,n=Array.prototype.slice.call(e);n.map((function(e){return e.uid=Ub(),e})).forEach((function(e){t.upload(e,n)}))},upload:function(e,t){var n=this;if(!this.beforeUpload)return setTimeout((function(){return n.post(e)}),0);var r=this.beforeUpload(e,t);r&&r.then?r.then((function(t){var r=Object.prototype.toString.call(t);return"[object File]"===r||"[object Blob]"===r?n.post(t):n.post(e)})).catch((function(e){console&&console.log(e)})):!1!==r&&setTimeout((function(){return n.post(e)}),0)},post:function(e){var t=this;if(this._isMounted){var n=this.$props,r=n.data,i=n.transformFile,o=void 0===i?function(e){return e}:i;new Promise((function(n){var r=t.action;if("function"==typeof r)return n(r(e));n(r)})).then((function(i){var a=e.uid,s=t.customRequest||Wb;Promise.resolve(o(e)).catch((function(e){console.error(e)})).then((function(o){"function"==typeof r&&(r=r(e));var c={action:i,filename:t.name,data:r,file:o,headers:t.headers,withCredentials:t.withCredentials,method:n.method||"post",onProgress:function(n){t.$emit("progress",n,e)},onSuccess:function(n,r){delete t.reqs[a],t.$emit("success",n,e,r)},onError:function(n,r){delete t.reqs[a],t.$emit("error",n,r,e)}};t.reqs[a]=s(c),t.$emit("start",e)}))}))}},reset:function(){this.setState({uid:Ub()})},abort:function(e){var t=this.reqs;if(e){var n=e;e&&e.uid&&(n=e.uid),t[n]&&t[n].abort&&t[n].abort(),delete t[n]}else Object.keys(t).forEach((function(e){t[e]&&t[e].abort&&t[e].abort(),delete t[e]}))}},render:function(){var e,t=arguments[0],n=this.$props,r=this.$attrs,i=n.componentTag,o=n.prefixCls,a=n.disabled,s=n.multiple,c=n.accept,u=n.directory,d=n.openFileDialogOnClick,p=h()((e={},(0,l.Z)(e,o,!0),(0,l.Z)(e,o+"-disabled",a),e)),m=a?{}:{click:d?this.onClick:function(){},keydown:d?this.onKeyDown:function(){},drop:this.onFileDrop,dragover:this.onFileDrop},v={on:(0,f.Z)({},(0,k.CL)(this),m),attrs:{role:"button",tabIndex:a?null:"0"},class:p};return t(i,v,[t("input",{attrs:{id:r.id,type:"file",accept:c,directory:u?"directory":null,webkitdirectory:u?"webkitdirectory":null,multiple:s},ref:"fileInputRef",on:{click:function(e){return e.stopPropagation()},change:this.onChange},key:this.uid,style:{display:"none"}}),this.$slots.default])}};var Qb={position:"absolute",top:0,opacity:0,filter:"alpha(opacity=0)",left:0,zIndex:9999};const eM={mixins:[y.Z],props:{componentTag:u.Z.string,disabled:u.Z.bool,prefixCls:u.Z.string,accept:u.Z.string,multiple:u.Z.bool,data:u.Z.oneOfType([u.Z.object,u.Z.func]),action:u.Z.oneOfType([u.Z.string,u.Z.func]),name:u.Z.string},data:function(){return this.file={},{uploading:!1}},methods:{onLoad:function(){if(this.uploading){var e=this.file,t=void 0;try{var n=this.getIframeDocument(),r=n.getElementsByTagName("script")[0];r&&r.parentNode===n.body&&n.body.removeChild(r),t=n.body.innerHTML,this.$emit("success",t,e)}catch(n){re(!1,"cross domain error for Upload. Maybe server should return document.domain script. see Note from https://github.com/react-component/upload"),t="cross-domain",this.$emit("error",n,null,e)}this.endUpload()}},onChange:function(){var e=this,t=this.getFormInputNode(),n=this.file={uid:Ub(),name:t.value&&t.value.substring(t.value.lastIndexOf("\\")+1,t.value.length)};this.startUpload();var r=this.$props;if(!r.beforeUpload)return this.post(n);var i=r.beforeUpload(n);i&&i.then?i.then((function(){e.post(n)}),(function(){e.endUpload()})):!1!==i?this.post(n):this.endUpload()},getIframeNode:function(){return this.$refs.iframeRef},getIframeDocument:function(){return this.getIframeNode().contentDocument},getFormNode:function(){return this.getIframeDocument().getElementById("form")},getFormInputNode:function(){return this.getIframeDocument().getElementById("input")},getFormDataNode:function(){return this.getIframeDocument().getElementById("data")},getFileForMultiple:function(e){return this.multiple?[e]:e},getIframeHTML:function(e){var t="",n="";if(e){t=' + + diff --git a/resources/js/Layouts/AppLayout.vue b/resources/js/Layouts/AppLayout.vue index b617337..258e932 100644 --- a/resources/js/Layouts/AppLayout.vue +++ b/resources/js/Layouts/AppLayout.vue @@ -4,7 +4,7 @@ class="flex items-center px-4 font-bold text-base border-b bg-gray-200 h-14" > - +